/* ============================================================
   12 Degrees — Editorial Design System v2
   Bold · Clean · Modern DTC Aesthetic
   ============================================================ */

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

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
    --red:           #e60012; /* Brand Red from flier */
    --red-dark:      #c2000a;
    --red-dim:       rgba(230,0,18,0.06);
    --red-glow:      rgba(230,0,18,0.18);
    
    --brand-plum:    #09090b; /* Sleek Onyx Black */
    --brand-gold:    #dfb15b; /* Honey Gold */
    --brand-teal:    #10b981; /* Fresh Leaf Green from flier */

    --ink:           #09090b; /* Sleek black base */
    --ink-2:         #18181b; /* Sleek charcoal */
    --ink-3:         #52525b; /* Slate grey */
    --ink-4:         #a1a1aa;
    --text-muted:    #6b7280; /* Soft neutral text for secondary copy */

    --paper:         #ffffff; /* Crisp white */
    --paper-2:       #f4f4f5; /* Light grey backdrop */
    --paper-3:       #e4e4e7;

    --border:        #e4e4e7;
    --border-dark:   #d4d4d8;

    --success:       #10b981;
    --gold:          var(--brand-gold);

    --sh-xs: 0 1px 3px rgba(9,9,11,.03), 0 1px 2px rgba(9,9,11,.01);
    --sh-sm: 0 4px 14px rgba(9,9,11,.05);
    --sh-md: 0 12px 36px rgba(9,9,11,.07);
    --sh-lg: 0 24px 64px rgba(9,9,11,.1);
    --sh-red: 0 8px 28px rgba(230,0,18,0.20);

    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  20px;
    --r-xl:  28px;
    --r-f:   9999px;

    --fh: 'Cormorant Garamond', serif;
    --fb: 'Plus Jakarta Sans', sans-serif;

    --ease: cubic-bezier(.4,0,.2,1);
    --spring: cubic-bezier(.34,1.56,.64,1);
    --t: all .25s var(--ease);
    --tf: all .16s var(--ease);
}

body.dark-mode {
    --ink:         #f4f4f5;
    --ink-2:       #e4e4e7;
    --ink-3:       #a1a1aa;
    --ink-4:       #71717a;
    --text-muted:  rgba(255,255,255,.72);
    --paper:       #09090b; /* Sleek Jet Black */
    --paper-2:     #18181b; /* Sleek Dark Slate Card */
    --paper-3:     #27272a;
    --border:      rgba(255,255,255,.08);
    --border-dark: rgba(255,255,255,.14);
}

body.dark-mode .reviews-section-full {
    background: #09090f;
}

body.dark-mode .review-card,
body.dark-mode .review-form-card,
body.dark-mode #reviews-avg-badge {
    background: #111118;
    border-color: rgba(255,255,255,.12);
    color: #ffffff;
}

body.dark-mode .review-card:hover {
    box-shadow: 0 18px 40px rgba(255,255,255,.05);
}

body.dark-mode .review-stars {
    color: #fbbf24;
}

body.dark-mode .review-comment,
body.dark-mode .reviewer-product,
body.dark-mode .review-date,
body.dark-mode .review-form-card p,
body.dark-mode .reviewer-name,
body.dark-mode .section-label .label-text,
body.dark-mode .shop-title,
body.dark-mode .shop-title em,
body.dark-mode #reviews-count-label,
body.dark-mode #reviews-avg-number {
    color: #ffffff !important;
}

body.dark-mode .shop-title,
body.dark-mode .shop-title em,
body.dark-mode .section-label .label-text,
body.dark-mode .section-label {
    color: #f4f4f5;
}

body.dark-mode .section-label .label-text {
    color: rgba(255,255,255,.72);
}

/* ─── Reset ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    width: 100%; 
    max-width: 100%; 
}
body {
    font-family: var(--fb);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--fh); line-height: 1.15; color: var(--ink); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ─── Announcement Ticker ─────────────────────────────────── */
.ticker-bar {
    background: var(--ink);
    color: #f7f6f6;
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

body.dark-mode .ticker-bar {
    background: var(--ink);
    color: #0e0d0d;
}

body.dark-mode .ticker-bar .ticker-dot {
    color: var(--red);
}

.ticker-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
}

.ticker-dot { color: var(--red); }

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── Header ─────────────────────────────────────────────── */
#site-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 38px; /* below ticker bar */
    left: 0;
    right: 0;
    z-index: 100;
    transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease, top .4s ease, transform .3s ease;
}

#site-header.header-hidden {
    transform: translateY(-160px);
}

/* Scrolled state — added by JS */
#site-header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

#site-header.scrolled .header-container {
    height: 70px;
}

#site-header.scrolled .logo-img {
    height: 48px;
}

#site-header.scrolled .logo {
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: none;
}

#site-header.scrolled .logo-img {
    filter: none;
    mix-blend-mode: normal;
}

#site-header:not(.scrolled) .logo {
    background: transparent;
    padding: 0;
}

body.dark-mode #site-header.scrolled {
    background: rgba(9, 9, 11, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Nav links white when transparent (over hero) */
#site-header:not(.scrolled) .nav-link {
    color: rgba(255,255,255,0.85);
}
#site-header:not(.scrolled) .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}
#site-header:not(.scrolled) .nav-link.active {
    color: #fff;
}
#site-header:not(.scrolled) .theme-toggle,
#site-header:not(.scrolled) .cart-toggle {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

/* Scrolled header elements - highly visible colors on white background */
#site-header.scrolled .nav-link {
    color: var(--ink-3);
}
#site-header.scrolled .nav-link:hover {
    color: var(--red);
    background: var(--red-dim);
}
#site-header.scrolled .nav-link.active {
    color: var(--red);
}
#site-header.scrolled .theme-toggle,
#site-header.scrolled .cart-toggle {
    border-color: var(--border);
    background: var(--paper-2);
    color: var(--ink-3);
}
#site-header.scrolled .theme-toggle:hover,
#site-header.scrolled .cart-toggle:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-dim);
}

/* Dark mode overrides for scrolled header elements */
body.dark-mode #site-header.scrolled .nav-link {
    color: var(--ink-3);
}
body.dark-mode #site-header.scrolled .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
body.dark-mode #site-header.scrolled .nav-link.active {
    color: var(--red);
}
body.dark-mode #site-header.scrolled .theme-toggle,
body.dark-mode #site-header.scrolled .cart-toggle {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--ink-3);
}
body.dark-mode #site-header.scrolled .theme-toggle:hover,
body.dark-mode #site-header.scrolled .cart-toggle:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-dim);
}
#site-header:not(.scrolled) .cart-count {
    border-color: transparent;
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
    transition: height 0.4s var(--ease);
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { 
    height: 70px;
    width: auto; 
    object-fit: contain; 
    transition: height 0.4s var(--ease), transform 0.25s var(--ease); 
}
.logo:hover .logo-img { transform: scale(1.04); }

/* Keep the logo color true to the source image */
.logo-img,
#site-header:not(.scrolled) .logo-img,
body.dark-mode #site-header .logo-img {
    filter: none;
    mix-blend-mode: normal;
}

/* Nav */
nav { display: flex; gap: 2px; }
.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-3);
    padding: 8px 16px;
    border-radius: var(--r-f);
    transition: var(--tf);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.25s var(--ease), left 0.25s var(--ease);
}
.nav-link:hover::after {
    width: 30%;
    left: 35%;
}
.nav-link:hover { color: var(--red); background: var(--red-dim); }
.nav-link.active { color: var(--red); font-weight: 600; }
.nav-link.active::after {
    width: 40%;
    left: 30%;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }

.theme-toggle, .cart-toggle {
    width: 40px; height: 40px;
    border-radius: var(--r-f);
    border: 1.5px solid var(--border);
    background: var(--paper-2);
    color: var(--ink-3);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--tf);
    position: relative;
}

.theme-toggle:hover, .cart-toggle:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-dim);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--paper-2);
}
/* ─── Hero (full-screen carousel) ─────────────────────────── */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: #0a0a0a;
    /* Hero starts at top:0; header floats over it */
}

/* ── Carousel slides ── */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 8s ease-out;
    transform: scale(1.08);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel-slide.leaving {
    opacity: 0;
    transform: scale(1.04);
    z-index: 2;
}

/* ── Gradient overlay ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(0,0,0,0.75) 0%,
            rgba(10,10,10,0.60) 55%,
            rgba(0,0,0,0.50) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 55%);
    z-index: 3;
    pointer-events: none;
}

body.dark-mode .hero {
    background: #0a0a0a;
}

body.dark-mode .hero-overlay {
    background:
        linear-gradient(105deg,
            rgba(0,0,0,0.78) 0%,
            rgba(10,10,10,0.62) 55%,
            rgba(0,0,0,0.52) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.68) 0%, transparent 55%);
}

/* Mood-tinted overlay variations */
.hero[data-active-mood="floral"] .hero-overlay {
    background:
        linear-gradient(105deg,
            rgba(30,5,30,0.84) 0%,
            rgba(80,20,50,0.55) 55%,
            rgba(0,0,0,0.28) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 50%);
}
.hero[data-active-mood="fresh"] .hero-overlay {
    background:
        linear-gradient(105deg,
            rgba(0,20,28,0.84) 0%,
            rgba(10,55,60,0.55) 55%,
            rgba(0,0,0,0.28) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 50%);
}
.hero[data-active-mood="cozy"] .hero-overlay {
    background:
        linear-gradient(105deg,
            rgba(28,15,0,0.84) 0%,
            rgba(70,40,0,0.55) 55%,
            rgba(0,0,0,0.28) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 50%);
}

/* ── Dynamic Mist / Fog Effects ── */
.hero-mist-container {
    position: absolute;
    inset: 0;
    z-index: 4; /* above hero-overlay (3), below hero-inner (5) */
    pointer-events: none;
    overflow: hidden;
}

.mist-cloud {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen; /* additively brighten — punches through dark overlay */
    will-change: transform, opacity;
    animation: mist-drift ease-in-out infinite;
}

.mist-cloud-1 {
    width: 90vw;
    height: 60vh;
    top: -10%;
    left: -20%;
    opacity: 0.75;
    animation-duration: 26s;
    animation-delay: 0s;
    background: radial-gradient(ellipse at 40% 50%,
        rgba(255, 220, 230, 0.75) 0%,
        rgba(255, 200, 215, 0.45) 35%,
        rgba(220, 180, 200, 0.15) 65%,
        transparent 80%);
    filter: blur(55px);
}

.mist-cloud-2 {
    width: 70vw;
    height: 55vh;
    bottom: 0%;
    right: -15%;
    opacity: 0.65;
    animation-duration: 34s;
    animation-delay: -10s;
    background: radial-gradient(ellipse at 60% 40%,
        rgba(200, 225, 255, 0.70) 0%,
        rgba(180, 210, 250, 0.40) 35%,
        rgba(160, 190, 230, 0.12) 65%,
        transparent 80%);
    filter: blur(65px);
}

.mist-cloud-3 {
    width: 110vw;
    height: 40vh;
    bottom: -5%;
    left: -5%;
    opacity: 0.55;
    animation-duration: 42s;
    animation-delay: -20s;
    background: radial-gradient(ellipse at 35% 70%,
        rgba(255, 255, 255, 0.80) 0%,
        rgba(240, 240, 255, 0.45) 40%,
        rgba(220, 220, 240, 0.15) 65%,
        transparent 80%);
    filter: blur(50px);
}

@keyframes mist-drift {
    0%   { transform: translateX(0)    translateY(0)   scale(1);    opacity: 0.7; }
    20%  { transform: translateX(5%)   translateY(-3%) scale(1.04); opacity: 0.85; }
    50%  { transform: translateX(9%)   translateY(2%)  scale(1.08); opacity: 0.65; }
    80%  { transform: translateX(3%)   translateY(-1%) scale(1.03); opacity: 0.80; }
    100% { transform: translateX(0)    translateY(0)   scale(1);    opacity: 0.7; }
}

/* ── Carousel dot indicators ── */
.carousel-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, width 0.4s;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--red);
    width: 26px;
    border-radius: 4px;
}

.carousel-dot:hover {
    background: rgba(255,255,255,0.7);
}

/* ── Hero inner content (over the carousel) ── */
.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 130px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

/* Left Column */
.hero-left {
    display: flex;
    flex-direction: column;
}


.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0.85;
}

.hero-dot {
    display: block;
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.5); opacity: 0.4; }
}

.hero-headline {
    font-family: var(--fh);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-headline span {
    display: block;
}

.hero-line-1 {
    font-size: clamp(48px, 5.5vw, 72px);
    opacity: 0;
    animation: reveal-text 0.8s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-line-2 {
    font-size: clamp(48px, 5.5vw, 72px);
    color: var(--red);
    font-style: italic;
    opacity: 0;
    animation: reveal-text 0.8s cubic-bezier(.16,1,.3,1) 0.15s forwards;
}
.hero-line-2 em { font-style: normal; color: #fff; }

.hero-line-3 {
    font-size: clamp(48px, 5.5vw, 72px);
    opacity: 0;
    animation: reveal-text 0.8s cubic-bezier(.16,1,.3,1) 0.3s forwards;
}

@keyframes reveal-text {
    from { transform: translateY(24px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
    font-size: 15.5px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Mood Tab Selector */
.mood-selector {
    margin-bottom: 32px;
}

.mood-selector-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-3);
    margin-bottom: 10px;
}

.mood-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mood-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.28);
    border-radius: var(--r-f);
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    transition: var(--tf);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mood-btn:hover {
    border-color: var(--red);
    color: #fff;
    background: rgba(255,255,255,0.22);
}

.mood-btn.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 4px 18px rgba(210,0,50,0.45);
}
body.dark-mode .mood-btn.active,
.hero .mood-btn.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 4px 18px rgba(210,0,50,0.4);
}

/* Hero CTA buttons */
.hero-cta-row { display: flex; gap: 14px; align-items: center; justify-content: center; margin-bottom: 40px; }

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-family: var(--fb);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--r-md);
    box-shadow: var(--sh-red);
    transition: var(--t);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(210,142,119,.32);
}

.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: var(--r-md);
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: var(--tf);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.08);
}

.cta-ghost:hover { border-color: var(--red); color: #fff; background: rgba(210,0,50,0.3); }

/* Stats — white text on dark carousel */
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 28px; }

.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--fh); font-size: 22px; font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
.stat span { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }

.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Right Column (Spotlight Product Card) */
.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

/* Dynamic Spotlight Card styling */
.hero-spotlight-card {
    width: 100%;
    max-width: 380px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s var(--ease);
    animation: card-float 6s ease-in-out infinite alternate;
}

body.dark-mode .hero-spotlight-card {
    background: rgba(28, 16, 29, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-spotlight-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 32px 64px rgba(45,21,45,0.18);
}

@keyframes card-float {
    0% { transform: translateY(0) rotate(-0.5deg); }
    100% { transform: translateY(-12px) rotate(0.5deg); }
}

.spotlight-badge {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--r-f);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(210,0,50,0.3);
}

.spotlight-img-frame {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--paper-2);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid var(--border);
}

.spotlight-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.hero-spotlight-card:hover .spotlight-img {
    transform: scale(1.05);
}

.spotlight-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    margin-bottom: 6px;
}

.spotlight-name {
    font-family: var(--fh);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 12px;
}

.spotlight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.spotlight-price {
    font-family: var(--fh);
    font-size: 27px;
    font-weight: 800;
    color: var(--brand-plum);
    letter-spacing: -0.5px;
}
body.dark-mode .spotlight-price {
    color: var(--red);
}

.spotlight-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-2);
    background: var(--paper-3);
    padding: 3px 8px;
    border-radius: var(--r-f);
}
.spotlight-rating svg { fill: var(--gold); color: var(--gold); }

.spotlight-btn {
    width: 100%;
    padding: 12px;
    background: var(--brand-plum);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--fb);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tf);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.spotlight-btn:hover {
    background: var(--red);
    box-shadow: var(--sh-red);
}
body.dark-mode .spotlight-btn {
    background: var(--red);
    color: var(--paper);
}
body.dark-mode .spotlight-btn:hover {
    background: var(--red-dark);
}

@keyframes blob-bounce {
    0% { border-radius: 43% 57% 53% 47% / 35% 44% 56% 65%; transform: translate(0, 0) scale(1); }
    100% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; transform: translate(15px, 25px) scale(1.1); }
}

/* ─── Section Labels ─────────────────────────────────────── */
.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.label-line {
    display: block;
    width: 32px; height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.label-text {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--red);
}

/* ─── Shop Section ──────────────────────────────────────── */
.shop-section { padding: 88px 0; }

/* ─── Featured Section (Homepage product teaser) ─────────── */
.featured-section { padding: 88px 0; }

.featured-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
}

/* ─── Reviews Section ─────────────────────────────────────── */
.reviews-section-full {
    padding: 88px 0;
    background: var(--paper-2);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 52px;
}

.review-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    overflow: hidden;       /* prevent children from bleeding outside */
    min-width: 0;           /* allow flex shrink below content size */
    width: 100%;            /* always fill its grid cell */
    box-sizing: border-box;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 18px;
    flex-shrink: 0;
    font-family: var(--fh);
}

.reviewer-info { flex: 1; min-width: 0; overflow: hidden; }
.reviewer-name { font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reviewer-product { font-size: 12px; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.review-comment { font-size: 14px; line-height: 1.65; color: var(--text-muted); flex: 1; word-break: break-word; overflow-wrap: break-word; }
.review-date { font-size: 11px; color: var(--text-muted); opacity: .7; }

/* Submit Review Form */
.review-form-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: var(--sh-xs);
}

.review-form-card h3 {
    font-family: var(--fh);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.review-form-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

.star-picker { display: flex; gap: 6px; margin-bottom: 20px; }
.star-picker button {
    background: none; border: none; font-size: 28px; cursor: pointer;
    color: #d1d5db; transition: color .15s, transform .15s;
    padding: 0; line-height: 1;
}
.star-picker button.lit { color: #f59e0b; }
.star-picker button:hover { transform: scale(1.2); }

.review-success-msg {
    display: none;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--r-md);
    padding: 14px 18px;
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .featured-section-header { flex-direction: column; align-items: flex-start; }
    .review-form-card { padding: 24px 20px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
    .review-card { padding: 18px 16px; }
    .reviewer-name { font-size: 14px; }
    .reviewer-product { font-size: 11px; }
    .review-comment { font-size: 13px; }
}

.shop-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-title {
    font-family: var(--fh);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.shop-title em { color: var(--red); font-style: italic; }

/* Controls */
.controls-bar { display: flex; gap: 12px; align-items: center; }

.search-wrapper {
    position: relative;
}

.search-input {
    padding: 11px 18px 11px 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--paper-2);
    color: var(--ink);
    font-size: 14px;
    font-family: var(--fb);
    width: 260px;
    outline: none;
    transition: var(--tf);
}

.search-input::placeholder { color: var(--ink-4); }
.search-input:focus { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-dim); }

.search-icon {
    position: absolute;
    left: 15px; top: 50%;
    transform: translateY(-50%);
    color: var(--ink-4);
    pointer-events: none;
}

.sort-wrapper select {
    padding: 11px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--paper-2);
    color: var(--ink);
    font-size: 14px;
    font-family: var(--fb);
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: var(--tf);
}

.sort-wrapper select:focus { border-color: var(--red); }

/* Category Pills */
.category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: 40px;
}
.category-scroll::-webkit-scrollbar { display: none; }

.category-btn {
    padding: 8px 20px;
    border-radius: var(--r-f);
    border: 1.5px solid var(--border);
    background: var(--paper);
    color: var(--ink-3);
    font-family: var(--fb);
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--tf);
}
.category-btn:hover { border-color: var(--red); color: var(--red); }
.category-btn.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    font-weight: 600;
}
body.dark-mode .category-btn.active { background: var(--red); border-color: var(--red); }

/* ─── Product Grid ───────────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    gap: 24px;
}

/* ─── Product Card ───────────────────────────────────────── */
.product-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
    box-shadow: var(--sh-xs);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: rgba(230,0,18,.1);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--r-f);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.product-badge.new { background: #0ea5e9; }
.product-badge.low-stock { background: var(--gold); }
.product-badge.popular { background: #8b5cf6; }

/* Image */
.product-img-wrapper {
    position: relative;
    padding-top: 105%;
    background: var(--paper-2);
    overflow: hidden;
    cursor: pointer;
}

.product-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

/* Overlay */
.product-actions-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(0deg, rgba(0,0,0,.45) 0%, transparent);
    display: flex;
    gap: 8px;
    justify-content: center;
    transform: translateY(100%);
    transition: transform .28s var(--ease);
}
.product-card:hover .product-actions-overlay { transform: translateY(0); }

.overlay-btn {
    background: rgba(255,255,255,.95);
    border: none;
    width: 38px; height: 38px;
    border-radius: var(--r-f);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--ink);
    transition: var(--tf);
    box-shadow: var(--sh-sm);
}
.overlay-btn:hover { background: var(--red); color: #fff; transform: scale(1.1); }

/* Info */
.product-info {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--fh);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
    cursor: pointer;
    transition: color .16s;
}
.product-name:hover { color: var(--red); }

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    margin-top: auto;
}

.product-price {
    font-family: var(--fh);
    font-size: 26px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -.5px;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-3);
    background: var(--paper-3);
    padding: 4px 9px;
    border-radius: var(--r-f);
    border: 1px solid var(--border);
}
.product-rating svg { fill: var(--gold); color: var(--gold); }

.product-footer-btn {
    width: 100%;
    padding: 11px;
    background: var(--paper-2);
    color: var(--ink-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    font-family: var(--fb);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tf);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.product-footer-btn:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: var(--sh-red);
}
.product-footer-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
    background: var(--paper-3);
    color: var(--ink-4);
    border-color: var(--border);
}

/* ─── Features Section ───────────────────────────────────── */
.features-section {
    background: linear-gradient(180deg, rgba(15, 15, 18, 0.88) 0%, rgba(15, 15, 18, 0.92) 100%),
        url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 88px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.45);
    pointer-events: none;
}

.features-section .section-label,
.features-grid {
    position: relative;
    z-index: 1;
}

.features-section .section-label .label-text { color: rgba(255,255,255,.75); }
.features-section .label-line { background: var(--red); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    margin-top: 40px;
    border: none;
}

.feature-card {
    background: #18181b;
    padding: 40px 32px;
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,.05);
    box-shadow: var(--sh-sm);
    transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s;
    position: relative;
}

.feature-card:hover {
    background: rgba(59, 31, 60, 0.4);
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}

.feature-num {
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 48px; height: 48px;
    background: rgba(210,142,119,.12);
    color: var(--red);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s var(--spring);
}
.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card h4 {
    font-family: var(--fh);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.65;
}

/* ─── Find Us ─────────────────────────────────────────────── */
.find-us-section { padding: 88px 0; background: var(--paper); }

.find-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.find-us-title {
    font-family: var(--fh);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
}
.find-us-title em { color: var(--red); font-style: italic; }

.find-us-desc { color: var(--ink-3); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-icon {
    width: 44px; height: 44px;
    background: var(--red-dim);
    color: var(--red);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(230,0,18,.14);
}

.contact-item strong { font-family: var(--fh); font-size: 15px; font-weight: 700; display: block; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }

.find-us-map {
    height: 440px;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh-lg);
}
.find-us-map iframe { width: 100%; height: 100%; border: none; }

/* ─── Cart Drawer ─────────────────────────────────────────── */
.cart-drawer {
    position: fixed;
    top: 0; right: -420px;
    width: 100%; max-width: 420px;
    height: 100%;
    background: var(--paper);
    box-shadow: -12px 0 40px rgba(0,0,0,.14);
    z-index: 200;
    transition: right .38s var(--ease);
    display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
    padding: 22px 22px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-header h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; }

.close-btn {
    width: 34px; height: 34px;
    border-radius: var(--r-f);
    border: 1.5px solid var(--border);
    background: var(--paper-2);
    color: var(--ink-3);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--tf);
}
.close-btn:hover { background: var(--red-dim); color: var(--red); border-color: var(--red); }

.cart-items { flex-grow: 1; overflow-y: auto; padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--paper-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px;
}

.cart-item-img {
    width: 60px; height: 60px;
    border-radius: var(--r-sm);
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-item-details { flex-grow: 1; }
.cart-item-name { font-size: 13.5px; font-weight: 600; margin-bottom: 3px; line-height: 1.4; font-family: var(--fh); }
.cart-item-price { font-size: 16.5px; font-weight: 700; color: var(--red); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 9px; }

.qty-btn {
    width: 25px; height: 25px;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--r-sm);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    font-weight: 700; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--tf);
}
.qty-btn:hover { border-color: var(--red); color: var(--red); }
.qty-val { font-size: 13.5px; font-weight: 600; min-width: 16px; text-align: center; }

.cart-item-remove {
    background: none; border: none;
    color: var(--ink-4); cursor: pointer;
    padding: 4px; border-radius: var(--r-sm);
    transition: var(--tf); flex-shrink: 0;
}
.cart-item-remove:hover { color: var(--red); background: var(--red-dim); }

.cart-footer {
    padding: 18px 22px 22px;
    border-top: 1px solid var(--border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.cart-total-label { font-size: 14px; font-weight: 500; color: var(--ink-3); }
.cart-total-val { font-family: var(--fh); font-size: 25px; font-weight: 800; color: var(--red); letter-spacing: -.5px; }

.cart-empty {
    text-align: center;
    padding: 56px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    color: var(--ink-4);
}
.cart-empty svg { opacity: .2; }
.cart-empty h4 { font-size: 17px; color: var(--ink-2); }
.cart-empty p { font-size: 14px; }

/* ─── Drawer Overlay ─────────────────────────────────────── */
.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.44);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0; pointer-events: none;
    transition: opacity .28s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ─── Modals ─────────────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(10px);
    z-index: 250;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity .28s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-content {
    background: var(--paper);
    border-radius: var(--r-xl);
    width: 92%; max-width: 680px;
    max-height: 92vh; overflow-y: auto;
    position: relative;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--border);
    transform: scale(.95) translateY(8px);
    transition: transform .3s var(--spring), opacity .3s;
}
.modal-overlay.open .modal-content { transform: scale(1) translateY(0); }

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border-radius: var(--r-f);
    border: 1.5px solid var(--border);
    background: var(--paper-2);
    color: var(--ink-3);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--tf); z-index: 1;
}
.modal-close:hover { background: var(--red-dim); color: var(--red); border-color: var(--red); }

/* Quick View */
.quickview-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.quickview-img-side {
    background: var(--paper-2);
    border-radius: var(--r-xl) 0 0 var(--r-xl);
    display: flex; align-items: center; justify-content: center;
    min-height: 340px; overflow: hidden;
    position: relative;
}
.quickview-img { max-width: 85%; max-height: 85%; object-fit: contain; }
.quickview-badge { top: 16px; left: 16px; }

.quickview-info-side { padding: 36px 32px; display: flex; flex-direction: column; gap: 4px; }
.quickview-name { font-family: var(--fh); font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.quickview-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; font-size: 13px; }
.quickview-price { font-family: var(--fh); font-size: 32px; font-weight: 800; color: var(--red); letter-spacing: -1px; margin-bottom: 14px; }
.quickview-desc { font-size: 14px; color: var(--ink-3); line-height: 1.7; margin-bottom: 16px; }
.quickview-qty-buy { margin-top: auto; }

/* Checkout */
.checkout-body { padding: 40px 34px 34px; }
.checkout-title { font-family: var(--fh); font-size: 22px; margin-bottom: 6px; }
.checkout-desc { color: var(--ink-3); font-size: 14px; margin-bottom: 26px; }

.form-group { margin-bottom: 16px; }
.form-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 6px;
    color: var(--ink-2);
}
.form-input, .form-select {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    background: var(--paper-2);
    color: var(--ink);
    font-size: 14px;
    font-family: var(--fb);
    outline: none;
    transition: var(--tf);
}
.form-input:focus, .form-select:focus { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.order-summary-box {
    background: var(--paper-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    margin: 20px 0;
}
.order-summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.order-summary-row.total-row { font-weight: 700; font-size: 16px; margin-top: 8px; border-top: 1px solid var(--border); padding-top: 12px; }

.checkout-submit-btn { width: 100%; margin-top: 6px; padding: 14px; font-size: 15px; }

/* Success */
.success-body {
    padding: 56px 36px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.success-icon-circle {
    width: 76px; height: 76px;
    background: rgba(0,184,122,.1);
    color: var(--success);
    border-radius: var(--r-f);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    border: 1.5px solid rgba(0,184,122,.2);
}
.success-title { font-family: var(--fh); font-size: 26px; margin-bottom: 8px; }
.success-desc { color: var(--ink-3); font-size: 15px; margin-bottom: 26px; max-width: 340px; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 26px;
    font-family: var(--fb); font-weight: 600; font-size: 14.5px;
    border-radius: var(--r-md);
    cursor: pointer; border: none; gap: 8px;
    white-space: nowrap; transition: var(--t);
}
.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    box-shadow: var(--sh-red);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(230,0,18,.3); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-secondary {
    background: var(--paper-2);
    color: var(--ink-2);
    border: 1.5px solid var(--border-dark);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); background: var(--red-dim); }

/* ─── Footer ─────────────────────────────────────────────── */
footer { background: #09090d; }

.footer-top > .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 56px;
    padding-top: 72px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .logo-img.footer-logo {
    height: 96px; /* Increased logo size in footer as requested */
    filter: invert(1) hue-rotate(180deg); /* Preserve brand red hue */
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255,255,255,.38);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.social-links { display: flex; gap: 8px; }

.social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-f);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.45);
    transition: var(--tf);
}
.social-icon:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links-col h4 {
    color: #fff;
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -.1px;
}

.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
    color: rgba(255,255,255,.38);
    font-size: 14px;
    transition: var(--tf);
}
.footer-links-col a:hover { color: var(--red); }

.admin-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,.25);
    transition: var(--tf);
}
.admin-link:hover { color: var(--red); }

.footer-bottom {
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.2);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.2); transition: var(--tf); }
.footer-bottom-links a:hover { color: var(--red); }

/* ─── Flying Cart Animation ──────────────────────────────── */
.flying-item {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: var(--r-sm);
    object-fit: cover;
    transition: top .7s var(--ease), left .7s var(--ease), width .7s var(--ease), height .7s var(--ease), opacity .7s var(--ease);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-top > .container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 160px 24px 60px; text-align: center; }
    .hero-left { align-items: center; }
    .hero-headline { letter-spacing: -2px; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .mood-selector { display: flex; flex-direction: column; align-items: center; }
    .hero-cta-row { justify-content: center; }
    .hero-stats { justify-content: center; }
    .find-us-grid { grid-template-columns: 1fr; }
    .find-us-map { height: 320px; }
    .quickview-body { grid-template-columns: 1fr; }
    .quickview-img-side { border-radius: var(--r-xl) var(--r-xl) 0 0; min-height: 240px; }
}

@media (max-width: 768px) {
    nav { display: none; }
    .shop-section-header { flex-direction: column; align-items: flex-start; }
    .footer-top > .container { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .controls-bar { flex-wrap: wrap; width: 100%; }
    .search-wrapper { width: 100%; }
    .search-input { width: 100%; }
    .sort-wrapper { width: 100%; }
    .sort-wrapper select { width: 100%; }
}

@media (max-width: 520px) {
    .container { padding: 0 20px; }
    .hero-inner { padding: 150px 20px 48px; }
    .hero-stats { gap: 18px; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; width: 100%; }
    .cta-primary, .cta-ghost { width: 100%; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .shop-section { padding: 56px 0; }
    .features-section { padding: 56px 0; }
    .find-us-section { padding: 56px 0; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
    .quiz-card-wrapper { padding: 32px 20px; }
}

/* ─── Scent Quiz Section ───────────────────────────────────── */
.scent-quiz-section {
    padding: 88px 0;
    background: var(--paper-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.scent-quiz-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(210,142,119,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quiz-card-wrapper {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 56px 48px;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: var(--sh-md);
    position: relative;
    z-index: 3;
    transition: height 0.4s ease;
}

.quiz-intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-title {
    font-family: var(--fh);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--ink);
}
.quiz-title em { color: var(--red); font-style: italic; }

.quiz-desc {
    font-size: 15px;
    color: var(--ink-3);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Quiz Questions Interface */
.quiz-question-container {
    animation: fadeIn 0.4s var(--ease);
}

.quiz-progress-bar {
    width: 100%;
    height: 5px;
    background: var(--paper-3);
    border-radius: var(--r-f);
    overflow: hidden;
    margin-bottom: 24px;
}

.quiz-progress-fill {
    height: 100%;
    width: 33.3%;
    background: var(--red);
    transition: width 0.4s var(--spring);
}

.quiz-step-count {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-4);
    margin-bottom: 12px;
}

.quiz-question {
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 28px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option-btn {
    width: 100%;
    padding: 16px 20px;
    background: var(--paper-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    font-family: var(--fb);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-2);
    text-align: left;
    cursor: pointer;
    transition: var(--tf);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-option-btn:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-dim);
    transform: translateX(4px);
}

.quiz-option-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--tf);
    color: var(--red);
}

.quiz-option-btn:hover .quiz-option-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Results state */
.quiz-results {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.5s var(--spring);
}

.quiz-results-title {
    font-family: var(--fh);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.quiz-results-desc {
    color: var(--ink-3);
    font-size: 14.5px;
    margin-bottom: 24px;
}

.quiz-recommended-product {
    width: 100%;
    max-width: 320px;
    margin-bottom: 28px;
}

.quiz-recommended-product .product-card {
    text-align: left;
    box-shadow: var(--sh-md);
    border-color: var(--border-dark);
}

.quiz-actions {
    display: flex;
    gap: 12px;
}

/* Extra animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Scroll Fade Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── spotlight-add-btn (JS-injected, mirrors spotlight-btn) ─── */
.spotlight-add-btn {
    width: 100%;
    padding: 12px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--fb);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tf);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(210,0,50,0.25);
}
.spotlight-add-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(210,0,50,0.38);
}
.spotlight-add-btn:disabled {
    background: var(--ink-4);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ─── Responsive Breakpoints ────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 150px 24px 70px;
    }
    .hero-spotlight-card {
        max-width: 320px;
    }
}

/* Tablet portrait — stack hero vertically */
@media (max-width: 900px) {
    .hero {
        min-height: 100svh;
        align-items: flex-end;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 160px 20px 90px;
        gap: 36px;
    }
    .hero-right {
        display: flex;
        justify-content: center;
        order: -1; /* Card above text on small screens */
    }
    .hero-spotlight-card {
        max-width: 340px;
        animation: none; /* stop float on mobile for perf */
        transform: none !important;
    }
    .hero-headline {
        letter-spacing: -1.5px;
    }
    .hero-sub {
        max-width: 100%;
    }
    .carousel-dots {
        bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-inner {
        padding: 140px 16px 80px;
        gap: 24px;
    }
    .hero-spotlight-card {
        max-width: 90vw;
        padding: 18px;
    }
    .spotlight-img-frame {
        aspect-ratio: 4/3;
    }
    .hero-eyebrow {
        font-size: 10px;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .cta-primary, .cta-ghost {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: 16px;
    }
    .mood-buttons {
        gap: 6px;
    }
    .mood-btn {
        font-size: 12px;
        padding: 7px 12px;
    }
    .carousel-dot {
        width: 7px;
        height: 7px;
    }
    .carousel-dot.active {
        width: 20px;
    }
}

/* Small phones */
@media (max-width: 420px) {
    .hero-inner {
        padding: 130px 14px 72px;
    }
    .hero-right {
        display: none; /* hide card on very small screens */
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* --- Shop Hero Banner --- */
.shop-hero {
    position: relative;
    padding: 160px 0 100px; /* adjusted to sit under sticky header and look premium */
    text-align: center;
    color: white;
    overflow: hidden;
    background: #0d0d0f;
    margin-top: 0; /* remove margin-top so it slides under floating header */
}
.shop-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease, transform 6s ease;
    transform: scale(1.05);
    z-index: 0;
}
.shop-hero-bg.active {
    opacity: 0.55; /* perfect opacity so text is readable against the image */
    transform: scale(1);
    z-index: 1;
}
.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,13,15,0.7) 0%, rgba(13,13,15,0.9) 100%);
    z-index: 2;
    pointer-events: none;
}
.shop-hero-content {
    position: relative;
    z-index: 3;
}
.shop-hero-title {
    font-family: var(--fh);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -2px;
}
.shop-hero-title em {
    font-style: italic;
    color: var(--red);
    font-weight: 400;
}
.shop-hero-subtitle {
    font-size: clamp(14px, 2.5vw, 17px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Quick View Reviews Section --- */
.quickview-body {
    display: flex;
    flex-direction: column;
}
.quickview-main-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
    .quickview-main-info {
        grid-template-columns: 1fr;
    }
}

.reviews-section {
    padding: 30px 32px 36px;
    border-top: 1px solid var(--border);
    background: var(--paper-2);
}
.reviews-list {
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 8px;
}
.review-item {
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border);
}
.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.review-user {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}
.review-stars {
    color: var(--gold);
    font-size: 12px;
}
.review-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.review-comment {
    font-size: 13px;
    color: var(--ink-2);
    margin: 0;
    line-height: 1.5;
}

body.dark-mode .review-card,
body.dark-mode .review-card .reviewer-name,
body.dark-mode .review-card .reviewer-product,
body.dark-mode .review-card .review-stars,
body.dark-mode .review-card .review-comment,
body.dark-mode .review-card .review-date {
    color: rgba(255,255,255,.88) !important;
}

body.dark-mode .review-card {
    background: #14141f !important;
    border-color: rgba(255,255,255,.15) !important;
}

.add-review-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--paper);
    padding: 20px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}

/* --- Premium Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--paper, #ffffff);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.preloader-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    animation: preloader-pulse 1.8s infinite ease-in-out;
}
.preloader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    border-top-color: var(--red, #e60012);
    animation: preloader-spin 1s linear infinite;
}
body.dark-mode .preloader-spinner {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--red, #e60012);
}
@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}
@keyframes preloader-pulse {
    0%, 100% { 
        transform: scale(0.95) rotate(0deg); 
        filter: drop-shadow(0 0 0 rgba(230,0,18,0));
        opacity: 0.9;
    }
    50% { 
        transform: scale(1.08) rotate(3deg); 
        filter: drop-shadow(0 8px 24px rgba(230,0,18,0.28));
        opacity: 1;
    }
}
.preloader-text {
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 8px;
    transition: opacity 0.25s ease;
    opacity: 1;
    text-align: center;
}

/* Premium Scroll Reveal Elements */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Micro-Interaction: Product Card Glow-lift */
.product-card {
    will-change: transform, box-shadow;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 24px 48px rgba(9, 9, 11, 0.08), 0 0 0 1px rgba(230, 0, 18, 0.12) !important;
    border-color: rgba(230, 0, 18, 0.2) !important;
}

/* Premium Cinematic Pan on Shop Hero Background */
.shop-hero-bg {
    animation: cinematic-pan 28s infinite alternate ease-in-out;
}

@keyframes cinematic-pan {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1.5%, -1%); }
}

/* Micro-Interaction: luxury light beam shimmer sweep */
.product-img-wrapper {
    position: relative;
}
.product-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}
.product-card:hover .product-img-wrapper::after {
    left: 160%;
    transition: left 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Micro-Interaction: dynamic active category slide indicator */
.category-btn {
    position: relative;
    overflow: hidden;
}
.category-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--red);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease);
}
.category-btn:hover::after,
.category-btn.active::after {
    width: 60%;
}

/* Header Cart Count Bounce */
@keyframes cart-bounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3) rotate(-8deg); }
    50% { transform: scale(0.85) rotate(6deg); }
    75% { transform: scale(1.1) rotate(-3deg); }
}
.cart-bounce-anim {
    animation: cart-bounce 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dynamic Luxury Mist / Fog Effect */
.hero-mist-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2; /* Sits above background image/carousel, but below text overlay */
}

.mist-cloud {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 60%, transparent 100%);
    filter: blur(65px);
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

body.dark-mode .mist-cloud {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 60%, transparent 100%);
    filter: blur(80px);
}

.mist-cloud-1 {
    width: 700px; height: 700px;
    top: -15%; left: -25%;
    animation: mist-drift-1 38s infinite alternate ease-in-out;
}

.mist-cloud-2 {
    width: 900px; height: 900px;
    bottom: -25%; right: -30%;
    animation: mist-drift-2 52s infinite alternate ease-in-out;
    opacity: 0.85;
}

.mist-cloud-3 {
    width: 600px; height: 600px;
    top: 25%; left: 35%;
    animation: mist-drift-3 44s infinite alternate ease-in-out;
    opacity: 0.7;
}

@keyframes mist-drift-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(18%, 10%) scale(1.25) rotate(60deg); }
}

@keyframes mist-drift-2 {
    0% { transform: translate(0, 0) scale(1.15) rotate(0deg); }
    100% { transform: translate(-15%, -12%) scale(0.9) rotate(-45deg); }
}

@keyframes mist-drift-3 {
    0% { transform: translate(0, 0) scale(0.85) rotate(0deg); }
    100% { transform: translate(10%, -18%) scale(1.2) rotate(90deg); }
}

/* ─── Payment Gateway Selector ─── */
.payment-selector-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 8px;
    color: var(--ink-2);
}

.payment-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.payment-option {
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 10px;
    background: var(--paper-2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--t);
    position: relative;
    user-select: none;
}

.payment-option:hover {
    border-color: var(--red);
    background: var(--red-dim);
}

.payment-option.active {
    border-color: var(--red);
    background: var(--red-dim);
    box-shadow: 0 0 0 3px var(--red-glow);
}

.payment-option input {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}

.payment-option-logo {
    height: 20px;
    max-width: 90%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: var(--tf);
}

.payment-option.active .payment-option-logo,
.payment-option:hover .payment-option-logo {
    filter: none;
    opacity: 1;
}

.payment-option-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--tf);
}

.payment-option.active .payment-option-title,
.payment-option:hover .payment-option-title {
    color: var(--red);
}

/* Promo Banner / Badge */
.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(230, 0, 18, 0.12);
    border: 1px solid rgba(230, 0, 18, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s infinite;
}

.hero-promo-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 215, 0, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: goldSweep 4s infinite ease-in-out;
}

@keyframes goldSweep {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.promo-pill {
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.promo-text {
    color: white;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.2);
        border-color: rgba(230, 0, 18, 0.3);
    }
    50% {
        box-shadow: 0 0 15px 4px rgba(230, 0, 18, 0.4);
        border-color: rgba(230, 0, 18, 0.7);
    }
}

@media (max-width: 768px) {
    .hero-promo-badge {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        border-radius: 16px;
        padding: 10px 16px;
        width: 100%;
        max-width: 340px;
        box-sizing: border-box;
    }
    .promo-pill {
        align-self: center;
        font-size: 9px;
    }
    .promo-text {
        font-size: 11.5px;
        text-align: center;
    }
}

/* ─── Mobile Navigation Drawer ─── */
.menu-toggle {
    display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
    .menu-toggle {
        width: 40px; height: 40px;
        border-radius: var(--r-f);
        border: 1.5px solid var(--border);
        background: var(--paper-2);
        color: var(--ink-3);
        cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        transition: var(--tf);
        position: relative;
    }
    .menu-toggle:hover {
        border-color: var(--red);
        color: var(--red);
        background: var(--red-dim);
    }
    #site-header:not(.scrolled) .menu-toggle {
        border-color: rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.9);
    }
}

.menu-drawer {
    position: fixed;
    top: 0; left: -320px;
    width: 100%; max-width: 320px;
    height: 100%;
    background: var(--paper);
    box-shadow: 12px 0 40px rgba(0,0,0,.14);
    z-index: 200;
    transition: left .38s var(--ease);
    display: flex; flex-direction: column;
}
.menu-drawer.open { left: 0; }

.menu-drawer-header {
    padding: 22px 22px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-drawer-header h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; }

.menu-drawer-links {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-drawer-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink-2);
    padding: 10px 16px;
    border-radius: var(--r-md);
    transition: var(--tf);
}
.menu-drawer-link:hover {
    color: var(--red);
    background: var(--red-dim);
}
