
    :root {
      --primary: #ff7a1a;
      --primary-dark: #e85f00;
      --dark: #0f172a;
      --muted: #64748b;
      --soft: #f1f5f9;
      --border: #e2e8f0;
      --white: #ffffff;
      --success: #10b981;
      --danger: #ef4444;
      --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
      --radius: 24px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255,122,26,0.15), transparent 35%),
        radial-gradient(circle at top right, rgba(59,130,246,0.12), transparent 30%),
        #f8fafc;
      color: var(--dark);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .top-strip {
      background: var(--dark);
      color: #e2e8f0;
      font-size: 13px;
      padding: 10px 0;
    }

    .top-strip-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
    }

    .top-strip span {
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(226,232,240,0.7);
    }

    .nav-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 25px;
      letter-spacing: -0.7px;
    }

    .logo-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--primary), #ffb86b);
      color: white;
      display: grid;
      place-items: center;
      box-shadow: 0 14px 28px rgba(255,122,26,0.28);
    }

    .search-box {
      flex: 1;
      max-width: 520px;
      height: 50px;
      background: white;
      border: 1px solid var(--border);
      border-radius: 999px;
      display: flex;
      align-items: center;
      padding: 0 8px 0 18px;
      box-shadow: 0 10px 28px rgba(15,23,42,0.06);
    }

    .search-box i {
      color: var(--muted);
      margin-right: 10px;
    }

    .search-box input {
      border: 0;
      outline: 0;
      flex: 1;
      font-size: 14px;
      background: transparent;
    }

    .search-box button {
      border: 0;
      background: var(--primary);
      color: white;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.25s;
    }

    .search-box button:hover {
      background: var(--primary-dark);
      transform: scale(1.04);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .icon-btn {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: white;
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      color: var(--dark);
      position: relative;
      box-shadow: 0 10px 28px rgba(15,23,42,0.06);
    }

    .badge {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--danger);
      color: white;
      font-size: 11px;
      display: grid;
      place-items: center;
      border: 2px solid white;
    }

    .menu {
      background: white;
      border-bottom: 1px solid var(--border);
    }

    .menu-inner {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      overflow-x: auto;
    }

    .categories-btn {
      background: var(--dark);
      color: white;
      padding: 13px 18px;
      border-radius: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .menu-links {
      display: flex;
      gap: 24px;
      font-size: 14px;
      font-weight: 700;
      color: #334155;
      white-space: nowrap;
    }

    .hero {
      padding: 38px 0 26px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: stretch;
    }

    .hero-card {
      min-height: 470px;
      border-radius: 32px;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(115deg, rgba(15,23,42,0.92), rgba(15,23,42,0.48)),
        url("https://cdn.pixabay.com/photo/2016/11/29/09/32/blur-1869304_1280.jpg") center/cover;
      box-shadow: var(--shadow);
      color: white;
      padding: 56px;
      display: flex;
      align-items: center;
    }

    .hero-content {
      max-width: 560px;
      position: relative;
      z-index: 2;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.22);
      backdrop-filter: blur(10px);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: clamp(38px, 5vw, 68px);
      line-height: 0.98;
      letter-spacing: -2.5px;
      margin-bottom: 20px;
    }

    .hero p {
      color: #e2e8f0;
      line-height: 1.8;
      font-size: 16px;
      max-width: 500px;
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      border: 0;
      border-radius: 16px;
      padding: 15px 22px;
      font-weight: 800;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: 0.25s;
      font-size: 14px;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 18px 35px rgba(255,122,26,0.32);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    .btn-light {
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.25);
      color: white;
      backdrop-filter: blur(10px);
    }

    .side-deals {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 24px;
    }

    .deal-card {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      padding: 28px;
      background: white;
      box-shadow: var(--shadow);
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .deal-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255,122,26,0.18), transparent 42%);
      pointer-events: none;
    }

    .deal-text {
      max-width: 220px;
      position: relative;
      z-index: 2;
    }

    .deal-text span {
      color: var(--primary);
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
    }

    .deal-text h3 {
      margin: 8px 0 12px;
      font-size: 25px;
      letter-spacing: -1px;
    }

    .deal-text a {
      font-weight: 900;
      color: var(--dark);
      display: inline-flex;
      gap: 8px;
      align-items: center;
      font-size: 14px;
    }

    .deal-card img {
      width: 170px;
      height: 150px;
      object-fit: contain;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 20px 25px rgba(15,23,42,0.18));
    }

    .section {
      padding: 11px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
    }

    .section-title span {
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-title h2 {
      font-size: clamp(27px, 4vw, 42px);
      letter-spacing: -1.5px;
      margin-top: 8px;
    }

    .view-all {
      font-weight: 900;
      color: var(--primary);
      white-space: nowrap;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    .category-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 22px 14px;
      text-align: center;
      box-shadow: 0 12px 32px rgba(15,23,42,0.06);
      transition: 0.25s;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: rgba(255,122,26,0.35);
    }

    .cat-icon {
      width: 62px;
      height: 62px;
      margin: 0 auto 14px;
      border-radius: 20px;
      background: #fff7ed;
      color: var(--primary);
      display: grid;
      place-items: center;
      font-size: 25px;
    }

    .category-card h4 {
      font-size: 14px;
      margin-bottom: 5px;
    }

    .category-card p {
      color: var(--muted);
      font-size: 12px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .product-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 12px 32px rgba(15,23,42,0.06);
      transition: 0.25s;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .product-img {
      height: 220px;
      background: #f8fafc;
      display: grid;
      place-items: center;
      position: relative;
      padding: 22px;
    }

    .product-img img {
      width: 100%;
      height: 170px;
      margin-top: 30px;
      object-fit: contain;
      transition: 0.3s;
      filter: drop-shadow(0 18px 22px rgba(15,23,42,0.16));
    }

    .product-card:hover .product-img img {
      transform: scale(1.05);
    }

    .discount {
      position: absolute;
      left: 16px;
      top: 16px;
      background: #fee2e2;
      color: #dc2626;
      font-size: 12px;
      font-weight: 900;
      border-radius: 999px;
      padding: 7px 10px;
    }

    .wish {
      position: absolute;
      right: 16px;
      top: 16px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: white;
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      color: #64748b;
      cursor: pointer;
    }

    .product-body {
      padding: 18px;
    }

    .rating {
      display: flex;
      gap: 4px;
      color: #f59e0b;
      font-size: 13px;
      margin-bottom: 9px;
    }

    .product-body h3 {
      font-size: 16px;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 16px;
    }

    .price strong {
      font-size: 21px;
      color: var(--dark);
    }

    .price del {
      color: #94a3b8;
      font-size: 13px;
      margin-left: 5px;
    }

    .cart-btn {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      border: 0;
      background: var(--dark);
      color: white;
      cursor: pointer;
      transition: 0.25s;
    }

    .cart-btn:hover {
      background: var(--primary);
      transform: rotate(-5deg) scale(1.04);
    }

    .empty-products {
      grid-column: 1 / -1;
      background: white;
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 40px;
      text-align: center;
      color: var(--muted);
    }

    .banner {
      margin: 30px 0;
      border-radius: 34px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(255,122,26,0.94), rgba(15,23,42,0.88)),
        url("https://cdn.pixabay.com/photo/2017/08/01/00/40/people-2562626_1280.jpg") center/cover;
      color: white;
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      box-shadow: var(--shadow);
    }

    .banner h2 {
      font-size: clamp(28px, 4vw, 46px);
      letter-spacing: -1.5px;
      margin-bottom: 10px;
    }

    .banner p {
      color: #f8fafc;
      line-height: 1.7;
      max-width: 600px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .feature-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 22px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      box-shadow: 0 12px 32px rgba(15,23,42,0.06);
    }

    .feature-card i {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: #fff7ed;
      color: var(--primary);
      display: grid;
      place-items: center;
      flex: 0 0 48px;
      font-size: 20px;
    }

    .feature-card h4 {
      margin-bottom: 5px;
      font-size: 15px;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .newsletter {
      margin: 42px 0 0;
      background: white;
      border: 1px solid var(--border);
      border-radius: 34px;
      padding: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      box-shadow: var(--shadow);
    }

    .newsletter h2 {
      font-size: 32px;
      letter-spacing: -1px;
      margin-bottom: 8px;
    }

    .newsletter p {
      color: var(--muted);
    }

    .newsletter-form {
      display: flex;
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 7px;
      min-width: 420px;
    }

    .newsletter-form input {
      flex: 1;
      border: 0;
      outline: 0;
      background: transparent;
      padding: 0 14px;
      font-size: 14px;
    }

    .newsletter-message {
      margin-top: 12px;
      color: var(--success);
      font-weight: 800;
      font-size: 14px;
    }

    .footer {
      margin-top: 42px;
      background: var(--dark);
      color: #cbd5e1;
      padding: 44px 0 22px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 30px;
    }

    .footer h3,
    .footer h4 {
      color: white;
      margin-bottom: 14px;
    }

    .footer p,
    .footer a {
      color: #94a3b8;
      line-height: 1.8;
      font-size: 14px;
      display: block;
      margin-bottom: 8px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(148,163,184,0.18);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 13px;
      color: #94a3b8;
    }
    
    
    .mobile-search-wrap {
  display: none;
}

.mobile-search-box {
  width: 100%;
  height: 48px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 7px 0 16px;
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}

.mobile-search-box i {
  color: var(--muted);
  margin-right: 10px;
}

.mobile-search-box input {
  border: 0;
  outline: 0;
  flex: 1;
  font-size: 14px;
  background: transparent;
  min-width: 0;
}

.mobile-search-box button {
  border: 0;
  background: var(--primary);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 38px;
}

    @media (max-width: 980px) {
      .search-box {
        display: none;
      }

      .hero-grid,
      .banner,
      .newsletter {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-grid {
        display: block;
      }

      .side-deals {
        margin-top: 24px;
      }

      .category-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .products-grid,
      .features,
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .newsletter-form {
        width: 100%;
        min-width: 0;
      }
    }

    @media (max-width: 640px) {
      .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-inner {
        min-height: 72px;
      }

      .logo {
        font-size: 21px;
      }

      .nav-actions .icon-btn:nth-child(1),
      .nav-actions .icon-btn:nth-child(2) {
        display: grid;
      }

      .hero-card {
        padding: 32px 24px;
        min-height: 520px;
      }

      .deal-card {
        flex-direction: column;
        align-items: flex-start;
      }
      
      
      .navbar {
  padding-bottom: 12px;
}

.mobile-search-wrap {
  display: block;
  padding-bottom: 2px;
}

.search-box {
  display: none;
}

.features,
.footer-grid {
  grid-template-columns: 1fr;
}

/* Mobile category carousel */
.category-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
}

.category-grid::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 118px;
  min-width: 118px;
  border-radius: 18px;
  padding: 14px 10px;
  scroll-snap-align: start;
}

.cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  font-size: 19px;
  margin-bottom: 10px;
}

.category-card h4 {
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 10px;
}

      .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .product-card {
        border-radius: 18px;
      }

      .product-img {
        height: 140px;
        padding: 12px;
      }

      .product-img img {
        height: 105px;
      }

      .product-body {
        padding: 12px;
      }

      .rating {
        font-size: 10px;
        gap: 2px;
        margin-bottom: 6px;
      }

      .product-body h3 {
        font-size: 13px;
        line-height: 1.3;
        min-height: 34px;
      }

      .price-row {
        gap: 6px;
        margin-top: 10px;
      }

      .price strong {
        font-size: 15px;
      }

      .price del {
        display: none;
      }

      .cart-btn {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        flex: 0 0 36px;
      }

      .discount {
        left: 10px;
        top: 10px;
        font-size: 10px;
        padding: 5px 8px;
      }

      .wish {
        right: 10px;
        top: 10px;
        width: 30px;
        height: 30px;
        font-size: 12px;
      }

      .section-head,
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .banner,
      .newsletter {
        padding: 28px;
      }

      .menu-links {
        gap: 18px;
      }
      
      .newsletter-form {
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 10px;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
}

.newsletter-form button {
  width: 100%;
  justify-content: center;
}
    }
