#home {
      height: 20%;
      margin: 0;
      padding: 0;
      overflow: hidden;
    }
#home  {
      min-height: 25vh;
      min-width: 100vw;
      background: linear-gradient(-45deg, #002536, #e73c7e, #23a6d5, #ff00ff);
      background-size: 400% 400%;
      animation: gradientBG 5s ease infinite;
    }
    @keyframes gradientBG {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
    /* Kontent markazda chiqishi uchun (ixtiyoriy) */
    .content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 2rem;
      text-align: center;
      z-index: 1;
    }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f8fa;
  color: #222;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
header {
  background: #0a1a2f;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 12px #0077ff22;
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #00eaff;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 18px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #00eaff;
}
.cta-btn {
  background: #00eaff;
  color: #0a1a2f;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px #00eaff33;
}
.cta-btn:hover {
  background: #0077ff;
  color: #fff;
}
.hero {
  background: linear-gradient(90deg, #00eaff 0%, #0077ff 100%);
  color: #fff;
  padding: 70px 0 60px 0;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}
/* #services {
  background: #fff;
  padding: 60px 0 40px 0;
 } */
#services h2 {
  text-align: center;
  color: #0077ff;
  margin-bottom: 40px;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.service-card {
  background: #f6f8fa;
  border-radius: 12px;
  box-shadow: 0 2px 12px #00eaff22;
  padding: 32px 22px;
  width: 220px;
  text-align: center;
  transition: transform 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 4px 24px #00eaff55;
}
.service-card span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}
#about {
  background: #f0f4f8;
  padding: 60px 0 40px 0;
}
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.about-text {
  flex: 1 1 320px;
}
.about-img img {
  width: 180px;
  border-radius: 16px;
  box-shadow: 0 2px 12px #00eaff44;
}
#about h2 {
  color: #0077ff;
}
#about ul {
  margin-top: 18px;
  padding-left: 18px;
}
#contact {
  background: #fff;
  padding: 60px 0 40px 0;
}
#contact h2 {
  color: #0077ff;
  text-align: center;
  margin-bottom: 40px;
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 350px;
  margin-top: 10px;
}
#contactForm input,
#contactForm textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #f6f8fa;
  color: #222;
  font-size: 1rem;
}
#contactForm button {
  background: #00eaff;
  color: #0a1a2f;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
#contactForm button:hover {
  background: #0077ff;
  color: #fff;
}
#formMessage {
  text-align: center;
  margin-top: 10px;
  color: #0077ff;
  font-weight: bold;
}
footer {
  background: #0a1a2f;
  color: #fff;
  text-align: center;
  padding: 22px 0;
  margin-top: 40px;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .services-grid, .about-flex, .contact-flex {
    flex-direction: column;
    align-items: center;
  }
}










/*
.shop-alert {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #00eaff;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 4px 24px #00eaff55;
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.shop-alert.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
} */














/* Mobil uchun moslashuvchan dizayn */
@media (max-width: 900px) {
  .container, .shop-list {
    padding: 0 8px;
  }
  .nav-flex, .about-flex, .contact-flex, .services-grid, .shop-list {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  .shop-card, .service-card, .blog-card {
    width: 98% !important;
    max-width: 400px !important;
    min-width: unset !important;
  }
  .about-img img {
    width: 120px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .shop-header, header {
    flex-direction: column !important;
    padding: 12px 0 !important;
    text-align: center !important;
  }
  .shop-logo, .logo {
    margin-bottom: 10px !important;
  }
  nav a {
    display: inline-block;
    margin: 8px 6px !important;
    font-size: 1.1rem !important;
  }
  .shop-hero, .hero {
    padding: 30px 5px 20px 5px !important;
  }
  .shop-card img {
    height: 100px !important;
  }
  .promo-banner {
    font-size: 1rem !important;
    padding: 16px 4px !important;
  }
  footer {
    font-size: 0.95rem !important;
    padding: 12px 0 !important;
  }
  .cart-btn, .chat-btn {
    right: 10px !important;
    left: unset !important;
    bottom: 10px !important;
    padding: 10px 16px !important;
    font-size: 1rem !important;
  }
}
















































































    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    .shop {
      background: linear-gradient(-45deg, #002536, #3cd3e7, #23a6d5, #ff00ff);
      color: #e5e7eb;
      line-height: 1.5;
      animation: gradientBG 5s ease infinite;
    }

  
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 16px;
    }

    .shop__title {
      font-size: 32px;
      margin-bottom: 8px;
    }

    .shop__subtitle {
      color: #ffffff;
      margin-bottom: 24px;
    }

    /* Filter tugmalari */
    .shop__filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }

    .filter-btn {
      border: 1px solid #4b5563;
      background: transparent;
      color: #e5e7eb;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .filter-btn:hover {
      background: #1f2937;
    }

    .filter-btn.is-active {
      background: #3b82f6;
      border-color: #3b82f6;
      color: white;
    }

    /* Mahsulot grid */
    .shop__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .product-card {
      background: #111827;
      border-radius: 16px;
      padding: 14px;
      border: 1px solid #1f2937;
      display: flex;
      flex-direction: column;
      gap: 8px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .product-card__img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      aspect-ratio: 4 / 3;
      background: #020617;
    }

    .product-card__title {
      font-size: 18px;
      margin-top: 6px;
    }

    .product-card__desc {
      font-size: 14px;
      color: #9ca3af;
      min-height: 42px;
    }

    .product-card__bottom {
      margin-top: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .product-card__price {
      font-weight: 600;
      color: #22c55e;
      font-size: 15px;
    }

    .btn {
      border: none;
      cursor: pointer;
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .btn-primary {
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      color: white;
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
    }

    .btn-primary:hover {
      opacity: 0.9;
    }

    .btn-full {
      width: 100%;
      justify-content: center;
    }

    /* Modal */
    .order-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 50;
    }

    .order-modal[aria-hidden="true"] {
      display: none;
    }

    .order-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(6px);
    }

    .order-modal__content {
      position: relative;
      background: #020617;
      border-radius: 18px;
      padding: 24px 20px;
      max-width: 420px;
      width: 100%;
      border: 1px solid #1f2937;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .order-modal__close {
      position: absolute;
      top: 12px;
      right: 14px;
      background: transparent;
      border: none;
      color: #9ca3af;
      font-size: 22px;
      cursor: pointer;
    }

    .order-modal__title {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .order-modal__product {
      font-size: 14px;
      color: #9ca3af;
      margin-bottom: 14px;
    }

    .order-modal__product span {
      color: #e5e7eb;
      font-weight: 600;
    }

    .order-form__field {
      margin-bottom: 12px;
    }

    .order-form__field label {
      display: block;
      font-size: 13px;
      margin-bottom: 4px;
      color: #d1d5db;
    }

    .order-form__field input,
    .order-form__field select,
    .order-form__field textarea {
      width: 100%;
      padding: 8px 10px;
      border-radius: 10px;
      border: 1px solid #374151;
      background: #020617;
      color: #e5e7eb;
      font-size: 14px;
      outline: none;
    }

    .order-form__field input:focus,
    .order-form__field select:focus,
    .order-form__field textarea:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.6);
    }

    .order-form__note,
    .order-modal__note {
      font-size: 12px;
      color: #6b7280;
      margin-top: 8px;
    }

    .order-modal__note {
      margin-top: 10px;
      text-align: center;
    }

    /* Responsiv */
    @media (max-width: 600px) {
      .container {
        padding: 24px 14px;
      }

      .order-modal__content {
        margin: 0 12px;
        padding: 20px 16px;
      }
    }
