*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
html,
input,
button,
select,
textarea,
a {
  font-family: 'Poppins', sans-serif !important;
}

/* ── HERO ────────────────────────────────────── */
.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 38vh;
  min-height: 220px;
  max-height: 360px;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
}
.hero-slide:hover .hero-bg {
  transform: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--store-max-width, 1400px);
  margin: 0 auto;
  padding: 0 clamp(var(--store-gutter, 20px), 5vw, 60px);
}
.hero-text {
  color: white;
  max-width: 520px;
}
.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-text h1 span {
  color: var(--orange);
}
.hero-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 18px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(255, 105, 0, 0.4);
  text-decoration: none;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 105, 0, 0.5);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.hero-prev {
  left: 16px;
}
.hero-next {
  right: 16px;
}
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

/* ── DISCOVER MORE ───────────────────────────── */
.discover-wrap {
  background: white;
  border-bottom: 2px solid var(--border);
  padding-bottom: 16px;
}
.discover-header {
  background: linear-gradient(90deg, #111 0%, #333 100%);
  padding: 16px 0 12px;
}
.discover-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.discover-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.discover-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
}
.discover-see-all {
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.discover-see-all:hover {
  background: rgba(255, 255, 255, 0.28);
}
.discover-products-row {
  --carousel-gap: 12px;
  --carousel-cols: 6;
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  padding: 16px 0 4px;
  scrollbar-width: none;
}
.discover-products-row::-webkit-scrollbar {
  display: none;
}
.discover-card {
  flex: 0 0 calc((100% - (var(--carousel-cols) - 1) * var(--carousel-gap)) / var(--carousel-cols));
  min-width: 0;
  box-sizing: border-box;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.discover-card:hover {
  border-color: #333;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.discover-card-img {
  height: 160px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.discover-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discover-card-img span {
  font-size: 4rem;
}
.discover-card-info {
  padding: 9px 10px;
}
.discover-card-name {
  font-size: 0.74rem;
  color: var(--mid);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}
.discover-card-price {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #111;
}
.discover-card-rating {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── FLASH SALES ─────────────────────────────── */
.flash-sales-wrap {
  background: white;
  border-bottom: 2px solid var(--border);
  padding-bottom: 16px;
}
.flash-sales-header {
  background: linear-gradient(90deg, #dc2626 0%, #ff6900 100%);
  padding: 14px 0 12px;
}
.flash-sales-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.flash-sales-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.flash-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}
.flash-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.timer-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  margin-right: 4px;
}
.timer-block {
  background: white;
  color: #dc2626;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 5px;
  min-width: 28px;
  text-align: center;
}
.timer-sep {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}
.flash-see-all {
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.flash-see-all:hover {
  background: rgba(255, 255, 255, 0.35);
}
.flash-products-row {
  --carousel-gap: 12px;
  --carousel-cols: 6;
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  padding: 16px 0 4px;
  scrollbar-width: none;
}
.flash-products-row::-webkit-scrollbar {
  display: none;
}
.flash-card {
  flex: 0 0 calc((100% - (var(--carousel-cols) - 1) * var(--carousel-gap)) / var(--carousel-cols));
  min-width: 0;
  box-sizing: border-box;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.flash-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(255, 105, 0, 0.15);
  transform: translateY(-2px);
}
.flash-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #dc2626;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 1;
}
.flash-card-img {
  height: 180px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.flash-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flash-card-img span {
  font-size: 4rem;
}
.flash-card-info {
  padding: 10px;
}
.flash-card-name {
  font-size: 0.75rem;
  color: var(--mid);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.flash-card-prices {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 6px;
}
.flash-card-price {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange);
}
.flash-card-old {
  font-size: 0.68rem;
  color: var(--muted);
  text-decoration: line-through;
}
.flash-stock-bar {
  height: 5px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.flash-stock-fill {
  height: 100%;
  background: linear-gradient(90deg, #dc2626, #ff6900);
  border-radius: 3px;
}
.flash-stock-label {
  font-size: 0.65rem;
  color: var(--muted);
}

/* ── EXPLORE INTERESTS ───────────────────────── */
.interests-section {
  background: #fafafa;
  padding: 0 0 32px;
  border-bottom: 2px solid var(--border);
}
.interests-header {
  padding: 0 0 18px;
  margin-bottom: 4px;
  border-bottom: 1.5px solid #ececec;
}
.interests-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.interests-emoji {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}
.interests-headings {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  justify-content: center;
  min-height: 52px;
}
.interests-subtitle {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.2;
}
.interests-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cat-pills-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 16px;
  scrollbar-width: none;
}
.cat-pills-row::-webkit-scrollbar {
  display: none;
}
.cat-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cat-pill:hover {
  border-color: #111;
  color: #111;
  background: #f5f5f5;
}
.cat-pill.active {
  border-color: #111;
  background: #111;
  color: white;
}
.cat-banners-row {
  --carousel-gap: 12px;
  --carousel-cols: 6;
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  padding: 0 0 20px;
  scrollbar-width: none;
}
.cat-banners-row::-webkit-scrollbar {
  display: none;
}
.cat-banner {
  flex: 0 0 calc((100% - (var(--carousel-cols) - 1) * var(--carousel-gap)) / var(--carousel-cols));
  min-width: 0;
  box-sizing: border-box;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  transition: transform 0.2s;
}
.cat-banner:hover {
  transform: scale(1.03);
}
.cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-banner-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: white;
  padding: 24px 12px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.interests-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}
.int-product-card {
  min-width: 0;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.int-product-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #ccc;
}
.int-product-img {
  height: 160px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.int-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.int-product-img span {
  font-size: 3.5rem;
}
.int-product-name {
  font-size: 0.75rem;
  color: var(--mid);
  padding: 8px 10px 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
.int-product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #111;
  padding: 2px 10px 8px;
}
.int-add-cart {
  width: 100%;
  background: #111;
  color: white;
  border: none;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.int-add-cart:hover {
  background: var(--orange);
}

/* ── PRODUCT GRID ────────────────────────────── */
.products-section {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 24px 0;
  background: white;
}
.products-section > .store-container {
  width: 100%;
  max-width: var(--store-max-width, 1400px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--store-gutter, 20px);
  padding-right: var(--store-gutter, 20px);
  box-sizing: border-box;
}
.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
}
.section-heading-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.02em;
  flex: 0 1 auto;
}
.section-heading-meta {
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}
.section-heading .count {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #666;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ebebeb;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  min-width: 0;
}
.product-card {
  min-width: 0;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.product-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #ccc;
}
.product-img-wrap {
  height: 220px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.badge-hot {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-info {
  padding: 12px;
}
.product-cat {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #111;
}
.product-rating {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}
.btn-add-cart {
  width: 100%;
  background: #111;
  color: white;
  border: none;
  padding: 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-add-cart:hover {
  background: var(--orange);
}
.btn-add-cart.added {
  background: #16a34a;
}

/* ── SEE MORE ────────────────────────────────── */
.see-more-wrap {
  text-align: center;
  padding: 32px 0 8px;
}
.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 52px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(255, 105, 0, 0.3);
}
.see-more-btn:hover {
  background: #e55e00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 105, 0, 0.4);
}

/* ── PERKS STRIP ─────────────────────────────── */
.perks-strip {
  background: #fff;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  padding: 28px 0;
}
.perks-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  flex-wrap: wrap;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
  padding: 10px 20px;
}
.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff7f2;
  border: 2px solid #ffe0cc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-icon i {
  font-size: 1.1rem;
  color: var(--orange, #ff6900);
}
.perk-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.perk-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}
.perk-sub {
  font-size: 0.72rem;
  color: #888;
  font-weight: 400;
  line-height: 1.3;
}
.perk-divider {
  width: 1px;
  height: 48px;
  background: #efefef;
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 900px) {
  .perk-divider {
    display: none;
  }
  .perks-inner {
    justify-content: flex-start;
  }
  .perk-item {
    min-width: 160px;
    flex: 0 0 auto;
  }
  .perks-strip {
    padding: 18px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .perks-strip::-webkit-scrollbar {
    display: none;
  }
  .perks-inner {
    flex-wrap: nowrap;
  }
}
@media (max-width: 480px) {
  .perk-item {
    padding: 8px 14px;
  }
  .perk-icon {
    width: 40px;
    height: 40px;
  }
  .perk-icon i {
    font-size: 0.95rem;
  }
  .perk-title {
    font-size: 0.78rem;
  }
}

/* ── NEWSLETTER ──────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, #111 0%, #1a1a2e 50%, #0f0f23 100%);
  padding: 60px 0;
  margin-bottom: 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  flex-wrap: wrap;
}
.nl-left {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.nl-icon {
  font-size: 2.8rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}
.nl-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.nl-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 10px;
}
.nl-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.nl-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nl-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.nl-perk i {
  color: var(--orange);
  width: 14px;
}
.nl-right {
  flex: 1;
  min-width: 280px;
}
.nl-form-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
}
.nl-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}
.nl-stars {
  font-size: 0.88rem;
  color: #f59e0b;
  margin-bottom: 18px;
}
.nl-stars span {
  color: var(--muted);
  font-size: 0.75rem;
  margin-left: 4px;
}
.nl-input-row {
  margin-bottom: 12px;
}
.nl-input-row input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border 0.15s;
}
.nl-input-row input:focus {
  border-color: #111;
}
.nl-submit {
  width: 100%;
  background: #111;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.nl-submit:hover {
  background: var(--orange);
}
.nl-msg {
  font-size: 0.8rem;
  min-height: 18px;
  text-align: center;
  margin-bottom: 6px;
}
.nl-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ── ALL SWIPEABLE ROWS ──────────────────────── */
.flash-products-row,
.discover-products-row,
.cat-banners-row,
.cat-pills-row {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.flash-products-row::-webkit-scrollbar,
.discover-products-row::-webkit-scrollbar,
.cat-banners-row::-webkit-scrollbar,
.cat-pills-row::-webkit-scrollbar {
  display: none;
}
.flash-card,
.discover-card,
.cat-banner {
  scroll-snap-align: start;
}
.cat-pill {
  scroll-snap-align: start;
}
.interests-scroll-row {
  display: contents;
}

/* Equal-width product grids: max 6 columns, fewer on smaller viewports */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .interests-products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .flash-products-row,
  .discover-products-row,
  .cat-banners-row {
    --carousel-cols: 5;
  }
}
@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .interests-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .flash-products-row,
  .discover-products-row,
  .cat-banners-row {
    --carousel-cols: 4;
  }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .hero-carousel {
    height: 25vh;
    min-height: 180px;
    max-height: 260px;
  }
  .hero-slide-inner {
    padding: 0 clamp(var(--store-gutter, 20px), 6vw, 50px) 0 var(--store-gutter, 20px);
  }
  .hero-text h1 {
    font-size: 1.4rem;
  }
  .hero-text p {
    display: none;
  }
  .hero-cta {
    padding: 10px 20px;
    font-size: 0.82rem;
  }
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .newsletter-inner {
    flex-direction: column;
    gap: 30px;
  }
  .newsletter-section {
    padding: 40px 0;
  }
  .nl-title {
    font-size: 1.4rem;
  }
  .flash-products-row,
  .discover-products-row,
  .cat-banners-row {
    --carousel-cols: 3;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .flash-card-img {
    height: 130px;
  }
  .flash-timer {
    display: none;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 12px;
  }
  .section-heading-meta {
    align-self: flex-start;
  }
  .interests-header {
    padding-bottom: 14px;
  }
  .interests-title {
    font-size: 1.2rem;
  }
  .interests-emoji {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .interests-products {
    display: block;
    overflow: visible;
    padding: 0;
  }
  .interests-scroll-row {
    --carousel-gap: 12px;
    --carousel-cols: 3;
    display: flex;
    gap: var(--carousel-gap);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 0 16px;
  }
  .interests-scroll-row::-webkit-scrollbar {
    display: none;
  }
  .int-product-card {
    flex: 0 0 calc((100% - (var(--carousel-cols) - 1) * var(--carousel-gap)) / var(--carousel-cols));
    min-width: 0;
    scroll-snap-align: start;
  }
}
@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flash-products-row,
  .discover-products-row,
  .cat-banners-row {
    --carousel-cols: 2;
  }
  .interests-scroll-row {
    --carousel-cols: 2;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.2rem;
  }
  .hero-cta {
    padding: 9px 18px;
    font-size: 0.78rem;
  }
  .nl-perks {
    grid-template-columns: 1fr;
  }
}
