/* ===================================================
   JONACART - Design tokens
   Palette: warm cream + deep plum/berry + marigold amber (premium Indian gifting)
=================================================== */
:root {
  --color-bg: #faf7f4;
  --color-surface: #ffffff;
  --color-surface-alt: #f6ede7;
  --color-primary: #7a2048;
  --color-primary-dark: #591634;
  --color-primary-tint: rgba(122, 32, 72, 0.08);
  --color-accent: #d98f2b;
  --color-accent-dark: #b3721c;
  --color-accent-tint: rgba(217, 143, 43, 0.12);
  --color-sale: #c0392b;
  --color-text: #26181e;
  --color-muted: #83737a;
  --color-border: #ece1db;
  --color-footer: #1d1017;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", Arial, sans-serif;

  --radius: 16px;
  --radius-sm: 11px;
  --radius-pill: 999px;
  --shadow: 0 4px 22px rgba(38, 24, 30, 0.08);
  --shadow-lift: 0 14px 32px rgba(38, 24, 30, 0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0 0 0.4em; }
button { font-family: var(--font-body); cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 rgba(38, 24, 30, 0.04), 0 8px 24px rgba(38, 24, 30, 0.04);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
  flex-wrap: nowrap;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo .brand-logo,
.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.footer-logo {
  max-height: 80px;
  margin-bottom: 12px;
}
nav.main-nav { display: flex; gap: 16px; flex-wrap: wrap; }
nav.main-nav a {
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
nav.main-nav a:hover { color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.account-pill {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.account-pill:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-tint); }
.cart-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cart-icon-btn:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.cart-qty-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  box-sizing: border-box;
}
.wishlist-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.wishlist-icon-btn:hover { border-color: var(--color-primary); transform: translateY(-1px); }
.search-wrap {
  position: relative;
  flex: 1;
  max-width: 440px;
  min-width: 0;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  z-index: 1;
}
.search-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 11px 92px 11px 42px;
  font-size: 14px;
  background: var(--color-surface-alt);
  min-width: 0;
  width: 100%;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.search-box::placeholder {
  color: var(--color-muted);
}
.search-box:hover {
  border-color: #d9cbc3;
  background: #fff;
}
.search-box:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-tint);
}
.search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.search-submit:hover {
  background: var(--color-primary-dark);
}
.profile-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  border-radius: 12px;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.profile-link:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-tint); }
.profile-label { max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-drawer { display: none; }
.search-wrap-mobile { width: 100%; max-width: none; margin-bottom: 16px; }

.store-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.store-main { flex: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 760px);
  display: grid;
  grid-template-rows: 1fr auto;
  color: #fff;
  overflow: hidden;
  background: #1a1016;
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-visual-img,
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
  animation: heroFadeIn 0.7s ease both, heroDrift 12s ease-out forwards;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 10, 16, 0.92) 0%, rgba(20, 10, 16, 0.72) 38%, rgba(20, 10, 16, 0.28) 68%, rgba(20, 10, 16, 0.45) 100%),
    linear-gradient(180deg, rgba(20, 10, 16, 0.15) 0%, rgba(20, 10, 16, 0.55) 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  max-width: 560px;
  padding: clamp(40px, 8vh, 72px) clamp(20px, 5vw, 56px) 28px;
  animation: heroRise 0.85s ease both;
}
.hero-brand {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  animation: heroRise 0.85s ease 0.05s both;
}
.hero-brand-logo {
  margin: 0 0 18px;
  max-height: 96px;
  width: auto;
  animation: heroRise 0.85s ease 0.05s both;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 550;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f7f0ea;
  text-transform: none;
  animation: heroRise 0.85s ease 0.12s both;
}
.hero h1 .accent { color: #f0b45a; }
.hero-lead {
  margin: 16px 0 0;
  max-width: 34ch;
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  line-height: 1.55;
  color: rgba(247, 240, 234, 0.88);
  font-family: var(--font-body);
  animation: heroRise 0.85s ease 0.18s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  animation: heroRise 0.85s ease 0.24s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  min-height: 48px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  box-shadow: 0 4px 0 rgba(38, 24, 30, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 0 rgba(38, 24, 30, 0.14); }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(38, 24, 30, 0.12); }
.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-block { width: 100%; }
.btn-accent { background: var(--color-primary); color: #fff; border-color: var(--color-primary-dark); }
.btn-accent:hover { background: var(--color-primary-dark); }
.btn-outline {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: 0 3px 0 rgba(38, 24, 30, 0.08);
}
.btn-outline:hover { background: var(--color-surface-alt); border-color: var(--color-primary); color: var(--color-primary); }
.hero .hero-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.hero .hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  box-shadow: none;
}

.hero-feature {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 clamp(16px, 4vw, 40px) clamp(16px, 3vh, 28px);
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(16, 8, 12, 0.55);
  backdrop-filter: blur(12px);
  animation: heroRise 0.9s ease 0.3s both;
}
.hero-feature-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 10px 14px;
  min-width: 0;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.hero-feature-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0b45a;
}
.hero-feature-name {
  min-width: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-feature-price {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.hero-feature-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hero-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}
.hero-dots button.active {
  width: 18px;
  border-radius: 999px;
  background: #fff;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroDrift {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero {
    min-height: min(78vh, 640px);
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(20, 10, 16, 0.35) 0%, rgba(20, 10, 16, 0.78) 48%, rgba(20, 10, 16, 0.94) 100%),
      linear-gradient(90deg, rgba(20, 10, 16, 0.5) 0%, transparent 70%);
  }
  .hero-copy {
    justify-content: flex-end;
    max-width: none;
    padding-bottom: 12px;
  }
  .hero-feature {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    min-height: 100svh;
    max-height: none;
  }
  .hero-visual-img,
  .hero-visual img {
    object-position: center 25%;
  }
  .hero-copy {
    padding: 28px 18px 10px;
  }
  .hero-brand {
    font-size: clamp(32px, 11vw, 44px);
  }
  .hero h1 {
    font-size: clamp(24px, 7.5vw, 32px);
  }
  .hero-lead {
    max-width: none;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: calc(50% - 6px);
    padding-inline: 16px;
  }
  .hero-feature {
    margin: 0 14px 14px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-feature-link {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "label price"
      "name name";
  }
  .hero-feature-label { grid-area: label; }
  .hero-feature-price { grid-area: price; }
  .hero-feature-name {
    grid-area: name;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .hero-feature-nav {
    justify-content: space-between;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual-img,
  .hero-visual img,
  .hero-copy,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-feature {
    animation: none;
  }
}

/* ---------- Section heading ---------- */
.section { padding: 56px 24px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 26px; flex-wrap: wrap; gap: 14px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--color-accent-dark);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--color-accent);
}
.section-head h2 { font-size: 26px; margin: 0; }
.section-head a { font-size: 13.5px; font-weight: 600; color: var(--color-primary); }

/* ---------- Category chips ---------- */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover, .chip.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ---------- Top carry category cards ---------- */
.category-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card { display: block; text-align: center; }
.category-card .cc-thumb {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card .cc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-card:hover .cc-thumb { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.category-card .cc-name { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--color-muted); letter-spacing: 0.4px; }
.category-card:hover .cc-name { color: var(--color-primary); }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--color-primary); }
.product-card .thumb { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--color-surface-alt); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .thumb img { transform: scale(1.06); }
.badge-sale {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-accent); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 5px 10px; border-radius: var(--radius-sm);
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(217, 143, 43, 0.35);
}
.product-card .info { padding: 15px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; border-top: 1px solid var(--color-border); }
.product-card .brand { font-size: 11.5px; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.product-card .name { font-size: 14.5px; font-weight: 700; font-family: var(--font-body); text-transform: none; margin: 0; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.price-now { font-weight: 800; font-size: 16.5px; color: var(--color-primary-dark); }
.price-old { font-size: 13px; color: var(--color-muted); text-decoration: line-through; }
.add-btn {
  margin-top: 10px;
  width: 100%;
  min-height: 44px;
  background: var(--color-surface);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 3px 0 rgba(122, 32, 72, 0.15);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.add-btn:hover { background: var(--color-primary); color: #fff; transform: translateY(-1px); }
.add-btn.added, .add-btn.in-cart {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent-dark);
  box-shadow: 0 3px 0 rgba(179, 114, 28, 0.25);
}
.add-btn.added:hover, .add-btn.in-cart:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.btn.btn-accent.added { background: var(--color-accent); color: #fff; border-color: var(--color-accent-dark); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-footer);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
  margin-top: 40px;
}
.cta-band .eyebrow { color: var(--color-accent); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.cta-band h2 { font-size: 30px; max-width: 800px; margin: 10px auto 24px; }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); box-shadow: none; }
.cta-band .btn-outline:hover { background: #fff; color: var(--color-text); border-color: #fff; }

/* ---------- Footer ---------- */
footer.site-footer {
  margin-top: auto;
  background: var(--color-surface);
  color: var(--color-text);
  border-top: 2px solid var(--color-primary);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 0 36px;
  background: transparent;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand-copy {
  max-width: 520px;
}
.footer-wordmark {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-text);
}
.footer-brand-copy .brand-logo {
  display: block;
  margin: 0 0 12px;
}
.footer-tagline {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 440px;
}
.footer-shop-cta {
  flex-shrink: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 36px 0;
}
.footer-col h4 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-muted);
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--color-primary);
}
.footer-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-alt);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.footer-contact-item {
  min-width: 0;
}
.footer-contact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.footer-contact-item a,
.footer-contact-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text);
  text-transform: none;
}
.footer-contact-item a:hover {
  color: var(--color-primary);
}
.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 18px 0 28px;
  font-size: 12.5px;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 0 28px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 28px 0;
  }
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-legal {
    flex-direction: column;
  }
}

/* ---------- Product detail page ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 50px 24px; max-width: 1100px; margin: 0 auto; }
.product-detail .thumb-large { border-radius: 14px; overflow: hidden; aspect-ratio: 1/1; background: var(--color-surface-alt); }
.product-detail .thumb-large img { width: 100%; height: 100%; object-fit: cover; }
.product-detail h1 { font-size: 26px; text-transform: none; font-family: var(--font-body); font-weight: 800; }
.product-detail .pd-price { font-size: 26px; font-weight: 800; color: var(--color-text); margin: 14px 0; }
.qty-row { display: flex; align-items: center; gap: 14px; margin: 20px 0; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: 999px; }
.qty-box button { border: none; background: none; width: 36px; height: 36px; font-size: 18px; }
.qty-box span { width: 30px; text-align: center; }

/* ---------- Product page (single product) ---------- */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px;
}
.product-gallery {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--color-surface-alt);
}
.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info .brand {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.product-info h1 {
  font-size: 26px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: 4px;
}
.product-desc {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 18px 0;
}
@media (max-width: 760px) {
  .product-page { grid-template-columns: 1fr; gap: 24px; padding: 30px 18px; }
}

/* ---------- Cart / Checkout ---------- */
.cart-page { max-width: 900px; margin: 0 auto; padding: 50px 24px; }
.cart-page h2 { font-size: 26px; }
.cart-item { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--color-border); }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; background: var(--color-surface-alt); }
.cart-item .grow { flex: 1; }
.cart-summary { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px; margin-top: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-muted); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 50px;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-surface-alt);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-muted); }
.form-group input:hover, .form-group textarea:hover {
  border-color: #d9cbc3;
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-tint);
  background: #fff;
}
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  box-shadow: 0 0 0 1000px var(--color-surface-alt) inset;
  transition: background-color 9999s ease-in-out 0s;
}

/* ---------- Account page ---------- */
.account-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.auth-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-lift);
}
.auth-card-eyebrow {
  margin: 0 0 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.account-page h2,
.auth-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 600;
  text-align: center;
  text-transform: none;
  letter-spacing: -0.02em;
}
.auth-card-sub {
  margin: 10px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}
.auth-card-title {
  margin: 8px 0 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: none;
}
.account-tabs {
  display: flex;
  gap: 6px;
  margin: 26px 0 22px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px;
}
.account-tabs button {
  flex: 1;
  padding: 12px 10px;
  min-height: 44px;
  border: none;
  background: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-muted);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.account-tabs button.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 0 var(--color-primary-dark);
}
.account-error { color: var(--color-sale); font-size: 13.5px; margin-top: 12px; display: block; text-align: center; }
.account-note { color: var(--color-muted); font-size: 13.5px; text-align: center; margin: 10px 0 18px; }
.order-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.order-card .order-head { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 8px; }
.status-tag { font-size: 11.5px; font-weight: 800; padding: 3px 10px; border-radius: var(--radius-sm); text-transform: uppercase; }
.status-tag.Pending { background: #f7e6c4; color: #8a6116; }
.status-tag.Shipped { background: #cfe6f3; color: #1c5c7a; }
.status-tag.Delivered { background: #cdeadb; color: #1c6b41; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .search-wrap-desktop { max-width: 240px; }
  .search-wrap-desktop .search-box { min-width: 0; }
  nav.main-nav-desktop { gap: 12px; }
  nav.main-nav-desktop a { font-size: 12px; }
}
@media (max-width: 960px) {
  .category-cards { grid-template-columns: repeat(3, 1fr); }
  .search-wrap-desktop { display: none; }
  nav.main-nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .logo .brand-logo { max-height: 56px; }
  .hero-brand-logo { max-height: 72px; }
  .mobile-nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
  }
  .mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(20, 24, 26, 0.45);
    cursor: pointer;
  }
  .mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--color-surface);
    padding: 72px 20px 24px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
  }
  .main-nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .main-nav-mobile a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
  }
  .main-nav-mobile a:hover { color: var(--color-primary); }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .about-split,
  .about-split.reverse { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .category-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .profile-label { display: none; }
  .profile-link { padding: 8px 10px; }
}

/* ---------- Auth modal ---------- */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 24, 26, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.auth-modal {
  position: relative;
  background: var(--color-surface);
  border-radius: 20px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lift);
}
.auth-modal h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: -0.02em;
}
.auth-modal-msg { color: var(--color-muted); font-size: 14px; text-align: center; margin-bottom: 20px; line-height: 1.5; }
.auth-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-surface-alt);
  font-size: 20px;
  line-height: 1;
  color: var(--color-muted);
  cursor: pointer;
}
.auth-modal-error { color: var(--color-sale); font-size: 13.5px; margin-top: 12px; text-align: center; }
.auth-modal-info { color: var(--color-primary-dark); font-size: 13.5px; margin-top: 12px; text-align: center; }
.otp-input { text-align: center; letter-spacing: 10px; font-size: 22px; font-weight: 700; }
.auth-modal-otp-actions { display: flex; justify-content: space-between; margin-top: 16px; gap: 12px; }
.auth-modal-link {
  border: none; background: none; padding: 0; font-size: 13px; font-weight: 700;
  color: var(--color-primary); cursor: pointer; text-decoration: underline;
}
.auth-modal-link:disabled { color: var(--color-muted); cursor: default; text-decoration: none; }

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
}
.qty-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(38, 24, 30, 0.06);
}
.qty-stepper button {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--color-surface-alt);
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.qty-stepper button:hover {
  background: var(--color-primary);
  color: #fff;
}
.qty-stepper span {
  min-width: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}
.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}
.cart-item-side { text-align: right; }
.cart-item-total { font-weight: 800; font-size: 16px; margin-bottom: 10px; }
.remove-btn {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13px;
}
.cart-summary .btn { margin-top: 16px; }
.checkout-locked { pointer-events: none; opacity: 0.45; filter: blur(1px); }

/* ---------- Payment options ---------- */
.payment-options { margin-top: 12px; }
.payment-options-title { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; color: var(--color-text); }
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.payment-option:hover { border-color: var(--color-primary); background: var(--color-primary-tint); }
.payment-option.disabled { opacity: 0.65; cursor: not-allowed; }
.payment-option.disabled:hover { border-color: var(--color-border); background: none; }
.payment-option strong { display: block; font-size: 14px; }
.payment-option small { display: block; color: var(--color-muted); font-size: 12px; margin-top: 2px; }

/* ---------- Contact / Policy / Profile ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}
.contact-card p { color: var(--color-muted); font-size: 14px; line-height: 1.6; margin: 8px 0; }
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-form-wrap h3 { margin-bottom: 16px; font-size: 18px; }
.contact-success { color: var(--color-primary); font-size: 14px; }

/* ---------- Policy pages ---------- */
.policy-container { max-width: 820px; }
.policy-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 36px);
  text-transform: none;
  color: var(--color-text);
  margin: 8px 0 10px;
}
.policy-meta { color: var(--color-muted); font-size: 13px; margin-bottom: 18px; }
.policy-intro {
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
}
.policy-block { margin-bottom: 26px; }
.policy-block h2 {
  font-size: 17px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
  letter-spacing: 0;
}
.policy-block p { color: var(--color-muted); line-height: 1.75; font-size: 14.5px; margin: 0 0 10px; }
.policy-list {
  margin: 8px 0 0;
  padding-left: 1.2em;
  color: var(--color-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.policy-list li { margin-bottom: 8px; }
.policy-footer-box {
  margin-top: 36px;
  padding: 20px;
  background: var(--color-surface-alt);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}
.policy-footer-box p { margin: 0 0 8px; font-size: 14px; color: var(--color-text); line-height: 1.6; }
.policy-footer-box a { color: var(--color-primary); font-weight: 600; }
.policy-address { color: var(--color-muted) !important; font-size: 13px !important; }

.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;
}
.profile-card-meta { flex: 1; min-width: 140px; }
.profile-name { font-weight: 700; font-size: 17px; }
.profile-email { color: var(--color-muted); font-size: 14px; }
.profile-section-title { font-size: 18px; margin: 0 0 16px; font-family: var(--font-body); font-weight: 800; text-transform: none; }
.profile-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px;
}
.profile-tabs button {
  flex: 1;
  padding: 11px 10px;
  min-height: 42px;
  border: none;
  background: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-muted);
  cursor: pointer;
}
.profile-tabs button.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 0 var(--color-primary-dark);
}
.profile-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
}
.forgot-link {
  display: inline-block;
  margin: -4px 0 14px;
  font-size: 13px;
}

/* ---------- About page ---------- */
.about-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.about-eyebrow.gold { color: var(--color-accent-dark); }
.about-eyebrow.teal { color: var(--color-primary); }
.about-eyebrow { padding-bottom: 6px; border-bottom: 2px solid currentColor; display: inline-block; }

.about-hero,
.about-who,
.about-offer,
.about-why,
.about-bottom-cta {
  padding: 64px 24px;
}
.about-hero { background: #fff; }
.about-who { background: var(--color-surface-alt); }
.about-offer { background: var(--color-surface); }
.about-why { background: var(--color-surface-alt); }

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.about-split.reverse { grid-template-columns: 0.95fr 1.05fr; }

.about-copy h1,
.about-copy h2,
.about-center-head h2,
.about-mission h2,
.about-cta-banner h2 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.15;
}
.about-copy h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 16px; }
.about-lead,
.about-copy p,
.about-sub {
  color: var(--color-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.about-cta { margin-top: 10px; display: inline-flex; }

.about-media {
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-surface-alt);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-center-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.about-center-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 12px;
}

.about-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.about-offer-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.about-offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--color-primary);
}
.about-offer-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.about-offer-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text);
  margin-bottom: 8px;
}
.about-offer-card p {
  color: var(--color-muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.about-why-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.about-why-item h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text);
  margin-bottom: 8px;
}
.about-why-item p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.about-mission {
  background: var(--color-footer);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.about-mission-inner { max-width: 780px; margin: 0 auto; }
.about-mission h2 {
  color: #fff !important;
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 18px;
}
.about-mission p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.about-bottom-cta { background: var(--color-surface-alt); padding-top: 48px; padding-bottom: 64px; }
.about-cta-banner {
  background: var(--color-primary);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
}
.about-cta-banner h2 {
  color: #fff !important;
  font-size: clamp(24px, 3.5vw, 34px);
  margin-bottom: 12px;
}
.about-cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 15.5px;
  line-height: 1.65;
}
.about-cta-btn {
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-weight: 700;
  display: inline-flex;
  transition: background 0.2s ease;
}
.about-cta-btn:hover { background: var(--color-surface-alt); }

@media (max-width: 960px) {
  .about-offer-grid,
  .about-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .about-split,
  .about-split.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-split.reverse .about-media { order: -1; }
  .about-hero,
  .about-who,
  .about-offer,
  .about-why,
  .about-bottom-cta { padding: 48px 16px; }
  .about-mission { padding: 56px 16px; }
  .about-media { max-height: 380px; aspect-ratio: 1 / 1; }
  .about-cta-banner { padding: 36px 20px; border-radius: 16px; }
}
@media (max-width: 560px) {
  .about-offer-grid,
  .about-why-grid { grid-template-columns: 1fr; }
}

/* ---------- About: stats strip ---------- */
.about-stats-strip {
  background: var(--color-footer);
  padding: 32px 24px;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--color-accent);
  text-transform: uppercase;
}
.about-stat span {
  font-size: 12.5px;
  letter-spacing: 0.3px;
  color: #c4c8ce;
  text-transform: uppercase;
}

/* ---------- About: process ---------- */
.about-process { background: #fff; padding: 64px 24px; }
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.about-process-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
}
.about-process-step {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.about-process-card h3 { font-size: 16px; margin-bottom: 6px; }
.about-process-card p { font-size: 13.5px; color: var(--color-muted); margin: 0; }

/* ---------- About: business info ---------- */
.about-business { background: var(--color-surface-alt); padding: 56px 24px; }
.about-business-inner { max-width: 900px; margin: 0 auto; }
.about-business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin-top: 18px;
}
.about-business-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.about-business-grid span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-muted);
}
.about-business-grid strong { font-size: 15px; font-weight: 600; }
.about-business-grid a { color: var(--color-primary); }

@media (max-width: 860px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-business-grid { grid-template-columns: 1fr; }
}

/* ---------- Wishlist stamp (product card) ---------- */
.wishlist-stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-border);
  padding: 6px 10px 6px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 0 rgba(38, 24, 30, 0.08);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.1s ease, background 0.15s ease;
}
.wishlist-stamp:hover { transform: translateY(-1px); border-color: var(--color-primary); }
.wishlist-stamp.on {
  background: var(--color-accent-tint);
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.wishlist-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.wishlist-toggle.on { border-color: var(--color-accent); color: var(--color-accent-dark); background: var(--color-accent-tint); }
.pdp-rating-link { display: inline-block; margin: 8px 0 12px; }
.occasion-pill {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--color-primary-dark);
  background: var(--color-primary-tint);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.personalize-note {
  background: var(--color-accent-tint);
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 14px 0;
}
.personalize-note strong { display: block; font-size: 12.5px; color: var(--color-accent-dark); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; }
.personalize-note p { margin: 0; font-size: 13.5px; color: var(--color-text); line-height: 1.6; }
.pdp-details { margin: 14px 0; }
.pdp-details summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  list-style: none;
}
.pdp-details summary::-webkit-details-marker { display: none; }
.pdp-details p { font-size: 13.5px; color: var(--color-muted); line-height: 1.6; margin: 10px 0 0; }

/* ---------- Rating badge ---------- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-accent-tint);
  color: var(--color-accent-dark);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}
.rating-badge svg { flex-shrink: 0; }
.rating-badge span { color: var(--color-muted); font-weight: 600; }
.rating-badge--empty {
  background: none;
  color: var(--color-muted);
  font-weight: 600;
  padding: 0;
  font-size: 12px;
}

.rating-stars-input { display: inline-flex; gap: 6px; }
.rating-chip {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.rating-chip:hover { transform: translateY(-1px); border-color: var(--color-accent); }
.rating-chip.on { background: var(--color-accent); border-color: var(--color-accent-dark); color: #fff; }

/* ---------- Reviews (product page) ---------- */
.reviews-block { border-top: 1px solid var(--color-border); background: var(--color-surface-alt); }
.review-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  box-shadow: var(--shadow);
}
.review-form-card h3 { margin: 0; font-size: 16px; font-family: var(--font-body); }
.review-form-card textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-family: var(--font-body);
  font-size: 13.5px;
  resize: vertical;
  background: var(--color-surface-alt);
}
.review-form-card textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface);
}
.review-form-card .btn { align-self: flex-start; }
.review-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.review-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.review-row-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.review-author { font-weight: 700; font-size: 13px; }
.review-date { font-size: 12px; color: var(--color-muted); }
.review-text { margin: 8px 0 0; font-size: 14px; line-height: 1.7; color: var(--color-text); }
.empty-note { color: var(--color-muted); font-size: 14px; }
.empty-note a { color: var(--color-primary); font-weight: 700; }

@media (max-width: 960px) {
  .rating-stars-input { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .wishlist-stamp span, .wishlist-stamp { font-size: 10px; padding: 5px 8px 5px 7px; }
  .review-form-card { padding: 16px; }
}

/* ---------- Promise strip (landing page) ---------- */
.promise-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 24px;
}
.promise-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.promise-item { display: flex; align-items: center; gap: 14px; }
.promise-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--color-primary-tint);
  color: var(--color-primary);
}
.promise-item strong { display: block; font-size: 13.5px; font-family: var(--font-body); }
.promise-item span:last-child { display: block; font-size: 12px; color: var(--color-muted); margin-top: 2px; }

/* ---------- Occasion tile grid (landing page) ---------- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.occasion-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  min-height: 200px;
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.occasion-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.occasion-tile--plum { background: linear-gradient(145deg, #a1447a 0%, var(--color-primary) 55%, var(--color-primary-dark) 130%); }
.occasion-tile--amber { background: linear-gradient(145deg, #eab35a 0%, var(--color-accent) 55%, var(--color-accent-dark) 130%); }
.occasion-tile--ink { background: linear-gradient(145deg, #4a3540 0%, #2a1a22 55%, var(--color-footer) 130%); }
.occasion-tile-kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.85;
}
.occasion-tile-title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}
.occasion-tile-cta { font-size: 12.5px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Testimonials (landing page) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}
.testimonial-comment {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
}
.testimonial-meta { display: flex; align-items: center; gap: 10px; }
.testimonial-product-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--color-border);
}
.testimonial-meta strong { display: block; font-size: 13px; }
.testimonial-meta a { display: block; font-size: 12px; color: var(--color-primary); }

@media (max-width: 960px) {
  .promise-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .promise-strip-inner { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- Gift popup (first-visit offer) ---------- */
.gift-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 16, 23, 0.62);
  padding: 16px;
}
.gift-popup {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  max-width: 380px;
  width: 100%;
  padding: 44px 28px 30px;
  text-align: center;
  box-shadow: var(--shadow-lift);
  border: 1px dashed rgba(122, 32, 72, 0.35);
}
.gift-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-surface-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.gift-popup-close:hover { border-color: var(--color-primary); color: var(--color-primary); }
.gift-popup-badge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 4px solid var(--color-surface);
  box-shadow: 0 0 0 2px var(--color-accent), var(--shadow);
}
.gift-popup-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gift-popup-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}
.gift-popup h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: none;
}
.gift-popup-subtitle {
  color: var(--color-muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.gift-popup .btn { min-height: 42px; padding: 11px 26px; }
