/* =========================================================
   Affoscent — Light Luxury Mobile-First Design System
   Font: Poppins (Google Fonts)
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --bg:         #FFFFFF;
  --bg2:        #F1F1F1;
  --card:       #FFFFFF;
  --border:     #E8E2D9;
  --border2:    #D4CCC0;
  --gold:       #2C1A0E;
  --gold-light: #4A2E1A;
  --gold-dim:   rgba(44,26,14,.08);
  --gold-bg:    rgba(44,26,14,.05);
  --text:       #1A1612;
  --text2:      #4A4038;
  --muted:      #9A8E82;
  --muted2:     #C4BAB0;
  --danger:     #C0392B;
  --success:    #27AE60;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.10);
  --font:       'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: .2s ease;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.25; color: var(--text); }
.section-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.section-title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.3px;
}

/* ── Layout ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 480px; margin: 0 auto; padding: 0 16px; }
/* Desktop wider */
@media (min-width: 768px) { .container { max-width: 1200px; } }
.section    { padding: 40px 0; }
.section-sm { padding: 24px 0; }

/* ── Announcement Bar ──────────────────────────────────── */
.announce-bar {
  background: #2C1A0E;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  padding: 7px 16px;
  white-space: nowrap;
  overflow: hidden;
}
.announce-bar .marquee {
  display: inline-block;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241,241,241,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 8px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
}
.nav-logo .dot { color: var(--gold); }
.nav-links {
  display: none; /* hidden on mobile, shown on desktop */
}
@media (min-width: 768px) {
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a { font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); color: var(--text2); transition: all var(--transition); }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); background: var(--gold-bg); }
}
.nav-actions { display: flex; align-items: center; gap: 4px; }
.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: none;
  background: var(--bg);
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.nav-icon-btn:active { transform: scale(.92); background: var(--bg2); }
.nav-icon-btn .badge {
  position: absolute;
  top: 5px; right: 5px;
  background: #2C1A0E;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ── Bottom Nav (Mobile App style) ────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding-bottom: var(--safe-bottom);
  display: flex;
  align-items: center;
}
.bottom-nav a, .bottom-nav button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: color var(--transition);
  letter-spacing: .3px;
}
.bottom-nav a.active, .bottom-nav a:active,
.bottom-nav button:active { color: var(--gold); }
.bottom-nav a.active svg { stroke: var(--gold); }
.bottom-nav__cart-btn {
  flex: 1.2;
}
.bottom-nav__cart-btn > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
@media (min-width: 768px) { .bottom-nav { display: none; } }
/* Push content above bottom nav on mobile */
body { padding-bottom: calc(64px + var(--safe-bottom)); }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ── Hero (Mobile — full screen card) ─────────────────── */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin-bottom: 8px;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.85) 0%, rgba(10,8,6,.3) 50%, transparent 80%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 32px 20px 52px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero__content { padding: 48px 0 72px; }
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.hero__title {
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}
.hero__title em { color: #E8C97A; font-style: normal; }
.hero__sub {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: .3px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.96); }
.btn-gold { background: #2C1A0E; color: #fff; border-color: #2C1A0E; }
.btn-gold:active { background: #4A2E1A; }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:active { background: var(--gold-bg); }
.btn-light { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-ghost { background: var(--bg); color: var(--text2); border-color: var(--border); }
.btn-ghost:active { background: var(--bg2); }
.btn-sm { padding: 9px 16px; font-size: 12px; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }
.btn-pill { border-radius: 50px; }

/* ── USP Strip ─────────────────────────────────────────── */
.usp-strip {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 16px;
  scrollbar-width: none;
}
.usp-strip::-webkit-scrollbar { display: none; }
.usp-chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.usp-chip .icon { font-size: 14px; }

/* ── Section Header ────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: 18px; font-weight: 700; }
.section-head a  { font-size: 12px; font-weight: 600; color: var(--gold); }

/* ── Collection Cards (horizontal scroll) ──────────────── */
.collection-scroll {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 0 16px 4px;
  scrollbar-width: none;
}
.collection-scroll::-webkit-scrollbar { display: none; }
.collection-card {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg2);
}
.collection-card img { width: 100%; height: 100%; object-fit: cover; }
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.collection-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 12px;
}
.collection-card__name { font-size: 13px; font-weight: 700; color: #fff; }
.collection-card__sub  { font-size: 10px; color: rgba(255,255,255,.7); margin-top: 2px; }
@media (min-width: 768px) {
  .collection-scroll { display: grid; grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .collection-card { width: auto; height: 220px; }
}

/* ── Product Grid ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* ── Product Card ──────────────────────────────────────── */
.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
@media (min-width: 768px) {
  .product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
}
.product-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg2);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card__img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s;
}
.product-card:hover .product-card__img-hover { opacity: 1; }
.product-card:hover .product-card__img img { transform: scale(1.04); }

.product-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-new  { background: #2C1A0E; color: #fff; }
.badge-sale { background: #E74C3C; color: #fff; }
.badge-best { background: var(--text); color: #fff; }

.product-card__wish {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card__wish:active { transform: scale(.88); }
.product-card__wish.active svg { fill: #E74C3C; stroke: #E74C3C; }

.product-card__body { padding: 10px 10px 12px; }
.product-card__gender {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.product-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.price     { font-size: 14px; font-weight: 700; color: var(--text); }
.compare   { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.save-tag  { font-size: 9px; font-weight: 700; background: #FFF0E0; color: #E67E22; padding: 2px 6px; border-radius: 50px; }
.product-card__quick {
  width: 100%;
  padding: 9px;
  font-size: 11px;
  border-radius: var(--radius-sm);
}

/* ── Product Detail ────────────────────────────────────── */
.product-gallery__main {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg2);
  border-radius: 0;
}
@media (min-width: 768px) {
  .product-gallery__main { border-radius: var(--radius-lg); aspect-ratio: 3/4; }
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; }
.product-gallery__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-gallery__thumb.active,
.product-gallery__thumb:active { border-color: var(--gold); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info panel */
.product-info-panel {
  padding: 0 16px;
}
.product-info__gender {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-info__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.product-info__tagline { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.product-info__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-info__price { font-size: 24px; font-weight: 700; color: var(--text); }
.product-info__compare { font-size: 15px; color: var(--muted); text-decoration: line-through; }

/* Variant pills */
.variant-section { margin-bottom: 20px; }
.variant-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.variant-label strong { color: var(--text); font-weight: 700; }
.size-btns, .strength-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn, .strength-btn {
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border2);
  background: var(--card);
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
}
.size-btn:active, .strength-btn:active { transform: scale(.94); }
.size-btn.active, .strength-btn.active {
  border-color: var(--gold);
  background: var(--gold-bg);
  color: var(--gold);
}
.size-btn.disabled, .strength-btn.disabled { opacity: .35; cursor: not-allowed; }
.strength-btn { display: flex; flex-direction: column; align-items: center; padding: 8px 16px; border-radius: var(--radius); }
.strength-btn span { font-size: 9px; font-weight: 500; color: var(--muted); margin-top: 1px; letter-spacing: .5px; }
.strength-btn.active span { color: var(--gold); }

/* Sticky ATC bar */
.sticky-atc {
  position: fixed;
  bottom: calc(64px + var(--safe-bottom));
  left: 0;
  right: 0;
  z-index: 89;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateY(120%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc__price { font-size: 18px; font-weight: 700; flex-shrink: 0; }
@media (min-width: 768px) { .sticky-atc { display: none; } }

/* Notes display */
.notes-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 20px 0;
}
.notes-col {
  flex: 1;
  padding: 14px 12px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.notes-col:last-child { border-right: none; }
.notes-col__label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.notes-col__val  { font-size: 11px; color: var(--text2); line-height: 1.5; }

/* Accordion */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.accordion-toggle svg { transition: transform .3s; flex-shrink: 0; color: var(--muted); }
.accordion-toggle.open svg { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-body p { padding-bottom: 16px; font-size: 13px; color: var(--text2); line-height: 1.8; }

/* ── Cart Drawer ───────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100vw);
  background: #fff;
  z-index: 201;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cart-drawer.open { transform: none; }
.cart-drawer__head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer__title { font-size: 15px; font-weight: 700; }
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-drawer__foot  { padding: 16px 20px; border-top: 1px solid var(--border); }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 68px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg2);
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 13px; font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item__variant { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; }
.cart-item__price { font-size: 14px; font-weight: 700; }
.qty-stepper { display: flex; align-items: center; gap: 0; background: var(--bg); border-radius: 50px; padding: 2px; }
.qty-stepper button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.qty-stepper button:active { background: var(--border); }
.qty-stepper span { width: 26px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-remove { background: none; border: none; font-size: 11px; color: var(--muted); cursor: pointer; padding: 4px 0; margin-top: 4px; }
.cart-remove:active { color: var(--danger); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.cart-total-row.total { font-size: 16px; font-weight: 700; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.cart-empty { text-align: center; padding: 48px 0; }
.cart-empty__icon { font-size: 3rem; margin-bottom: 12px; }
.cart-empty p { font-size: 14px; color: var(--muted); }

/* ── Reels ─────────────────────────────────────────────── */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px;
}
@media (min-width: 768px) { .reels-grid { grid-template-columns: repeat(3, 1fr); } }
.reel-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.reel-card__video { position: relative; aspect-ratio: 9/16; background: var(--bg2); }
.reel-card__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.reel-card__body { padding: 12px; }
.reel-card__name { font-size: 12px; font-weight: 600; margin-bottom: 8px; color: var(--text); }

/* ── Reviews ───────────────────────────────────────────── */
.stars { display: inline-flex; gap: 1px; }
.star  { font-size: 13px; color: var(--muted2); }
.star.filled { color: #F4B942; }
.reviews-list { display: flex; flex-direction: column; gap: 12px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.review-card__name { font-size: 13px; font-weight: 700; }
.review-card__date { font-size: 11px; color: var(--muted); }
.review-card__title { font-size: 13px; font-weight: 600; margin: 6px 0 4px; }
.review-card__body  { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* ── Forms ─────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--text2); }
.form-control {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-control:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-control::placeholder { color: var(--muted2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1/-1; }

/* ── Alerts ─────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 13px; margin-bottom: 14px; font-weight: 500; }
.alert-success { background: #E8F8EE; border: 1px solid #A8DFB8; color: #1E7E3A; }
.alert-danger  { background: #FDE8E8; border: 1px solid #F5BABA; color: #8B2020; }

/* ── Divider ───────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  padding: 40px 0 24px;
  margin-top: 40px;
}
.footer-logo { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 11px; color: rgba(255,255,255,.35); text-align: center; }

/* ── Admin ─────────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; background: var(--bg); }
.admin-sidebar {
  width: 220px;
  background: var(--text);
  padding: 20px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}
.admin-sidebar__logo { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 8px; }
.admin-sidebar__logo div { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.admin-sidebar__logo small { color: rgba(255,255,255,.4); font-size: 10px; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { color: #fff; background: rgba(255,255,255,.08); }
.admin-nav a.active { color: var(--gold); }
.admin-content { flex: 1; padding: 24px; overflow: auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.admin-header h1 { font-size: 20px; font-weight: 700; }
.admin-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.admin-card h3 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table thead tr { background: var(--bg); }
.admin-table th { padding: 10px 12px; text-align: left; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.admin-table td { padding: 12px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg); }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; text-align: center; box-shadow: var(--shadow-sm); }
.stat-card__val { font-size: 28px; font-weight: 700; color: #2C1A0E; }
.stat-card__label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.badge-status { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: .3px; }
.badge-paid      { background: #E8F8EE; color: #1E7E3A; }
.badge-pending   { background: #FFF8E6; color: #8B6914; }
.badge-failed    { background: #FDE8E8; color: #8B2020; }
.badge-shipped   { background: #E8F0FF; color: #2040A0; }
.badge-delivered { background: #E8F8EE; color: #1E7E3A; }
.badge-cancelled { background: #FDE8E8; color: #8B2020; }

/* ── Utilities ─────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.fw-700       { font-weight: 700; }
.mt-1 { margin-top: 8px; }   .mt-2 { margin-top: 16px; }  .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.px-16 { padding-left: 16px; padding-right: 16px; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .admin-sidebar { width: 160px; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
  body { padding-bottom: 0; }
  .container { padding: 0 24px; }
  .products-grid { padding: 0 24px; }
  .usp-strip { padding: 20px 24px; }
}

/* ── Color overrides: dark brown theme ─────────────────── */
:root {
  --gold:       #2C1A0E;
  --gold-light: #4A2E1A;
  --gold-dim:   rgba(44,26,14,.08);
  --gold-bg:    rgba(44,26,14,.05);
  --bg:         #FFFFFF;
}
.announce-bar { background: #2C1A0E !important; }
.btn-gold     { background: #2C1A0E !important; color: #fff !important; border-color: #2C1A0E !important; }
.btn-gold:hover, .btn-gold:active { background: #4A2E1A !important; border-color: #4A2E1A !important; }
.btn-outline  { color: #2C1A0E !important; border-color: #2C1A0E !important; }
.btn-outline:hover, .btn-outline:active { background: rgba(44,26,14,.06) !important; }
.site-header  { background: rgba(241,241,241,.97) !important; }
.nav-logo     { color: #2C1A0E !important; }
.section-label { color: #2C1A0E !important; }
.badge-new    { background: #2C1A0E !important; }
.product-card__wish:active, .product-card__wish.active { border-color: #2C1A0E !important; }
.size-btn.active, .strength-btn.active { border-color: #2C1A0E !important; background: rgba(44,26,14,.06) !important; color: #2C1A0E !important; }
.product-info__price { color: #2C1A0E !important; }
.price { color: #2C1A0E !important; }
.save-tag, .save { background: rgba(44,26,14,.08) !important; color: #2C1A0E !important; }
.bottom-nav a.active, .bottom-nav a:active, .bottom-nav button:active { color: #2C1A0E !important; }
.footer-col h4 { color: #B8862A !important; } /* keep gold on dark footer */
.admin-nav a.active { color: #B8862A !important; }
.admin-card h3 { color: #B8862A !important; }
.stat-card__val { color: #2C1A0E !important; }
.badge-status.badge-paid, .badge-delivered { background: #E8F0E8 !important; color: #1A4A1A !important; }
/* Star rating stays amber */
.star.filled { color: #E8A020 !important; }
/* Gold announce marquee text */
.announce-bar .marquee { color: rgba(255,255,255,.95); }
/* Bottom nav cart pill */
.bottom-nav__cart-btn > div > div { background: #2C1A0E !important; }
/* Collection card hover */
.collection-card:hover .collection-card__name { color: #fff; }
/* Product card quick btn */
.product-card__quick { border-color: #2C1A0E !important; color: #2C1A0E !important; }
.product-card__quick:hover { background: #2C1A0E !important; color: #fff !important; }
/* Trail set badge */
.badge-trail { background: #2C1A0E; color: #fff; }
/* Reels section */
.reel-cta { background: #2C1A0E; }
