:root {
  --brand: var(--brand-primary, #DFF24B);
  --brand-dark: var(--brand-secondary, #E4F277);
  --brand-soft: var(--brand-primary-soft, #ECF2BB);
  --accent: #0D0D0D;
  --page-width: 1440px;
  --page-gutter: clamp(16px, 3vw, 32px);
  --section-pad: clamp(24px, 4vw, 48px);
  --sticky-offset: 90px;
  --text: var(--text-main, #0D0D0D);
  --text-main: var(--text-main, #0D0D0D);
  --bg: var(--page-background, #FFFFFF);
  --bg-subtle: var(--surface, #FFFFFF);
  --card: #ffffff;
  --muted: var(--text-secondary, #666666);
  --text-muted: var(--text-secondary, #666666);
  --radius: var(--ff-radius, 16px);
  --radius-sm: var(--ff-radius-sm, 12px);
  --radius-md: var(--ff-radius, 16px);
  --shadow: var(--ff-shadow, 0 10px 28px rgba(0, 0, 0, 0.07));
  --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
  --border-color: var(--border, #E0E0E0);
  --brand-glow: rgba(255, 106, 0, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.96);
  --radius-lg: var(--ff-radius-lg, 18px);
}

/* Truthful marketplace pricing: clear hierarchy without exposing internal costs. */
.product-card .price .discount,
.detail-price .discount {
  color: #16803C;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at top left, rgba(255, 223, 190, 0.9) 0%, rgba(255, 223, 190, 0) 26%),
    radial-gradient(circle at 88% 8%, rgba(193, 214, 237, 0.72) 0%, rgba(193, 214, 237, 0) 22%),
    linear-gradient(180deg, #FFFFFF 0%, #f7f1ea 52%, #f2ece5 100%);
}

body.theme-night::before {
  opacity: 0.14;
}

body.theme-night .navbar,
body.theme-night .search-wrap,
body.theme-night .pincode-top-btn,
body.theme-night .quick-panel,
body.theme-night .pick-card,
body.theme-night .product-card,
body.theme-night .browse-card,
body.theme-night .proof-card,
body.theme-night .cta-banner,
body.theme-night .site-footer,
body.theme-night .ff-market-filter-strip,
body.theme-night .page-loader-card,
body.theme-night .modal-card {
  background: rgba(31, 22, 16, 0.92);
  color: var(--text);
  border-color: rgba(255, 173, 96, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

body.theme-night .pick-card p,
body.theme-night .proof-card p,
body.theme-night .browse-card span,
body.theme-night .section-subline,
body.theme-night .quick-picks-subline,
body.theme-night .recommendation-note,
body.theme-night .nearest-shop-label,
body.theme-night .footer-address,
body.theme-night .site-footer p,
body.theme-night .site-footer a {
  color: var(--text-muted);
}

body.theme-night .mobile-bottom-nav {
  background: rgba(21, 15, 11, 0.96);
  border-top: 1px solid rgba(255, 173, 96, 0.12);
}

body.theme-night .mobile-nav-item {
  color: #d8c3b1;
}

body.theme-night .mobile-nav-item.is-active,
body.theme-night .mobile-nav-item-center {
  color: #fff4e9;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 78%);
  opacity: 0.4;
  z-index: -1;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 213, 170, 0.36) 0%, rgba(255, 213, 170, 0) 26%),
    radial-gradient(circle at 90% 10%, rgba(255, 238, 210, 0.46) 0%, rgba(255, 238, 210, 0) 28%),
    rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(12px);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-card {
  width: min(420px, 100%);
  padding: 28px 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(201, 106, 22, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 238, 0.98) 100%);
  box-shadow: 0 28px 54px rgba(32, 23, 14, 0.14);
  text-align: center;
}

.page-loader-logo {
  width: 108px;
  margin: 0 auto 16px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(201, 106, 22, 0.14);
}

.page-loader-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-loader-orbit {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
}

.page-loader-orbit::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 234, 206, 0.95) 0%, rgba(255, 244, 232, 0.8) 58%, rgba(255, 244, 232, 0) 100%);
}

.page-loader-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(201, 106, 22, 0.95);
  border-right-color: rgba(240, 162, 74, 0.56);
  animation: loader-spin 1.45s linear infinite;
}

.page-loader-orbit span:nth-child(2) {
  inset: 10px;
  animation-duration: 1.1s;
  animation-direction: reverse;
  border-top-color: rgba(143, 67, 0, 0.85);
  border-right-color: rgba(201, 106, 22, 0.4);
}

.page-loader-orbit span:nth-child(3) {
  inset: 22px;
  animation-duration: 0.9s;
  border-top-color: rgba(255, 155, 37, 0.95);
  border-right-color: rgba(255, 205, 143, 0.42);
}

.page-loader-card h2 {
  margin: 0 0 10px;
  color: #211a15;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: -0.02em;
}

.page-loader-card p {
  margin: 0;
  color: #6a6472;
  line-height: 1.6;
  font-size: 0.96rem;
}

.page-loader-bar {
  margin-top: 18px;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #f8e7d3;
}

.page-loader-bar span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0D0D0D 0%, #0D0D0D 52%, #f0a24a 100%);
  animation: loader-progress 1.5s ease-in-out infinite;
}

@keyframes loader-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-progress {
  0% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(260%);
  }
}

a {
  overflow-wrap: anywhere;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pincode-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 14, 18, 0.7);
  backdrop-filter: blur(4px);
}

.modal-card {
  width: min(440px, 100%);
  background: linear-gradient(155deg, #ECF2BB 0%, #fff 45%);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.23);
  padding: 28px;
}

.modal-badge {
  width: fit-content;
  background: #fff;
  border: 1px solid #ECF2BB;
  border-radius: 999px;
  padding: 6px 10px;
}

.modal-badge img {
  width: 90px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.modal-card h2 {
  margin: 14px 0 8px;
}

.modal-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.modal-card input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e4d6c8;
  font-size: 1rem;
  margin-bottom: 10px;
}

.btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  margin-bottom: 8px;
  box-shadow: 0 4px 15px var(--brand-glow);
}

.btn-secondary {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid var(--border-color);
}

.modal-message {
  min-height: 20px;
  margin-top: 10px;
  font-size: 0.92rem;
}

.modal-hidden {
  display: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 252, 248, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0 20px;
  padding: 0 clamp(16px, 2.5vw, 36px);
  height: 68px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Hide the mobile-search-toggle input from layout — it's a CSS trick */
.mobile-search-toggle {
  display: none;
}

section[id],
[id="homeSection"],
[id="quickPicksSection"],
[id="bestSellersSection"] {
  scroll-margin-top: 80px;
}

.logo {
  color: var(--brand);
  font-weight: 800;
  font-size: 1.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 90px;
  height: 44px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.header-center {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #e0c9b8;
  border-radius: 14px;
  padding: 0 14px;
  flex: 1;
  min-width: 0;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-wrap:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.pincode-top-wrap {
  position: relative;
  flex-shrink: 0;
}

.nearest-shop-label {
  margin: 3px 0 0;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.pincode-top-btn {
  border: 1px solid #ECF2BB;
  background: var(--brand-soft, #ECF2BB);
  color: #0D0D0D;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
  height: 44px;
  min-width: 140px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pincode-top-btn:hover {
  background: #ECF2BB;
  border-color: var(--brand);
}

.pincode-top-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 6px;
  display: none;
  z-index: 1200;
}

.pincode-top-menu.show {
  display: block;
}

.pincode-top-menu button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 12px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease;
}

.pincode-top-menu button:hover {
  background: #ECF2BB;
}

.search-wrap i {
  color: var(--brand);
  flex-shrink: 0;
}

.search-wrap input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 10px;
  font-size: 0.95rem;
  outline: none;
  color: var(--text);
  min-width: 0;
}

.search-wrap input::placeholder {
  color: #aaa;
}

.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 6px;
  display: none;
  z-index: 1200;
  max-height: 300px;
  overflow-y: auto;
}

.search-suggest.show {
  display: block;
}

.search-suggest button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s ease;
}

.search-suggest button:hover {
  background: #fff4e9;
}

.nav-icons {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.nav-icons button,
.nav-icons label {
  position: relative;
  border: 1px solid var(--border-color);
  height: 40px;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  min-width: 40px;
  padding: 0 10px;
  gap: 6px;
}

.nav-icons button:hover,
.nav-icons label:hover {
  background: var(--brand-soft);
  border-color: #ECF2BB;
  color: var(--brand);
}

.nav-action-btn {
  padding: 0 12px !important;
}

.nav-cart-btn {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
  font-weight: 700;
}

.nav-cart-btn:hover {
  background: var(--brand-dark) !important;
  border-color: var(--brand-dark) !important;
  color: #fff !important;
}

.nav-btn-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mobile-search-btn {
  display: none !important;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ff3e1f;
  color: #fff;
  font-size: 0.7rem;
  line-height: 18px;
  text-align: center;
  padding: 0 4px;
  font-weight: 700;
}

.quick-panel {
  position: fixed;
  top: 84px;
  right: 20px;
  width: min(360px, calc(100% - 40px));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 238, 0.98) 100%);
  border: 1px solid #ECF2BB;
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(32, 23, 14, 0.16);
  padding: 18px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 120;
}

.quick-panel.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.quick-panel h4 {
  margin: 0 0 12px;
  color: #211a15;
  font-size: 1.05rem;
}

.quick-panel-body {
  margin: 0;
  color: #444;
}

.quick-panel-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.quick-panel-actions a {
  text-decoration: none;
  color: #8f4500;
  background: #ECF2BB;
  border: 1px solid #ffd8b1;
  border-radius: 14px;
  padding: 11px 12px;
  font-weight: 700;
}

.quick-panel-actions a.panel-primary {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  border-color: transparent;
}

.panel-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.panel-links li {
  margin: 0;
}

.panel-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 16px;
  color: #2c3550;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 106, 22, 0.1);
  font-weight: 700;
}

.panel-links a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #b0661f;
  font-size: 0.72rem;
}

.panel-links .divider {
  height: 1px;
  margin: 4px 0;
  background: linear-gradient(90deg, rgba(201, 106, 22, 0), rgba(201, 106, 22, 0.22), rgba(201, 106, 22, 0));
}

.panel-cart-summary {
  display: grid;
  gap: 12px;
}

.panel-cart-kpi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.panel-cart-kpi article {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(201, 106, 22, 0.1);
}

.panel-cart-kpi span {
  display: block;
  color: #8f4500;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-cart-kpi strong {
  display: block;
  margin-top: 6px;
  color: #1f2937;
  font-size: 1.05rem;
}

.panel-cart-note {
  margin: 0;
  color: #5b6577;
  line-height: 1.6;
  font-size: 0.92rem;
}

main {
  width: 100%;
  margin: 0;
  padding: 28px 0 48px;
}

.launch-strip {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--page-width);
  margin: 0 auto 18px;
  padding: 0 var(--section-pad);
}

.launch-strip-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 59, 99, 0.94) 0%, rgba(27, 78, 127, 0.94) 100%);
  box-shadow: 0 18px 34px rgba(18, 59, 99, 0.18);
}

.launch-strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ECF2BB;
  font-size: 0.88rem;
  font-weight: 700;
}

.launch-strip-track i {
  color: #ffd38b;
}

.promise-banner {
  display: flex;
  align-items: center;
  justify-content: center
}

.hero,
.browse-rail,
.spotlight-band,
.category-strip,
.quick-picks,
.shopping-flow,
.best-sellers,
.value-section,
.social-proof,
.promise-banner,
.cta-banner,
.compliance-grid,
.site-footer {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;

}

.hero,
.browse-rail,
.spotlight-band,
.category-strip,
.quick-picks,
.shopping-flow,
.best-sellers,
.value-section,
.social-proof,
.promise-banner,
.cta-banner {
  padding-left: var(--section-pad);
  padding-right: var(--section-pad);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(24px, 3vw, 40px);
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 185, 126, 0.3) 0%, rgba(244, 185, 126, 0) 36%),
    radial-gradient(circle at 96% 0%, rgba(43, 90, 138, 0.18) 0%, rgba(43, 90, 138, 0) 28%),
    linear-gradient(135deg, rgba(255, 251, 247, 0.96) 0%, rgba(255, 241, 224, 0.94) 54%, rgba(255, 226, 195, 0.94) 100%);
  border: 1px solid rgba(201, 106, 22, 0.14);
  border-radius: 40px;
  box-shadow: 0 28px 68px rgba(32, 23, 14, 0.12);
  padding: clamp(24px, 3.4vw, 52px);
  overflow: hidden;
  min-height: min(84vh, 860px);
}

.hero-copy,
.hero-visuals {
  min-width: 0;
}

.kicker {
  margin: 0 0 10px;
  color: #9a4a00;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #ECF2BB;
  border-radius: 999px;
  padding: 7px 11px;
}

.hero h1 {
  margin: 0;
  line-height: 0.98;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  max-width: 9.5ch;
  letter-spacing: -0.04em;
}

.hero h1 span,
.hero h2 span {
  color: var(--brand);
}

.hero-subtext {
  margin: 18px 0 24px;
  color: #4d5768;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  max-width: 680px;
  line-height: 1.75;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-features li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 106, 22, 0.15);
  box-shadow: 0 10px 22px rgba(32, 23, 14, 0.05);
}

.hero-features i {
  color: var(--brand);
  margin-right: 7px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  max-width: 760px;
}

.hero-metric-card {
  padding: 16px 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(201, 106, 22, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(32, 23, 14, 0.05);
}

.hero-metric-card strong {
  display: block;
  color: #1f2c43;
  font-size: 1.08rem;
}

.hero-metric-card span {
  display: block;
  margin-top: 8px;
  color: #627086;
  line-height: 1.55;
  font-size: 0.92rem;
}

.hero-info-slider {
  margin-top: 24px;
  overflow: hidden;
  position: relative;
  max-width: 680px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(201, 106, 22, 0.14);
  box-shadow: 0 16px 32px rgba(32, 23, 14, 0.06);
}

.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}

.slide-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ECF2BB 0%, #ffe8d1 100%);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(201, 106, 22, 0.15);
}

.slide-content span,
.hero-side-row span {
  display: block;
  color: #0D0D0D;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slide-content strong,
.hero-side-row strong {
  display: block;
  margin-top: 6px;
  line-height: 1.45;
  color: #2e3138;
}

.shop-btn {
  border: 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 52%, #f3a14e 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 15px 26px;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(201, 106, 22, 0.24);
}

.hero-secondary-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 18px;
  border: 1px solid rgba(201, 106, 22, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: #764116;
  font-weight: 700;
}



.verification-banner {
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid #ffd8ae;
  border-radius: 8px;
  background: #ECF2BB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.verification-banner strong,
.verification-banner span {
  display: block;
}

.verification-banner span {
  margin-top: 4px;
  color: #5f6677;
}

.verification-banner a {
  text-decoration: none;
  color: #8f4500;
  background: #fff;
  border: 1px solid #ffd8ae;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 700;
  white-space: nowrap;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.payment-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #ffd9b6;
  border-radius: 999px;
  background: #fff9f3;
  color: #915100;
  font-weight: 700;
}

.metric {
  border: 1px solid rgba(201, 106, 22, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 248, 240, 0.78) 100%);
  border-radius: 20px;
  padding: 18px 16px;
  backdrop-filter: blur(8px);
  height: 100%;
}

.metric strong {
  display: block;
  color: #7c3f0c;
  font-size: 1.26rem;
}

.metric span {
  color: #5b6882;
  font-size: 0.86rem;
}

.metric strong {
  display: block;
  color: #7c3f0c;
  font-size: 1.26rem;
}

.metric span {
  color: #5b6882;
  font-size: 0.86rem;
}

.hero-visuals {
  position: relative;
}

.hero-visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  min-height: 620px;
  box-shadow: 0 24px 54px rgba(24, 30, 42, 0.18);
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #ffd5b0;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: bob 4s ease-in-out infinite;
}

.float-card i {
  color: var(--brand);
  margin-right: 4px;
}

.rider {
  bottom: 14px;
  left: 12px;
}

.cloth {
  top: 12px;
  right: 12px;
  animation-delay: 0.7s;
}

.hero-side-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 34px rgba(17, 24, 39, 0.14);
}

.hero-side-row {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 248, 241, 0.95);
}

.hero-service-card {
  position: absolute;
  left: 18px;
  top: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  border-radius: 24px;
  background: rgba(19, 33, 50, 0.74);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 38px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(14px);
}

.hero-service-top span {
  display: block;
  color: #ffd59a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-service-top strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-service-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.hero-service-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 250, 244, 0.92);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-service-list i {
  color: #ffc979;
  margin-top: 2px;
}

.hero-summary {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--page-width);
  margin: 22px auto 0;
  padding: 0 var(--section-pad);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-summary-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 238, 0.96) 100%);
  border: 1px solid rgba(201, 106, 22, 0.12);
  box-shadow: 0 16px 30px rgba(32, 23, 14, 0.05);
}

.hero-summary-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ECF2BB 0%, #ffd9b3 100%);
  color: var(--brand-dark);
}

.hero-summary-card strong {
  display: block;
  color: #1f2b43;
  line-height: 1.4;
}

.hero-summary-card span {
  display: block;
  margin-top: 6px;
  color: #687388;
  line-height: 1.55;
  font-size: 0.92rem;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.browse-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px auto 0;
  align-items: stretch;
}

.browse-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 247, 238, 0.92) 100%);
  border: 1px solid rgba(201, 106, 22, 0.12);
  box-shadow: 0 16px 32px rgba(32, 23, 14, 0.06);
  height: 100%;
}

.browse-card>div {
  min-width: 0;
}

.browse-card strong {
  display: block;
  color: #23262d;
  line-height: 1.4;
}

.browse-card span {
  display: block;
  margin-top: 4px;
  color: #687285;
  font-size: 0.92rem;
}

.browse-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #DFF24B 0%, #ffab54 100%);
  color: #fff;
  flex: 0 0 auto;
}

.spotlight-band {
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.spotlight-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(201, 106, 22, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 240, 0.96) 100%);
  box-shadow: 0 16px 32px rgba(32, 23, 14, 0.05);
}

.spotlight-card p,
.proof-badge {
  margin: 0 0 10px;
  color: #0D0D0D;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spotlight-card strong {
  line-height: 1.5;
  color: #24304b;
}

.category-strip {
  margin: 24px auto 0;
  background: rgba(255, 252, 247, 0.9);
  border-radius: 999px;
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  border: 1px solid rgba(201, 106, 22, 0.12);
  box-shadow: var(--shadow);
}

.category-strip button {
  white-space: nowrap;
  border: 0;
  background: #f7f0ea;
  border-radius: 999px;
  padding: 10px 14px;
  color: #5e4a3f;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-strip button i {
  color: var(--brand);
}

.category-strip button.active {
  background: var(--brand);
  color: #fff;
}

.category-strip button.active i {
  color: #fff;
}

.service-status-banner {
  display: none;
  margin: 18px auto 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ffd3cf;
  background: #fff4f3;
  color: #8e2d24;
  font-weight: 700;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--page-width);
}

.service-status-banner.show {
  display: block;
}

.quick-picks h3,
.best-sellers h3 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-label {
  margin: 0 0 10px;
  color: #0D0D0D;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-picks-subline {
  margin: 0 0 28px;
  max-width: 560px;
  color: #6a6472;
  font-size: 1rem;
  line-height: 1.6;
}

.shopping-flow h3,
.social-proof h3,
.value-copy h3 {
  letter-spacing: -0.01em;
}

.browse-rail,
.quick-picks,
.best-sellers,
.shopping-flow,
.value-section,
.social-proof,
.promise-banner,
.cta-banner {
  margin-left: auto;
  margin-right: auto;
}

.quick-picks,
.shopping-flow,
.best-sellers,
.social-proof {
  margin-top: 42px;
}

.shopping-flow,
.social-proof {
  padding-top: 6px;
}

.flow-grid,
.value-grid,
.proof-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}


.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ee 100%);
  border: 1px solid rgba(201, 106, 22, 0.13);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.flow-step {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, #ffb263 100%);
  color: #fff;
  font-weight: 800;
}

.flow-card h4,
.value-card h4,
.proof-card h4 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.flow-card p,
.value-card p,
.proof-card p {
  margin: 0;
  color: #5f6678;
  line-height: 1.65;
}

.value-section {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.value-copy h3,
.cta-banner h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-card,
.proof-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 241, 0.98) 100%);
  border: 1px solid rgba(201, 106, 22, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.value-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 1.2rem;
}

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

.proof-stars {
  margin-bottom: 12px;
  color: #ff9800;
  letter-spacing: 0.2em;
  font-size: 1.02rem;
}

.proof-card strong {
  display: block;
  margin-top: 14px;
  color: #26354f;
}

.proof-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 179, 102, 0.26), transparent 34%),
    linear-gradient(160deg, #ECF2BB 0%, #fff0dc 100%);
}

.proof-card-accent a {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  color: #8f4500;
  font-weight: 800;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  align-items: stretch;
}

.pick-card {
  background: linear-gradient(180deg, #fffefc 0%, #fff6ec 100%);
  border-radius: var(--radius-md);
  padding: 34px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-color);
  height: 100%;
  text-align: center;
}

.pick-card:hover {
  transform: translateY(-10px);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 18px 30px rgba(255, 122, 0, 0.2);
}

.pick-card:hover .pick-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: transparent;
}

.pick-card:hover h4 {
  color: #fff;
}

.pick-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--brand);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.pick-card h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.pick-card.is-active {
  background: linear-gradient(135deg, #DFF24B 0%, #ff9b3d 100%);
  border-color: #DFF24B;
  box-shadow: 0 18px 30px rgba(255, 122, 0, 0.22);
  transform: translateY(-6px);
}

.pick-card.is-active .pick-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.pick-card.is-active h4 {
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  padding: 24px 0;
  align-items: stretch;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  width: 100%;
}

.section-head>div {
  min-width: 0;
  max-width: 760px;
}

.section-head h3 {
  margin: 0 0 12px;
}

.section-subline {
  margin: 0;
  max-width: 620px;
  color: #5f6678;
  line-height: 1.65;
}

.recommendation-note {
  margin: 10px 0 0;
  color: #8b4a0a;
  font-weight: 700;
}

.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 245, 0.98) 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(17, 24, 39, 0.14);
  border-color: #ffca97;
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card h4 {
  margin: 18px 16px 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.product-card .price {
  margin: 0 16px 12px;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card .price .new {
  color: var(--brand-dark);
}

.product-card .price .old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.add-cart-btn {
  width: calc(100% - 32px);
  margin: auto 16px 16px;
  border: none;
  background: linear-gradient(135deg, #1d2f3f 0%, #123b63 45%, #2a5f92 100%);
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 14px 24px rgba(18, 59, 99, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.add-cart-btn::before {
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9em;
}

.add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(18, 59, 99, 0.26);
  filter: brightness(1.04);
}

.add-cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(18, 59, 99, 0.2);
}

.add-cart-btn:disabled {
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}

.add-cart-btn.login-required {
  background: linear-gradient(135deg, #e8edf4 0%, #d7e1ee 100%);
  color: #39516b;
}

.sale-ribbon {
  position: absolute;
  top: 10px;
  left: 0;
  background: linear-gradient(90deg, #ff810e, #ffad52);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.reco-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1a8f3b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 8px;
}

.price .old {
  text-decoration: line-through;
  color: #7f7f7f;
  margin-right: 6px;
}

.price .new {
  color: var(--brand-dark);
  font-weight: 800;
}

.rating {
  color: #ff9800;
}

.payment-note {
  margin: 8px 11px 0;
  color: #2f6d3a;
  font-size: 0.88rem;
  font-weight: 700;
}

.empty-state {
  margin: 4px 0 0;
  color: #6a6472;
  font-weight: 600;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.business-card {
  background: #fff;
  border: 1px solid #eceff5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.business-card span {
  display: block;
  color: #8f4500;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.business-card strong {
  display: block;
  margin-top: 7px;
  color: #182033;
  line-height: 1.4;
}

.business-card a {
  color: #182033;
}

.business-card p {
  margin: 9px 0 0;
  color: #5d667a;
  line-height: 1.55;
}

.promise-banner {
  margin: 36px 0 0;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  background:
    radial-gradient(circle at left top, rgba(255, 214, 170, 0.58), transparent 30%),
    linear-gradient(135deg, #fff3e5 0%, #ECF2BB 100%);
  border: 1px solid rgba(201, 106, 22, 0.14);
  overflow: hidden;
}

.promise-banner div {
  width: 100%;
  padding: 18px 14px;
  text-align: center;
  font-weight: 700;
}

.promise-banner i {
  color: var(--brand);
}

.cta-banner {
  margin-top: 30px;
  border-radius: 34px;
  padding-top: 34px;
  padding-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 199, 145, 0.34), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(18, 59, 99, 0.14), transparent 22%),
    linear-gradient(135deg, #fffdfa 0%, #fff3e4 58%, #ffe0be 100%);
  border: 1px solid rgba(201, 106, 22, 0.14);
  box-shadow: 0 24px 50px rgba(32, 23, 14, 0.08);
}

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

.compliance-grid {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.compliance-card {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  border: 1px solid #ece6dc;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.compliance-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.compliance-card p {
  margin: 0;
  color: #5d667a;
  line-height: 1.6;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(255, 219, 183, 0.52), transparent 24%),
    linear-gradient(180deg, #ECF2BB 0%, #fff3e6 100%);
  color: var(--text-main);
  margin-top: 80px;
  padding: 100px var(--section-pad) 40px;
  border-top: 1px solid rgba(201, 106, 22, 0.14);
  border-radius: 36px 36px 0 0;
}

.footer-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.footer-pills span {
  border-radius: 999px;
  border: 1px solid #ffd9b6;
  background: #fff;
  color: #925100;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.86rem;
}

.footer-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 2fr repeat(4, 1fr);
  width: 100%;
  margin: 0 auto;
  align-items: start;
}

.site-footer>p:not(.copyright) {
  color: #5f6678;
  line-height: 1.7;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  text-decoration: none;
}

.footer-logo img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.site-footer h5 {
  margin: 0 0 24px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: var(--brand);
  transform: translateX(5px);
}

.footer-address {
  margin: 20px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 500;
}

.copyright {
  margin: 80px auto 0;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  font-weight: 600;
}

.delivery-pill {
  position: fixed;
  left: 16px;
  right: auto;
  bottom: 18px;
  z-index: 88;
  background: #13210f;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: none;
  max-width: min(420px, calc(100vw - 120px));
  white-space: nowrap;
}

.delivery-pill.show {
  display: inline-flex;
}

.login-reminder {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #ffd7af;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: none;
}

.login-reminder.show {
  display: block;
}

.login-push-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 18, 0.62);
  backdrop-filter: blur(3px);
  z-index: 130;
  display: none;
  place-items: center;
  padding: 16px;
}

.login-push-modal.show {
  display: grid;
}

.login-push-card {
  width: min(430px, 100%);
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ffd8b0;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.22);
  padding: 18px;
}

.login-push-card h3 {
  margin: 0 0 8px;
}

.login-push-card p {
  margin: 0 0 12px;
  color: #4a4f5d;
}

.login-push-actions {
  display: flex;
  gap: 8px;
}

.login-push-actions button {
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 9px 11px;
  font-weight: 700;
  cursor: pointer;
}

#modalLoginBtn {
  background: var(--brand);
  color: #fff;
}

#modalGuestBtn {
  background: #f2f4fa;
  color: #253150;
}

.ai-widget {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 140;
}

.ai-toggle-btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 10px 20px var(--brand-glow);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.ai-toggle-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px var(--brand-glow);
}

.ai-panel {
  display: none;
  width: min(400px, calc(100vw - 32px));
  height: 600px;
  margin-top: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ai-panel.show {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.ai-head {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f2f6;
  background: linear-gradient(135deg, #ECF2BB, #fff);
}

.ai-head strong {
  font-size: 1rem;
}

.ai-head p {
  margin: 2px 0 0;
  color: #667085;
  font-size: 0.8rem;
}

.ai-head button {
  border: 0;
  background: #f3f6fb;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.ai-messages {
  padding: 10px;
  overflow-y: auto;
  background: #fcfdff;
}

.ai-msg {
  max-width: 86%;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.ai-msg.bot {
  background: #eef3ff;
  color: #25395f;
  border: 1px solid #dce6fb;
}

.ai-msg.user {
  margin-left: auto;
  background: #ECF2BB;
  color: #7a3d00;
  border: 1px solid #ECF2BB;
}

.ai-quick-actions {
  padding: 8px 10px 6px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  border-top: 1px solid #f0f2f6;
  background: #fff;
}

.ai-chip {
  border: 1px solid #ECF2BB;
  background: #fff7f0;
  color: #8e4500;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.ai-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 9px 10px;
  border-top: 1px solid #f0f2f6;
  background: #fff;
}

.ai-form input {
  border: 1px solid #dbe3f0;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
}

.ai-form button {
  border: 0;
  border-radius: 10px;
  width: 38px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
}

.mobile-bottom-nav {
  display: none;
}

.login-reminder p {
  margin: 0 0 10px;
  color: #2c2c2c;
}

.login-reminder-actions {
  display: flex;
  gap: 8px;
}

.login-reminder-actions button {
  border: 0;
  border-radius: 9px;
  padding: 8px 10px;
  font-weight: 700;
  cursor: pointer;
}

#loginNowBtn {
  background: var(--brand);
  color: #fff;
}

#maybeLaterBtn {
  background: #f3f5fb;
  color: #24304b;
}

@media (max-width: 1280px) {
  :root {
    --page-width: 1560px;
    --page-gutter: clamp(12px, 2vw, 24px);
    --section-pad: clamp(16px, 2.4vw, 30px);
  }

  .navbar {
    grid-template-columns: minmax(120px, auto) minmax(320px, 1fr) auto;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 4.4vw, 4.4rem);
    max-width: 11ch;
  }

  .hero-visuals img {
    min-height: 540px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .footer-grid {
    gap: 36px;
    grid-template-columns: 1.6fr repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --sticky-offset: 124px;
    --section-pad: clamp(16px, 3vw, 24px);
  }

  .navbar {
    grid-template-columns: auto 1fr auto;
    align-items: start;
  }

  .header-center {
    align-items: stretch;
    gap: 12px;
  }

  .pincode-top-wrap {
    min-width: 190px;
  }

  .nearest-shop-label {
    max-width: 100%;
  }

  .hero {
    gap: 22px;
    border-radius: 30px;
  }

  .hero-copy {
    display: grid;
    gap: 0;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions>*,
  .cta-actions>* {
    flex: 1 1 220px;
    text-align: center;
    justify-content: center;
  }

  .value-grid,
  .proof-grid,
  .spotlight-band,
  .browse-rail,
  .hero-summary {
    gap: 16px;
  }

  .hero-visuals img {
    min-height: 460px;
  }

  .section-head {
    flex-direction: column;
  }

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

  .site-footer {
    margin-top: 64px;
    padding-top: 72px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    grid-template-columns: minmax(90px, auto) 1fr auto;
  }

  .nav-icons {
    grid-column: auto;
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 22px;
    min-height: auto;
  }

  .hero-metric-grid,
  .hero-summary {
    grid-template-columns: 1fr;
  }

  .header-center {
    justify-content: stretch;
  }

  .cta-banner {
    align-items: flex-start;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visuals {
    order: 2;
  }

  .hero-service-card {
    width: min(280px, calc(100% - 32px));
  }

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

  .promise-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spotlight-band,
  .flow-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-section {
    grid-template-columns: 1fr;
  }

  .business-grid,
  .compliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  :root {
    --page-gutter: 10px;
    --section-pad: 14px;
    --sticky-offset: 92px;
  }

  main {
    padding-top: 10px;
  }

  .launch-strip {
    margin-bottom: 12px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .launch-strip-track {
    padding: 12px;
    border-radius: 18px;
  }

  .launch-strip-track span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body {
    padding-bottom: 148px;
  }

  .navbar {
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    padding: 10px 12px;
    margin: 0 10px;
    width: calc(100% - 20px);
    top: 8px;
    border: 1px solid rgba(201, 106, 22, 0.1);
    border-radius: 20px;
    background: rgba(255, 251, 247, 0.92);
    box-shadow: 0 14px 28px rgba(32, 23, 14, 0.08);
    align-items: center;
  }

  .logo {
    font-size: 1rem;
    align-self: center;
  }

  .logo img {
    width: 78px;
    height: 38px;
  }

  .header-center {
    grid-column: 1 / -1;
    order: 2;
    width: 100%;
    display: none;
  }

  .nav-icons {
    order: 1;
    gap: 6px;
    justify-self: end;
  }

  .mobile-search-btn {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(201, 106, 22, 0.1);
    color: var(--brand-dark);
    box-shadow: 0 8px 16px rgba(32, 23, 14, 0.06);
    cursor: pointer;
  }

  #mobileSearchToggle:checked~.header-center {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    justify-content: flex-start;
  }

  #profileBtn,
  #cartBtn,
  #menuBtn {
    display: none;
  }

  .pincode-top-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 8px 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 246, 236, 0.96) 0%, rgba(255, 240, 224, 0.96) 100%);
    font-size: 0.84rem;
  }

  .pincode-top-wrap {
    width: 100%;
    min-width: 0;
    display: none;
  }

  .nearest-shop-label {
    max-width: none;
    text-align: left;
    padding-left: 2px;
    font-size: 0.64rem;
    margin-top: 2px;
  }

  .pincode-top-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .search-wrap {
    width: 100%;
    max-width: none;
    padding: 0 12px;
    min-height: 46px;
    border-width: 1px;
    border-color: rgba(201, 106, 22, 0.16);
    box-shadow: 0 10px 18px rgba(32, 23, 14, 0.06);
    border-radius: 16px;
  }

  .search-wrap input {
    padding: 10px 8px;
    font-size: 0.92rem;
  }

  .nav-icons button {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid rgba(201, 106, 22, 0.1);
    box-shadow: 0 8px 16px rgba(32, 23, 14, 0.06);
  }

  .nav-action-btn .nav-btn-label,
  .cart-count {
    display: none;
  }

  .verification-banner {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 12px;
  }

  .verification-banner a {
    width: 100%;
    text-align: center;
  }

  .picks-grid,
  .products-grid,
  .spotlight-band,
  .flow-grid,
  .value-grid,
  .proof-grid,
  .business-grid,
  .promise-banner,
  .compliance-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-picks h3,
  .best-sellers h3 {
    font-size: 1.7rem;
  }

  .section-head {
    align-items: start;
    margin-bottom: 14px;
  }

  .section-head h3,
  .value-copy h3,
  .cta-banner h3 {
    margin-bottom: 10px;
    font-size: 1.55rem;
  }

  .quick-picks-subline,
  .section-subline,
  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.6;
  }



  .hero {
    gap: 14px;
    padding: 16px;
    border-radius: 28px;
    background:
      radial-gradient(circle at top left, rgba(255, 201, 144, 0.34), transparent 26%),
      linear-gradient(180deg, rgba(255, 245, 233, 0.98) 0%, rgba(255, 236, 212, 0.98) 100%);
    box-shadow: 0 16px 36px rgba(32, 23, 14, 0.08);
  }

  .hero-visuals img {
    min-height: 220px;
    border-radius: 20px;
  }

  .hero-metric-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .hero-metric-card {
    padding: 14px;
    border-radius: 16px;
  }

  .hero-info-slider {
    margin-top: 14px;
  }

  .browse-card {
    padding: 14px;
    border-radius: 14px;
    align-items: flex-start;
  }

  .float-card {
    display: inline-flex;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(32, 23, 14, 0.08);
  }

  .rider {
    bottom: 10px;
    left: 10px;
  }

  .cloth {
    top: 10px;
    right: 10px;
  }

  .hero-copy .kicker {
    margin-bottom: 12px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 1.02;
  }

  .hero-slide {
    padding: 14px 16px;
    gap: 14px;
  }

  .slide-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slide-content span {
    font-size: 0.7rem;
  }

  .slide-content strong {
    font-size: 0.95rem;
  }

  .hero-side-panel {
    display: none;
  }

  .hero-service-card {
    position: static;
    width: 100%;
    margin-top: 12px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.12);
  }

  .hero-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-summary-card {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .shop-btn,
  .hero-secondary-btn {
    width: 100%;
    flex: 0 0 auto;
    padding: 13px 16px;
    text-align: center;
  }

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

  .browse-rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    overflow: visible;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 2px;
  }

  .hero-features li {
    padding: 10px 12px;
    box-shadow: none;
    white-space: normal;
    flex: 1 1 calc(50% - 8px);
  }

  .spotlight-card,
  .flow-card,
  .value-card,
  .proof-card {
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(32, 23, 14, 0.06);
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .category-strip {
    padding: 8px;
    gap: 8px;
    border-radius: 18px;
  }

  .category-strip button {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .quick-picks,
  .shopping-flow,
  .best-sellers,
  .value-section,
  .social-proof,
  .promise-banner,
  .cta-banner,
  .hero-summary {
    margin-top: 28px;
  }

  .picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .pick-card {
    padding: 16px 10px;
    gap: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(32, 23, 14, 0.05);
  }

  .pick-card h4 {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .pick-icon {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
  }

  .flow-step {
    margin-bottom: 0;
  }

  .flow-card h4,
  .flow-card p {
    grid-column: 2;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }


  .product-card {
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(32, 23, 14, 0.06);
  }

  .product-card img {
    aspect-ratio: 0.9;
  }

  .product-card h4 {
    margin: 12px 12px 4px;
    font-size: 0.92rem;
  }

  .product-card .price {
    margin: 0 12px 10px;
    font-size: 0.94rem;
    flex-wrap: wrap;
  }

  .add-cart-btn {
    width: calc(100% - 24px);
    margin: auto 12px 12px;
    padding: 11px 10px;
    font-size: 0.88rem;
    border-radius: 12px;
  }

  .hero-copy,
  .quick-picks,
  .shopping-flow,
  .best-sellers,
  .value-section,
  .social-proof,
  .cta-banner {
    text-align: left;
  }

  .login-reminder {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 60px;
  }

  .delivery-pill {
    display: none !important;
  }

  .ai-widget {
    right: 10px;
    bottom: 92px;
  }

  .ai-toggle-btn {
    padding: 11px 14px;
    font-size: 0.84rem;
    border-radius: 16px;
  }

  .ai-panel {
    width: min(340px, calc(100vw - 14px));
    height: 440px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 150;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 4px;
    padding: 10px 10px 12px;
    border-radius: 24px;
    background: rgba(255, 252, 248, 0.96);
    border: 1px solid rgba(201, 106, 22, 0.12);
    box-shadow: 0 18px 34px rgba(32, 23, 14, 0.14);
    backdrop-filter: blur(18px);
  }

  .mobile-nav-item {
    color: #6f6a64;
    text-decoration: none;
    display: grid;
    justify-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .mobile-nav-item i {
    font-size: 1.16rem;
  }

  .mobile-nav-item.is-active {
    color: var(--brand-dark);
  }

  .mobile-nav-item-center {
    margin-top: -32px;
  }

  .mobile-nav-item-center span {
    color: var(--brand-dark);
    margin-top: 4px;
  }

  .mobile-nav-item-center i {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffcc00 0%, #ff9500 100%);
    color: #1b1b1b;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: flash-pulse 2s infinite;
  }

  @keyframes flash-pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 8px 24px rgba(255, 153, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.9);
    }

    50% {
      transform: scale(1.05);
      box-shadow: 0 12px 32px rgba(255, 153, 0, 0.6), 0 0 0 10px rgba(255, 255, 255, 0.4);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 8px 24px rgba(255, 153, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.9);
    }
  }
}

@media (max-width: 480px) {
  :root {
    --sticky-offset: 88px;
  }

  body {
    padding-bottom: 146px;
  }

  .navbar {
    padding: 8px;
    margin: 0 8px;
    width: calc(100% - 16px);
    border-radius: 18px;
  }

  .logo img {
    width: 72px;
    height: 34px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10vw, 2.55rem);
    max-width: none;
  }

  .kicker {
    font-size: 0.74rem;
    padding: 6px 9px;
  }

  .hero-highlight-card,
  .metric,
  .flow-card,
  .value-card,
  .proof-card,
  .spotlight-card {
    padding: 14px;
    border-radius: 16px;
  }

  .hero {
    padding: 16px;
    border-radius: 22px;
  }

  .hero-visuals img {
    min-height: 180px;
  }

  .hero-side-panel {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .shop-btn,
  .hero-secondary-btn {
    width: 100%;
  }

  .pick-card {
    padding: 18px 10px;
  }

  .pick-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }

  .picks-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .product-card h4 {
    font-size: 0.8rem;
    margin: 8px 8px 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card .price {
    font-size: 0.85rem;
    margin: 0 8px 8px;
  }

  .add-cart-btn {
    width: calc(100% - 16px);
    margin: auto 8px 8px;
    padding: 8px;
    font-size: 0.8rem;
    border-radius: 10px;
  }


  .hero-features li {
    flex-basis: 100%;
  }

  .promise-banner div {
    padding: 12px 10px;
    font-size: 0.88rem;
  }

  .site-footer {
    border-radius: 22px 22px 0 0;
    padding-top: 48px;
  }

  .footer-grid {
    gap: 22px;
  }

  .ai-toggle-btn {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .ai-panel {
    width: calc(100vw - 10px);
    height: 420px;
  }

  .mobile-bottom-nav {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 10px 8px 11px;
    border-radius: 20px;
  }

  .mobile-nav-item {
    font-size: 0.68rem;
  }

  .mobile-nav-item-center i {
    width: 50px;
    height: 50px;
  }
}

/* ff-market-style homepage refresh */
.ff-market-homepage .launch-strip {
  margin-bottom: 14px;
}

.ff-market-homepage .launch-strip-track {
  background: linear-gradient(135deg, #0D0D0D 0%, #0D0D0D 52%, #f0a24a 100%);
  box-shadow: 0 16px 30px rgba(143, 67, 0, 0.2);
}

.ff-market-homepage .launch-strip-track span {
  background: rgba(255, 255, 255, 0.14);
}

.ff-market-hero {
  min-height: auto;
}

.hero-banner-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: var(--hero-banner-height, min(76vh, 720px));
  margin: 0 0 22px;
  padding: clamp(24px, 4vw, 48px);
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #120d0a 0%, #3d2515 44%, #f08a28 100%);
  box-shadow: none;
}

.hero-banner-media,
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
}

.hero-banner-media {
  z-index: -1;
  border-radius: 0;
  background: linear-gradient(135deg, #120d0a 0%, #3d2515 44%, #f08a28 100%);
}


.hero-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}

.hero-banner-overlay {
  z-index: 0;
  background:
    linear-gradient(94deg, rgba(12, 8, 5, 0.9) 0%, rgba(20, 11, 6, 0.76) 30%, rgba(39, 21, 10, 0.32) 56%, rgba(246, 162, 70, 0.08) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 205, 145, 0.26) 0%, rgba(255, 205, 145, 0) 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-banner-glow {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.92;
}

.hero-banner-glow-left {
  left: -90px;
  bottom: 42px;
  width: clamp(180px, 26vw, 340px);
  height: clamp(180px, 26vw, 340px);
  background: radial-gradient(circle, rgba(255, 155, 52, 0.5) 0%, rgba(255, 155, 52, 0) 72%);
}

.hero-banner-glow-right {
  right: 16%;
  top: 42px;
  width: clamp(140px, 18vw, 260px);
  height: clamp(140px, 18vw, 260px);
  background: radial-gradient(circle, rgba(255, 236, 202, 0.34) 0%, rgba(255, 236, 202, 0) 74%);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  width: min(1380px, 100%);
  min-height: calc(var(--hero-banner-height, min(76vh, 720px)) - (clamp(24px, 4vw, 48px) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
}

.ff-market-hero .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  max-width: 760px;
}

.hero-spotlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-spotlight-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff5e8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(16px);
}

.ff-market-hero .kicker {
  color: #ECF2BB;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.ff-market-hero h1,
.ff-market-hero .hero-subtext {
  color: #ECF2BB;
}

.ff-market-hero h1 span {
  color: #ffd08a;
  text-shadow: 0 10px 24px rgba(255, 148, 48, 0.18);
}

.ff-market-hero .hero-subtext {
  max-width: 56ch;
  color: rgba(255, 246, 234, 0.86);
}

.hero-banner-card {
  align-self: end;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.22), rgba(255, 236, 210, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 54px rgba(9, 5, 2, 0.3);
  backdrop-filter: blur(20px);
}

.hero-banner-card h2,
.hero-banner-card p {
  margin: 0;
}

.hero-banner-card h2 {
  color: #fffaf3;
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  line-height: 1.05;
}

.hero-banner-card p {
  color: rgba(255, 246, 236, 0.88);
  line-height: 1.7;
}

.hero-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff4df;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-card-live-pill i {
  font-size: 0.55rem;
  color: #8ff0a4;
}

.hero-banner-shell [data-site-setting]:empty,
.hero-banner-shell .ff-market-banner-pills span:empty {
  display: none;
}

.hero-features-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-features-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 248, 238, 0.94);
  color: #342117;
  box-shadow: 0 14px 30px rgba(12, 6, 2, 0.12);
}

.hero-features-grid li i {
  margin-right: 0;
  color: #da6c14;
}

.ff-market-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  background: linear-gradient(135deg, #fff4df, #ffd292);
  color: #603103;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(255, 176, 70, 0.18);
}

.ff-market-banner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ff-market-banner-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ECF2BB;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-style-stack {
  display: grid;
  gap: 12px;
}

.hero-style-band {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(24, 14, 8, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-style-band span {
  color: #ffcf9c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-style-band strong {
  color: #fff9f3;
  font-size: 1rem;
  line-height: 1.35;
}

.hero-signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-signal-card {
  display: grid;
  gap: 6px;
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-signal-card strong {
  color: #fff6ed;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.hero-signal-card span {
  color: rgba(255, 242, 227, 0.8);
  font-size: 0.83rem;
  line-height: 1.45;
}

.ff-market-offer-mini span,
.ff-market-offer-card span {
  display: block;
  color: #0D0D0D;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ff-market-offer-mini strong,
.ff-market-offer-card strong {
  display: block;
  margin-top: 8px;
  color: #2b1d27;
  line-height: 1.4;
}

.ff-market-offer-mini p,
.ff-market-offer-card p {
  margin: 8px 0 0;
  color: #69606c;
  line-height: 1.6;
}

.ff-market-categories {
  margin-top: 24px;
}

.ff-market-categories .picks-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.ff-market-categories .pick-card {
  background: #fff;
  border: 1px solid rgba(201, 106, 22, 0.1);
  border-radius: 20px;
  padding: 18px 12px 16px;
  box-shadow: 0 14px 26px rgba(38, 28, 33, 0.05);
}

@media (min-width: 1280px) {
  .ff-market-categories .picks-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 10px;
  }

  .ff-market-categories .pick-card {
    padding: 14px 8px 12px;
    border-radius: 16px;
  }

  .ff-market-categories .pick-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .ff-market-categories .pick-card h4 {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .ff-market-categories .pick-card p {
    font-size: 0.72rem;
    line-height: 1.25;
  }
}

.ff-market-categories .pick-card p {
  margin: 6px 0 0;
  color: #7b7380;
  font-size: 0.82rem;
}

.ff-market-categories .pick-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ECF2BB 0%, #ECF2BB 100%);
  color: var(--brand-dark);
}

.ff-market-filter-strip {
  margin-top: 18px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(201, 106, 22, 0.1);
  box-shadow: 0 14px 26px rgba(38, 28, 33, 0.05);
}

.ff-market-filter-strip button {
  background: #fff7f0;
  color: #6b5867;
}

.ff-market-filter-strip button i {
  color: var(--brand);
}

.ff-market-filter-strip button.active {
  background: var(--brand);
}

.ff-market-offer-band {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--page-width);
  margin: 20px auto 0;
  padding: 0 var(--section-pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.ff-market-offer-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #ECF2BB 100%);
  border: 1px solid rgba(201, 106, 22, 0.12);
  box-shadow: 0 16px 30px rgba(38, 28, 33, 0.06);
}

.ff-market-offer-primary {
  background: linear-gradient(135deg, #0D0D0D 0%, #0D0D0D 100%);
  color: #fff;
}

.ff-market-offer-primary span,
.ff-market-offer-primary strong,
.ff-market-offer-primary p {
  color: #fff;
}

.ff-market-products {
  margin-top: 26px;
}

.ff-market-products .section-head {
  margin-bottom: 14px;
}

.ff-market-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.ff-market-products .product-card {
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(38, 28, 33, 0.08);
}

.ff-market-products .product-card h4 {
  margin: 12px 12px 6px;
  font-size: 0.96rem;
  line-height: 1.4;
}

.ff-market-products .product-card .price {
  margin: 0 12px 8px;
  font-size: 1rem;
  gap: 6px;
}

.ff-market-products .payment-note,
.ff-market-products .rating {
  margin-left: 12px;
  margin-right: 12px;
  font-size: 0.8rem;
}

.ff-market-products .add-cart-btn {
  width: calc(100% - 24px);
  margin: auto 12px 12px;
  border-radius: 12px;
  padding: 12px 12px;
  background: linear-gradient(135deg, #DFF24B 0%, #c3743f 100%);
  box-shadow: 0 12px 20px rgba(157, 47, 116, 0.2);
}

.ff-market-benefits {
  margin-top: 26px;
}

.ff-market-benefits .browse-card {
  border-radius: 20px;
  background: #fff;
  border-color: rgba(201, 106, 22, 0.1);
}

.ff-market-proof {
  margin-top: 28px;
}

.ff-market-homepage .cta-banner {
  background: linear-gradient(135deg, #ECF2BB 0%, #fff2e6 52%, #fff8ef 100%);
  border-color: rgba(201, 106, 22, 0.12);
}

.ff-market-homepage .cta-banner .kicker {
  color: #0D0D0D;
}

@media (max-width: 1180px) {
  .ff-market-hero {
    grid-template-columns: 1fr;
  }

  .ff-market-offer-band,
  .ff-market-categories .picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-banner-content {
    grid-template-columns: 1fr;
    align-items: end;
  }
}

@media (max-width: 900px) {

  .hero-features-grid,
  .hero-signal-row,
  .ff-market-offer-band,
  .ff-market-categories .picks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ff-market-homepage {
    display: flex;
    flex-direction: column;
  }

  .ff-market-homepage {
    overflow-x: clip;
  }

  .launch-strip {
    order: 1;
  }

  .service-status-banner {
    order: 2;
  }

  .best-sellers.ff-market-products {
    order: 3;
    margin-top: 18px;
  }

  .category-strip.ff-market-filter-strip {
    order: 4;
    margin-top: 14px;
  }

  .quick-picks.ff-market-categories {
    order: 5;
    margin-top: 18px;
  }

  .browse-rail.ff-market-benefits {
    order: 6;
  }

  .social-proof.ff-market-proof {
    order: 7;
  }

  .cta-banner {
    order: 8;
  }

  .ff-market-hero {
    display: none;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ff-market-offer-band,
  .hero-banner-content {
    grid-template-columns: 1fr;
  }

  .hero-banner-shell {
    min-height: max(540px, var(--hero-banner-height, 76vh));
    padding: 20px 16px;
  }

  .hero-banner-card h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .hero-spotlight-strip {
    gap: 8px;
  }

  .hero-spotlight-strip span {
    width: 100%;
    justify-content: center;
  }

  .ff-market-categories .picks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ff-market-products .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ff-market-products .section-head {
    margin-bottom: 10px;
  }

  .ff-market-products .section-label {
    color: #0D0D0D;
  }

  .ff-market-products h3 {
    position: relative;
  }

  .ff-market-products h3::after {
    /* content: "Mobile first edit"; */
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.1);
    color: #c35f0e;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
  }

  .ff-market-products .product-card img {
    aspect-ratio: 0.84;
  }

  .quick-panel {
    top: 92px;
    right: 12px;
    width: min(340px, calc(100% - 24px));
  }
}

@media (max-width: 680px) {
  .ff-market-homepage .launch-strip-track span {
    width: 100%;
  }

  .hero-features-grid,
  .hero-signal-row,
  .ff-market-offer-band,
  .hero-banner-content {
    grid-template-columns: 1fr;
  }

  .header-center {
    gap: 10px;
  }

  .pincode-top-wrap {
    display: block;
  }

  .hero-banner-shell {
    min-height: 500px;
    padding: 18px 14px;
  }

  .hero-banner-content {
    min-height: calc(var(--hero-banner-height, 500px) - 36px);
    align-items: end;
  }

  .hero-banner-card {
    border-radius: 22px;
  }

  .ff-market-main-banner img {
    min-height: 220px;
  }

  .ff-market-offer-mini,
  .ff-market-offer-card {
    border-radius: 18px;
  }

  .ff-market-categories .picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ff-market-categories .pick-card {
    padding: 14px 10px 12px;
    min-height: 100%;
  }

  .ff-market-categories .pick-card h4 {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .ff-market-categories .pick-card p {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .ff-market-categories .pick-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.3rem;
  }

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

  .ff-market-products .product-card img {
    aspect-ratio: 0.8;
  }

  .ff-market-products .product-card h4 {
    font-size: 0.84rem;
  }

  .ff-market-products .product-card .price {
    font-size: 0.88rem;
    flex-wrap: wrap;
  }

  .ff-market-products .add-cart-btn {
    padding: 10px 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .ff-market-categories .picks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ff-market-categories .pick-card {
    padding: 12px 8px 10px;
    border-radius: 16px;
  }

  .ff-market-categories .pick-card h4 {
    font-size: 0.82rem;
  }

  .ff-market-categories .pick-card p {
    font-size: 0.7rem;
  }

  .ff-market-categories .pick-icon {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }

  .search-wrap {
    min-height: 44px;
  }

  .search-wrap input {
    font-size: 0.88rem;
  }

  .hero-features-grid li {
    font-size: 0.84rem;
    padding: 10px 12px;
  }

  .ff-market-banner-copy {
    padding: 16px 14px 8px;
  }

  .ff-market-banner-pills {
    gap: 6px;
  }

  .ff-market-banner-pills span {
    font-size: 0.76rem;
    padding: 7px 9px;
  }

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

  .ff-market-products .product-card .price .old {
    font-size: 0.76rem;
  }

  .ff-market-products .payment-note,
  .ff-market-products .rating {
    font-size: 0.74rem;
  }
}

@media (max-width: 380px) {
  .navbar {
    gap: 6px 8px;
  }

  .launch-strip {
    padding-left: 10px;
    padding-right: 10px;
  }

  .launch-strip-track {
    padding: 10px;
  }

  .ff-market-categories .picks-grid,
  .ff-market-products .products-grid {
    grid-template-columns: 1fr;
  }

  .ff-market-categories .pick-card,
  .ff-market-offer-card,
  .ff-market-offer-mini {
    border-radius: 16px;
  }

  .ff-market-products .product-card h4 {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 0.9rem;
  }

  .ff-market-products .product-card .price,
  .ff-market-products .payment-note,
  .ff-market-products .rating {
    font-size: 0.82rem;
  }

  .mobile-bottom-nav {
    left: 6px;
    right: 6px;
    bottom: 6px;
  }
}

.info-page-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 223, 190, 0.92) 0%, rgba(255, 223, 190, 0) 24%),
    radial-gradient(circle at 92% 8%, rgba(193, 214, 237, 0.72) 0%, rgba(193, 214, 237, 0) 22%),
    linear-gradient(180deg, #FFFFFF 0%, #f7f1ea 52%, #f2ece5 100%);
}

.info-page-shell {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

/* FlashFit mobile responsiveness and search UX hardening */
* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.navbar,
.header-center,
.search-wrap,
.products-grid,
.category-strip,
.mobile-bottom-nav {
  min-width: 0;
}

.search-wrap {
  isolation: isolate;
}

.search-suggest {
  max-height: min(360px, 62vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.search-suggest button {
  min-height: 44px;
  text-align: left;
  line-height: 1.25;
}

.category-strip.ff-market-filter-strip {
  scrollbar-width: none;
}

.category-strip.ff-market-filter-strip::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  min-height: 40px;
  white-space: nowrap;
}

.product-card {
  min-width: 0;
}

/* Display-only polish: marketplace cards and product detail readability */
.products-grid {
  align-items: stretch;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eef1f5;
}

.product-card img {
  background: linear-gradient(135deg, #f8fafc, #fff7ed);
}

.product-card .sale-ribbon {
  box-shadow: 0 8px 20px rgba(255, 90, 0, 0.2);
}

.product-card .add-cart-btn {
  width: calc(100% - 24px);
  margin: 0 12px 14px;
}

.product-page {
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.72), rgba(255, 255, 255, 0) 340px),
    #f8fafc;
}

.product-page-layout,
.section-block {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #edf0f5;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.product-gallery,
.detail-panel {
  min-width: 0;
}

.detail-panel h1 {
  line-height: 1.08;
}

.detail-chips span,
.detail-facts article {
  border-color: #edf0f5;
}

@media (max-width: 720px) {

  .product-page-layout,
  .section-block {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .product-card .add-cart-btn {
    width: calc(100% - 18px);
    margin: 0 9px 10px;
  }
}

.product-card h4,
.product-card .price,
.product-card .rating,
.product-card .payment-note {
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 132px;
  }

  .navbar {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
  }

  .logo img {
    max-width: 86px;
    height: auto;
  }

  .header-center {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .pincode-top-wrap {
    width: 100%;
  }

  .pincode-top-btn {
    width: 100%;
    justify-content: center;
  }

  .search-wrap {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
  }

  .search-wrap input {
    width: 100%;
    font-size: 0.94rem;
  }

  .search-suggest {
    left: 0;
    right: 0;
    width: 100%;
    top: calc(100% + 8px);
    border-radius: 14px;
    z-index: 1400;
  }

  .nav-icons {
    gap: 6px;
  }

  .nav-action-btn,
  #profileBtn,
  .mobile-search-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
  }

  .nav-btn-label {
    display: none;
  }

  .category-strip.ff-market-filter-strip {
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 12px;
    margin-inline: 0;
    scroll-snap-type: x proximity;
  }

  .category-strip.ff-market-filter-strip .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .best-sellers.ff-market-products,
  .browse-rail,
  .social-proof,
  .cta-banner,
  .site-footer {
    width: min(100% - 20px, 1180px);
    margin-left: auto;
    margin-right: auto;
  }

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

  .ff-market-products .product-card {
    border-radius: 14px;
  }

  .ff-market-products .product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 0.78;
    object-fit: cover;
  }

  .ff-market-products .product-card h4 {
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .ff-market-products .add-cart-btn {
    min-height: 40px;
    width: 100%;
  }

  .mobile-bottom-nav {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: calc(100% - 20px);
  }

  .ai-widget {
    right: 12px;
    bottom: 92px;
  }
}

@media (max-width: 420px) {
  .ff-market-products .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ff-market-products .product-card {
    padding: 8px;
  }

  .ff-market-products .product-card h4 {
    font-size: 0.82rem;
  }

  .ff-market-products .product-card .price,
  .ff-market-products .payment-note,
  .ff-market-products .rating {
    font-size: 0.74rem;
  }

  .mobile-nav-item span {
    font-size: 0.66rem;
  }
}

.info-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.info-top-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.info-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0D0D0D;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 106, 22, 0.14);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(32, 23, 14, 0.05);
}

.info-link-pill-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  box-shadow: 0 14px 28px rgba(201, 106, 22, 0.22);
}

.info-hero,
.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 248, 241, 0.98) 100%);
  border: 1px solid rgba(201, 106, 22, 0.12);
  border-radius: 30px;
  box-shadow: 0 22px 48px rgba(32, 23, 14, 0.08);
}

.info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 22px;
  overflow: hidden;
}

.info-eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ECF2BB;
  border: 1px solid #ECF2BB;
  color: #0D0D0D;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.info-lead {
  margin: 16px 0 0;
  max-width: 68ch;
  color: #596273;
  font-size: 1rem;
  line-height: 1.75;
}

.info-hero-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

.info-mini-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 249, 242, 0.98);
  border: 1px solid rgba(201, 106, 22, 0.12);
}

.info-mini-card span {
  display: block;
  margin-bottom: 6px;
  color: #0D0D0D;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-mini-card strong,
.info-mini-card a {
  color: #24324d;
  line-height: 1.5;
  text-decoration: none;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 20px;
  align-items: start;
}

.info-card {
  padding: 24px;
}

.info-card+.info-card {
  margin-top: 16px;
}

.info-article>*:first-child,
.info-sidebar>*:first-child {
  margin-top: 0;
}

.info-article h2,
.info-article h3 {
  margin: 22px 0 10px;
  color: #1f2b43;
  line-height: 1.2;
}

.info-article p,
.info-article li {
  color: #586273;
  line-height: 1.72;
}

.info-article p {
  margin: 0 0 12px;
}

.info-article ul,
.info-article ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

.info-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.info-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #ECF2BB;
  border: 1px solid #ECF2BB;
  color: #0D0D0D;
  font-size: 0.9rem;
  font-weight: 700;
}

.info-support-list,
.info-policy-links {
  display: grid;
  gap: 12px;
}

.info-support-item,
.info-policy-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  background: #ECF2BB;
  border: 1px solid rgba(201, 106, 22, 0.12);
  color: #2a3550;
}

.info-support-item span,
.info-policy-links a span {
  display: block;
  margin-bottom: 4px;
  color: #0D0D0D;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-support-item strong,
.info-policy-links a strong {
  line-height: 1.5;
}

.info-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.info-highlight-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #ECF2BB 100%);
  border: 1px solid rgba(201, 106, 22, 0.12);
}

.info-highlight-card i {
  color: var(--brand);
  font-size: 1.1rem;
}

.info-highlight-card h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
}

.info-highlight-card p {
  margin: 0;
}

.info-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ECF2BB 0%, #fffdfa 100%);
  border: 1px solid #ECF2BB;
  color: #6a4c2f;
}

.info-note strong {
  color: #1f2b43;
}

/* Customer storefront: final layout layer. Keeps existing IDs and interaction hooks intact. */
body.ff-customer {
  background: #FAFAFA;
  color: #0D0D0D;
}

body.ff-customer .ff-announcement {
  min-height: 32px;
  padding: 7px 16px;
  background: #111;
  color: #fff;
  font-size: .76rem;
  letter-spacing: .01em;
}

body.ff-customer .navbar {
  height: 72px;
  padding: 0 clamp(16px, 3vw, 48px);
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  background: #fff;
  border-bottom: 1px solid #E0E0E0;
  box-shadow: none;
}

body.ff-customer .logo img {
  width: 94px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
}

body.ff-customer .header-center {
  display: flex;
  min-width: 0;
  gap: 10px;
}

body.ff-customer .pincode-top-btn {
  min-width: 154px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid #DFF24B;
  border-radius: 10px;
  background: #FFFFFF;
  color: #0D0D0D;
  box-shadow: none;
}

body.ff-customer .search-wrap {
  height: 46px;
  max-width: none;
  border: 1px solid #dedede;
  border-radius: 10px;
  box-shadow: none;
  background: #fff;
}

body.ff-customer .search-wrap:focus-within {
  border-color: #DFF24B;
  box-shadow: 0 0 0 3px rgba(223, 242, 75, .28);
}

body.ff-customer .nav-icons {
  gap: 8px;
}

body.ff-customer .nav-icons button,
body.ff-customer .nav-icons label {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  background: #fff;
}

body.ff-customer .nav-cart-btn {
  width: auto !important;
  min-width: 74px !important;
  padding: 0 12px !important;
  border-color: #DFF24B !important;
  background: #DFF24B !important;
  color: #0D0D0D !important;
}

body.ff-customer .cart-count {
  position: static;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: #0D0D0D;
  color: #FFFFFF;
  border-radius: 999px;
  font-size: .7rem;
}

.customer-nav {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 clamp(16px, 3vw, 48px);
  background: #fff;
  border-bottom: 1px solid #E0E0E0;
  overflow-x: auto;
  scrollbar-width: none;
}

.customer-nav::-webkit-scrollbar {
  display: none;
}

.customer-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 11px;
  color: #444;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
  border-radius: 7px;
}

.customer-nav a:hover,
.customer-nav a:focus-visible {
  color: #0D0D0D;
  background: #ECF2BB;
}

.customer-nav__all {
  color: #0D0D0D !important;
  background: #DFF24B;
}

.customer-nav__help {
  margin-left: auto;
}

.customer-homepage {
  width: 100%;
  overflow: hidden;
}

.customer-hero {
  width: min(1280px, calc(100% - 32px));
  min-height: 440px !important;
  margin: 24px auto 0;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  border-radius: 18px !important;
  background: #F2F2F2;
}

.customer-hero .hero-banner-media {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  padding: 14px 14px 14px 0;
  border-radius: 0 18px 18px 0;
}

.customer-hero::after {
  content: none !important;
  display: none !important;
}

.customer-hero .ff-hero-copy {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  align-self: center;
  width: auto;
  margin: 0;
  padding: clamp(30px, 5vw, 72px);
  color: #0D0D0D;
  animation: none;
}

.customer-hero .ff-hero-copy h1 {
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  color: #0D0D0D;
}

.customer-hero .ff-hero-copy h1 span {
  color: #0D0D0D;
}

.customer-hero .ff-hero-copy p {
  margin: 16px 0 24px;
  max-width: 43ch;
  font-size: 1rem;
  line-height: 1.6;
  color: #4D4D4D;
}

.customer-hero .ff-badge {
  background: #DFF24B;
  color: #0D0D0D;
  border-radius: 7px;
  padding: 7px 10px;
  margin-bottom: 16px;
}

.customer-hero .shop-btn {
  min-height: 46px;
  border-radius: 9px;
  background: #DFF24B;
  border-color: #DFF24B;
}

.customer-hero .ff-btn-secondary {
  min-height: 46px;
  border-radius: 9px;
}

.service-status-banner {
  width: min(1280px, calc(100% - 32px));
  min-height: 0;
  margin: 14px auto 0;
}

.customer-category-rail {
  width: min(1280px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: center;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.customer-category-rail::-webkit-scrollbar {
  display: none;
}

.customer-category-rail .filter-btn {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #E0E0E0;
  border-radius: 9px;
  color: #3f3f3f;
  background: #fff;
  font-weight: 700;
  box-shadow: none;
}

.customer-category-rail .filter-btn.active {
  color: #fff;
  background: #DFF24B;
  border-color: #DFF24B;
}

.customer-products {
  width: min(1280px, calc(100% - 32px));
  margin: 42px auto !important;
}

.customer-products .section-head {
  margin-bottom: 18px;
}

.customer-products .section-label {
  color: #DFF24B;
  font-size: .75rem;
  letter-spacing: .11em;
}

.customer-products h3 {
  color: #111;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

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

.customer-products .product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  box-shadow: none;
  background: #FFFFFF;
}

.customer-products .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
}

.customer-products .product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  background: #F2F2F2;
}

.customer-products .sale-ribbon {
  top: 10px;
  left: 10px;
  border-radius: 6px;
  background: #0D0D0D;
  box-shadow: none;
}

.customer-products .product-card h4 {
  margin: 13px 13px 4px;
  min-height: 2.6em;
  color: #0D0D0D;
  font-size: .94rem;
  line-height: 1.35;
}

.customer-products .product-meta {
  margin: 0 13px 7px;
  color: #666;
  font-size: .78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-products .price {
  margin: 0 13px 8px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
}

.customer-products .price .new {
  color: #0D0D0D;
  font-size: 1.05rem;
  font-weight: 800;
}

.customer-products .price .old {
  color: #888;
  font-size: .78rem;
}

.customer-products .rating,
.customer-products .payment-note {
  margin: 0 13px 7px;
  color: #666;
  font-size: .76rem;
}

.customer-products .rating i {
  color: #0D0D0D;
}

.customer-products .add-cart-btn {
  margin: auto 13px 13px;
  width: calc(100% - 26px);
  min-height: 42px;
  border-radius: 8px;
  background: #DFF24B;
  color: #0D0D0D;
  box-shadow: none;
  font-weight: 800;
}

.customer-products .add-cart-btn:hover {
  background: #E4F277;
}

.customer-benefits {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.customer-benefits .browse-card {
  min-height: 116px;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  box-shadow: none;
  background: #FFFFFF;
}

.customer-benefits .browse-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ECF2BB;
  color: #0D0D0D;
}

.customer-proof,
.customer-homepage .cta-banner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 42px;
}

.customer-proof .proof-card {
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  box-shadow: none;
}

.customer-proof .proof-stars {
  color: #0D0D0D;
}

@media (max-width:1024px) {
  .customer-products .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:768px) {
  body.ff-customer {
    padding-bottom: 78px;
  }

  body.ff-customer .ff-announcement {
    display: none;
  }

  body.ff-customer .navbar {
    height: auto;
    padding: 10px 16px 12px;
    gap: 9px;
    grid-template-columns: auto 1fr auto;
  }

  body.ff-customer .logo img {
    width: 76px;
    height: 38px;
  }

  body.ff-customer .header-center {
    grid-column: 1 / -1;
    grid-row: 2;
    display: block;
  }

  body.ff-customer .pincode-top-wrap {
    position: absolute;
    top: 10px;
    left: 102px;
    width: calc(100% - 224px);
  }

  body.ff-customer .pincode-top-btn {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 8px;
    font-size: .78rem;
    background: transparent;
    border-color: transparent;
  }

  body.ff-customer .pincode-top-btn i:last-child {
    display: none;
  }

  body.ff-customer .search-wrap {
    height: 46px;
  }

  body.ff-customer .nav-icons {
    gap: 6px;
  }

  body.ff-customer #menuBtn,
  body.ff-customer #mobileSearchBtn {
    display: none !important;
  }

  body.ff-customer .nav-cart-btn {
    width: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
  }

  body.ff-customer .nav-btn-label {
    display: none;
  }

  .customer-nav {
    height: 43px;
    padding: 0 16px;
  }

  .customer-nav__help {
    margin-left: 0;
  }

  .customer-hero {
    width: 100%;
    min-height: 0 !important;
    margin: 0;
    display: flex !important;
    flex-direction: column;
    border-width: 0 0 1px;
    border-radius: 0 !important;
    background: #F2F2F2;
  }

  .customer-hero .ff-hero-copy {
    order: 1;
    width: 100%;
    margin: 0;
    padding: 32px 16px 26px;
  }

  .customer-hero .hero-banner-media {
    order: 2;
    width: calc(100% - 32px);
    min-height: 260px;
    max-height: 340px;
    margin: 0 16px 20px;
    padding: 0;
    border-radius: 12px;
  }

  .customer-hero .ff-hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .customer-hero .ff-hero-copy p {
    margin: 11px 0 18px;
    font-size: .92rem;
  }

  .customer-hero .ff-hero-actions {
    gap: 9px;
  }

  .customer-hero .ff-hero-actions>* {
    flex: 1;
  }

  .service-status-banner,
  .customer-category-rail,
  .customer-products,
  .customer-benefits,
  .customer-proof,
  .customer-homepage .cta-banner {
    width: calc(100% - 32px);
  }

  .customer-category-rail {
    margin-top: 14px;
  }

  .customer-products {
    margin: 30px auto;
  }

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

  .customer-products .product-card h4 {
    margin: 10px 10px 3px;
    font-size: .84rem;
  }

  .customer-products .product-meta,
  .customer-products .price,
  .customer-products .rating,
  .customer-products .payment-note {
    margin-left: 10px;
    margin-right: 10px;
  }

  .customer-products .payment-note {
    display: none;
  }

  .customer-products .add-cart-btn {
    width: calc(100% - 20px);
    margin: auto 10px 10px;
  }

  .customer-benefits {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .customer-benefits .browse-card {
    flex: 0 0 250px;
  }

  .customer-proof {
    display: none;
  }
}

@media (max-width:380px) {
  body.ff-customer .pincode-top-wrap {
    left: 88px;
    width: calc(100% - 196px);
  }

  .customer-hero .ff-hero-copy h1 {
    font-size: 2rem;
  }

  .customer-hero .ff-hero-actions {
    flex-direction: column;
  }

  .customer-hero .ff-hero-actions>* {
    width: 100%;
  }

  .customer-products .rating {
    font-size: .7rem;
  }
}

/* Keep utility controls available without competing with shopping actions. */
body.ff-customer .delivery-pill {
  left: 14px;
  bottom: 88px;
  z-index: 80;
  max-width: min(300px, calc(100vw - 92px));
  padding: 8px 10px;
  border: 1px solid #E0E0E0;
  border-radius: 9px;
  background: #FFFFFF;
  color: #0D0D0D;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
  font-size: .76rem;
}

body.ff-customer .ai-widget {
  right: 14px;
  bottom: 88px;
  z-index: 81;
}

body.ff-customer .ai-toggle-btn {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid #DFF24B;
  border-radius: 9px;
  background: #DFF24B;
  color: #0D0D0D;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
  font-size: .8rem;
}

body.ff-customer .ai-toggle-btn:hover {
  transform: translateY(-1px);
  background: #E4F277;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

@media (max-width:768px) {
  body.ff-customer .delivery-pill {
    bottom: 76px;
    left: 10px;
    max-width: calc(100vw - 132px);
  }

  body.ff-customer .ai-widget {
    right: 10px;
    bottom: 76px;
  }

  body.ff-customer .ai-toggle-btn {
    width: 42px;
    min-width: 42px;
    padding: 0;
    justify-content: center;
  }

  body.ff-customer .ai-toggle-btn {
    font-size: 0;
  }

  body.ff-customer .ai-toggle-btn i {
    margin: 0;
    font-size: .95rem;
  }
}

@media (max-width: 980px) {

  .info-hero,
  .info-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .info-page-shell {
    width: min(100%, calc(100% - 16px));
    padding-top: 14px;
    padding-bottom: 30px;
  }

  .info-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .info-top-actions {
    justify-content: stretch;
  }

  .info-top-actions>* {
    flex: 1 1 100%;
    justify-content: center;
  }

  .info-hero,
  .info-card {
    border-radius: 22px;
  }

  .info-card {
    padding: 18px;
  }

  .info-highlight-grid {
    grid-template-columns: 1fr;
  }

  .info-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }
}