/* ═══════════════════════════════════════════
   LUMIÈRE — Off-White Luxury E-Commerce
   Font: Cormorant Garamond + DM Sans
═══════════════════════════════════════════ */

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

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --cream-border: #DDD6C8;
  --ink: #1A1612;
  --ink-soft: #3D3530;
  --ink-muted: #7A6E65;
  --gold: #C49A3C;
  --gold-light: #E8C86A;
  --sage: #8A9B7A;
  --rust: #B85C38;
  --white: #FDFAF5;
  --shadow-sm: 0 2px 8px rgba(26,22,18,0.06);
  --shadow-md: 0 8px 32px rgba(26,22,18,0.10);
  --shadow-lg: 0 24px 64px rgba(26,22,18,0.14);
  --radius: 2px;
  --radius-md: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.announce-track { overflow: hidden; width: 100%; }
.announce-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.announce-bar:hover .announce-inner { animation-play-state: paused; }
.announce-item {
  font-weight: 400;
  text-transform: uppercase;
  padding: 0 28px;
  flex-shrink: 0;
}
.announce-sep {
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
  opacity: 0.8;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(253,250,245,0.92);
  border-bottom: 1px solid var(--cream-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(26,22,18,0.10); }
.navbar.hidden { transform: translateY(-100%); }
/* offset page content for fixed navbar */
body { padding-top: 72px; }

.nav-brand a {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--ink-soft);
  transition: color var(--transition);
  position: relative;
  text-decoration: none;
  padding: 0;
}
.nav-icon-btn:hover { color: var(--ink); }
.nav-icon-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.nav-icon-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: inherit;
}
/* keep old search-btn/cart-btn for any remaining references */
.search-btn, .cart-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--ink-soft); transition: color var(--transition); position: relative;
}
.search-btn svg, .cart-btn svg { width: 20px; height: 20px; }
.search-btn:hover, .cart-btn:hover { color: var(--ink); }
.cart-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; line-height: 1; color: inherit;
}

.cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── NAVBAR SEARCH PANEL ── */
.navbar-search-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 12px;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 28px rgba(26,22,18,0.10);
}
.navbar-search-wrap.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* pill input row */
.navbar-search-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: 40px;
  padding: 0 18px;
  height: 44px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.navbar-search-wrap.open .navbar-search-pill:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.12);
}
.navbar-search-icon { color: var(--ink-muted); display: flex; flex-shrink: 0; }
.navbar-search-icon svg { width: 17px; height: 17px; }
.navbar-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
}
.navbar-search-input::placeholder { color: var(--ink-muted); }

/* action buttons */
.navbar-search-submit {
  background: var(--ink);
  color: var(--cream);
  border: none;
  height: 36px;
  padding: 0 20px;
  border-radius: 36px;
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.navbar-search-submit:hover { background: var(--gold); color: var(--ink); }
.navbar-search-close {
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-muted);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.navbar-search-close:hover { background: var(--cream-border); color: var(--ink); border-color: var(--ink-muted); }

/* ── SEARCH RESULTS DROPDOWN ── */
.navbar-search-results {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--cream-border);
  box-shadow: 0 20px 60px rgba(26,22,18,0.14);
  max-height: 420px;
  overflow-y: auto;
  z-index: 100;
  scrollbar-width: thin;
  scrollbar-color: var(--cream-border) transparent;
}
.nsr-inner { max-width: 780px; margin: 0 auto; padding: 8px 0 12px; }
.nsr-header {
  padding: 10px 20px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--ink);
  border-radius: 10px;
  margin: 0 8px;
  transition: background .15s;
}
.suggestion-item:hover, .suggestion-item.focused {
  background: var(--cream);
}
.sug-img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--cream-dark);
  flex-shrink: 0;
  border: 1px solid var(--cream-border);
}
.sug-img-placeholder {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.sug-info { flex: 1; min-width: 0; }
.sug-name {
  font-size: 14px; font-weight: 600;
  display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 2px;
}
.sug-cat {
  font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: .06em;
}
.sug-price {
  font-size: 14px; font-weight: 700;
  color: var(--gold);
  white-space: nowrap; flex-shrink: 0;
}
.nsr-divider { height: 1px; background: var(--cream-border); margin: 6px 20px; }
.nsr-footer {
  padding: 10px 20px 4px;
  text-align: center;
}
.nsr-footer a {
  font-size: 13px; color: var(--gold); font-weight: 600;
  text-decoration: none;
}
.nsr-footer a:hover { text-decoration: underline; }
.nsr-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--ink-muted);
  font-size: 14px;
}
.nsr-empty strong { color: var(--ink); }

/* backdrop when search open */
.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,22,18,0.25);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(2px);
}
.search-backdrop.show { opacity: 1; pointer-events: all; }

/* legacy overlay — hidden */
.search-overlay { display: none !important; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  padding: 0 5%;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 50%;
  height: 100%;
  background: var(--cream-dark);
  z-index: 0;
}
.hero-text { position: relative; z-index: 1; }

.hero-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,154,60,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.2s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: fadeInUp 0.8s 0.8s both;
}

.hero-shape-1 {
  position: absolute;
  width: 320px; height: 420px;
  background: linear-gradient(135deg, var(--cream-border), var(--cream-dark));
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  top: 10%; left: 10%;
  animation: morphShape 8s ease-in-out infinite;
}
.hero-shape-2 {
  position: absolute;
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(196,154,60,0.15), rgba(196,154,60,0.05));
  border-radius: 50%;
  bottom: 15%; right: 15%;
  animation: morphShape 10s ease-in-out infinite reverse;
}
/* ── HERO PRODUCT GRID ── */
.hero-visual { position: relative; z-index: 1; height: 500px; display: flex; align-items: center; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  height: 460px;
  padding: 16px 0;
}

.hc-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* shared card base */
.hc {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 0 8px 32px rgba(26,22,18,0.12);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
  flex-shrink: 0;
}
.hc:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(26,22,18,0.18); }

.hc-main { height: 100%; }
.hc-sm   { flex: 1; min-height: 0; }

.hc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hc-no-img {
  width: 100%; height: 100%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
}

/* gradient overlay + text */
.hc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.72) 0%, rgba(26,22,18,0.08) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  gap: 3px;
}
.hc-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hc-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.hc-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
}

/* free delivery badge inside grid */
.hero-badge-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(26,22,18,0.08);
  animation: float 3.5s ease-in-out infinite;
  flex-shrink: 0;
}
.hb-icon { font-size: 22px; line-height: 1; }
.hb-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.hb-sub   { font-size: 11px; color: var(--ink-muted); margin-top: 1px; }

/* fallback badge (no products) */
.hero-badge {
  position: absolute;
  bottom: 8%; right: 6%;
  background: var(--ink);
  color: var(--cream);
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-radius: var(--radius-md);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  z-index: 5;
  animation: float 3s ease-in-out infinite;
}
.hero-badge span:nth-child(2) { color: var(--gold); font-size: 16px; font-family: 'Playfair Display', serif; }

/* ── HERO V2 ── */
.hero2 {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.hero2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 60%, var(--hero-from) 100%);
}
.hero2-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, color-mix(in srgb, var(--hero-orb) 20%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, color-mix(in srgb, var(--hero-orb) 12%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 15%, color-mix(in srgb, var(--hero-orb) 10%, transparent) 0%, transparent 50%);
}
/* Floating glowing orbs */
.hero2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: heroOrb 10s ease-in-out infinite alternate;
}
.hero2-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-orb) 22%, transparent) 0%, transparent 70%);
  top: -10%; right: 10%;
  animation-duration: 12s;
}
.hero2-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-orb) 14%, transparent) 0%, transparent 70%);
  bottom: -5%; left: 30%;
  animation-duration: 9s;
  animation-delay: -3s;
}
.hero2-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-orb) 18%, transparent) 0%, transparent 70%);
  top: 30%; left: 10%;
  animation-duration: 7s;
  animation-delay: -5s;
}
@keyframes heroOrb {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.08); }
  100% { transform: translate(-15px, 15px) scale(0.95); }
}
/* Subtle grid lines */
.hero2-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero2-text {
  position: relative;
  z-index: 2;
  padding: 5rem 5% 5rem 6%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero2-text .hero-label {
  background: rgba(196,154,60,0.18);
  border: 1px solid rgba(196,154,60,0.3);
}
.hero2-text .hero-title {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero2-text .hero-sub { margin-bottom: 2rem; }
.hero2-text .hero-actions { margin-bottom: 2.5rem; }
.hero2-link {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.hero2-link:hover { color: var(--gold); border-color: var(--gold); }

.hero2-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s 1s both;
}
.hero2-stat { display: flex; flex-direction: column; gap: 2px; }
.hero2-stat-num { font-size: 18px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; }
.hero2-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: .08em; text-transform: uppercase; }
.hero2-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Floating product cards on the right */
.hero2-cards {
  position: relative;
  z-index: 2;
  padding: 3rem 5% 3rem 2%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  justify-content: center;
  min-height: 92vh;
}
.hero2-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 10px 14px 10px 10px;
  text-decoration: none;
  width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  animation: fadeInUp 0.7s both;
}
.hero2-card:hover {
  transform: translateX(-6px) translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.18);
}
.hero2-card:nth-child(2) { margin-right: 2rem; }
.hero2-card-img {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.hero2-card-noimg {
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.hero2-card-body { display: flex; flex-direction: column; gap: 4px; }
.hero2-card-name { font-size: 12px; font-weight: 600; color: #fff; line-height: 1.35; }
.hero2-card-price { font-size: 13px; font-weight: 700; color: var(--gold); }

@media (max-width: 900px) {
  .hero2 { grid-template-columns: 1fr; min-height: auto; }
  .hero2-cards { flex-direction: row; flex-wrap: wrap; padding: 1.5rem 5%; min-height: auto; align-items: flex-start; justify-content: flex-start; }
  .hero2-card { width: 180px; }
  .hero2-card:nth-child(2) { margin-right: 0; }
  .hero2-text { padding: 5rem 5% 2rem; }
  .hero2-text .hero-title { color: #fff !important; }
}
@media (max-width: 600px) {
  .hero2-stats { flex-wrap: wrap; gap: 1rem; }
  .hero2-cards { gap: 10px; }
  .hero2-card { width: 160px; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  font-weight: 500;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--cream-border);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  font-weight: 400;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 16px 36px; font-size: 14px; }

/* ── CATEGORIES STRIP ── */
.cat-strip {
  padding: 2rem 5%;
  border-bottom: 1px solid var(--cream-border);
  overflow-x: auto;
}
.cat-strip-inner {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-pill {
  padding: 8px 20px;
  border: 1px solid var(--cream-border);
  border-radius: 30px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: all var(--transition);
  white-space: nowrap;
}
.cat-pill:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ── SECTIONS ── */
.section {
  padding: 5rem 5%;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
}
.section-link {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  border-bottom: 1px solid currentColor;
  transition: color var(--transition);
}
.section-link:hover { color: var(--ink); }

.section-more-cta {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(120deg, var(--cream-dark) 0%, color-mix(in srgb, var(--gold) 6%, var(--cream)) 100%);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.section-more-left { display: flex; flex-direction: column; gap: 4px; }
.section-more-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.section-more-text {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}
.section-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), gap var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.section-more-btn:hover {
  background: var(--gold);
  color: var(--ink);
  gap: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.16);
}
.section-more-btn-inner { display: flex; flex-direction: column; gap: 2px; }
.section-more-btn-label { font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }
.section-more-btn-sub { font-size: 11px; opacity: 0.65; font-weight: 400; }
.section-more-btn svg { flex-shrink: 0; transition: transform var(--transition); }
.section-more-btn:hover svg { transform: translateX(4px); }
@media (max-width: 640px) {
  .section-more-cta { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .section-more-btn { width: 100%; justify-content: space-between; }
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover .product-img { transform: scale(1.04); }
.product-card:hover .product-overlay { opacity: 1; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
  aspect-ratio: 3/4;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-border);
  background: var(--cream-dark);
}
.product-img-placeholder svg { width: 40%; height: 40%; }
.product-img-placeholder.large svg { width: 30%; height: 30%; }
.product-img-placeholder.small { aspect-ratio: 1; width: 70px; height: 70px; }
.product-img-placeholder.tiny { width: 50px; height: 50px; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,22,18,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-overlay span {
  color: white;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 20px;
}

.badge-sale, .badge-feat {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 4px 10px;
  z-index: 1;
}
.badge-sale { background: var(--rust); color: white; }
.badge-feat { background: var(--gold); color: var(--ink); }
.badge-feat.large { top: 16px; left: 16px; font-size: 12px; }

.product-info { padding: 1rem 0; }
.product-cat {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 0.3rem;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-price-row { display: flex; align-items: center; gap: 0.75rem; }
.product-price { font-weight: 500; color: var(--ink); }
.product-original { color: var(--ink-muted); text-decoration: line-through; font-size: 13px; }
.stock-warn { display: block; font-size: 12px; color: var(--rust); margin-top: 4px; }
.stock-out { display: block; font-size: 12px; color: var(--ink-muted); margin-top: 4px; }

/* ── MARQUEE ── */
.marquee-section {
  background: var(--ink);
  padding: 1.2rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  flex-shrink: 0;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-track span:nth-child(even) { color: var(--gold); }

/* ── VALUES ── */
.values-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}
.value-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--cream-border);
  transition: background var(--transition);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--cream-dark); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-item h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-item p { font-size: 13px; color: var(--ink-muted); }

/* ── SHOP PAGE ── */
.shop-page { padding: 3rem 5%; }
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-border);
}
.shop-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
}
.shop-count { color: var(--ink-muted); font-size: 14px; }

.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; }
.shop-sidebar { position: sticky; top: 90px; align-self: start; }
.filter-group { margin-bottom: 2.5rem; }
.filter-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.filter-opt {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-opt:hover, .filter-opt.active { color: var(--ink); padding-left: 8px; }
.filter-opt.active { font-weight: 500; border-left: 2px solid var(--gold); padding-left: 10px; }

/* ── PRODUCT DETAIL ── */
.product-page { padding: 2rem 5% 5rem; }
.breadcrumb {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 3rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--ink); }

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.product-main-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
  aspect-ratio: 3/4;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }

.product-cat-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.product-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.product-detail-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.product-detail-price { font-size: 1.8rem; font-weight: 400; }
.product-detail-original { font-size: 1.2rem; color: var(--ink-muted); text-decoration: line-through; }
.discount-badge {
  background: var(--rust);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.stock-info { margin-bottom: 1.5rem; }
.in-stock { color: var(--sage); font-size: 13px; }
.low-stock { color: #C87533; font-size: 13px; }
.out-stock { color: var(--rust); font-size: 13px; }

.product-detail-desc {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.product-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--cream-border);
  color: var(--ink-muted);
  border-radius: 20px;
}

.add-cart-form { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--cream-border); }
.qty-control button {
  background: none;
  border: none;
  width: 36px; height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
  transition: background var(--transition);
}
.qty-control button:hover { background: var(--cream-dark); }
.qty-control input {
  width: 48px; height: 44px;
  border: none;
  text-align: center;
  background: transparent;
  font-size: 14px;
  outline: none;
}
.btn-add-cart { flex: 1; }

.product-guarantees {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-border);
}
.guarantee-item { font-size: 12px; color: var(--ink-muted); }

.related-section { padding-top: 4rem; border-top: 1px solid var(--cream-border); }

/* ── CART ── */
.cart-page { padding: 3rem 5%; }
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
}
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-border);
  animation: fadeInUp 0.4s both;
}
.cart-item-img { width: 80px; height: 100px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; display: block; margin-bottom: 4px; }
.cart-item-cat { display: block; font-size: 12px; color: var(--ink-muted); margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--ink-soft); }

.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--cream-border);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--ink); color: var(--cream); }
.cart-qty { width: 30px; text-align: center; font-weight: 500; }

.cart-item-subtotal { font-weight: 500; min-width: 80px; text-align: right; }
.remove-btn {
  background: none;
  border: none;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 14px;
  transition: color var(--transition);
  padding: 4px;
}
.remove-btn:hover { color: var(--rust); }

.cart-summary {
  background: var(--cream-dark);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: sticky;
  top: 90px;
}
.cart-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  font-size: 14px;
  border-bottom: 1px solid var(--cream-border);
}
.total-row {
  font-weight: 600;
  font-size: 1rem;
  border-bottom: none;
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.free-tag { color: var(--sage); font-weight: 500; }
.cart-summary .btn-primary, .cart-summary .btn-ghost { margin-top: 1rem; }

/* ── CHECKOUT ── */
.checkout-page { padding: 3rem 5%; }
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }

.form-section { margin-bottom: 2.5rem; }
.form-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-border);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-border);
  background: var(--white);
  font-size: 14px;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.08);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-opt { cursor: pointer; }
.payment-opt input { display: none; }
.payment-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  border: 2px solid var(--cream-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  font-size: 14px;
}
.payment-opt input:checked + .payment-label {
  border-color: var(--gold);
  background: rgba(196,154,60,0.05);
}
.payment-icon { font-size: 1.3rem; }

.checkout-summary {
  background: var(--cream-dark);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: sticky;
  top: 90px;
}
.checkout-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.checkout-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.checkout-item-img { width: 50px; height: 60px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-info { flex: 1; }
.checkout-item-name { display: block; font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.checkout-item-qty { font-size: 12px; color: var(--ink-muted); }
.checkout-item-price { font-weight: 500; font-size: 13px; }
.checkout-divider { border: none; border-top: 1px solid var(--cream-border); margin: 1rem 0; }

.place-order-btn { margin-top: 2rem; }

/* ── SUCCESS ── */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.success-card {
  background: var(--white);
  padding: 4rem;
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.6s both;
}
.checkmark-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(138,155,122,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.checkmark-circle svg {
  width: 52px; height: 52px;
}
.checkmark-circle circle { stroke: var(--sage); stroke-width: 2; stroke-dasharray: 166; stroke-dashoffset: 166; animation: drawCircle 0.8s 0.3s forwards; }
.checkmark-circle path { stroke: var(--sage); stroke-width: 3; stroke-dasharray: 48; stroke-dashoffset: 48; animation: drawCheck 0.4s 1s forwards; }
.success-card h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 0.75rem; }
.success-sub { color: var(--ink-muted); margin-bottom: 2.5rem; }

.order-details-box {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  text-align: left;
}
.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 14px;
  border-bottom: 1px solid var(--cream-border);
}
.order-detail-row:last-child { border-bottom: none; }
.order-id { font-family: monospace; background: var(--cream-dark); padding: 2px 8px; border-radius: 4px; }
.payment-badge { background: var(--ink); color: var(--cream); padding: 2px 10px; font-size: 11px; letter-spacing: 0.08em; border-radius: 4px; }

.success-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.live-status-box {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  text-align: center;
}
.live-status-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.5rem; }
.live-hint { font-size: 11px; color: var(--ink-muted); margin-top: 0.5rem; }

.status-badge {
  display: inline-block; padding: 4px 14px;
  border-radius: 20px; font-size: 12px;
  font-weight: 500; letter-spacing: 0.05em; text-transform: capitalize;
}
.status-pending { background: rgba(200,117,51,0.12); color: #C87533; }
.status-confirmed { background: rgba(196,154,60,0.12); color: var(--gold); }
.status-processing { background: rgba(100,120,200,0.12); color: #6478C8; }
.status-shipped { background: rgba(80,140,200,0.12); color: #508CC8; }
.status-delivered { background: rgba(138,155,122,0.15); color: var(--sage); }
.status-cancelled { background: rgba(184,92,56,0.12); color: var(--rust); }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 6rem 2rem;
}
.empty-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.empty-state h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 0.75rem; }
.empty-state p { color: var(--ink-muted); margin-bottom: 2rem; }

/* ── FLASH ── */
.flash {
  padding: 1rem 5%;
  font-size: 14px;
  border-left: 4px solid;
}
.flash-success { background: rgba(138,155,122,0.1); border-color: var(--sage); color: var(--sage); }
.flash-error { background: rgba(184,92,56,0.1); border-color: var(--rust); color: var(--rust); }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 5% 2rem;
  margin-top: 4rem;
}
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.footer-brand p { color: rgba(245,240,232,0.5); font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(245,240,232,0.6); font-size: 13px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: right; }
.footer-copy p { color: rgba(245,240,232,0.35); font-size: 12px; }

/* ── WISHLIST ── */
.wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(253,250,245,0.92);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(26,22,18,0.12);
}
.wishlist-btn:hover { background: var(--white); transform: scale(1.1); }
.wishlist-btn svg { transition: all 0.2s; }
.wishlist-btn.active svg { fill: var(--rust); stroke: var(--rust); }
.wishlist-btn-lg {
  background: none; border: none; cursor: pointer;
  color: var(--ink-muted); transition: color 0.2s, transform 0.2s;
  flex-shrink: 0; padding: 4px;
}
.wishlist-btn-lg:hover { color: var(--rust); transform: scale(1.1); }
.wishlist-btn-lg.active svg { fill: var(--rust); stroke: var(--rust); }
.product-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; }
.product-title-row .product-detail-name { margin-bottom: 0; }

/* ── STARS ── */
.stars-display { display: inline-flex; gap: 1px; }
.stars-display::before { content: '★★★★★'; font-size: var(--sz, 16px); letter-spacing: 1px; color: var(--cream-border); position: relative; }
.stars-display { position: relative; }
.stars-display::before { color: var(--cream-border); }
.stars-display[data-rating]::after {
  content: '★★★★★';
  position: absolute; top: 0; left: 0; overflow: hidden;
  font-size: var(--sz, 16px); letter-spacing: 1px;
  color: var(--gold);
  width: calc(attr(data-rating number) / 5 * 100%);
}

.product-rating-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.rating-count { font-size: 13px; color: var(--ink-muted); }
.avg-rating-block { display: flex; align-items: center; gap: 0.75rem; }
.avg-rating-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 500; color: var(--gold); line-height: 1; }

/* ── REVIEWS ── */
.reviews-section { padding: 4rem 0; border-top: 1px solid var(--cream-border); margin-top: 4rem; }
.reviews-grid { display: grid; grid-template-columns: 340px 1fr; gap: 3rem; align-items: start; }
.review-form-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: var(--radius-md); padding: 2rem; position: sticky; top: 90px; }
.review-form-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 1.5rem; }
.star-picker { display: flex; gap: 4px; margin-bottom: 1.2rem; }
.star-pick { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--cream-border); transition: color 0.15s, transform 0.15s; line-height: 1; padding: 0; }
.star-pick:hover, .star-pick.active { color: var(--gold); transform: scale(1.1); }
.review-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: var(--radius-md); padding: 1.2rem 1.5rem; margin-bottom: 1rem; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.reviewer-name { font-weight: 600; font-size: 14px; display: block; margin-bottom: 3px; }
.review-date { font-size: 11px; color: var(--ink-muted); }
.review-comment { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin-top: 0.5rem; }

/* ── FLASH SALE ── */
.badge-flash {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--rust); color: white;
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 20px; z-index: 2;
  display: flex; align-items: center; gap: 4px;
  animation: flash-pulse 2s ease-in-out infinite;
}
.sale-countdown-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(184,92,56,0.9) 0%, transparent 100%);
  color: white; padding: 1.5rem 1rem 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 500;
}
.sale-fire { font-size: 1rem; }
.countdown-time { font-weight: 700; font-family: monospace; }
@keyframes flash-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes morphShape {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33% { border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%; }
  66% { border-radius: 50% 50% 60% 40% / 40% 70% 30% 60%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .hero { min-height: 70vh; }
  .values-section { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4rem; }
  .hero::before { display: none; }
  .hero-visual { height: 340px; }
  .hero-grid { height: 320px; gap: 8px; }
  .hc-main { border-radius: 14px; }
  .hc-sm   { border-radius: 14px; }
  .hb-title { font-size: 12px; }
  .hb-sub   { font-size: 10px; }
  .hero-badge-inline { padding: 10px 12px; }
  .products-grid, .products-grid-3, .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: flex; gap: 2rem; overflow-x: auto; }
  .filter-group { min-width: 160px; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-left .nav-link { display: none; }
  .values-section { grid-template-columns: repeat(2, 1fr); }
  .hamburger { display: flex !important; }
}

/* ── MOBILE HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: var(--white); z-index: 1100; transition: left .35s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.mobile-menu.open { left: 0; }
.mobile-menu-inner { padding: 5rem 2rem 2rem; display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu-inner a { display: block; padding: .875rem 0; font-size: 15px; color: var(--ink); border-bottom: 1px solid var(--cream-border); text-decoration: none; font-family: 'Jost', sans-serif; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1050; }
.mobile-overlay.open { display: block; }

/* ── COOKIE CONSENT ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: var(--white); padding: 14px 5%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; z-index: 2000; font-size: 13px; transform: translateY(100%); transition: transform .4s; flex-wrap: wrap; }
.cookie-banner.show { transform: translateY(0); }
.cookie-accept { background: var(--gold); color: var(--ink); border: none; padding: 8px 20px; border-radius: 20px; font-size: 12px; cursor: pointer; font-family: inherit; font-weight: 600; white-space: nowrap; }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 90px; right: 24px; width: 44px; height: 44px; background: var(--ink); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: all .3s; z-index: 900; box-shadow: var(--shadow-md); }
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); }

/* ── FLOATING CONTACT ── */
.float-contact { position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px; background: #25d366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 900; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform .25s, box-shadow .25s; text-decoration: none; }
.float-contact:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ── NEWSLETTER POPUP ── */
.popup-overlay, .exit-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1500; }
.popup-overlay.show, .exit-overlay.show { display: block; }
.newsletter-popup, .exit-popup { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.92); background: var(--white); border-radius: 16px; padding: 3rem 2.5rem; width: 90%; max-width: 420px; text-align: center; z-index: 1600; box-shadow: 0 20px 60px rgba(0,0,0,0.15); transition: transform .3s, opacity .3s; opacity: 0; }
.newsletter-popup.show, .exit-popup.show { display: block; transform: translate(-50%, -50%) scale(1); opacity: 1; }
.popup-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 18px; cursor: pointer; color: var(--ink-muted); }
.popup-icon { font-size: 40px; margin-bottom: 1rem; }
.newsletter-popup h3, .exit-popup h3 { font-size: 22px; margin-bottom: .5rem; }
.newsletter-popup p, .exit-popup p { color: var(--ink-muted); font-size: 14px; margin-bottom: 1.5rem; }
.popup-form { display: flex; flex-direction: column; gap: .75rem; }
.popup-email-input { padding: 12px 16px; border: 1px solid var(--cream-border); background: var(--cream); border-radius: var(--radius); font-size: 14px; font-family: inherit; outline: none; text-align: center; }
.popup-email-input:focus { border-color: var(--gold); }
.popup-skip { background: none; border: none; font-size: 12px; color: var(--ink-muted); cursor: pointer; margin-top: .75rem; text-decoration: underline; }
.exit-code { background: var(--cream); padding: 3px 10px; border-radius: 4px; font-family: monospace; font-size: 16px; color: var(--ink); }

/* ── LIVE SEARCH SUGGESTIONS (legacy, kept for compat) ── */
.search-form-wrap { position: relative; width: 100%; max-width: 600px; }
.search-suggestions { display: none; }

/* ── FOOTER UPGRADE ── */
.footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-col h4.footer-col-title { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,240,232,0.45); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(245,240,232,0.65); font-size: 13px; margin-bottom: .5rem; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-brand-name { font-size: 22px; margin-bottom: .5rem; color: var(--cream); }
.footer-tagline { color: rgba(245,240,232,0.5); font-size: 13px; margin-bottom: 1.5rem; }
.footer-newsletter { margin-top: 1.5rem; }
.newsletter-label { font-size: 12px; color: rgba(245,240,232,0.5); margin-bottom: .5rem; }
.newsletter-row { display: flex; gap: .5rem; }
.newsletter-input { flex: 1; padding: 9px 12px; border: 1px solid rgba(245,240,232,0.18); background: rgba(255,255,255,0.07); color: var(--cream); font-size: 13px; border-radius: var(--radius); font-family: inherit; outline: none; }
.newsletter-input::placeholder { color: rgba(245,240,232,0.3); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn { padding: 9px 16px; background: var(--gold); color: var(--ink); border: none; border-radius: var(--radius); font-size: 12px; cursor: pointer; font-family: inherit; white-space: nowrap; font-weight: 600; }
.newsletter-msg { font-size: 12px; margin-top: .4rem; min-height: 1rem; color: rgba(245,240,232,0.7); }
.payment-icons { display: flex; flex-wrap: wrap; gap: .5rem; }
.payment-icon-chip { font-size: 11px; padding: 5px 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(245,240,232,0.15); border-radius: 6px; color: rgba(245,240,232,0.75); display: inline-flex; align-items: center; gap: 5px; font-weight: 500; }
.pay-bkash  { background: rgba(226,19,110,0.18); border-color: rgba(226,19,110,0.4); color: #f472b6; }
.pay-nagad  { background: rgba(247,148,29,0.18); border-color: rgba(247,148,29,0.4); color: #fb923c; }
.pay-card   { background: rgba(99,102,241,0.18); border-color: rgba(99,102,241,0.4); color: #a5b4fc; }
.pay-bank   { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.35); color: #86efac; }
.footer-bottom { border-top: 1px solid rgba(245,240,232,0.12); padding: 1.25rem 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: 12px; color: rgba(245,240,232,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 12px; color: rgba(245,240,232,0.4); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }
@media(max-width:768px){ .footer-inner { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .footer-inner { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PAGE HERO — shared for shop / about / faq
═══════════════════════════════════════════ */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 5% 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,154,60,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 30%; bottom: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(196,154,60,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; }
.ph-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(245,240,232,0.45);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ph-breadcrumb a { color: rgba(245,240,232,0.45); transition: color .2s; }
.ph-breadcrumb a:hover { color: var(--gold); }
.ph-breadcrumb span { color: rgba(245,240,232,0.2); }
.ph-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: rgba(196,154,60,0.12);
  border: 1px solid rgba(196,154,60,0.25);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 1.25rem;
}
.ph-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.ph-title em { font-style: italic; color: var(--gold); }
.ph-sub {
  font-size: 16px; color: rgba(245,240,232,0.6);
  max-width: 540px; line-height: 1.7; font-weight: 300;
}
.ph-meta { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.ph-meta-item { font-size: 13px; color: rgba(245,240,232,0.5); display: flex; align-items: center; gap: 6px; }
.ph-meta-item strong { color: var(--cream); font-weight: 600; }

/* ═══════════════════════════════════════════
   SHOP PAGE REDESIGN
═══════════════════════════════════════════ */
.shop-page-wrap { padding: 0; }

/* Header bar below hero */
.shop-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  position: sticky; top: 72px; z-index: 50;
  gap: 1rem; flex-wrap: wrap;
}
.shop-bar-left { display: flex; align-items: center; gap: 0.75rem; }
.shop-bar-count {
  font-size: 13px; color: var(--ink-muted);
  background: var(--cream); padding: 4px 12px;
  border-radius: 20px; border: 1px solid var(--cream-border);
}
.shop-bar-right { display: flex; align-items: center; gap: 0.75rem; }

/* Modern sort select */
.sort-select {
  padding: 7px 12px; font-size: 13px;
  border: 1.5px solid var(--cream-border);
  border-radius: 8px; background: var(--white);
  color: var(--ink); cursor: pointer; outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.sort-select:focus { border-color: var(--gold); }

/* View toggle */
.view-toggle {
  display: flex; gap: 2px;
  background: var(--cream); border-radius: 8px;
  padding: 3px; border: 1px solid var(--cream-border);
}
.view-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  border-radius: 6px; color: var(--ink-muted);
  transition: all .2s;
}
.view-btn.active { background: var(--white); color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

/* Layout */
.shop-body { display: grid; grid-template-columns: 260px 1fr; gap: 0; width: 100%; }

/* Sidebar redesign */
.shop-sidebar-new {
  border-right: 1px solid var(--cream-border);
  padding: 2rem 1.5rem;
  background: var(--white);
  position: sticky;
  top: calc(72px + 57px);
  align-self: start;
  width: 260px;
  min-width: 260px;
}

.sf-group { margin-bottom: 2rem; }
.sf-group:last-child { margin-bottom: 0; }
.sf-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 0.9rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cream-border);
  display: flex; align-items: center; justify-content: space-between;
}
.sf-clear-link { font-size: 10px; color: var(--gold); font-weight: 400; letter-spacing: 0; text-transform: none; }

/* Category radio pills */
.sf-radio {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 8px;
  cursor: pointer; font-size: 13px; color: var(--ink-soft);
  transition: all .18s; margin-bottom: 2px;
}
.sf-radio input { display: none; }
.sf-radio:hover { background: var(--cream); }
.sf-radio.active { background: rgba(196,154,60,0.1); color: var(--ink); font-weight: 500; }
.sf-radio-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--cream-border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.sf-radio.active .sf-radio-dot { border-color: var(--gold); background: var(--gold); }
.sf-radio.active .sf-radio-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }

/* Grouped category accordion */
.sf-cat-group { margin-bottom: 2px; }
.sf-cat-parent {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px; border-radius: 8px;
  background: none; border: none; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.sf-cat-parent:hover { background: var(--cream); color: var(--ink); }
.sf-cat-group.open .sf-cat-parent { color: var(--ink); background: var(--cream); }
.sf-cat-arrow { display: flex; align-items: center; transition: transform .2s; }
.sf-cat-group.open .sf-cat-arrow { transform: rotate(180deg); }
.sf-cat-subs { display: none; padding-left: 10px; border-left: 2px solid var(--cream-border); margin: 2px 0 4px 14px; }
.sf-cat-group.open .sf-cat-subs { display: block; }
.sf-radio-sub { font-size: 12px; padding: 5px 8px; }

/* Price range */
.sf-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; }
.sf-price-input {
  flex: 1; padding: 8px 10px; border: 1.5px solid var(--cream-border);
  border-radius: 8px; font-size: 13px; background: var(--cream);
  color: var(--ink); outline: none; font-family: inherit;
  transition: border-color .2s;
}
.sf-price-input:focus { border-color: var(--gold); background: var(--white); }
.sf-price-sep { color: var(--ink-muted); font-size: 12px; flex-shrink: 0; }

/* Star filter */
.sf-stars {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 10px; border-radius: 8px;
  cursor: pointer; font-size: 13px; color: var(--ink-soft);
  transition: all .18s; margin-bottom: 2px;
}
.sf-stars input { display: none; }
.sf-stars:hover { background: var(--cream); }
.sf-stars.active { background: rgba(196,154,60,0.1); }
.mini-stars { color: #f59e0b; font-size: 12px; letter-spacing: -1px; }
.mini-stars-empty { color: var(--cream-border); font-size: 12px; }

/* Stock checkbox */
.sf-check {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 8px;
  cursor: pointer; font-size: 13px; color: var(--ink-soft);
  transition: all .18s;
}
.sf-check input { display: none; }
.sf-check:hover { background: var(--cream); }
.sf-check.active { background: rgba(196,154,60,0.1); color: var(--ink); font-weight: 500; }
.sf-checkbox-box {
  width: 18px; height: 18px; border-radius: 5px;
  border: 2px solid var(--cream-border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.sf-check.active .sf-checkbox-box { background: var(--gold); border-color: var(--gold); }
.sf-check.active .sf-checkbox-box::after { content: '✓'; font-size: 11px; color: var(--ink); font-weight: 700; }

.sf-apply-btn {
  width: 100%; padding: 9px; background: var(--ink); color: var(--cream);
  border: none; border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; margin-top: 0.5rem;
  transition: background .2s;
}
.sf-apply-btn:hover { background: var(--gold); color: var(--ink); }

/* Products area */
.shop-products-area { padding: 2rem; background: var(--cream); min-height: 60vh; }

/* Active filter chips */
.active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.af-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; background: var(--white);
  border: 1px solid var(--cream-border); border-radius: 20px;
  font-size: 12px; color: var(--ink-soft);
  text-decoration: none; transition: all .18s;
}
.af-chip:hover { border-color: var(--rust); color: var(--rust); }
.af-chip-x { font-size: 14px; line-height: 1; }

/* Shop pagination */
/* Ghost cards — fill incomplete last row so grid stays flush */
.pc-ghost { visibility: hidden; pointer-events: none; }

/* Results footer bar */
.shop-results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  background: var(--cream-dark);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-muted);
}
.shop-results-info strong { color: var(--ink); }
.shop-page-info { font-weight: 500; color: var(--ink-soft); }

.pagination { display: flex; align-items: center; gap: 6px; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn {
  min-width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 10px;
  border: 1.5px solid var(--cream-border);
  border-radius: 8px; font-size: 13px; font-weight: 500;
  color: var(--ink-soft); background: var(--white);
  transition: all .2s; text-decoration: none;
}
.page-btn:hover { border-color: var(--ink); color: var(--ink); }
.page-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Empty state */
.empty-state {
  text-align: center; padding: 5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.empty-state-icon { font-size: 3.5rem; opacity: 0.3; }
.empty-state h3 { font-size: 20px; font-weight: 500; }
.empty-state p { color: var(--ink-muted); font-size: 14px; }

@media (max-width: 900px) {
  .shop-body { grid-template-columns: 1fr; }
  .shop-sidebar-new {
    position: static;
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid var(--cream-border);
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sf-group {
    padding: 1.25rem 1.5rem;
    margin-bottom: 0;
    border-right: 1px solid var(--cream-border);
    border-bottom: 1px solid var(--cream-border);
  }
  .sf-group:nth-child(even) { border-right: none; }
}
@media (max-width: 600px) {
  .shop-sidebar-new { grid-template-columns: 1fr; }
  .sf-group { border-right: none; }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */

/* Stats band */
.about-stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
}
.about-stat {
  text-align: center; padding: 2rem 1rem;
  border-right: 1px solid var(--cream-border);
  position: relative;
}
.about-stat:last-child { border-right: none; }
.about-stat-value {
  display: block; font-size: 2.4rem; font-weight: 700;
  color: var(--ink); line-height: 1;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}
.about-stat-value span { color: var(--gold); }
.about-stat-label { display: block; font-size: 12px; color: var(--ink-muted); margin-top: 6px; letter-spacing: 0.05em; }

/* Story section */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.about-story-text {
  padding: 5rem 5%;
  background: var(--cream);
}
.about-story-text .eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.about-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--ink);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.about-story-text p {
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.85; margin-bottom: 1.1rem;
}
.about-story-visual {
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 5rem 4rem;
  position: relative; overflow: hidden;
}
.about-story-visual::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(196,154,60,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.about-quote {
  position: relative; z-index: 1; text-align: center;
}
.about-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem; color: rgba(196,154,60,0.2);
  line-height: 0.6; display: block; margin-bottom: 1.5rem;
}
.about-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 300; font-style: italic;
  color: rgba(245,240,232,0.9); line-height: 1.5;
  margin-bottom: 1.5rem;
}
.about-quote cite {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}

/* Values grid */
.about-values-section {
  padding: 5rem 5%;
  background: var(--white);
}
.about-values-header { text-align: center; margin-bottom: 3.5rem; }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.av-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--cream-border);
  transition: all .3s;
  position: relative; overflow: hidden;
}
.av-card::before {
  content: '';
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(196,154,60,0.06);
  border-radius: 50%;
  transition: all .3s;
}
.av-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,22,18,0.1); background: var(--white); }
.av-card:hover::before { width: 120px; height: 120px; }
.av-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 24px;
  background: rgba(196,154,60,0.1);
}
.av-card h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.av-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.7; }

/* Promise banner */
.about-promise {
  background: linear-gradient(135deg, var(--ink) 0%, #2A2420 100%);
  padding: 5rem 5%; text-align: center;
  position: relative; overflow: hidden;
}
.about-promise::before {
  content: '◈';
  position: absolute; font-size: 30vw;
  color: rgba(196,154,60,0.03);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}
.about-promise-inner { position: relative; z-index: 1; }
.about-promise h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream); font-weight: 300; margin-bottom: 1.25rem;
}
.about-promise h2 em { font-style: italic; color: var(--gold); }
.about-promise p { font-size: 16px; color: rgba(245,240,232,0.55); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* About CTA */
.about-cta {
  padding: 5rem 5%; text-align: center; background: var(--cream);
}
.about-cta h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 0.75rem; }
.about-cta p { color: var(--ink-muted); margin-bottom: 2rem; font-size: 15px; }

@media(max-width:768px) {
  .about-stats-band { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid var(--cream-border); }
  .about-stats-band .about-stat:nth-child(2n) { border-right: none; }
  .about-story { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) { .about-values-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════ */

/* FAQ search hero */
.faq-hero-search {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,240,232,0.18);
  border-radius: 50px; overflow: hidden;
  max-width: 500px; margin-top: 2rem;
  backdrop-filter: blur(8px);
}
.faq-search-input {
  flex: 1; padding: 13px 20px; background: none; border: none;
  font-size: 14px; color: var(--cream); outline: none;
  font-family: inherit;
}
.faq-search-input::placeholder { color: rgba(245,240,232,0.4); }
.faq-search-btn {
  padding: 10px 20px; background: var(--gold); border: none;
  color: var(--ink); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  border-radius: 0 50px 50px 0; white-space: nowrap;
  transition: background .2s;
}
.faq-search-btn:hover { background: var(--gold-light); }

/* FAQ body */
.faq-body { max-width: 800px; margin: 0 auto; padding: 3rem 5% 5rem; }

/* Category tabs */
.faq-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.faq-tab {
  padding: 8px 20px; border: 1.5px solid var(--cream-border);
  border-radius: 50px; font-size: 13px; font-weight: 500;
  color: var(--ink-soft); background: var(--white);
  cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.faq-tab:hover { border-color: var(--ink); color: var(--ink); }
.faq-tab.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* FAQ category heading */
.faq-cat-heading {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  padding: 2rem 0 0.75rem;
  margin-top: 0.5rem;
}
.faq-cat-heading::after {
  content: ''; flex: 1; height: 1px;
  background: var(--cream-border);
}

/* FAQ accordion */
.faq-list-new { display: flex; flex-direction: column; gap: 0; }
.faq-item-new {
  border: 1px solid var(--cream-border);
  border-radius: 12px; overflow: hidden; margin-bottom: 10px;
  background: var(--white);
  transition: box-shadow .25s;
}
.faq-item-new:hover { box-shadow: 0 4px 16px rgba(26,22,18,0.07); }
.faq-item-new.open { box-shadow: 0 4px 24px rgba(26,22,18,0.09); border-color: rgba(196,154,60,0.4); }

.faq-q-btn {
  width: 100%; text-align: left;
  background: none; border: none; padding: 1.1rem 1.4rem;
  font-size: 15px; font-family: inherit; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink); font-weight: 500; gap: 1rem;
  transition: color .2s;
}
.faq-q-btn:hover { color: var(--gold); }
.faq-item-new.open .faq-q-btn { color: var(--gold); }

.faq-chevron {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
}
.faq-chevron svg { width: 14px; height: 14px; stroke: var(--ink-muted); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: stroke .2s; }
.faq-item-new.open .faq-chevron { transform: rotate(180deg); background: var(--gold); }
.faq-item-new.open .faq-chevron svg { stroke: var(--ink); }

.faq-answer {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--ink-soft); line-height: 1.85;
  transition: max-height .4s cubic-bezier(0.4,0,0.2,1), padding .3s;
  padding: 0 1.4rem;
}
.faq-answer a { color: var(--gold); text-decoration: underline; }
.faq-item-new.open .faq-answer { max-height: 300px; padding: 0 1.4rem 1.4rem; }

/* FAQ contact card */
.faq-contact-card {
  background: var(--ink); border-radius: 20px;
  padding: 3rem; text-align: center; margin-top: 3.5rem;
  position: relative; overflow: hidden;
}
.faq-contact-card::before {
  content: '?';
  position: absolute; font-size: 16rem; font-weight: 900;
  color: rgba(255,255,255,0.03); right: -2rem; bottom: -3rem;
  line-height: 1; pointer-events: none;
  font-family: 'Jost', sans-serif;
}
.faq-contact-card h3 { font-size: 22px; font-weight: 600; color: var(--cream); margin-bottom: 0.75rem; }
.faq-contact-card p { color: rgba(245,240,232,0.55); font-size: 14px; margin-bottom: 2rem; line-height: 1.7; }
.faq-contact-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.faq-contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-size: 13px;
  font-weight: 600; cursor: pointer; transition: all .2s;
  text-decoration: none; font-family: inherit; border: none;
}
.faq-contact-btn-primary { background: var(--gold); color: var(--ink); }
.faq-contact-btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.faq-contact-btn-outline { background: transparent; color: rgba(245,240,232,0.75); border: 1.5px solid rgba(245,240,232,0.2); }
.faq-contact-btn-outline:hover { border-color: rgba(245,240,232,0.5); color: var(--cream); }

/* ═══════════════════════════════════════════
   PRODUCT CARD SYSTEM (pc-*)
═══════════════════════════════════════════ */

/* ── Grid layouts ── */
.pc-grid {
  display: grid;
  gap: 1.5rem;
}
.pc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pc-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Card wrapper ── */
.pc-wrap {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--cream-border);
  box-shadow: 0 2px 12px rgba(26,22,18,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.pc-wrap:hover {
  box-shadow: 0 12px 40px rgba(26,22,18,0.13);
  transform: translateY(-4px);
}

/* ── Card link (image + body) ── */
.pc-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

/* ── Image area ── */
.pc-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4/3;
}
.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.pc-wrap:hover .pc-img { transform: scale(1.06); }

.pc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  color: var(--ink-muted);
}
.pc-img-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

/* ── Badges ── */
.pc-badges-bottom {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  z-index: 2;
}
.pc-badges-top {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.pc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 20px;
  line-height: 1.4;
  white-space: nowrap;
}
.pc-badge-sale   { background: #ef4444; color: #fff; }
.pc-badge-feat   { background: var(--gold); color: var(--ink); }
.pc-badge-free   { background: var(--sage); color: #fff; }
.pc-badge-free-lg { font-size: 12px; padding: 5px 12px; }
.pc-badge-flash  { background: #f97316; color: #fff; }
.pc-badge-out    { background: rgba(26,22,18,0.65); color: #fff; }

/* ── Wishlist button ── */
.pc-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
  opacity: 0;
}
.pc-wrap:hover .pc-wishlist { opacity: 1; }
.pc-wishlist:hover { background: #fff; transform: scale(1.1); }
.pc-wishlist svg { transition: fill var(--transition), stroke var(--transition); }
.pc-wishlist.active svg { fill: #ef4444; stroke: #ef4444; }

/* ── Sale countdown ── */
.pc-countdown {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(26,22,18,0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* ── Card body ── */
.pc-body {
  padding: 1rem 1.1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

/* ── Product name ── */
.pc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* ── Meta row (stars + sold) ── */
.pc-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  min-height: 18px;
}

.pc-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 12px;
}
.star-full  { color: #f59e0b; }
.star-half  { color: #f59e0b; opacity: 0.6; }
.star-empty { color: #d1d5db; }

.pc-review-count {
  font-size: 11px;
  color: var(--ink-muted);
  margin-left: 2px;
}
.pc-sold {
  font-size: 10px;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22,163,74,0.09);
  padding: 2px 7px;
  border-radius: 20px;
}
.pc-views {
  font-size: 10px;
  color: var(--ink-muted);
  margin-left: auto;
}

/* ── Price row ── */
.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.15rem;
}
.pc-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  letter-spacing: -0.01em;
}
.pc-original {
  font-size: 12px;
  color: var(--ink-muted);
  text-decoration: line-through;
}

/* ── Stock row ── */
.pc-stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  gap: 0.4rem;
  padding-bottom: 0.4rem;
}
.pc-stock-in  { color: #16a34a; }
.pc-stock-low { color: #d97706; }
.pc-stock-out { color: #dc2626; }

/* ── Add to Cart ── */
.pc-atc-form {
  padding: 0 1.1rem 1rem;
  margin-top: auto;
}
.pc-atc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.pc-atc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}
.pc-atc-btn:active { transform: translateY(0); }
.pc-atc-disabled {
  background: var(--cream-dark);
  color: var(--ink-muted);
  border-color: var(--cream-border);
  cursor: not-allowed;
}
.pc-atc-disabled:hover {
  background: var(--cream-dark);
  color: var(--ink-muted);
  border-color: var(--cream-border);
  transform: none;
}
/* ── Variant Picker Modal ── */
.vp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,22,18,0.45);
  z-index: 1200;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.vp-overlay.open { display: block; }

.vp-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  z-index: 1201;
  padding: 0 1.5rem 2rem;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  max-height: 85vh;
  overflow-y: auto;
}
.vp-sheet.open { transform: translateY(0); }

.vp-handle {
  width: 40px; height: 4px;
  background: var(--cream-border);
  border-radius: 4px;
  margin: 14px auto 0;
}
.vp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0 1rem;
  border-bottom: 1px solid var(--cream-border);
  gap: 1rem;
}
.vp-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.vp-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}
.vp-close {
  background: var(--cream-dark);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-muted);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.vp-close:hover { background: var(--cream-border); color: var(--ink); }

.vp-body { padding: 1rem 0; }

/* Each variant group */
.vp-group { margin-bottom: 1.25rem; }
.vp-group-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}
.vp-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vp-opt {
  padding: 7px 16px;
  border: 1.5px solid var(--cream-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  background: var(--white);
  transition: all 0.18s;
  user-select: none;
}
.vp-opt:hover { border-color: var(--ink-muted); color: var(--ink); }
.vp-opt.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
}
.vp-opt-color { display: inline-flex; align-items: center; gap: 7px; }
.vp-swatch-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); flex-shrink: 0; }
.vp-opt-color.selected .vp-swatch-dot { border-color: rgba(255,255,255,.6); box-shadow: 0 0 0 2px var(--ink); }

/* Quantity row */
.vp-footer { border-top: 1px solid var(--cream-border); padding-top: 1.25rem; }
.vp-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.vp-qty-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.vp-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--cream-border);
  border-radius: 10px;
  overflow: hidden;
}
.vp-qty-ctrl button {
  width: 38px; height: 38px;
  border: none;
  background: var(--cream);
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.vp-qty-ctrl button:hover { background: var(--cream-dark); }
.vp-qty-ctrl span {
  min-width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  line-height: 38px;
}
.vp-submit { width: 100%; margin-top: 0; }

/* ── List view ── */
.pc-grid.pc-list-view {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.pc-grid.pc-list-view .pc-wrap {
  flex-direction: row;
  align-items: stretch;
}
.pc-grid.pc-list-view .pc-img-wrap {
  width: 180px;
  min-width: 180px;
  aspect-ratio: auto;
  border-radius: 0;
  height: auto;
}
.pc-grid.pc-list-view .pc-card {
  flex-direction: row;
  flex: 1;
}
.pc-grid.pc-list-view .pc-body {
  padding: 1.1rem;
  justify-content: center;
}
.pc-grid.pc-list-view .pc-atc-form {
  width: 180px;
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-top: 0;
}
.pc-grid.pc-list-view .pc-name { -webkit-line-clamp: 1; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pc-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .pc-grid-3, .pc-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pc-grid-3, .pc-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .pc-grid.pc-list-view .pc-img-wrap { width: 110px; min-width: 110px; }
  .pc-grid.pc-list-view .pc-atc-form { width: auto; }
  .pc-name { font-size: 13px; }
  .pc-price { font-size: 14px; }
}

/* ═══════════════════════════════════════════
   PRODUCT DETAIL — REDESIGNED
═══════════════════════════════════════════ */
.pd-hero { background: var(--ink); padding: 1.25rem 5%; position: relative; overflow: hidden; }
.pd-hero::after { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(196,154,60,0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.pd-hero-inner { position: relative; z-index: 1; }
.pd-body { background: var(--cream); padding: 0 0 5rem; }
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1300px; margin: 0 auto; padding: 3.5rem 5% 0; align-items: start; }
.pd-gallery { position: sticky; top: calc(72px + 20px); }
.pd-img-wrap { position: relative; border-radius: 20px; overflow: hidden; background: var(--white); aspect-ratio: 4/5; box-shadow: 0 16px 60px rgba(26,22,18,0.1); }
.pd-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.pd-img-wrap:hover .pd-img { transform: scale(1.04); }
.pd-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--cream-border); background: var(--cream-dark); }
.pd-img-placeholder svg { width: 30%; height: 30%; }
.pd-img.pd-slide-out-left, .pd-img.pd-slide-out-right { transition: transform .15s ease, opacity .15s ease; }
.pd-img.pd-slide-out-left { transform: translateX(-24px); opacity: 0; }
.pd-img.pd-slide-out-right { transform: translateX(24px); opacity: 0; }
.pd-img.pd-slide-in-right { animation: pdSlideInFromRight .25s ease; }
.pd-img.pd-slide-in-left { animation: pdSlideInFromLeft .25s ease; }
@keyframes pdSlideInFromRight { from { transform: translateX(24px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes pdSlideInFromLeft { from { transform: translateX(-24px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.pd-slide-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: background .15s; }
.pd-slide-nav:hover { background: #fff; }
.pd-slide-prev { left: 12px; }
.pd-slide-next { right: 12px; }
@media (max-width: 900px) { .pd-slide-nav { width: 30px; height: 30px; font-size: 16px; } }
.pd-badges-bottom { position: absolute; bottom: 16px; left: 16px; display: flex; gap: 6px; z-index: 2; }
.pd-badges-top { display: flex; flex-wrap: wrap; gap: 6px; }
.pd-img-badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 20px; }
.pd-badge-sale { background: var(--rust); color: #fff; }
.pd-badge-feat { background: var(--gold); color: var(--ink); }
.pd-badge-free { background: var(--sage); color: #fff; }
.pd-badge-free-lg { font-size: 13px; padding: 7px 16px; }
.pd-countdown-strip { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(26,22,18,0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; font-size: 13px; color: var(--cream); }
.pd-countdown-fire { font-size: 16px; }
.pd-countdown-label { color: rgba(245,240,232,0.65); }
.pd-countdown-timer { color: var(--gold); font-weight: 600; }
.pd-info { display: flex; flex-direction: column; }
.pd-top-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.pd-name { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 1rem; }
.pd-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 0.875rem; flex-wrap: wrap; }
.pd-review-count { font-size: 13px; color: var(--ink-muted); }
.pd-avg-score { font-size: 13px; font-weight: 700; color: var(--gold); background: rgba(196,154,60,0.1); padding: 2px 8px; border-radius: 20px; }
.pd-proof-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem; }
.pd-proof-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; padding: 4px 11px; border-radius: 20px; background: var(--cream); border: 1px solid var(--cream-border); color: var(--ink-soft); }
.pd-proof-sold { background: #f0faf0; border-color: #b2dfb2; color: #2e7d32; }
.pd-proof-urgent { background: #fff3e0; border-color: #ffcc80; color: #e65100; }
.pd-price-block { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; flex-wrap: wrap; }
.pd-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 400; color: var(--ink); line-height: 1; }
.pd-original { font-size: 1.2rem; color: var(--ink-muted); text-decoration: line-through; }
.pd-discount-badge { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; background: rgba(184,92,56,0.1); color: var(--rust); border: 1px solid rgba(184,92,56,0.25); padding: 4px 10px; border-radius: 20px; }
.pd-stock-status { margin-bottom: 1.25rem; }
.pd-stock-in, .pd-stock-low, .pd-stock-out { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 20px; }
.pd-stock-in { background: #f0faf0; color: #2e7d32; border: 1px solid #b2dfb2; }
.pd-stock-low { background: #fff3e0; color: #e65100; border: 1px solid #ffcc80; }
.pd-stock-out { background: rgba(184,92,56,0.08); color: var(--rust); border: 1px solid rgba(184,92,56,0.2); }
.pd-divider { border: none; border-top: 1px solid var(--cream-border); margin: 1.25rem 0; }
.pd-desc { font-size: 14px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1rem; }
.pd-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0.25rem; }
.pd-tag { display: inline-flex; align-items: center; font-size: 12px; padding: 4px 12px; background: var(--cream); border: 1px solid var(--cream-border); border-radius: 20px; color: var(--ink-soft); text-decoration: none; transition: all .18s; }
.pd-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,154,60,0.07); }
.pd-action-form { margin-bottom: 0.75rem; }
.pd-action-row { display: flex; gap: 0.875rem; align-items: stretch; }
.pd-qty { display: flex; align-items: center; border: 1.5px solid var(--cream-border); border-radius: 10px; overflow: hidden; background: var(--white); flex-shrink: 0; }
.pd-qty-btn { width: 42px; height: 52px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all .18s; }
.pd-qty-btn:hover { background: var(--cream); color: var(--ink); }
.pd-qty-input { width: 44px; text-align: center; border: none; border-left: 1px solid var(--cream-border); border-right: 1px solid var(--cream-border); background: none; font-size: 15px; font-weight: 600; color: var(--ink); outline: none; height: 52px; -moz-appearance: textfield; }
.pd-qty-input::-webkit-inner-spin-button, .pd-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.pd-atc-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--ink); color: var(--cream); border: 2px solid var(--ink); border-radius: 10px; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; font-family: inherit; transition: all .25s; height: 52px; }
.pd-atc-btn:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.pd-atc-disabled { opacity: 0.5; cursor: not-allowed; background: var(--cream-border); border-color: var(--cream-border); color: var(--ink-muted); border-radius: 10px; padding: 14px 24px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; width: 100%; justify-content: center; border: 2px solid; }
.pd-buy-now { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 15px; background: var(--gold); color: var(--ink); border: 2px solid var(--gold); border-radius: 10px; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all .25s; margin-top: 0.75rem; }
.pd-buy-now:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(196,154,60,0.3); }
.pd-guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--cream-border); border: 1px solid var(--cream-border); border-radius: 12px; overflow: hidden; margin-top: 1.25rem; margin-bottom: 1.25rem; }
.pd-guarantee { background: var(--white); padding: 1rem 0.75rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; }
.pd-guarantee-icon { font-size: 20px; line-height: 1; }
.pd-guarantee-title { font-size: 12px; font-weight: 600; color: var(--ink); }
.pd-guarantee-sub { font-size: 11px; color: var(--ink-muted); }
.pd-share-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pd-share-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }
.pd-share-btn { display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border: 1px solid var(--cream-border); background: var(--white); border-radius: 20px; font-size: 12px; cursor: pointer; color: var(--ink-soft); transition: all .2s; font-family: inherit; }
.pd-share-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,154,60,0.05); }
.pd-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--cream-border); box-shadow: 0 -4px 24px rgba(26,22,18,0.1); z-index: 999; transform: translateY(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.pd-sticky-bar.visible { transform: translateY(0); }
.pd-sticky-inner { max-width: 1300px; margin: 0 auto; padding: 10px 5%; display: flex; align-items: center; gap: 1rem; }
.pd-sticky-img { width: 50px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.pd-sticky-info { flex: 1; min-width: 0; }
.pd-sticky-name { display: block; font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-sticky-price { font-size: 13px; color: var(--ink-muted); }
.pd-sticky-btn { padding: 10px 26px; background: var(--ink); color: var(--cream); border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; transition: background .2s; flex-shrink: 0; }
.pd-sticky-btn:hover { background: var(--gold); color: var(--ink); }
.pd-related { max-width: 1400px; margin: 0 auto; padding: 4rem 5%; border-top: 1px solid var(--cream-border); }
.pd-related-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.pd-related-link { font-size: 13px; color: var(--ink-muted); border-bottom: 1px solid currentColor; transition: color .2s; text-decoration: none; white-space: nowrap; }
.pd-related-link:hover { color: var(--gold); }
.pd-reviews { max-width: 1300px; margin: 0 auto; padding: 4rem 5% 5rem; border-top: 1px solid var(--cream-border); }
.pd-reviews-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.pd-reviews-count { font-size: 1.1rem; font-weight: 400; color: var(--ink-muted); font-family: 'Jost', sans-serif; }
.pd-avg-block { display: flex; align-items: center; gap: 1rem; }
.pd-avg-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 400; color: var(--ink); line-height: 1; }
.pd-avg-sub { font-size: 12px; color: var(--ink-muted); margin-top: 4px; }
.pd-reviews-grid { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: start; }
.pd-review-form-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: 16px; padding: 2rem; position: sticky; top: calc(72px + 20px); }
.pd-review-form-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 400; margin-bottom: 1.25rem; color: var(--ink); }
.pd-star-picker { display: flex; gap: 4px; margin-bottom: 1.25rem; }
.pd-star-pick { font-size: 1.8rem; background: none; border: none; cursor: pointer; color: var(--cream-border); transition: color .15s; padding: 0 2px; line-height: 1; }
.pd-star-pick.active, .pd-star-pick:hover { color: #f59e0b; }
.pd-form-group { margin-bottom: 1rem; }
.pd-form-group label { display: block; font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.4rem; font-weight: 600; }
.pd-form-group input, .pd-form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--cream-border); border-radius: 8px; background: var(--cream); font-size: 14px; color: var(--ink); font-family: inherit; outline: none; resize: vertical; transition: border-color .2s; }
.pd-form-group input:focus, .pd-form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.pd-review-submit { width: 100%; padding: 13px; background: var(--ink); color: var(--cream); border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s; margin-top: 0.5rem; }
.pd-review-submit:hover { background: var(--gold); color: var(--ink); }
.pd-reviews-list { display: flex; flex-direction: column; gap: 1rem; }
.pd-review-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: 12px; padding: 1.25rem 1.5rem; transition: box-shadow .2s; }
.pd-review-card:hover { box-shadow: 0 4px 16px rgba(26,22,18,0.07); }
.pd-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 0.75rem; }
.pd-reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; flex-shrink: 0; }
.pd-reviewer-info { flex: 1; }
.pd-reviewer-name { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.pd-review-date { font-size: 12px; color: var(--ink-muted); white-space: nowrap; }
.pd-review-comment { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.pd-reviews-empty { text-align: center; padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.pd-reviews-empty-icon { font-size: 3rem; opacity: 0.4; }
.pd-reviews-empty h4 { font-size: 1.1rem; font-weight: 500; }
.pd-reviews-empty p { font-size: 14px; color: var(--ink-muted); }

/* ═══════════════════════════════════════════
   CART PAGE — REDESIGNED
═══════════════════════════════════════════ */
.cart-page-new { max-width: 1300px; margin: 0 auto; padding: 3rem 5%; }
.cart-layout-new { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.cart-items-header { display: grid; grid-template-columns: auto 1fr auto auto; gap: 1rem; padding: 0 0 0.75rem; border-bottom: 2px solid var(--cream-border); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; margin-bottom: 0.5rem; }
.cart-item-new { display: grid; grid-template-columns: auto 1fr auto auto; gap: 1.25rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--cream-border); }
.cart-item-img-link { flex-shrink: 0; }
.cart-item-img-new { width: 90px; height: 110px; border-radius: 10px; object-fit: cover; display: block; background: var(--cream-dark); }
.cart-item-img-placeholder { display: flex; align-items: center; justify-content: center; color: var(--cream-border); width: 90px; height: 110px; border-radius: 10px; background: var(--cream-dark); }
.cart-item-details { min-width: 0; }
.cart-item-name-new { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); font-weight: 400; text-decoration: none; margin-bottom: 4px; line-height: 1.3; transition: color .2s; }
.cart-item-name-new:hover { color: var(--gold); }
.cart-item-cat-new { display: block; font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.cart-item-unit { font-size: 13px; color: var(--ink-soft); }
.cart-item-qty-col { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cart-qty-control { display: flex; align-items: center; border: 1.5px solid var(--cream-border); border-radius: 8px; overflow: hidden; background: var(--white); }
.cart-qty-btn { width: 34px; height: 36px; background: none; border: none; cursor: pointer; font-size: 16px; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; transition: all .15s; font-family: inherit; }
.cart-qty-btn:hover { background: var(--cream); color: var(--ink); }
.cart-qty-num { min-width: 32px; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink); border-left: 1px solid var(--cream-border); border-right: 1px solid var(--cream-border); line-height: 36px; }
.cart-remove-form { display: flex; }
.cart-remove-btn { background: none; border: none; cursor: pointer; color: var(--ink-muted); padding: 5px; transition: color .2s; display: flex; align-items: center; }
.cart-remove-btn:hover { color: var(--rust); }
.cart-edit-btn { background: none; border: 1px solid #d1d5db; border-radius: 6px; cursor: pointer; color: #374151; padding: 3px 8px; font-size: 12px; display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; transition: all .15s; }
.cart-edit-btn:hover { border-color: #1a3c2e; color: #1a3c2e; }
.cart-item-subtotal-new { font-weight: 600; font-size: 15px; color: var(--ink); white-space: nowrap; min-width: 70px; text-align: right; }
.cart-continue-row { padding: 1.5rem 0 0; }
.cart-continue-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-muted); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color .2s; }
.cart-continue-link:hover { color: var(--ink); }
.cart-ship-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; }
.cart-ship-msg { font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.cart-ship-track { height: 6px; background: var(--cream-border); border-radius: 99px; overflow: hidden; margin-bottom: 6px; }
.cart-ship-fill { height: 100%; background: var(--gold); border-radius: 99px; transition: width .6s ease; }
.cart-ship-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-muted); }
.cart-ship-goal { color: var(--ink-soft); font-weight: 500; }
.cart-ship-achieved { background: #f0faf0; border-color: #b2dfb2; display: flex; align-items: center; gap: 12px; }
.cart-ship-achieved .cart-ship-track { flex: 1; margin-bottom: 0; }
.cart-ship-achieved .cart-ship-fill { background: #4caf50; }
.cart-ship-icon { font-size: 20px; flex-shrink: 0; }
.cart-ship-msg-win { font-size: 13px; color: #2e7d32; font-weight: 500; }
.cart-summary-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: 16px; padding: 1.75rem; }
.cart-summary-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--cream-border); }
.cart-summary-rows { margin-bottom: 0.5rem; }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; font-size: 14px; color: var(--ink-soft); }
.cart-summary-divider { border: none; border-top: 1px solid var(--cream-border); margin: 0.5rem 0; }
.cart-summary-total { display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; font-weight: 700; color: var(--ink); padding: 0.75rem 0 1.5rem; }
.cart-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 15px; background: var(--ink); color: var(--cream); border: 2px solid var(--ink); border-radius: 10px; font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; transition: all .25s; text-transform: uppercase; }
.cart-checkout-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,22,18,0.12); }
.cart-trust-badges { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; font-size: 12px; color: var(--ink-muted); flex-wrap: wrap; }
.cart-empty-new { text-align: center; padding: 6rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; max-width: 420px; margin: 0 auto; }
.cart-empty-icon { color: var(--cream-border); margin-bottom: 0.5rem; }
.cart-empty-new h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 400; }
.cart-empty-new p { font-size: 14px; color: var(--ink-muted); }

/* ═══════════════════════════════════════════
   CHECKOUT PAGE — REDESIGNED
═══════════════════════════════════════════ */
.co-page { max-width: 1200px; margin: 0 auto; padding: 2.5rem 5% 5rem; }
.co-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.co-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: 16px; overflow: hidden; margin-bottom: 1.25rem; }
.co-card-header { display: flex; align-items: center; gap: 14px; padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--cream-border); }
.co-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; color: var(--ink); margin: 0; }
.co-card-num { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.co-form-body { padding: 1.5rem 1.75rem; }
.co-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.co-form-group { margin-bottom: 1rem; }
.co-form-group:last-child { margin-bottom: 0; }
.co-form-group label { display: block; font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.4rem; font-weight: 600; }
.co-required { color: var(--rust); }
.co-input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--cream-border); border-radius: 8px; background: var(--cream); font-size: 14px; color: var(--ink); font-family: inherit; outline: none; transition: border-color .2s, background .2s; }
.co-input:focus { border-color: var(--gold); background: var(--white); }
.addr-ac-dropdown { display: none; position: absolute; top: 100%; left: 0; right: 0; margin-top: 4px; background: var(--white); border: 1px solid var(--cream-border); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 50; max-height: 260px; overflow-y: auto; }
.addr-ac-dropdown.open { display: block; }
.addr-ac-item { padding: 10px 14px; font-size: 13px; color: var(--ink); cursor: pointer; }
.addr-ac-item:hover, .addr-ac-item.addr-ac-active { background: var(--cream); }
.co-payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.co-payment-opt input { display: none; }
.co-payment-card { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1.5px solid var(--cream-border); border-radius: 10px; background: var(--cream); cursor: pointer; transition: all .2s; position: relative; }
.co-payment-card:hover { border-color: var(--ink); background: var(--white); }
.co-payment-card.selected { border-color: var(--gold); background: rgba(196,154,60,0.06); box-shadow: 0 0 0 3px rgba(196,154,60,0.15); }
.co-payment-icon { font-size: 1.4rem; flex-shrink: 0; }
.co-payment-name { font-size: 13px; font-weight: 500; color: var(--ink); flex: 1; }
.co-payment-check { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--cream-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--white); color: transparent; transition: all .2s; }
.co-payment-card.selected .co-payment-check { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.co-coupon-row { display: flex; gap: 0.75rem; }
.co-coupon-input { flex: 1; font-size: 13px; letter-spacing: 0.08em; }
.co-coupon-btn { padding: 12px 20px; background: var(--ink); color: var(--cream); border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; transition: background .2s; }
.co-coupon-btn:hover { background: var(--gold); color: var(--ink); }
.co-coupon-msg { font-size: 13px; margin-top: 0.5rem; }
.co-coupon-msg.success { color: #2e7d32; }
.co-coupon-msg.error { color: var(--rust); }
.co-place-order-btn { width: 100%; padding: 17px; background: var(--ink); color: var(--cream); border: none; border-radius: 12px; font-size: 15px; font-weight: 700; letter-spacing: 0.06em; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .25s; margin-bottom: 1rem; text-transform: uppercase; }
.co-place-order-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,22,18,0.15); }
.co-trust-strip { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; font-size: 12px; color: var(--ink-muted); padding: 0 0 0.5rem; }
.co-summary-col { position: sticky; top: calc(72px + 20px); }
.co-summary-card { background: var(--white); border: 1px solid var(--cream-border); border-radius: 16px; overflow: hidden; }
.co-summary-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; color: var(--ink); padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--cream-border); display: flex; align-items: center; gap: 10px; margin: 0; }
.co-order-items { padding: 0.75rem 1.5rem; }
.co-order-item { display: flex; align-items: center; gap: 12px; padding: 0.625rem 0; border-bottom: 1px solid rgba(221,214,200,0.5); }
.co-order-item:last-child { border-bottom: none; }
.co-order-item-img { position: relative; width: 52px; height: 62px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--cream-dark); }
.co-order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.co-order-item-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--cream-border); }
.co-order-item-qty-badge { position: absolute; top: -5px; right: -5px; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: var(--cream); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.co-order-item-info { flex: 1; min-width: 0; }
.co-order-item-name { display: block; font-size: 13px; font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.co-order-item-cat { font-size: 11px; color: var(--ink-muted); }
.co-order-item-price { font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.co-summary-divider { border: none; border-top: 1px solid var(--cream-border); margin: 0; }
.co-summary-rows { padding: 0.75rem 1.5rem; }
.co-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 14px; color: var(--ink-soft); }
.co-summary-total { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; font-size: 1.1rem; font-weight: 700; color: var(--ink); background: var(--cream); border-top: 2px solid var(--cream-border); }

/* ═══════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE — ALL DEVICES
═══════════════════════════════════════════ */

/* ── Large tablet / small desktop ── */
@media (max-width: 1100px) {
  .shop-body { grid-template-columns: 220px 1fr; }
  .shop-sidebar-new { width: 220px; min-width: 220px; padding: 1.75rem 1.25rem; }
  .section { padding: 4rem 5%; }
}

/* ── Tablet landscape ── */
@media (max-width: 900px) {
  /* Shop body handled above — sidebar becomes horizontal strip */

  /* Shop bar */
  .shop-bar { padding: 0.875rem 5%; }

  /* Page hero */
  .page-hero { padding: 3rem 5% 2.5rem; }
  .ph-title { font-size: clamp(2rem, 6vw, 3rem); }

  /* About */
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 5%;
  }
  .about-story-visual { display: none; }
  .about-stats-band { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid var(--cream-border); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }

  /* Product detail */
  .product-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Tablet portrait / large mobile ── */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 0 4%; height: 64px; }
  .nav-left .nav-link { display: none; }
  .hamburger { display: flex !important; }
  .nav-left { gap: 0; }
  .nav-right { gap: 1rem; }
  .nav-right .nav-icon-btn:not(:first-child) { display: none; }

  /* Announce bar */
  .announce-bar { font-size: 11px; padding: 6px 0; }
  .announce-item { padding: 0 14px; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 5% 2.5rem;
  }
  .hero::before { display: none; }
  .hero-visual { height: 260px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-wrap: wrap; gap: 0.875rem; }
  .hero-badge { bottom: 10%; }

  /* Shop bar */
  .shop-bar { padding: 0.75rem 4%; gap: 0.5rem; }
  .shop-bar-right { gap: 0.5rem; }
  .sort-select { font-size: 12px; padding: 7px 10px; }

  /* Page hero */
  .page-hero { padding: 2.5rem 4% 2rem; }
  .ph-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .ph-sub { font-size: 14px; }
  .faq-hero-search { max-width: 100%; }

  /* Sections */
  .section { padding: 3rem 4%; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; margin-bottom: 2rem; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }

  /* Cat strip */
  .cat-strip { padding: 1.25rem 4%; }

  /* Product detail */
  .product-detail-layout { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Cart / Checkout */
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }

  /* About */
  .about-stats-band { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-promise-inner { padding: 3rem 5%; }

  /* FAQ */
  .faq-body { padding: 2rem 4% 4rem; }
  .faq-tabs { gap: 0.4rem; }
  .faq-tab { padding: 7px 16px; font-size: 12px; }
  .faq-contact-card { padding: 2rem; }
  .faq-contact-btns { flex-wrap: wrap; gap: 0.75rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-bottom-links { gap: 1rem; }

  /* Popups */
  .newsletter-popup, .exit-popup { padding: 2.5rem 2rem; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  /* Navbar */
  .navbar { height: 60px; }
  .nav-brand a { font-size: 1.65rem; letter-spacing: 0.1em; }
  .nav-right { gap: 0.75rem; }

  /* Hero */
  .hero-visual { height: 200px; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { padding: 12px 22px; }

  /* Shop */
  .shop-bar { padding: 0.75rem 4%; }
  .shop-products-area { padding: 1.5rem 1rem; }
  .active-filters { margin-bottom: 1rem; }
  .pc-grid-3 { gap: 0.75rem; }

  /* Products grid (old system) */
  .products-grid, .products-grid-3, .products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  /* About */
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stat-value { font-size: 2rem; }

  /* FAQ */
  .faq-tabs { gap: 0.3rem; }
  .faq-tab { padding: 6px 14px; font-size: 12px; }
  .faq-q-btn { font-size: 14px; padding: 1rem 1.1rem; }
  .faq-contact-btns { flex-direction: column; }
  .faq-contact-btn { text-align: center; justify-content: center; }

  /* Pagination */
  .pagination { gap: 4px; flex-wrap: wrap; }
  .page-btn { min-width: 34px; height: 34px; font-size: 12px; padding: 0 8px; }

  /* Forms */
  .sf-apply-btn { padding: 8px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .newsletter-row { flex-direction: column; }
  .newsletter-btn { padding: 10px 16px; text-align: center; }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  /* Navbar */
  .navbar { padding: 0 4%; }
  .nav-brand a { font-size: 1.5rem; }
  .search-btn svg, .cart-btn svg { width: 18px; height: 18px; }
  .cart-count { width: 16px; height: 16px; font-size: 9px; top: -6px; right: -8px; }

  /* Page hero */
  .page-hero { padding: 2rem 4% 1.75rem; }
  .ph-title { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  .ph-sub { font-size: 13px; }
  .ph-meta { gap: 1rem; }

  /* Hero */
  .hero { padding: 2.5rem 4% 2rem; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; padding: 13px 20px; }

  /* Sections */
  .section { padding: 2.5rem 4%; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Product cards */
  .pc-grid-3, .pc-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .pc-body { padding: 0.7rem 0.6rem 0.5rem; }
  .pc-name { font-size: 12px; -webkit-line-clamp: 2; }
  .pc-price { font-size: 13px; }
  .pc-atc-btn { padding: 8px 6px; font-size: 11px; gap: 4px; }
  .pc-atc-btn svg { display: none; }

  /* About */
  .about-stats-band { grid-template-columns: repeat(2, 1fr); }
  .about-stat-value { font-size: 1.8rem; }
  .about-stat { padding: 1.5rem 1rem; }

  /* Product detail */
  .product-guarantees { grid-template-columns: 1fr; gap: 0.5rem; }
  .share-row { flex-wrap: wrap; }

  /* Cart */
  .cart-item { gap: 0.75rem; }
  .cart-img { width: 70px; height: 70px; }
}

/* ── Extra small (< 360px) ── */
@media (max-width: 360px) {
  .navbar { padding: 0 3%; }
  .nav-brand a { font-size: 1.3rem; letter-spacing: 0.06em; }
  .page-hero { padding: 1.75rem 3%; }
  .ph-title { font-size: 1.6rem; }
  .section { padding: 2rem 3%; }
  .faq-body { padding: 1.5rem 3% 3.5rem; }
  .shop-products-area { padding: 1rem 0.75rem; }
  .pc-grid-3, .pc-grid-4 { gap: 0.5rem; }
  .pc-body { padding: 0.6rem 0.5rem 0.4rem; }
  .pc-name { font-size: 11.5px; }
  .footer-bottom { padding: 1rem 3%; }
}

/* ── Product detail / Cart / Checkout responsive ── */
@media (max-width: 900px) {
  .pd-layout { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 5% 0; }
  .pd-gallery { position: static; }
  .pd-img-wrap { aspect-ratio: 16/9; max-height: 380px; }
  .pd-reviews-grid { grid-template-columns: 1fr; }
  .pd-review-form-card { position: static; }
}
@media (max-width: 768px) {
  .cart-layout-new { grid-template-columns: 1fr; }
  .co-layout { grid-template-columns: 1fr; }
  .co-summary-col { position: static; order: -1; }
  .pd-layout { padding: 2rem 4% 0; }
  .pd-related { padding: 3rem 4%; }
  .pd-reviews { padding: 3rem 4% 4rem; }
  .pd-reviews-header { margin-bottom: 2rem; }
}
@media (max-width: 600px) {
  .cart-items-header { display: none; }
  .cart-item-new { grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: 0.875rem; }
  .cart-item-subtotal-new { grid-column: 2; text-align: left; }
  .cart-item-qty-col { grid-column: span 2; flex-direction: row; justify-content: space-between; align-items: center; padding: 0.5rem 0 0; }
  .co-form-row-2 { grid-template-columns: 1fr; }
  .pd-img-wrap { max-height: 300px; }
  .pd-price { font-size: 2rem; }
  .pd-avg-number { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .pd-action-row { flex-direction: column; }
  .pd-qty { justify-content: center; }
  .pd-qty-btn { flex: 1; }
  .pd-atc-btn { height: 48px; }
  .pd-guarantees { grid-template-columns: 1fr; }
  .pd-guarantee { flex-direction: row; text-align: left; gap: 10px; padding: 0.875rem 1rem; }
  .co-payment-grid { grid-template-columns: 1fr; }
  .cart-page-new { padding: 2rem 4%; }
  .co-page { padding: 2rem 4% 4rem; }
}

/* ── Prevent any horizontal overflow ── */
* { min-width: 0; }
html, body { max-width: 100vw; overflow-x: hidden; }
img, video, iframe { max-width: 100%; }

/* ── SKELETON LOADING ── */
@keyframes shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0ebe3 25%, #e8e2d9 50%, #f0ebe3 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}
.skeleton-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cream-border);
}
.skeleton-img { width: 100%; aspect-ratio: 3/4; }
.skeleton-body { padding: 1rem; display: flex; flex-direction: column; gap: 8px; }
.skeleton-line { height: 12px; border-radius: 6px; }
.skeleton-line.short { width: 60%; }
.skeleton-line.price { height: 18px; width: 40%; }

/* ── TOAST NOTIFICATIONS ── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: #1a1612;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-family: 'Jost', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  pointer-events: all;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), opacity 0.3s;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.toast-success .toast-icon { color: #4ade80; }
.toast.toast-error .toast-icon { color: #f87171; }
.toast.toast-info .toast-icon { color: #60a5fa; }
.toast-icon { font-size: 16px; flex-shrink: 0; }
.toast-msg { flex: 1; line-height: 1.4; }
@media(max-width:600px) {
  #toast-container { bottom: 80px; right: 12px; left: 12px; }
  .toast { max-width: 100%; }
}

/* ── GALLERY THUMBNAILS ── */
.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 72px;
  flex-shrink: 0;
}
.pd-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active { border-color: var(--gold); }
.pd-thumb:hover { border-color: var(--ink-muted); }
.pd-gallery { display: flex; gap: 12px; }
.pd-img-wrap { flex: 1; }
@media(max-width:700px) {
  .pd-thumbs { flex-direction: row; width: 100%; overflow-x: auto; }
  .pd-thumb { width: 60px; height: 60px; flex-shrink: 0; }
  .pd-gallery { flex-direction: column; }
}

/* ── REVIEW PHOTOS ── */
.pd-review-photos { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pd-review-photo { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 1px solid var(--cream-border); transition: transform 0.2s; }
.pd-review-photo:hover { transform: scale(1.05); }
.review-photo-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.85);
  align-items: center; justify-content: center;
}
.review-photo-lightbox.open { display: flex; }
.review-photo-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; }
.review-photo-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 28px; cursor: pointer; background: none; border: none; line-height: 1;
}

/* ── AUTH PAGES ── */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: 60vh; padding: 3rem 5%; }
.auth-card { background: #fff; border: 1px solid var(--cream-border); border-radius: 16px; padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-md); }
.auth-header { text-align: center; margin-bottom: 1.75rem; }
.auth-title { font-size: 1.6rem; font-weight: 700; margin: 0 0 0.25rem; }
.auth-sub { color: var(--ink-muted); font-size: 14px; margin: 0; }
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-form .form-group { display: flex; flex-direction: column; gap: 5px; }
.auth-form label { font-size: 13px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .05em; }
.auth-form input { padding: 11px 14px; border: 1px solid var(--cream-border); border-radius: 8px; font-size: 14px; transition: border-color .2s; }
.auth-form input:focus { outline: none; border-color: var(--gold); }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 14px; color: var(--ink-muted); }
.auth-footer a { color: var(--gold); font-weight: 600; text-decoration: none; }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 11px 16px; border: 1.5px solid var(--cream-border); border-radius: 8px; background: #fff; color: var(--ink); font-size: 14px; font-weight: 600; text-decoration: none; transition: border-color .2s, box-shadow .2s; cursor: pointer; }
.btn-google:hover { border-color: #4285F4; box-shadow: 0 2px 8px rgba(66,133,244,0.15); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 1.25rem 0; color: var(--ink-muted); font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--cream-border); }

/* ── VARIANT SELECTORS ── */
.pd-variants { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.pd-variant-group { display: flex; flex-direction: column; gap: 6px; }
.pd-variant-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-muted); }
.pd-variant-label span { color: var(--ink); font-weight: 700; margin-left: 4px; }
.pd-variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-variant-btn {
  padding: 7px 14px; border: 1.5px solid var(--cream-border); border-radius: 6px;
  background: #fff; cursor: pointer; font-size: 13px; font-family: inherit;
  transition: border-color .2s, background .2s, color .2s;
}
.pd-variant-btn:hover { border-color: var(--ink-muted); }
.pd-variant-btn.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.pd-variant-btn.out { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.pd-variant-btn-color { display: inline-flex; align-items: center; gap: 7px; }
.pd-swatch-dot { display: inline-block; width: 13px; height: 13px; border-radius: 50%; background: var(--swatch-color); border: 1px solid rgba(0,0,0,.15); flex-shrink: 0; }
.pd-variant-btn-color.active .pd-swatch-dot { border-color: rgba(255,255,255,.6); box-shadow: 0 0 0 2px var(--ink); }

/* ── CART VARIANT BADGE ── */
.cart-item-variant {
  display: inline-block;
  font-size: 11px;
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 1px 8px;
  color: var(--ink-muted);
  margin-bottom: 2px;
}

/* ══════════════════════════════════════
   MOBILE / TOUCH FIXES
══════════════════════════════════════ */

/* Wishlist button: always visible on touch devices (hover doesn't exist) */
@media (hover: none) {
  .pc-wishlist { opacity: 1; }
  .product-overlay { display: none; }
  .pd-img-wrap:hover .pd-img { transform: none; }
  .pc-wrap:hover { transform: none; box-shadow: 0 2px 12px rgba(26,22,18,0.06); }
}

/* Payment pending status badge */
.status-payment_pending { background: rgba(100,120,200,0.12); color: #6478C8; }

/* Checkout: payment instructions box readable on any size */
@media (max-width: 480px) {
  .co-payment-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .co-payment-grid { grid-template-columns: 1fr; }
}

/* Float buttons: stack nicely on mobile */
@media (max-width: 480px) {
  .float-contact { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .back-to-top { bottom: 76px; right: 16px; width: 40px; height: 40px; }
}

/* Cart page on very small screens */
@media (max-width: 400px) {
  .cart-item-new { grid-template-columns: 72px 1fr; }
  .cart-item-img-new, .cart-item-img-placeholder { width: 72px; height: 88px; }
}

/* Order detail customer page on mobile */
@media (max-width: 600px) {
  .cust-order-body { grid-template-columns: 1fr; }
  .cust-timeline { overflow-x: auto; padding-bottom: 1rem; }
  .cust-step-label { font-size: 9px; }
}

/* Checkout trust strip wraps cleanly */
@media (max-width: 400px) {
  .co-trust-strip { gap: 0.75rem; font-size: 11px; }
}

/* Product detail variants wrap on small screens */
@media (max-width: 400px) {
  .pd-variant-options { gap: 6px; }
  .pd-variant-btn { padding: 6px 10px; font-size: 12px; }
}

/* Sticky bar: don't show product image on very small screens */
@media (max-width: 360px) {
  .pd-sticky-img { display: none; }
  .pd-sticky-inner { gap: 0.75rem; }
}

/* Ensure section headers never overflow */
@media (max-width: 400px) {
  .section-header { margin-bottom: 1.5rem; }
  .section-title { font-size: 1.4rem; }
}

/* Footer newsletter on tiny screens */
@media (max-width: 360px) {
  .newsletter-row { flex-direction: column; }
  .newsletter-btn { width: 100%; text-align: center; }
}

/* Popups: full-width on tiny screens */
@media (max-width: 380px) {
  .newsletter-popup, .exit-popup {
    width: 96%;
    padding: 2rem 1.25rem;
  }
}

/* Auth pages full-width on mobile */
@media (max-width: 480px) {
  .auth-card { padding: 2rem 1.5rem; }
  .auth-page { padding: 2rem 4%; align-items: flex-start; padding-top: 3rem; }
}

/* Values section 1 col on small mobile */
@media (max-width: 480px) {
  .values-section { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 360px) {
  .values-section { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--cream-border); }
}

/* ═══════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION BAR
═══════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 12px; right: 12px;
  height: 62px;
  background: rgba(253,250,245,0.97);
  border-radius: 22px;
  z-index: 97;
  box-shadow:
    0 8px 32px rgba(26,22,18,0.18),
    0 2px 8px rgba(26,22,18,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(221,214,200,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: visible;
}

.mbn-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  height: 100%;
  align-items: center;
}

/* Regular nav items */
.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--ink-muted);
  text-decoration: none;
  height: 100%;
  padding: 6px 2px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
  width: 100%;
}

/* Icon pill wrapper */
.mbn-icon-wrap {
  width: 42px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition:
    background 0.25s cubic-bezier(0.4,0,0.2,1),
    transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}

.mbn-item svg {
  width: 21px; height: 21px;
  flex-shrink: 0;
  transition: stroke 0.2s;
}

.mbn-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.2s, font-weight 0.15s;
}

/* Active state — filled dark pill, icon light, label gold */
.mbn-item.active { color: var(--gold); }
.mbn-item.active .mbn-icon-wrap {
  background: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(26,22,18,0.22);
}
.mbn-item.active .mbn-icon-wrap svg { stroke: var(--cream); }
.mbn-item.active .mbn-label { color: var(--gold); font-weight: 700; letter-spacing: 0.08em; }

/* Tap press feedback */
.mbn-item:active .mbn-icon-wrap { transform: scale(0.87); }
.mbn-item.active:active .mbn-icon-wrap { transform: translateY(-2px) scale(0.9); }

/* ── Center FAB (Search) ── */
.mbn-fab {
  width: 54px; height: 54px;
  background: var(--ink);
  border: 3.5px solid rgba(253,250,245,0.97);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  justify-self: center;
  margin-top: -20px;
  box-shadow:
    0 6px 22px rgba(26,22,18,0.32),
    0 2px 6px rgba(26,22,18,0.14);
  transition:
    background 0.22s,
    transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.22s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 2;
  color: var(--cream);
}
.mbn-fab:hover { background: var(--gold); }
.mbn-fab:active { transform: scale(0.88); box-shadow: 0 2px 8px rgba(26,22,18,0.18); }
.mbn-fab svg { width: 22px; height: 22px; stroke: var(--cream); }

/* ── Cart badge ── */
.mbn-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #e53e3e;
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  min-width: 17px; height: 17px;
  border-radius: 9px;
  padding: 0 3px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid rgba(253,250,245,0.97);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════
   MOBILE FILTER BUTTON + DRAWER
═══════════════════════════════════════════ */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.04em;
  -webkit-tap-highlight-color: transparent;
}
.mobile-filter-btn svg { flex-shrink: 0; }
.mobile-filter-btn .mfb-badge {
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Filter drawer overlay */
.filter-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,22,18,0.45);
  z-index: 199;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.filter-drawer-overlay.open {
  display: block;
  opacity: 1;
}

/* Sidebar as slide-up drawer on mobile */
@media (max-width: 768px) {
  /* Enable bottom nav */
  .mobile-bottom-nav { display: flex; }
  /* 62px height + 10px from-bottom offset + 10px buffer */
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  .float-contact { bottom: calc(84px + 12px + env(safe-area-inset-bottom, 0px)) !important; right: 16px !important; width: 48px !important; height: 48px !important; }
  .back-to-top  { bottom: calc(84px + 60px + env(safe-area-inset-bottom, 0px)) !important; right: 16px !important; width: 42px !important; height: 42px !important; }
  #toast-container { bottom: calc(84px + 8px + env(safe-area-inset-bottom, 0px)) !important; }
  .pd-sticky-bar { bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important; }

  /* Mobile filter button visible */
  .mobile-filter-btn { display: flex; }

  /* Shop body full-width (sidebar is out of flow as fixed drawer) */
  .shop-body { grid-template-columns: 1fr !important; }

  /* Sidebar becomes a fixed bottom drawer */
  .shop-sidebar-new {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-radius: 22px 22px 0 0;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 200;
    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    /* reset horizontal grid */
    display: block !important;
    border-right: none;
    border-bottom: none;
    padding: 0 1.25rem calc(1.5rem + 84px + env(safe-area-inset-bottom, 0px));
    width: 100%;
    min-width: 0;
    /* scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--cream-border) transparent;
  }
  .shop-sidebar-new.drawer-open {
    transform: translateY(0);
  }
  .shop-sidebar-new .sf-group {
    border-right: none;
    padding: 1rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--cream-border);
  }
  .shop-sidebar-new .sf-group:last-child { border-bottom: none; }

  /* Drawer handle + header inside sidebar */
  .sidebar-drawer-handle {
    display: flex;
    justify-content: center;
    padding: 14px 0 6px;
    cursor: pointer;
  }
  .sidebar-drawer-handle::before {
    content: '';
    width: 44px; height: 4px;
    background: var(--cream-border);
    border-radius: 4px;
  }
  .sidebar-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0 1rem;
    border-bottom: 1.5px solid var(--cream-border);
    margin-bottom: 0.5rem;
  }
  .sidebar-drawer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
  }
  .sidebar-drawer-close {
    background: var(--cream-dark);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink-muted);
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .sidebar-drawer-close:hover { background: var(--cream-border); color: var(--ink); }
}

/* Desktop: hide mobile-only drawer elements */
@media (min-width: 769px) {
  .sidebar-drawer-handle,
  .sidebar-drawer-header,
  .mobile-filter-btn,
  .filter-drawer-overlay { display: none !important; }
}

/* Fix Add to Cart button not wrapping on mobile */
@media (max-width: 600px) {
  .pc-atc-btn { white-space: nowrap; }
  .pc-atc-form { padding: 0 0.75rem 0.875rem; }
}

/* Better touch targets for filter options */
@media (max-width: 768px) {
  .sf-radio, .sf-stars, .sf-check {
    padding: 8px 4px;
    min-height: 40px;
  }
  .sf-cat-parent { padding: 10px 4px; min-height: 40px; }
  .sf-apply-btn { min-height: 44px; font-size: 14px; }
}
