/* ============================================
   Afriqone — Premium E-Commerce Design System
   Luxury African Store • Afrique de l'Ouest
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* ── Shrine exact values from settings_data.json ── */
  --noir: #121212;
  --noir-light: #333333;
  --brun: #0e1210;
  --brun-light: #2a2a2a;
  --or: #0e1210;
  --or-hover: #2a2a2a;
  --or-dark: #000000;
  --or-glow: rgba(14,18,16,0.12);
  --creme: #ffffff;
  --ivoire: #ffffff;
  --beige: #e0f4f4;
  --beige-dark: #c5c5c5;
  --gris: #6b6b6b;
  --gris-light: #999999;
  --gris-lighter: #e0e0e0;
  --blanc: #ffffff;
  --rouge: #c0392b;
  --vert: #2d7a4f;
  --bleu: #254F75;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;

  /* Shrine exact radius values */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 14px;
  --radius-btn: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.10);
  --shadow-gold: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-card: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 28px rgba(0,0,0,0.10);

  --ease: cubic-bezier(0.4,0,0.2,1);
  --ease-out: cubic-bezier(0.23,1,0.32,1);
  --ease-in-out: cubic-bezier(0.77,0,0.175,1);
  --ease-bounce: cubic-bezier(0.68,-0.55,0.265,1.55);
  --ease-elastic: cubic-bezier(0.175,0.885,0.32,1.275);
  --duration: 0.3s;
  --duration-fast: 0.16s;
  --duration-slow: 0.5s;

  --container-max: 1280px;
  --container-padding: 2rem;
  --header-height: 68px;
  --topbar-height: 36px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; font-size:16px; }
body { font-family:var(--font-body); font-weight:400; line-height:1.6; color:#1a1a1a; background:#ffffff; overflow-x:hidden; }

::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background:var(--beige); }
::-webkit-scrollbar-thumb { background:var(--gris-light); border-radius:var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background:var(--gris); }
::selection { background:var(--or); color:var(--noir); }

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition:color var(--duration) var(--ease); }
ul, ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:var(--font-body); font-size:inherit; }
input, select, textarea { font-family:var(--font-body); font-size:inherit; border:none; outline:none; }

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1,h2,h3,h4,h5,h6 { font-family:var(--font-heading); font-weight:600; line-height:1.2; color:var(--noir); }
h1 { font-size:clamp(2.2rem,5vw,3.5rem); }
h2 { font-size:clamp(1.8rem,4vw,2.8rem); }
h3 { font-size:clamp(1.3rem,3vw,1.8rem); }

.section-title { font-family:var(--font-heading); font-size:clamp(1.8rem,4vw,2.8rem); text-align:center; margin-bottom:var(--space-sm); color:var(--noir); }
.section-subtitle { font-size:1rem; color:var(--gris); text-align:center; margin-bottom:var(--space-3xl); font-weight:400; letter-spacing:0.02em; }
.section-divider { width:60px; height:2px; background:var(--or); margin:var(--space-md) auto var(--space-lg); border-radius:var(--radius-full); }

/* ============================================
   4. LAYOUT
   ============================================ */
.container { width:100%; max-width:var(--container-max); margin:0 auto; padding:0 var(--container-padding); }
.container--narrow { max-width:960px; }
section { padding:var(--space-4xl) 0; }

/* ============================================
   5. TOP BAR
   ============================================ */
.top-bar {
  background:var(--or);
  color:var(--blanc);
  text-align:center;
  padding:var(--space-sm) var(--space-md);
  font-size:0.85rem;
  font-weight:500;
  letter-spacing:0.03em;
  position:relative;
  z-index:1001;
  overflow:hidden;
}
.top-bar::before {
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:200%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.15),transparent);
  animation:shimmer 4s ease-in-out infinite;
}
.top-bar span { position:relative; z-index:1; }

/* ============================================
   6. HEADER
   ============================================ */
.header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(27,27,27,0.96);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(23,61,55,0.1);
  transition:all var(--duration) var(--ease);
}
.header.scrolled { background:rgba(27,27,27,0.99); box-shadow:0 4px 30px rgba(0,0,0,0.3); }
.header .container { display:flex; align-items:center; justify-content:space-between; height:var(--header-height); }

.logo { font-family:var(--font-heading); font-size:1.7rem; font-weight:700; color:var(--or); letter-spacing:0.08em; transition:opacity var(--duration) var(--ease); }
.logo:hover { opacity:0.85; }

.nav { display:flex; align-items:center; gap:var(--space-2xl); }
.nav-links { display:flex; gap:var(--space-xl); }
.nav-links a {
  color:rgba(255,255,255,0.8);
  font-size:0.9rem;
  font-weight:500;
  letter-spacing:0.04em;
  text-transform:uppercase;
  position:relative;
  padding:var(--space-xs) 0;
  transition:color var(--duration) var(--ease);
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-2px; left:0;
  width:0; height:2px;
  background:var(--or);
  transition:width 200ms var(--ease-out);
  border-radius:var(--radius-full);
}
.nav-links a { transition:color 160ms var(--ease-out); }
.nav-links a:hover, .nav-links a.active { color:var(--or); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

/* Menu toggle (mobile) */
.menu-toggle { display:none; flex-direction:column; gap:5px; padding:var(--space-sm); cursor:pointer; z-index:1002; }
.menu-toggle span { display:block; width:24px; height:2px; background:var(--blanc); border-radius:var(--radius-full); transition:all var(--duration) var(--ease); }
.menu-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ============================================
   7. HERO
   ============================================ */
.hero {
  position:relative;
  height:88vh;
  min-height:550px;
  max-height:900px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--noir);
}
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; background-repeat:no-repeat; transition:transform 8s ease; }
.hero:hover .hero-bg { transform:scale(1.03); }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(27,27,27,0.72) 0%,rgba(61,43,31,0.5) 50%,rgba(27,27,27,0.68) 100%);
  z-index:1;
}
.hero-content { position:relative; z-index:2; text-align:center; max-width:700px; padding:var(--space-xl); }

.hero-badge {
  display:inline-block;
  font-family:var(--font-body);
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--or);
  background:rgba(23,61,55,0.12);
  border:1px solid rgba(23,61,55,0.3);
  padding:var(--space-sm) var(--space-lg);
  border-radius:var(--radius-full);
  margin-bottom:var(--space-xl);
  backdrop-filter:blur(10px);
}
.hero-title { font-family:var(--font-heading); font-size:clamp(2.5rem,6vw,4rem); font-weight:700; color:var(--blanc); line-height:1.15; margin-bottom:var(--space-lg); }
.hero-title .accent { color:var(--or); font-style:italic; }
.hero-description { font-size:1.15rem; color:rgba(255,255,255,0.8); margin-bottom:var(--space-2xl); line-height:1.7; font-weight:300; }
.hero-buttons { display:flex; gap:var(--space-md); justify-content:center; flex-wrap:wrap; }

.hero-scroll { position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:var(--space-sm); color:rgba(255,255,255,0.5); font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; }
.hero-scroll-line { width:1px; height:40px; background:linear-gradient(to bottom,var(--or),transparent); animation:scrollLine 2s ease-in-out infinite; }

/* ============================================
   8. BUTTONS
   ============================================ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:var(--space-sm);
  padding:0.9rem 2.2rem;
  font-family:var(--font-body); font-size:0.9rem; font-weight:600;
  letter-spacing:0.06em; text-transform:uppercase;
  border-radius:var(--radius-sm);
  transition:background 160ms var(--ease-out), border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), transform 160ms var(--ease-out), color 160ms var(--ease-out);
  position:relative; overflow:hidden; cursor:pointer;
}
.btn::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.15),transparent); transition:left 500ms var(--ease-out); }
@media (hover:hover) and (pointer:fine) { .btn:hover::before { left:100%; } }
.btn:active { transform:scale(0.97) !important; }

.btn-primary { background:var(--brun); color:var(--blanc); border:2px solid var(--brun); }
@media (hover:hover) and (pointer:fine) {
  .btn-primary:hover { background:var(--brun-light); border-color:var(--brun-light); box-shadow:0 8px 24px rgba(23,61,55,0.22); }
}

.btn-secondary { background:transparent; color:var(--blanc); border:2px solid rgba(255,255,255,0.5); }
@media (hover:hover) and (pointer:fine) {
  .btn-secondary:hover { border-color:var(--or); color:var(--or); }
}

.btn-dark { background:var(--noir); color:var(--ivoire); border:2px solid var(--noir); }
@media (hover:hover) and (pointer:fine) {
  .btn-dark:hover { background:var(--brun); border-color:var(--brun); box-shadow:var(--shadow-lg); }
}

.btn-sm { padding:0.55rem 1.4rem; font-size:0.8rem; }
.btn-full { width:100%; }

/* ============================================
   9. CATEGORIES
   ============================================ */
.categories { background:var(--ivoire); }
.categories-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:var(--space-xl); }

.category-card { position:relative; border-radius:var(--radius-lg); overflow:hidden; cursor:pointer; aspect-ratio:3/4; display:block; transition:transform 200ms var(--ease-out); }
.category-card-image { width:100%; height:100%; object-fit:cover; transition:transform 500ms var(--ease-out); }
@media (hover:hover) and (pointer:fine) { .category-card:hover .category-card-image { transform:scale(1.06); } }
.category-card:active { transform:scale(0.98); }
.category-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(27,27,27,0.8) 0%,rgba(27,27,27,0.1) 60%,transparent 100%);
  transition:background var(--duration) var(--ease);
}
.category-card:hover .category-card-overlay {
  background:linear-gradient(to top,rgba(23,61,55,0.72) 0%,rgba(36,91,81,0.32) 60%,transparent 100%);
}
.category-card-content { position:absolute; bottom:0; left:0; right:0; padding:var(--space-xl); z-index:1; transform:translateY(10px); transition:transform var(--duration) var(--ease); }
.category-card:hover .category-card-content { transform:translateY(0); }
.category-card-title { font-family:var(--font-heading); font-size:1.4rem; font-weight:600; color:var(--blanc); margin-bottom:var(--space-xs); }
.category-card-count { font-size:0.85rem; color:rgba(255,255,255,0.7); }

/* ============================================
   10. PRODUCT CARDS
   ============================================ */
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }

.product-card { background:var(--ivoire); border-radius:var(--radius-lg); overflow:hidden; transition:transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out); position:relative; box-shadow:var(--shadow-card); }
@media (hover:hover) and (pointer:fine) { .product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-card-hover); } }
.product-card:active { transform:scale(0.98); }

.product-card-image-wrapper { position:relative; overflow:hidden; aspect-ratio:3/4; background:var(--beige); display:block; }
.product-card-image { width:100%; height:100%; object-fit:cover; transition:transform 500ms var(--ease-out); }
@media (hover:hover) and (pointer:fine) { .product-card:hover .product-card-image { transform:scale(1.05); } }

.product-badge { position:absolute; top:var(--space-md); left:var(--space-md); padding:0.3rem 0.8rem; font-size:0.7rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; border-radius:var(--radius-sm); z-index:2; }
.product-badge--promo { background:var(--rouge); color:var(--blanc); }
.product-badge--new { background:var(--noir); color:var(--or); }
.product-badge--best { background:var(--or); color:var(--noir); }

/* Quick-add / Commander button on card image */
.product-card-quick-add {
  position:absolute;
  bottom:var(--space-md); left:50%;
  transform:translateX(-50%) translateY(12px);
  opacity:0;
  background:var(--noir); color:var(--ivoire);
  padding:0.6rem 1.5rem;
  border-radius:var(--radius-full);
  font-size:0.78rem; font-weight:600; letter-spacing:0.04em; text-transform:uppercase;
  cursor:pointer;
  transition:opacity 200ms var(--ease-out), transform 200ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out);
  white-space:nowrap; z-index:2; border:none;
}
@media (hover:hover) and (pointer:fine) {
  .product-card:hover .product-card-quick-add { opacity:1; transform:translateX(-50%) translateY(0); }
  .product-card-quick-add:hover { background:var(--or); color:var(--noir); }
}
.product-card-quick-add:active { transform:translateX(-50%) scale(0.96); }

.product-card-info { padding:var(--space-lg); }
.product-card-category { font-size:0.72rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--or); margin-bottom:var(--space-xs); }
.product-card-name { font-family:var(--font-heading); font-size:1.05rem; font-weight:600; color:var(--noir); margin-bottom:var(--space-sm); line-height:1.3; }
.product-card-name a:hover { color:var(--or-dark); }

.stars { display:flex; align-items:center; gap:2px; margin-bottom:var(--space-sm); }
.stars .star { color:var(--or); font-size:0.8rem; }
.stars .star.empty { color:var(--gris-lighter); }
.stars .rating-count { font-size:0.75rem; color:var(--gris); margin-left:var(--space-xs); }

.product-card-price { display:flex; align-items:baseline; gap:var(--space-sm); }
.price-current { font-family:var(--font-heading); font-size:1.2rem; font-weight:700; color:var(--noir); }
.price-old { font-size:0.85rem; color:var(--gris); text-decoration:line-through; }
.price-discount { font-size:0.75rem; font-weight:700; color:var(--brun); background:rgba(23,61,55,0.08); padding:0.1rem 0.5rem; border-radius:var(--radius-sm); }

/* Commander button below card info */
.btn-commander {
  display:block; width:100%;
  margin-top:var(--space-md);
  padding:0.65rem;
  background:var(--or); color:var(--blanc);
  border:none; font-family:var(--font-body);
  font-size:0.78rem; font-weight:600;
  text-transform:uppercase; letter-spacing:0.06em;
  cursor:pointer; transition:all var(--duration) var(--ease);
  border-radius:var(--radius-sm);
}
.btn-commander:hover { background:var(--or-hover); }

/* ============================================
   11. PROMO BANNER
   ============================================ */
.promo-banner {
  background:linear-gradient(135deg,var(--brun) 0%,var(--noir) 50%,var(--brun-light) 100%);
  position:relative; overflow:hidden; padding:var(--space-4xl) 0;
}
.promo-banner::before { content:''; position:absolute; top:-50%; right:-20%; width:500px; height:500px; background:radial-gradient(circle,rgba(23,61,55,0.15) 0%,transparent 70%); border-radius:50%; }
.promo-banner .container { position:relative; z-index:1; text-align:center; }
.promo-badge { display:inline-block; font-size:0.8rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; color:var(--or); margin-bottom:var(--space-lg); }
.promo-title { font-family:var(--font-heading); font-size:clamp(2rem,5vw,3.2rem); color:var(--blanc); margin-bottom:var(--space-md); line-height:1.2; }
.promo-title .highlight { color:var(--or); }
.promo-description { font-size:1.1rem; color:rgba(255,255,255,0.7); margin-bottom:var(--space-2xl); font-weight:300; }

/* ============================================
   12. WHY CHOOSE US
   ============================================ */
.why-us { background:var(--beige); }
.why-us-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--space-2xl); }
.why-us-card { text-align:center; padding:var(--space-2xl) var(--space-xl); background:var(--ivoire); border-radius:var(--radius-xl); transition:all var(--duration) var(--ease); position:relative; overflow:hidden; }
.why-us-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--or); transform:scaleX(0); transition:transform var(--duration) var(--ease); }
.why-us-card:hover::before { transform:scaleX(1); }
.why-us-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.why-us-icon { width:70px; height:70px; background:linear-gradient(135deg,var(--or),var(--or-hover)); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto var(--space-lg); font-size:1.7rem; color:var(--noir); box-shadow:var(--shadow-gold); }
.why-us-title { font-family:var(--font-heading); font-size:1.2rem; font-weight:600; margin-bottom:var(--space-sm); color:var(--noir); }
.why-us-description { font-size:0.9rem; color:var(--gris); line-height:1.6; }

/* ============================================
   13. FOOTER
   ============================================ */
.footer { background:var(--noir); color:rgba(255,255,255,0.7); padding-top:var(--space-2xl); }
.footer-main { display:grid; grid-template-columns:1.4fr repeat(2,minmax(140px,0.55fr)); gap:var(--space-xl); align-items:start; padding-bottom:var(--space-xl); border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom:var(--space-md); display:inline-block; }
.footer-brand p { max-width:420px; font-size:0.84rem; line-height:1.6; margin-bottom:var(--space-md); color:rgba(255,255,255,0.55); }
.footer-social { display:none; }
.footer-social a { width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; font-size:0.9rem; color:rgba(255,255,255,0.6); transition:all var(--duration) var(--ease); }
.footer-social a:hover { border-color:var(--or); color:var(--or); background:rgba(23,61,55,0.18); transform:translateY(-3px); }
.footer-column h4 { font-family:var(--font-body); font-size:0.76rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--blanc); margin-bottom:0.8rem; }
.footer-column ul li { margin-bottom:0.35rem; }
.footer-column ul li a { font-size:0.84rem; color:rgba(255,255,255,0.55); transition:all var(--duration) var(--ease); }
.footer-column ul li a:hover { color:var(--or); padding-left:6px; }
.footer-payment { display:inline-flex; align-items:center; gap:0.5rem; margin-top:var(--space-md); padding:0.55rem 0.75rem; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-full); font-size:0.78rem; color:rgba(255,255,255,0.64); }
.footer-bottom { padding:0.85rem 0; display:flex; align-items:center; justify-content:space-between; font-size:0.76rem; color:rgba(255,255,255,0.35); }
.footer-bottom a { color:rgba(255,255,255,0.35); }
.footer-bottom a:hover { color:var(--or); }

/* ============================================
   14. SHOP PAGE
   ============================================ */
.shop-header { text-align:center; padding:var(--space-3xl) 0 var(--space-xl); background:var(--noir); color:var(--blanc); }
.shop-header h1 { color:var(--blanc); margin-bottom:var(--space-sm); }
.shop-header p { color:rgba(255,255,255,0.6); font-size:1rem; }

.breadcrumbs { display:flex; align-items:center; gap:var(--space-sm); font-size:0.82rem; color:var(--gris); margin-bottom:var(--space-xl); padding:var(--space-lg) 0; }
.breadcrumbs a { color:var(--gris); }
.breadcrumbs a:hover { color:var(--or); }
.breadcrumbs .separator { color:var(--gris-light); }
.breadcrumbs .current { color:var(--noir); font-weight:500; }

.filter-pills { display:flex; gap:var(--space-sm); flex-wrap:wrap; margin-bottom:var(--space-2xl); }
.filter-pill {
  padding:0.5rem 1.2rem; font-size:0.82rem; font-weight:500;
  border:1.5px solid var(--beige-dark); border-radius:var(--radius-full);
  cursor:pointer; transition:all var(--duration) var(--ease);
  background:var(--ivoire); color:var(--gris);
}
.filter-pill:hover { border-color:var(--or); color:var(--or-dark); }
.filter-pill.active { background:var(--or); color:var(--blanc); border-color:var(--or); }

.results-count { font-size:0.85rem; color:var(--gris); margin-bottom:var(--space-xl); }
.results-count strong { color:var(--noir); }

/* ============================================
   15. PRODUCT PAGE
   ============================================ */
.product-page { padding:var(--space-2xl) 0 var(--space-4xl); }
.product-layout { display:grid; grid-template-columns:1fr 1fr; gap:var(--space-3xl); align-items:start; }

.product-gallery { position:sticky; top:calc(var(--header-height) + var(--space-xl)); }
.product-gallery-main { width:100%; aspect-ratio:1; border-radius:var(--radius-lg); overflow:hidden; background:var(--beige); cursor:zoom-in; margin-bottom:var(--space-md); display:flex; align-items:center; justify-content:center; }
.product-gallery-main img { width:100%; height:100%; object-fit:cover; transition:transform var(--duration-slow) var(--ease); }
.product-gallery-main:hover img { transform:scale(1.5); }
.product-gallery-thumbs { display:grid; grid-template-columns:repeat(4,1fr); gap:var(--space-sm); }
.product-gallery-thumb { aspect-ratio:1; border-radius:var(--radius-md); overflow:hidden; cursor:pointer; border:2px solid transparent; transition:all var(--duration) var(--ease); background:var(--beige); display:flex; align-items:center; justify-content:center; font-size:1.8rem; }
.product-gallery-thumb:hover { border-color:var(--gris-light); }
.product-gallery-thumb.active { border-color:var(--or); }
.product-gallery-thumb img { width:100%; height:100%; object-fit:cover; }

.product-details { padding:var(--space-md) 0; }
.product-brand { font-size:0.78rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--or); margin-bottom:var(--space-sm); }
.product-title { font-family:var(--font-heading); font-size:clamp(1.6rem,3.5vw,2.2rem); font-weight:600; line-height:1.25; margin-bottom:var(--space-md); }
.product-rating { display:flex; align-items:center; gap:var(--space-md); margin-bottom:var(--space-xl); padding-bottom:var(--space-xl); border-bottom:1px solid var(--beige-dark); }
.product-rating .stars { margin-bottom:0; }
.product-rating .rating-text { font-size:0.85rem; color:var(--gris); }

.product-price { margin-bottom:var(--space-xl); display:flex; align-items:baseline; gap:var(--space-sm); flex-wrap:wrap; }
.product-price .price-current { font-family:var(--font-heading); font-size:1.8rem; font-weight:700; }
.product-price .price-old { font-size:1rem; color:var(--gris); text-decoration:line-through; }

.product-description { font-size:0.95rem; line-height:1.8; color:var(--gris); margin-bottom:var(--space-xl); padding-bottom:var(--space-xl); border-bottom:1px solid var(--beige-dark); }

.product-features { list-style:none; margin-bottom:var(--space-xl); }
.product-features li { padding:0.4rem 0; font-size:0.9rem; color:var(--gris); display:flex; align-items:center; gap:0.5rem; }
.product-features li::before { content:'✓'; color:var(--vert); font-weight:700; font-size:0.85rem; }

.product-highlight-box { background:#fff5ee; border-left:3px solid var(--or); padding:var(--space-md) var(--space-lg); margin-bottom:var(--space-xl); font-size:0.92rem; color:var(--gris); line-height:1.7; font-style:italic; border-radius:0 var(--radius-sm) var(--radius-sm) 0; }

.quantity-selector { display:flex; align-items:center; gap:var(--space-md); margin-bottom:var(--space-xl); }
.quantity-label { font-size:0.85rem; font-weight:600; color:var(--noir); letter-spacing:0.05em; text-transform:uppercase; }
.quantity-controls { display:flex; align-items:center; border:1.5px solid var(--beige-dark); border-radius:var(--radius-md); overflow:hidden; }
.quantity-btn { width:44px; height:44px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--noir); cursor:pointer; transition:all var(--duration) var(--ease); background:transparent; border:none; }
.quantity-btn:hover { background:var(--beige); color:var(--or); }
.quantity-value { width:50px; height:44px; display:flex; align-items:center; justify-content:center; font-size:0.95rem; font-weight:600; border-left:1.5px solid var(--beige-dark); border-right:1.5px solid var(--beige-dark); }

.btn-commander-lg { display:block; width:100%; padding:1.1rem; background:var(--or); color:var(--blanc); border:none; font-family:var(--font-body); font-size:0.95rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; cursor:pointer; transition:background var(--duration) var(--ease); border-radius:var(--radius-sm); margin-bottom:var(--space-md); }
.btn-commander-lg:hover { background:var(--or-hover); }

.trust-badges { display:flex; flex-direction:column; gap:var(--space-md); padding:var(--space-xl); background:var(--beige); border-radius:var(--radius-lg); margin-bottom:var(--space-xl); }
.trust-badge { display:flex; align-items:center; gap:var(--space-md); font-size:0.88rem; color:var(--noir); }
.trust-badge-icon { font-size:1.2rem; width:24px; text-align:center; flex-shrink:0; }
.trust-badge-sub { font-size:0.8rem; color:var(--gris); }

.product-accordion { border-top:1px solid var(--beige-dark); }
.accordion-item { border-bottom:1px solid var(--beige-dark); }
.accordion-header { width:100%; display:flex; justify-content:space-between; align-items:center; padding:var(--space-lg) 0; font-family:var(--font-body); font-size:0.9rem; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color:var(--noir); background:none; border:none; cursor:pointer; transition:color var(--duration) var(--ease); }
.accordion-header:hover { color:var(--or); }
.accordion-icon { font-size:1.1rem; font-weight:300; color:var(--gris); }
.accordion-content { max-height:0; overflow:hidden; transition:max-height 0.35s ease-out; }
.accordion-content p { padding-bottom:var(--space-lg); color:var(--gris); font-size:0.9rem; line-height:1.7; }

/* Stock + urgency */
.stock-badge { display:inline-flex; align-items:center; gap:6px; font-size:0.82rem; color:var(--vert); font-weight:600; margin-bottom:var(--space-lg); }
.stock-dot { width:8px; height:8px; background:var(--vert); border-radius:50%; display:inline-block; animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.urgency-bar { background:#fdf5ec; border:1px solid #f0d9b5; padding:0.6rem var(--space-md); border-radius:var(--radius-sm); font-size:0.82rem; color:#7a4a1e; margin-bottom:var(--space-lg); display:flex; align-items:center; gap:0.5rem; }

/* Related products */
.related-products { padding:var(--space-4xl) 0; background:var(--ivoire); }
.related-products h2 { font-family:var(--font-heading); font-size:1.8rem; text-align:center; margin-bottom:var(--space-2xl); color:var(--noir); }
.related-products .products-grid { grid-template-columns:repeat(4,1fr); }

/* ============================================
   16. CHECKOUT MODAL
   ============================================ */
.checkout-overlay {
  position:fixed; inset:0;
  background:rgba(0,0,0,0.55);
  z-index:3000;
  opacity:0; visibility:hidden;
  transition:all var(--duration) var(--ease);
  display:flex; align-items:flex-end; justify-content:center;
}
@media (min-width:600px) { .checkout-overlay { align-items:center; } }
.checkout-overlay.open { opacity:1; visibility:visible; }

.checkout-modal {
  background:var(--ivoire);
  width:100%; max-width:460px;
  max-height:95vh; overflow-y:auto;
  border-radius:var(--radius-xl) var(--radius-xl) 0 0;
  padding:2rem 1.5rem;
  transform:translateY(100%);
  transition:transform 0.4s var(--ease);
  position:relative;
}
@media (min-width:600px) {
  .checkout-modal { border-radius:var(--radius-xl); transform:translateY(30px); opacity:0; transition:transform 0.35s var(--ease),opacity 0.35s var(--ease); }
}
.checkout-overlay.open .checkout-modal { transform:translateY(0); opacity:1; }

.checkout-modal-close { position:absolute; top:1rem; right:1rem; width:32px; height:32px; border-radius:50%; background:var(--beige); border:none; font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--gris); transition:background var(--duration) var(--ease); }
.checkout-modal-close:hover { background:var(--beige-dark); }

.checkout-modal h2 { font-family:var(--font-heading); font-size:1.3rem; font-weight:600; margin-bottom:1.25rem; color:var(--noir); text-align:center; }

.checkout-product-summary { display:flex; align-items:center; gap:var(--space-md); padding:var(--space-md); background:var(--beige); border-radius:var(--radius-md); margin-bottom:1.25rem; }
.checkout-product-emoji { font-size:2.5rem; width:60px; height:60px; background:var(--ivoire); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.checkout-product-name { font-family:var(--font-heading); font-size:0.95rem; font-weight:600; margin-bottom:4px; line-height:1.3; color:var(--noir); }
.checkout-product-price { font-family:var(--font-heading); font-size:1.1rem; font-weight:700; color:var(--noir); }
.checkout-product-price .old { font-size:0.85rem; text-decoration:line-through; color:var(--gris); font-weight:400; margin-left:6px; font-family:var(--font-body); }

.checkout-qty { display:flex; align-items:center; gap:var(--space-md); margin-bottom:1.25rem; }
.checkout-qty label { font-size:0.82rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; color:var(--noir); margin-right:auto; }
.qty-controls { display:flex; align-items:center; border:1.5px solid var(--beige-dark); border-radius:var(--radius-md); overflow:hidden; }
.qty-btn { width:38px; height:38px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; cursor:pointer; background:transparent; border:none; color:var(--noir); transition:background var(--duration) var(--ease); }
.qty-btn:hover { background:var(--beige); }
.qty-value { width:42px; height:38px; display:flex; align-items:center; justify-content:center; font-size:0.95rem; font-weight:600; border-left:1.5px solid var(--beige-dark); border-right:1.5px solid var(--beige-dark); }

.checkout-form h3 { font-family:var(--font-body); font-size:0.85rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:var(--space-md); color:var(--noir); }
.form-group { margin-bottom:var(--space-md); }
.form-group label { display:block; font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:6px; color:var(--gris); }
.form-group input { width:100%; padding:0.85rem var(--space-md); border:1.5px solid var(--beige-dark); font-size:0.95rem; font-family:var(--font-body); background:var(--blanc); color:var(--noir); outline:none; border-radius:var(--radius-sm); transition:border-color var(--duration) var(--ease); }
.form-group input:focus { border-color:var(--or); }
.form-group input::placeholder { color:var(--gris-light); }

.checkout-trust { display:flex; gap:var(--space-md); margin-top:var(--space-md); padding-top:var(--space-md); border-top:1px solid var(--beige-dark); flex-wrap:wrap; }
.checkout-trust-item { display:flex; align-items:center; gap:6px; font-size:0.78rem; color:var(--gris); flex:1; min-width:120px; }

.checkout-success { text-align:center; padding:2rem var(--space-md); display:none; }
.checkout-success.show { display:block; }
.checkout-success-icon { font-size:3.5rem; margin-bottom:var(--space-md); }
.checkout-success h3 { font-family:var(--font-heading); font-size:1.4rem; margin-bottom:var(--space-sm); color:var(--noir); }
.checkout-success p { color:var(--gris); font-size:0.92rem; line-height:1.6; }

/* ============================================
   17. TOAST
   ============================================ */
.toast {
  position:fixed; bottom:2rem; right:2rem;
  background:var(--noir); color:var(--blanc);
  padding:var(--space-md) var(--space-xl);
  border-radius:var(--radius-lg); font-size:0.9rem; font-weight:500;
  display:flex; align-items:center; gap:var(--space-md);
  box-shadow:var(--shadow-xl); z-index:4000;
  transform:translateY(100px); opacity:0;
  transition:all var(--duration) var(--ease-elastic);
}
.toast.show { transform:translateY(0); opacity:1; }

/* ============================================
   18. UTILITIES
   ============================================ */
.text-center { text-align:center; }
.hidden { display:none !important; }
.mt-1 { margin-top:var(--space-md); }
.mt-2 { margin-top:var(--space-xl); }
.mt-3 { margin-top:var(--space-2xl); }
.mt-4 { margin-top:var(--space-3xl); }
.mb-1 { margin-bottom:var(--space-md); }
.mb-2 { margin-bottom:var(--space-xl); }
.mb-4 { margin-bottom:var(--space-3xl); }

/* Mobile nav overlay */
.mobile-nav-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:1500; }
.mobile-nav-overlay.open { display:block; }

/* Skeleton */
.skeleton { background:linear-gradient(90deg,var(--beige) 0%,var(--beige-dark) 50%,var(--beige) 100%); background-size:200% 100%; animation:skeleton 1.5s ease-in-out infinite; border-radius:var(--radius-md); }

/* ============================================
   19. PREMIUM REDESIGN — Outfit + Playfair
   ============================================ */

/* ── BASE ── */
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f7f5f2;
  color: #161412;
}

/* ── TOP BAR ── */
.top-bar {
  background: #161412;
  overflow: hidden;
  padding: 0.52rem 0;
  white-space: nowrap;
}
.top-bar-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: topbar-scroll 18s linear infinite;
}
@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.top-bar span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.6);
  white-space: nowrap;
  flex-shrink: 0;
}
.top-bar-dot {
  color: rgba(247,245,242,0.2) !important;
  font-size: 0.5rem !important;
  letter-spacing: 0 !important;
  flex-shrink: 0;
}

/* ── HEADER ── */
.header {
  background: rgba(247,245,242,0.96);
  border-bottom: 1px solid rgba(22,20,18,0.08);
  box-shadow: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header.scrolled {
  background: rgba(247,245,242,0.99);
  box-shadow: 0 1px 0 rgba(22,20,18,0.08);
}
.logo::after { display: none; }
.nav-links a {
  font-family: 'Outfit', sans-serif;
  color: #161412;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: #161412; opacity: 0.45; }
.nav-links a::after { background: #161412; }
.menu-toggle span { background: #161412; }

/* ── HERO ── */
.hero {
  height: 88vh;
  min-height: 580px;
  max-height: 920px;
}
.hero-overlay {
  background: linear-gradient(170deg,
    rgba(16,14,12,0.3) 0%,
    rgba(16,14,12,0.52) 55%,
    rgba(16,14,12,0.72) 100%
  );
}
.hero-content {
  width: 100%;
  text-align: center;
  padding: 0 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.4rem;
  white-space: nowrap;
}
.hero-title .accent {
  font-family: 'Playfair Display', serif;
  color: #f0e8d6;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.72;
  margin-bottom: 2.2rem;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  justify-content: center;
  gap: 0.85rem;
}

/* ── BUTTONS ── */
.btn {
  font-family: 'Outfit', sans-serif;
  border-radius: 6px;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  padding: 0.88rem 2.1rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 150ms cubic-bezier(0.23,1,0.32,1),
              border-color 150ms cubic-bezier(0.23,1,0.32,1),
              box-shadow 150ms cubic-bezier(0.23,1,0.32,1),
              transform 150ms cubic-bezier(0.23,1,0.32,1);
}
.btn:active { transform: scale(0.97) !important; }
.btn-primary {
  background: #161412;
  color: #f7f5f2;
  border: 1.5px solid #161412;
}
@media (hover:hover) and (pointer:fine) {
  .btn-primary:hover { background: #2e2b28; border-color: #2e2b28; box-shadow: 0 6px 20px rgba(22,20,18,0.2); }
}
.btn-secondary {
  background: transparent;
  color: #f7f5f2;
  border: 1.5px solid rgba(247,245,242,0.55);
  backdrop-filter: blur(8px);
}
@media (hover:hover) and (pointer:fine) {
  .btn-secondary:hover { border-color: rgba(247,245,242,0.9); background: rgba(247,245,242,0.1); }
}
.btn-dark {
  background: #161412;
  color: #f7f5f2;
  border: 1.5px solid #161412;
}
@media (hover:hover) and (pointer:fine) {
  .btn-dark:hover { background: #2e2b28; border-color: #2e2b28; box-shadow: 0 6px 20px rgba(22,20,18,0.18); }
}

/* ── SECTIONS ── */
body, section { background: #f7f5f2; }
.categories { background: #f7f5f2; }
.best-sellers { background: #ffffff; padding-top: 5rem; padding-bottom: 5.5rem; }

/* ── Best-sellers header row ── */
.bs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.bs-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #161412;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(22,20,18,0.2);
  transition: border-color 160ms ease, opacity 160ms ease;
}
.bs-see-all:hover { opacity: 0.6; border-color: transparent; }
.bs-see-all svg { transition: transform 200ms cubic-bezier(0.23,1,0.32,1); }
.bs-see-all:hover svg { transform: translateX(3px); }

/* ── Scroll track ── */
.bs-scroll-wrapper {
  position: relative;
}
.bs-scroll-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.bs-scroll-track::-webkit-scrollbar { display: none; }
.bs-scroll-track .product-card {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 210px;
  scroll-snap-align: start;
}

/* ── Arrow buttons ── */
.bs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(22,20,18,0.12);
  box-shadow: 0 4px 16px rgba(22,20,18,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #161412;
  z-index: 10;
  transition: background 150ms ease, transform 150ms cubic-bezier(0.23,1,0.32,1), box-shadow 150ms ease, opacity 200ms ease;
}
.bs-arrow:hover { background: #161412; color: #f7f5f2; box-shadow: 0 6px 20px rgba(22,20,18,0.18); }
.bs-arrow:active { transform: translateY(-50%) scale(0.94); }
.bs-arrow--left  { left: -20px; }
.bs-arrow--right { right: -20px; }
.bs-arrow.hidden { opacity: 0; pointer-events: none; }
.why-us { background: #161412; }
.home-faq { background: #f7f5f2; padding: 5rem 0; }
.shop-content { background: #f7f5f2; }
section { padding: 5rem 0; }

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #161412;
}
.best-sellers .section-title,
.home-faq .section-title { color: #161412; }
.why-us .section-title { color: #f7f5f2; }
.section-divider { display: none; }
.section-subtitle { color: #7a7269; font-size: 0.95rem; font-weight: 400; margin-bottom: 3rem; }
.why-us .section-subtitle { color: rgba(247,245,242,0.5); }

/* ── CATEGORIES ── */
.categories-grid { gap: 1rem; }
.category-card {
  border-radius: 10px;
  aspect-ratio: 2/3;
  box-shadow: none;
  transition: transform 220ms cubic-bezier(0.23,1,0.32,1);
}
.category-card:active { transform: scale(0.98); }
@media (hover:hover) and (pointer:fine) {
  .category-card:hover { transform: translateY(-3px); }
}
.category-card-overlay {
  background: linear-gradient(to top, rgba(16,14,12,0.75) 0%, rgba(16,14,12,0.1) 52%, transparent 100%);
}
.category-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-card-count { font-size: 0.76rem; color: rgba(255,255,255,0.65); font-weight: 300; }

/* ── PRODUCT CARDS ── */
.products-grid { gap: 1.25rem; }
.product-card {
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(22,20,18,0.05);
  overflow: hidden;
  transition: box-shadow 220ms cubic-bezier(0.23,1,0.32,1), transform 220ms cubic-bezier(0.23,1,0.32,1);
}
@media (hover:hover) and (pointer:fine) {
  .product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(22,20,18,0.1); }
  .product-card:hover .product-card-image { transform: scale(1.04); }
}
.product-card:active { transform: scale(0.98); }
.product-card-image-wrapper {
  aspect-ratio: 3/4;
  background: #ebe8e2;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.product-card-image { transition: transform 550ms cubic-bezier(0.23,1,0.32,1); }
.product-card-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.9rem 1rem 1rem;
  background: #ffffff;
}
.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.product-card-category {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a09890;
  font-weight: 600;
  margin: 0;
}
.product-card-rating {
  font-size: 0.7rem;
  color: #7a7269;
  font-weight: 500;
}
.product-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #161412;
  margin-bottom: 0.45rem;
  line-height: 1.4;
}
.product-card-name a { color: inherit; }
.product-card-price { margin-top: auto; padding-top: 0.5rem; display: flex; align-items: baseline; gap: 0.4rem; }
.price-current {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #161412;
  font-variant-numeric: tabular-nums;
}
.price-old { font-size: 0.78rem; color: #b0a99e; text-decoration: line-through; }
.product-badge {
  border-radius: 3px;
  background: #161412;
  color: #f7f5f2;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
}
.product-badge--promo { background: #b83c30; }

/* Quick-add on hover (desktop) */
.product-card-quick-add {
  border-radius: 4px;
  background: #161412;
  color: #f7f5f2;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 150ms cubic-bezier(0.23,1,0.32,1), opacity 200ms cubic-bezier(0.23,1,0.32,1), transform 200ms cubic-bezier(0.23,1,0.32,1);
}
@media (hover:hover) and (pointer:fine) {
  .product-card-quick-add:hover { background: #2e2b28; }
}

/* Commander button (shown on mobile, hidden on desktop) */
.btn-commander {
  display: none;
  border-radius: 4px;
  background: #161412;
  color: #f7f5f2;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  padding: 0.6rem;
  transition: background 150ms cubic-bezier(0.23,1,0.32,1);
}
@media (hover:hover) and (pointer:fine) {
  .btn-commander:hover { background: #2e2b28; }
}
.btn-commander:active { transform: scale(0.97); }

/* ── PROMO BANNER ── */
.promo-banner {
  background: #161412;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f7f5f2' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}
.promo-badge { color: rgba(247,245,242,0.45); font-family: 'Outfit', sans-serif; letter-spacing: 0.14em; }
.promo-title { font-family: 'Outfit', sans-serif; font-weight: 800; color: #f7f5f2; letter-spacing: -0.02em; }
.promo-title .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #f0e8d6;
  text-decoration: none;
}
.promo-description { color: rgba(247,245,242,0.58); font-weight: 300; }

/* ── WHY US (dark bg) ── */
.why-us-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(247,245,242,0.08); border: 1px solid rgba(247,245,242,0.08); }
.why-us-card {
  border: none;
  background: #161412;
  border-radius: 0;
  box-shadow: none;
  padding: 3rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 220ms ease;
}
.why-us-card::before { display: none; }
@media (hover:hover) and (pointer:fine) {
  .why-us-card:hover { background: #1e1b18; transform: none; box-shadow: none; }
}
.why-us-icon {
  font-size: 1.6rem;
  width: auto; height: auto;
  background: transparent;
  color: #f7f5f2;
  box-shadow: none;
  border-radius: 0;
  margin: 0 0 1.5rem;
  display: block;
  line-height: 1;
}
.why-us-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
  color: #f7f5f2;
  text-transform: none;
}
.why-us-description { font-size: 0.86rem; color: rgba(247,245,242,0.5); line-height: 1.7; font-weight: 300; }

/* ── FAQ ── */
.home-faq-list {
  border-top: 1px solid rgba(22,20,18,0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.home-faq .accordion-item { border-bottom: 1px solid rgba(22,20,18,0.1); }
.home-faq .accordion-header {
  padding: 1.25rem 0;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  color: #161412;
}
.home-faq .accordion-header:hover { opacity: 0.6; color: #161412; }
.home-faq .accordion-icon {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(22,20,18,0.12);
  background: transparent;
  color: #161412;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.home-faq .accordion-content p { padding: 0 0 1.25rem; font-size: 0.9rem; color: #7a7269; line-height: 1.7; }
.home-faq-cta { margin-top: 2rem; text-align: center; }

/* ── SHOP PAGE ── */
.shop-header {
  background: #161412;
  padding: 3rem 0 2rem;
  text-align: left;
  border-bottom: none;
}
.shop-header h1 { color: #f7f5f2; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.02em; }
.shop-header p { color: rgba(247,245,242,0.5); }
.shop-content { padding: 2.5rem 0 4rem; background: #f7f5f2; }
.filter-pill {
  border-radius: 4px;
  border-color: rgba(22,20,18,0.12);
  color: #4a4640;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  background: #ffffff;
}
.filter-pill:hover { border-color: #161412; color: #161412; }
.filter-pill.active { background: #161412; border-color: #161412; color: #f7f5f2; }

/* ── FOOTER ── */
.footer { background: #0e0c0a; }

/* ── LOGO IMAGE ── */
.logo { display: flex; align-items: center; line-height: 1; }
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity 160ms ease;
}
.logo:hover .logo-img { opacity: 0.75; }

/* Footer logo — invert to white */
.footer .logo-img { filter: invert(1) brightness(2); }

/* Mobile nav — slightly smaller */
@media (max-width: 768px) {
  .logo-img { height: 30px; }
}

/* ── CHECKOUT ── */
.checkout-modal { background: #f7f5f2; border-radius: 12px 12px 0 0; }
.checkout-product-summary { background: #ebe8e2; border-radius: 6px; }
.form-group input { border-radius: 6px; border-color: rgba(22,20,18,0.15); background: #ffffff; }
.form-group input:focus { border-color: #161412; }
.checkout-modal h2 { font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: -0.01em; }

/* ── TOAST ── */
.toast { border-radius: 6px; background: #161412; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar-track { background: #f7f5f2; }
::-webkit-scrollbar-thumb { background: #c8c2ba; }
::-webkit-scrollbar-thumb:hover { background: #9e9890; }

/* ── SELECTION ── */
::selection { background: rgba(22,20,18,0.1); color: #161412; }

/* ── FOCUS ── */
:focus-visible { outline: 2px solid #161412; outline-offset: 3px; border-radius: 2px; }

/* ── STATS TICKER ── */
.stats-ticker {
  background: #f0ede8;
  border-top: 1px solid rgba(22,20,18,0.08);
  border-bottom: 1px solid rgba(22,20,18,0.08);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.stats-ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.stats-ticker-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #7a7269;
  white-space: nowrap;
}
.stats-ticker-item strong {
  color: #161412;
  font-weight: 700;
}
.stats-ticker-sep {
  color: rgba(22,20,18,0.2);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: #f7f5f2;
  padding: 5.5rem 0;
}
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin: 3rem 0 3.5rem;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid rgba(22,20,18,0.08);
  border-radius: 8px;
  position: relative;
}
.hiw-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: rgba(22,20,18,0.1);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hiw-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #161412;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hiw-desc {
  font-size: 0.88rem;
  color: #7a7269;
  line-height: 1.7;
  font-weight: 300;
}
.hiw-connector {
  width: 60px;
  height: 1px;
  background: rgba(22,20,18,0.12);
  align-self: center;
  position: relative;
  flex-shrink: 0;
}
.hiw-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(22,20,18,0.2);
  border-right: 1px solid rgba(22,20,18,0.2);
  transform: translateY(-50%) rotate(45deg);
}
.hiw-cta {
  text-align: center;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: #f7f5f2;
  padding: 5rem 0 4rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(22,20,18,0.07);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: box-shadow 220ms cubic-bezier(0.23,1,0.32,1), transform 220ms cubic-bezier(0.23,1,0.32,1);
}
@media (hover:hover) and (pointer:fine) {
  .testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(22,20,18,0.08);
    transform: translateY(-2px);
  }
}
.testimonial-stars {
  font-size: 0.82rem;
  color: #c8a96e;
  letter-spacing: 0.05em;
}
.testimonial-text {
  font-size: 0.92rem;
  color: #3a3530;
  line-height: 1.75;
  font-style: italic;
  font-weight: 300;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22,20,18,0.06);
  margin-top: auto;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ebe8e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #7a7269;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #161412;
}
.testimonial-location {
  font-size: 0.74rem;
  color: #a09890;
  font-weight: 400;
  margin-top: 2px;
}
.testimonials-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(22,20,18,0.07);
  border-radius: 8px;
  max-width: 420px;
  margin: 0 auto;
}
.testimonials-badge-score {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #161412;
  letter-spacing: -0.02em;
}
.testimonials-badge-stars {
  font-size: 0.78rem;
  color: #c8a96e;
  letter-spacing: 0.05em;
}
.testimonials-badge-label {
  font-size: 0.76rem;
  color: #a09890;
  font-weight: 400;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .stats-ticker-track { animation: none; }
}
