/*
Theme Name:        DubaiScents
Theme URI:         https://dubaiScents.co.uk
Description:       Custom WooCommerce theme for Lattafa Perfumes UK. Built for DubaiScents.co.uk — UK's Only Dedicated Lattafa Specialist. Luxury dark Arabian aesthetic with full mobile optimisation.
Author:            DubaiScents
Author URI:        https://dubaiScents.co.uk
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.7
WC requires at least: 8.0
WC tested up to:   9.5
License:           Proprietary
Text Domain:       dubaiscents
*/

/* === DESIGN TOKENS === */
:root {
  --bg:           #0D0D0D;
  --surface:      #1A1A1A;
  --surface2:     #242424;
  --gold:         #C8963E;
  --gold-light:   #E8B84B;
  --gold-dark:    #8B6318;
  --text:         #F5F0E8;
  --text-2:       #A89880;
  --text-3:       #6B6055;
  --green:        #4AC87F;
  --orange:       #E8A020;
  --red:          #C0392B;
  --accent:       #8B2E2E;
  --gold-10:      rgba(200,150,62,0.10);
  --gold-20:      rgba(200,150,62,0.20);
  --gold-40:      rgba(200,150,62,0.40);
  --lt-green:     rgba(74,200,127,0.10);
  --lt-orange:    rgba(232,160,32,0.10);
  --lt-red:       rgba(192,57,43,0.10);
  --radius:       12px;
  --radius-btn:   8px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --glow:         0 0 24px rgba(200,150,62,0.20);
  --transition:   all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* === RESET & BASE === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color: var(--gold); text-decoration:none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
h1,h2,h3,h4,h5,h6 { font-family:'Playfair Display',serif; line-height:1.15; }
button { cursor:pointer; font-family:'Inter',sans-serif; }
input,textarea,select { font-family:'Inter',sans-serif; font-size:16px; }

/* === SCROLL PROGRESS === */
#ds-progress {
  position:fixed; top:0; left:0; height:3px; z-index:9999; width:0%;
  background:linear-gradient(90deg, var(--gold), var(--gold-light));
  transition:width 0.1s linear;
  pointer-events:none;
}

/* === NAVIGATION === */
#ds-nav {
  position:fixed; top:3px; left:0; right:0; z-index:1000;
  background:rgba(13,13,13,0.95);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--gold-20);
  transition:var(--transition);
}
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 24px;
  height:64px; display:flex; align-items:center;
  justify-content:space-between; transition:var(--transition);
}
#ds-nav.shrunk .nav-inner { height:48px; }
.ds-logo { font-family:'Playfair Display',serif; font-size:22px; color:var(--text); }
.ds-logo span { color:var(--gold); }
.nav-links { display:flex; gap:28px; }
.nav-links a {
  color:var(--text-2); font-size:13px; font-weight:500;
  letter-spacing:.5px; transition:var(--transition);
}
.nav-links a:hover { color:var(--gold); }
.nav-right { display:flex; align-items:center; gap:12px; }
.ds-cart-btn {
  background:var(--gold); color:#0D0D0D; border:none;
  padding:9px 20px; border-radius:var(--radius-btn);
  font-size:13px; font-weight:700; transition:var(--transition);
  display:flex; align-items:center; gap:6px;
}
.ds-cart-btn:hover { background:var(--gold-light); transform:translateY(-1px); }
.ds-cart-count {
  background:#0D0D0D; color:var(--gold);
  width:18px; height:18px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700;
}

/* === TICKER === */
.ds-ticker {
  background:var(--gold); overflow:hidden; height:40px;
  display:flex; align-items:center; margin-top:67px;
}
.ticker-track {
  display:flex; animation:ds-ticker 35s linear infinite;
  white-space:nowrap;
}
.ticker-track:hover { animation-play-state:paused; }
.ticker-item {
  padding:0 40px; font-size:13px; font-weight:600;
  color:#0D0D0D; display:flex; align-items:center; gap:8px;
}
.ticker-dot {
  width:4px; height:4px; border-radius:50%;
  background:#0D0D0D; opacity:0.4; flex-shrink:0;
}
@keyframes ds-ticker {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* === HERO === */
.ds-hero {
  min-height:100vh; display:flex; align-items:center;
  padding:80px 24px 60px; position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(var(--accent-rgb,139,46,46),0.15) 0%, transparent 60%),
    linear-gradient(160deg, #0D0D0D 0%, #150808 50%, #0D0D0D 100%);
}
.ds-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:repeating-linear-gradient(
    45deg, transparent, transparent 60px,
    rgba(200,150,62,0.015) 60px, rgba(200,150,62,0.015) 61px
  );
}
.hero-inner {
  max-width:1200px; margin:0 auto; width:100%;
  display:grid; grid-template-columns:1fr 400px; gap:64px;
  align-items:center; position:relative; z-index:1;
}
.hero-eyebrow {
  font-size:11px; font-weight:700; letter-spacing:3px;
  color:var(--gold); text-transform:uppercase;
  margin-bottom:16px; display:flex; align-items:center; gap:12px;
}
.hero-eyebrow::before { content:''; width:32px; height:1px; background:var(--gold); }
.hero-headline { font-size:clamp(38px,5vw,70px); line-height:1.05; margin-bottom:8px; }
.hero-headline em { color:var(--gold); font-style:italic; }
.hero-arabic {
  font-size:30px; color:var(--gold-dark); opacity:0.6;
  margin-bottom:28px; font-weight:300; letter-spacing:4px;
}
.dupe-hook {
  background:rgba(139,46,46,0.12);
  border:1px solid rgba(139,46,46,0.30);
  border-left:4px solid var(--gold);
  border-radius:var(--radius); padding:24px; margin-bottom:28px;
}
.dupe-hook-label {
  font-size:11px; letter-spacing:2px; text-transform:uppercase;
  color:var(--text-3); margin-bottom:6px;
}
.dupe-hook-title { font-size:17px; font-weight:600; margin-bottom:14px; }
.price-comparison { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.price-original   { font-size:20px; color:var(--red); text-decoration:line-through; opacity:0.7; }
.price-arrow      { color:var(--gold); font-size:20px; }
.price-ours       { font-size:40px; font-weight:700; color:var(--gold); font-family:'Playfair Display',serif; line-height:1; }
.price-badge      {
  background:rgba(74,200,127,0.15); border:1px solid rgba(74,200,127,0.30);
  color:var(--green); padding:5px 14px; border-radius:24px;
  font-size:13px; font-weight:700;
}
.hero-body { color:var(--text-2); line-height:1.8; margin-bottom:28px; font-size:16px; }
.hero-btns { display:flex; gap:12px; margin-bottom:28px; flex-wrap:wrap; }
.trust-row { display:flex; gap:18px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--text-3); }

/* HERO VISUAL */
.hero-visual { position:relative; height:480px; }
.hero-bottles { position:relative; width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.bottle-glow { position:absolute; border-radius:50%; animation:ds-pulse 3s ease-in-out infinite; }
.glow1 { width:280px; height:280px; background:radial-gradient(circle,rgba(139,46,46,0.20),transparent 70%); top:50%; left:50%; transform:translate(-50%,-50%); }
.glow2 { width:180px; height:180px; background:radial-gradient(circle,rgba(200,150,62,0.15),transparent 70%); top:30%; left:30%; animation-delay:1s; }
@keyframes ds-pulse { 0%,100%{opacity:0.6;transform:translate(-50%,-50%) scale(1);} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.08);} }
.bottle-visual { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); display:flex; gap:-8px; z-index:2; }
.ds-bottle { width:66px; height:155px; background:linear-gradient(160deg,rgba(200,150,62,0.5),rgba(80,20,20,0.9)); border:1.5px solid var(--gold-40); border-radius:9px 9px 4px 4px; position:relative; margin:0 -4px; }
.ds-bottle:nth-child(1) { transform:rotate(-8deg) translateY(10px); z-index:1; }
.ds-bottle:nth-child(2) { transform:scale(1.1); z-index:3; border-color:var(--gold-40); }
.ds-bottle:nth-child(3) { transform:rotate(8deg) translateY(10px); z-index:1; }
.ds-bottle-cap { position:absolute; top:-16px; left:50%; transform:translateX(-50%); width:20px; height:16px; background:linear-gradient(180deg,var(--gold),var(--gold-dark)); border-radius:3px 3px 0 0; }
.ds-bottle-label { position:absolute; bottom:22px; left:50%; transform:translateX(-50%); width:78%; text-align:center; font-size:8px; letter-spacing:2px; color:rgba(200,150,62,0.8); text-transform:uppercase; }
.stat-cards { position:absolute; right:-20px; top:50%; transform:translateY(-50%); display:flex; flex-direction:column; gap:10px; }
.stat-card { background:rgba(26,26,26,0.88); backdrop-filter:blur(16px); border:1px solid var(--gold-20); border-radius:10px; padding:12px 18px; text-align:center; min-width:110px; }
.stat-card-num { font-size:22px; font-weight:700; color:var(--gold); font-family:'Playfair Display',serif; }
.stat-card-label { font-size:10px; color:var(--text-3); letter-spacing:1px; text-transform:uppercase; margin-top:2px; }
.scroll-hint { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:6px; color:var(--text-3); }
.scroll-arrow { width:22px; height:22px; border-right:2px solid var(--gold); border-bottom:2px solid var(--gold); transform:rotate(45deg); animation:ds-bounce 2s infinite; }
@keyframes ds-bounce { 0%,100%{transform:rotate(45deg) translateY(0);} 50%{transform:rotate(45deg) translateY(6px);} }

/* === SECTION COMMONS === */
.ds-section { padding:96px 24px; }
.ds-container { max-width:1200px; margin:0 auto; }
.section-eyebrow { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.section-headline { font-size:clamp(26px,3.5vw,44px); margin-bottom:14px; }
.section-sub { color:var(--text-2); font-size:16px; line-height:1.7; max-width:560px; }
.section-header { margin-bottom:52px; }

/* === BUTTONS === */
.btn-primary {
  background:var(--gold); color:#0D0D0D; border:none;
  padding:14px 28px; border-radius:var(--radius-btn);
  font-size:15px; font-weight:700; transition:var(--transition);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(200,150,62,0.35); color:#0D0D0D; }
.btn-secondary {
  background:transparent; color:var(--gold);
  border:1.5px solid var(--gold); padding:13px 28px;
  border-radius:var(--radius-btn); font-size:15px; font-weight:600;
  transition:var(--transition); display:inline-flex; align-items:center; gap:8px;
}
.btn-secondary:hover { background:var(--gold-10); transform:translateY(-2px); }

/* === PRODUCT GRID === */
.ds-product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.product-card {
  background:var(--surface); border:1px solid var(--gold-10);
  border-radius:var(--radius); overflow:hidden; transition:var(--transition);
  display:flex; flex-direction:column;
}
.product-card:hover {
  border-color:var(--gold-40); transform:translateY(-6px);
  box-shadow:0 16px 48px rgba(0,0,0,0.6), var(--glow);
}
.card-visual {
  height:240px; display:flex; align-items:center;
  justify-content:center; position:relative; overflow:hidden;
}
.card-visual-bg { position:absolute; inset:0; }
.card-bottle {
  width:64px; height:148px;
  background:linear-gradient(160deg,rgba(200,150,62,0.5),rgba(80,20,20,0.9));
  border:1.5px solid var(--gold-40); border-radius:8px 8px 4px 4px;
  position:relative; z-index:2;
}
.card-bottle-cap {
  position:absolute; top:-15px; left:50%; transform:translateX(-50%);
  width:20px; height:15px; background:var(--gold);
  border-radius:3px 3px 0 0;
}
.card-badges { position:absolute; top:12px; right:12px; display:flex; flex-direction:column; gap:5px; z-index:3; }
.badge { padding:4px 10px; border-radius:4px; font-size:10px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; }
.badge-gold   { background:var(--gold); color:#0D0D0D; }
.badge-green  { background:rgba(74,200,127,0.2); border:1px solid var(--green); color:var(--green); }
.badge-blue   { background:rgba(27,74,107,0.3); border:1px solid #1B7BC0; color:#4AABEA; }
.badge-red    { background:var(--lt-red); border:1px solid var(--red); color:var(--red); }
.variant-badge {
  position:absolute; bottom:12px; left:12px;
  background:rgba(13,13,13,0.85); border:1px solid var(--gold-20);
  border-radius:4px; padding:4px 10px; font-size:11px;
  font-weight:600; color:var(--text-2); z-index:3;
}
.card-body { padding:22px; display:flex; flex-direction:column; flex:1; }
.card-body .card-name a { color:var(--text); font-size:18px; display:block; margin-bottom:4px; }
.card-body .card-name a:hover { color:var(--gold); }
.card-dupe    { font-size:13px; color:var(--gold); margin-bottom:12px; }
.note-tags    { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
.note-tag     { background:var(--surface2); border:1px solid var(--gold-10); border-radius:4px; padding:4px 10px; font-size:11px; color:var(--text-3); }
.mini-notes   { margin-bottom:14px; }
.mini-notes-row { display:flex; align-items:center; gap:8px; padding:3px 0; font-size:12px; color:var(--text-2); }
.note-dot     { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.dot-top      { background:#C0392B; }
.dot-heart    { background:#1B6B6B; }
.dot-base     { background:#6C3483; }
.longevity-bar-wrap { margin-bottom:14px; }
.longevity-label { display:flex; justify-content:space-between; font-size:11px; color:var(--text-3); margin-bottom:5px; }
.longevity-bar  { height:5px; background:var(--surface2); border-radius:3px; overflow:hidden; }
.longevity-fill { height:100%; background:linear-gradient(90deg,var(--accent,#8B2E2E),var(--gold)); border-radius:3px; width:0%; transition:width 1.2s cubic-bezier(0.4,0,0.2,1); }
.card-price-row { display:flex; align-items:baseline; gap:10px; margin-bottom:8px; flex-wrap:wrap; }
.card-price-old { font-size:14px; color:var(--red); text-decoration:line-through; opacity:0.7; }
.card-price     { font-size:28px; font-weight:700; color:var(--gold); font-family:'Playfair Display',serif; line-height:1; }
.card-price .woocommerce-Price-amount { font-size:inherit; color:inherit; }
.card-save  { font-size:12px; font-weight:700; color:var(--green); background:var(--lt-green); border:1px solid rgba(74,200,127,0.2); padding:3px 10px; border-radius:24px; }
.card-rating { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--text-3); margin-bottom:8px; }
.ds-stars    { color:var(--gold); }
.card-stock  { font-size:12px; margin-bottom:14px; display:flex; align-items:center; gap:6px; }
.stock-dot   { width:7px; height:7px; border-radius:50%; background:var(--green); flex-shrink:0; }
.stock-dot.low { background:var(--orange); animation:stock-pulse 1.5s ease-in-out infinite; }
.stock-dot.out { background:var(--red); }
@keyframes stock-pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.ds-add-to-cart {
  width:100%; background:var(--gold); color:#0D0D0D; border:none;
  padding:14px; border-radius:var(--radius-btn); font-size:15px;
  font-weight:700; transition:var(--transition);
  display:flex; align-items:center; justify-content:center;
  gap:8px; margin-bottom:10px; margin-top:auto;
}
.ds-add-to-cart:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 6px 20px rgba(200,150,62,0.35); }
.ds-add-to-cart:active { transform:translateY(0); }
.ds-add-to-cart:disabled { opacity:0.6; cursor:not-allowed; transform:none; }
.card-link  { text-align:center; font-size:13px; color:var(--gold); display:block; }
.card-link:hover { color:var(--gold-light); }

/* === STICKY ADD BAR === */
#ds-sticky-bar {
  position:fixed; bottom:0; left:0; right:0;
  background:rgba(26,26,26,0.98); backdrop-filter:blur(16px);
  border-top:2px solid var(--gold); z-index:998;
  padding:12px 24px; display:flex; align-items:center;
  justify-content:space-between; gap:16px;
  transform:translateY(100%); transition:var(--transition);
  padding-bottom:max(12px, env(safe-area-inset-bottom));
}
#ds-sticky-bar.visible { transform:translateY(0); }
.sticky-info  { display:flex; align-items:center; gap:12px; }
.sticky-name  { font-weight:600; font-size:14px; }
.sticky-price { color:var(--gold); font-weight:700; font-size:18px; }
.sticky-variants { display:flex; gap:8px; }
.sv-btn { background:var(--surface); border:1px solid var(--gold-20); color:var(--text-2); padding:8px 14px; border-radius:24px; font-size:12px; transition:var(--transition); }
.sv-btn.active, .sv-btn:hover { background:var(--gold); color:#0D0D0D; border-color:var(--gold); }
.sticky-cta { background:var(--gold); color:#0D0D0D; border:none; padding:12px 24px; border-radius:var(--radius-btn); font-weight:700; font-size:14px; transition:var(--transition); }
.sticky-cta:hover { background:var(--gold-light); }

/* === COMPARISON TABLE === */
.ds-compare { background:#111; }
.compare-table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; margin-top:40px; border-radius:var(--radius); border:1px solid var(--gold-20); }
.compare-table { width:100%; border-collapse:collapse; min-width:540px; }
.compare-table th { background:var(--gold); color:#0D0D0D; padding:14px 20px; text-align:left; font-size:14px; font-weight:700; }
.compare-table td { padding:13px 20px; font-size:14px; border-bottom:1px solid rgba(255,255,255,0.04); }
.compare-table tr:nth-child(odd)  td { background:var(--surface); }
.compare-table tr:nth-child(even) td { background:var(--surface2); }
.compare-table tr:last-child td { border-bottom:none; }
.td-our      { color:var(--gold); font-weight:700; font-size:22px; font-family:'Playfair Display',serif; }
.td-designer { color:var(--red); text-decoration:line-through; opacity:0.7; }
.td-check    { color:var(--green); }
.td-cross    { color:var(--red); }
.td-save     { color:var(--green); font-weight:700; font-size:16px; }
.verdict-row td { background:rgba(139,30,30,0.25) !important; border-top:2px solid var(--gold) !important; }
.verdict-our { color:var(--gold); font-weight:700; }
.compare-quote { margin-top:28px; padding:22px 28px; background:var(--surface); border-left:4px solid var(--gold); border-radius:var(--radius); font-style:italic; color:var(--text-2); font-size:16px; line-height:1.7; }

/* === TABS === */
.tab-nav { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:36px; }
.tab-btn { padding:10px 22px; border-radius:24px; border:1.5px solid var(--gold-40); background:transparent; color:var(--text-2); font-size:14px; font-weight:600; cursor:pointer; transition:var(--transition); }
.tab-btn.active { background:var(--gold); color:#0D0D0D; border-color:var(--gold); }
.tab-btn:hover:not(.active) { border-color:var(--gold); color:var(--text); }
.tab-panel { display:none; animation:ds-fade 0.3s ease; }
.tab-panel.active { display:grid; grid-template-columns:210px 1fr; gap:36px; }
@keyframes ds-fade { from{opacity:0;transform:translateY(8px);} to{opacity:1;transform:translateY(0);} }
.tab-visual { background:var(--surface); border-radius:var(--radius); padding:28px; display:flex; flex-direction:column; align-items:center; gap:14px; }
.tab-bottle { width:76px; height:185px; background:linear-gradient(160deg,rgba(200,150,62,0.6),rgba(80,20,20,0.9)); border:2px solid var(--gold-40); border-radius:10px 10px 5px 5px; position:relative; }
.tab-bottle-cap { position:absolute; top:-17px; left:50%; transform:translateX(-50%); width:22px; height:17px; background:var(--gold); border-radius:3px 3px 0 0; }
.tab-name  { font-family:'Playfair Display',serif; font-size:20px; text-align:center; }
.tab-year  { font-size:11px; letter-spacing:2px; color:var(--text-3); text-transform:uppercase; }
.tab-quick-stats { display:grid; grid-template-columns:1fr 1fr; gap:8px; width:100%; }
.qs-pill   { background:var(--surface2); border-radius:6px; padding:8px 10px; text-align:center; }
.qs-val    { font-size:14px; font-weight:700; color:var(--gold); }
.qs-lab    { font-size:10px; color:var(--text-3); margin-top:2px; }
.notes-pyramid { margin-bottom:22px; }
.pyramid-row { display:flex; align-items:stretch; margin-bottom:5px; border-radius:6px; overflow:hidden; }
.pyramid-label { padding:9px 14px; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; min-width:56px; display:flex; align-items:center; }
.py-top    { background:rgba(192,57,43,0.25); color:#E87070; }
.py-heart  { background:rgba(27,107,107,0.25); color:#4AC8C8; }
.py-base   { background:rgba(108,52,131,0.25); color:#A870E8; }
.pyramid-notes { background:var(--surface); padding:9px 14px; font-size:13px; color:var(--text-2); flex:1; display:flex; align-items:center; }
.tab-desc  { color:var(--text-2); line-height:1.8; margin-bottom:18px; font-size:15px; }
.occasions-chips { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:7px; }
.chip-good { background:var(--lt-green); border:1px solid rgba(74,200,127,0.25); color:var(--green); border-radius:6px; padding:5px 12px; font-size:12px; font-weight:600; }
.chip-bad  { background:var(--lt-red); border:1px solid rgba(192,57,43,0.25); color:var(--red); border-radius:6px; padding:5px 12px; font-size:12px; }
.perf-bars { margin:18px 0; }
.perf-row  { margin-bottom:11px; }
.perf-label { display:flex; justify-content:space-between; font-size:12px; color:var(--text-3); margin-bottom:5px; }
.perf-track { height:5px; background:var(--surface2); border-radius:3px; overflow:hidden; }
.perf-fill  { height:100%; background:linear-gradient(90deg,var(--accent,#8B2E2E),var(--gold)); border-radius:3px; width:0%; transition:width 1s ease 0.2s; }
.tab-cta    { width:100%; background:var(--gold); color:#0D0D0D; border:none; padding:13px; border-radius:var(--radius-btn); font-size:15px; font-weight:700; cursor:pointer; transition:var(--transition); margin-top:18px; }
.tab-cta:hover { background:var(--gold-light); transform:translateY(-2px); }
.buyer-profiles { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:36px; }
.bp-card    { background:var(--surface); border:1px solid var(--gold-20); border-radius:var(--radius); padding:18px; }
.bp-title   { font-size:14px; font-weight:700; color:var(--gold); margin-bottom:8px; }
.bp-items   { font-size:13px; color:var(--text-2); line-height:1.9; }
.bp-link    { color:var(--gold); font-size:13px; font-weight:600; text-decoration:none; margin-top:8px; display:inline-block; }

/* === SCENT PROFILE === */
.scent-section { background:linear-gradient(to bottom,var(--bg),var(--surface)); }
.phases { position:relative; padding-left:40px; }
.phases::before { content:''; position:absolute; left:0; top:20px; bottom:20px; width:2px; background:linear-gradient(to bottom,#C0392B,#1B6B6B,#6C3483); }
.phase { position:relative; margin-bottom:52px; }
.phase-num  { position:absolute; left:-56px; top:0; font-family:'Playfair Display',serif; font-size:46px; font-weight:700; line-height:1; opacity:0.12; }
.phase-dot  { position:absolute; left:-45px; top:8px; width:12px; height:12px; border-radius:50%; border:2px solid; background:var(--bg); }
.phase-dot.top   { border-color:#C0392B; }
.phase-dot.heart { border-color:#1B6B6B; }
.phase-dot.base  { border-color:#6C3483; }
.phase-time { font-size:11px; letter-spacing:2px; text-transform:uppercase; margin-bottom:5px; }
.phase-time.top   { color:#C0392B; }
.phase-time.heart { color:#1B6B6B; }
.phase-time.base  { color:#6C3483; }
.phase-heading  { font-size:21px; margin-bottom:11px; }
.phase-notes-wrap { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:12px; }
.phase-note { padding:5px 13px; border-radius:6px; font-size:13px; font-weight:500; }
.note-top   { background:rgba(192,57,43,0.15); border:1px solid rgba(192,57,43,0.3); color:#E87070; }
.note-heart { background:rgba(27,107,107,0.15); border:1px solid rgba(27,107,107,0.3); color:#4AC8C8; }
.note-base  { background:rgba(108,52,131,0.15); border:1px solid rgba(108,52,131,0.3); color:#A870E8; }
.phase-desc  { color:var(--text-2); line-height:1.8; margin-bottom:8px; font-size:15px; }
.phase-quote { color:var(--gold); font-style:italic; font-size:15px; opacity:0.9; }
.ingredients-spot { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:44px; }
.ing-card { background:var(--surface); border-top:3px solid var(--gold); border-radius:var(--radius); padding:22px; }
.ing-name  { font-size:16px; font-weight:700; color:var(--gold); margin-bottom:3px; }
.ing-maker { font-size:11px; color:var(--text-3); margin-bottom:9px; letter-spacing:1px; }
.ing-desc  { font-size:13px; color:var(--text-2); line-height:1.7; }

/* === OCCASIONS === */
.occasions-section { background:#111; }
.occasion-grid  { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.occ-card       { background:var(--surface); border-radius:var(--radius); padding:20px; border-left:4px solid; transition:var(--transition); }
.occ-card:hover { transform:translateX(4px); }
.occ-card.good    { border-color:var(--green); }
.occ-card.caution { border-color:var(--orange); }
.occ-card.avoid   { border-color:var(--red); }
.occ-icon  { font-size:24px; margin-bottom:7px; }
.occ-label { font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:3px; }
.occ-card.good    .occ-label { color:var(--green); }
.occ-card.caution .occ-label { color:var(--orange); }
.occ-card.avoid   .occ-label { color:var(--red); }
.occ-title   { font-size:15px; font-weight:600; margin-bottom:5px; }
.occ-why     { font-size:13px; color:var(--text-2); line-height:1.6; }
.occ-variant { font-size:12px; color:var(--gold); margin-top:7px; }

/* === REVIEWS === */
.reviews-section  { background:var(--bg); }
.review-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:52px; padding:36px; background:var(--surface); border-radius:var(--radius); border:1px solid var(--gold-20); }
.stat-block   { text-align:center; }
.stat-big     { font-size:38px; font-weight:700; color:var(--gold); font-family:'Playfair Display',serif; line-height:1; }
.stat-desc    { font-size:12px; color:var(--text-3); margin-top:5px; }
.review-grid  { display:grid; grid-template-columns:2fr 1fr; gap:18px; align-items:start; }
.review-card  { background:var(--surface); border-radius:var(--radius); padding:26px; border-left:4px solid var(--gold); position:relative; }
.review-card::before { content:'"'; position:absolute; top:10px; right:18px; font-size:72px; color:var(--gold); opacity:0.07; font-family:'Playfair Display',serif; line-height:1; }
.review-stars { color:var(--gold); font-size:15px; margin-bottom:10px; }
.review-text  { font-style:italic; color:var(--text); line-height:1.8; margin-bottom:14px; font-size:15px; }
.review-author  { font-size:13px; color:var(--text-3); }
.review-author strong { color:var(--text-2); }
.review-verified { color:var(--green); font-size:11px; margin-top:3px; }
.review-stack { display:flex; flex-direction:column; gap:14px; }
.review-highlight { margin-top:28px; background:rgba(139,30,30,0.20); border:1px solid var(--gold-20); border-radius:var(--radius); padding:36px; text-align:center; }
.rh-label { font-size:11px; letter-spacing:2px; color:var(--gold); text-transform:uppercase; margin-bottom:10px; }
.rh-quote { font-size:20px; font-style:italic; color:var(--text); font-family:'Playfair Display',serif; line-height:1.5; }

/* === FAQ === */
.faq-section { background:#111; }
.faq-item { background:var(--surface); border:1px solid var(--gold-20); border-radius:var(--radius-btn); margin-bottom:7px; overflow:hidden; transition:var(--transition); }
.faq-item.open { border-color:var(--gold-40); border-left:4px solid var(--gold); }
.faq-q { width:100%; text-align:left; background:transparent; border:none; padding:18px 22px; color:var(--text); font-size:15px; font-weight:600; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:14px; min-height:52px; }
.faq-icon { color:var(--gold); font-size:20px; transition:var(--transition); flex-shrink:0; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-a-inner { padding:0 22px 18px; color:var(--text-2); line-height:1.8; font-size:14px; }

/* === FINAL CTA === */
.final-cta { padding:96px 24px; background:radial-gradient(ellipse at 50% 50%,rgba(139,46,46,0.12),transparent 70%),linear-gradient(to bottom,#111,var(--bg)); text-align:center; }
.cta-headline { font-size:clamp(30px,4vw,54px); margin-bottom:14px; }
.price-drama { display:flex; align-items:center; justify-content:center; gap:28px; margin:36px 0; flex-wrap:wrap; }
.pd-brand     { font-size:11px; letter-spacing:2px; color:var(--text-3); text-transform:uppercase; margin-bottom:3px; }
.pd-price-old { font-size:34px; color:var(--red); text-decoration:line-through; opacity:0.6; font-family:'Playfair Display',serif; }
.pd-arrow     { font-size:28px; color:var(--gold); }
.pd-brand-new { font-size:11px; letter-spacing:2px; color:var(--gold); text-transform:uppercase; margin-bottom:3px; }
.pd-price-new { font-size:68px; color:var(--gold); font-family:'Playfair Display',serif; font-weight:700; line-height:1; }
.pd-saving    { font-size:14px; color:var(--green); margin-top:7px; }
.cta-buttons  { display:flex; flex-direction:column; align-items:center; gap:10px; max-width:400px; margin:0 auto 36px; }
.cta-buttons .btn-primary, .cta-buttons .btn-secondary { width:100%; justify-content:center; font-size:16px; padding:15px; }
.cta-trust    { display:flex; justify-content:center; gap:22px; flex-wrap:wrap; }
.cta-trust-item { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--text-3); }

/* === EMAIL STRIP === */
.email-strip { background:var(--surface); border-top:1px solid var(--gold-20); padding:64px 24px; text-align:center; }
.email-headline { font-size:28px; margin-bottom:7px; }
.email-sub  { color:var(--text-2); margin-bottom:24px; }
.email-form { display:flex; gap:10px; max-width:440px; margin:0 auto 14px; }
.email-input { flex:1; background:var(--surface2); border:1px solid var(--gold-20); border-radius:var(--radius-btn); padding:13px 16px; color:var(--text); font-size:16px; outline:none; transition:var(--transition); }
.email-input:focus { border-color:var(--gold); }
.email-btn  { background:var(--gold); color:#0D0D0D; border:none; padding:13px 22px; border-radius:var(--radius-btn); font-weight:700; cursor:pointer; transition:var(--transition); white-space:nowrap; }
.email-btn:hover { background:var(--gold-light); }
.email-note { font-size:12px; color:var(--text-3); }

/* === FOOTER === */
.ds-footer { background:#0A0A0A; border-top:1px solid rgba(255,255,255,0.04); padding:60px 24px 24px; }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; margin-bottom:44px; }
.footer-logo { font-family:'Playfair Display',serif; font-size:22px; color:var(--text); margin-bottom:10px; }
.footer-logo span { color:var(--gold); }
.footer-tagline { font-size:13px; color:var(--text-3); line-height:1.7; }
.footer-col h4 { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:14px; font-family:'Inter',sans-serif; }
.footer-col a { display:block; font-size:13px; color:var(--text-3); margin-bottom:7px; transition:var(--transition); }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.04); padding-top:20px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; }
.footer-copy { font-size:12px; color:var(--text-3); }

/* === TOAST === */
#ds-toast { position:fixed; bottom:80px; right:24px; background:var(--surface); border:1px solid var(--gold-40); border-radius:var(--radius); padding:14px 22px; z-index:9999; transform:translateX(120%); transition:var(--transition); box-shadow:var(--shadow); font-size:14px; font-weight:600; color:var(--green); pointer-events:none; }
#ds-toast.show { transform:translateX(0); }

/* === FADE ANIMATIONS === */
.fade-in { opacity:0; transform:translateY(22px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.fade-in-d1 { transition-delay:0.1s; }
.fade-in-d2 { transition-delay:0.2s; }
.fade-in-d3 { transition-delay:0.3s; }

/* ============================================================
   MOBILE OPTIMISATION
   ============================================================ */

/* Standard phones (up to 768px) */
@media(max-width:768px){
  html,body { overflow-x:hidden; }
  .ds-ticker { margin-top:56px; }
  .nav-links { display:none; }
  .ds-logo   { font-size:18px; }
  .ds-cart-btn { padding:8px 14px; font-size:12px; }

  .ds-hero { padding:80px 16px 48px; min-height:auto; }
  .hero-inner { grid-template-columns:1fr; gap:0; }
  .hero-visual { display:none; }
  .hero-headline { font-size:clamp(34px,9vw,52px); }
  .hero-arabic   { font-size:24px; margin-bottom:20px; }
  .dupe-hook     { padding:18px; margin-bottom:20px; }
  .price-ours    { font-size:36px; }
  .hero-body     { font-size:15px; margin-bottom:20px; }
  .hero-btns     { flex-direction:column; gap:10px; margin-bottom:20px; }
  .btn-primary, .btn-secondary { width:100%; justify-content:center; padding:14px; }
  .trust-row     { gap:10px 14px; }

  .ds-section    { padding:56px 16px; }
  .section-header { margin-bottom:32px; text-align:center; }
  .section-sub   { max-width:100%; }

  .ds-product-grid { grid-template-columns:1fr; gap:14px; }
  .card-visual   { height:200px; }
  .ds-add-to-cart { min-height:52px; font-size:14px; }

  #ds-sticky-bar { padding:10px 16px; padding-bottom:max(10px,env(safe-area-inset-bottom)); }
  .sticky-variants { display:none; }
  .sticky-info { flex:1; }
  .sticky-name { font-size:13px; }
  .sticky-price { font-size:16px; }

  .compare-table-wrap::after { content:'← Swipe to see full table →'; display:block; text-align:center; font-size:11px; color:var(--text-3); padding:8px; }
  .compare-table td, .compare-table th { padding:10px 12px; font-size:12px; }
  .td-our { font-size:18px; }

  .tab-nav { overflow-x:auto; flex-wrap:nowrap; -webkit-overflow-scrolling:touch; padding-bottom:6px; scrollbar-width:none; }
  .tab-nav::-webkit-scrollbar { display:none; }
  .tab-btn { flex-shrink:0; padding:9px 16px; font-size:13px; }
  .tab-panel.active { grid-template-columns:1fr; gap:22px; }
  .buyer-profiles { grid-template-columns:1fr; gap:10px; }
  .tab-quick-stats { grid-template-columns:repeat(2,1fr); }
  .pyramid-label { font-size:10px; min-width:50px; padding:8px 10px; }
  .pyramid-notes { font-size:12px; padding:8px 12px; }

  .phases { padding-left:22px; }
  .phase-num { font-size:38px; left:-46px; }
  .ingredients-spot { grid-template-columns:1fr; gap:10px; }

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

  .review-stats { grid-template-columns:repeat(2,1fr); gap:12px; padding:20px; }
  .stat-big { font-size:30px; }
  .review-grid { grid-template-columns:1fr; gap:14px; }
  .review-highlight { padding:24px 18px; }
  .rh-quote { font-size:17px; }

  .faq-q { font-size:14px; padding:16px 18px; }
  .faq-a-inner { font-size:13px; padding:0 18px 16px; }

  .final-cta { padding:56px 16px; }
  .price-drama { flex-direction:column; gap:12px; margin:24px 0; }
  .pd-arrow { transform:rotate(90deg); font-size:22px; }
  .pd-price-new { font-size:52px; }
  .pd-price-old { font-size:28px; }
  .cta-trust { gap:12px; }
  .cta-trust-item { font-size:12px; }

  .email-form { flex-direction:column; gap:8px; }
  .email-btn { width:100%; padding:14px; }

  .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

/* Small phones (up to 480px) */
@media(max-width:480px){
  .ds-hero { padding:72px 14px 44px; }
  .hero-headline { font-size:clamp(30px,9vw,46px); }
  .dupe-hook { padding:14px; }
  .price-ours { font-size:30px; }
  .ds-section { padding:48px 14px; }
  .footer-grid { grid-template-columns:1fr; }
  .review-stats { grid-template-columns:repeat(2,1fr); }
  .stat-big { font-size:26px; }
}

/* Touch devices */
@media(hover:none) and (pointer:coarse){
  .product-card:hover { transform:none; box-shadow:none; }
  .btn-primary:hover  { transform:none; }
  .occ-card:hover     { transform:none; }
  .btn-primary:active { transform:scale(0.98); background:var(--gold-dark); }
  .ds-add-to-cart:active { transform:scale(0.98); }
  .faq-q, .ds-add-to-cart, .btn-primary, .btn-secondary, .tab-btn {
    -webkit-tap-highlight-color: rgba(200,150,62,0.2);
  }
}

/* iOS safe area */
@supports(-webkit-touch-callout:none){
  #ds-sticky-bar { padding-bottom: env(safe-area-inset-bottom,12px); }
  #ds-nav        { padding-top: env(safe-area-inset-top,0); }
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .ticker-track { animation:none; }
}

/* WooCommerce overrides */
.woocommerce-loop-product__link { text-decoration:none; }
.price ins { text-decoration:none; }
.price del { opacity:0.6; }
.star-rating { color:var(--gold); }
