/* ==========================================================================
   SCENTS & CENTS — Premium Minimal Theme
   ==========================================================================
   True black #000. Rich gold #FFC42E.
   Playfair Display serif for headings. Outfit sans for body.
   Spacious, clean, fragrance-focused.
   ========================================================================== */

:root {
    --black: #000000;
    --bg: #0a0a0a;
    --surface: #111111;
    --surface-2: #1a1a1a;
    --border: #1e1e1e;
    --border-2: #2a2a2a;

    --gold: #FFC42E;
    --gold-light: #FFD35F;
    --gold-dark: #D4A020;
    --gold-bg: #1c1500;
    --gold-border: #4a3810;

    --white: #FFFFFF;
    --t1: #F5F5F5;
    --t2: #B8B8B8;
    --t3: #808080;
    --t4: #555555;
    --t5: #333333;

    --green: #22C55E;
    --green-soft: #4ADE80;
    --red: #EF4444;
    --red-soft: #F87171;

    --serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    --sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --mono: 'JetBrains Mono', 'Consolas', monospace;

    --radius: 8px;
    --radius-pill: 100px;
    --max-w: 1000px;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--t1);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

/* Gold accent line at top (only on home page) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 999;
    background: #FFC42E;
    pointer-events: none;
}

body.not-home::before {
    display: none !important;
}

/* Diagonal gold glow */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(
            335deg,
            rgba(255, 196, 46, 0.13) 0%,
            rgba(255, 196, 46, 0.07) 15%,
            rgba(255, 196, 46, 0.03) 30%,
            transparent 50%
        ),
        linear-gradient(
            335deg,
            rgba(255, 210, 80, 0.06) 0%,
            transparent 35%
        );
    pointer-events: none;
}

body > * {
    position: relative;
    z-index: 1;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
button { font-family: var(--sans); cursor: pointer; }
img { max-width: 100%; }
::selection { background: var(--gold-dark); color: var(--white); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }

.hidden { display: none !important; }

/* ══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════════════ */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000000;
    border-bottom: 3px solid #FFC42E;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 14px 24px;
    position: relative;
}

/* ══════════════════════════════════════════════════════════════════════════
   HAMBURGER BUTTON (Fixed on Top of All Layers & Morphing Fold/Bend)
   ══════════════════════════════════════════════════════════════════════════ */
.nav-hamburger {
    position: fixed;
    left: 24px;
    top: 25px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    z-index: 1100; /* Stacking: navbar(1000) < backdrop(1010) < drawer(1020) < hamburger 'X'(1100) */
    outline: none;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.nav-hamburger:hover {
    transform: scale(1.08);
}

.nav-hamburger.open:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(255, 196, 46, 0.6));
}

.nav-hamburger:focus-visible {
    outline: 2px solid #FFC42E;
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #FFC42E;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 196, 46, 0.5), 0 0 2px #FFC42E;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.22s ease;
    transform-origin: center;
}

/* Morphing fold & bend transition into an 'X' */
.nav-hamburger.open .top-bar {
    transform: translateY(9.5px) rotate(45deg);
}

.nav-hamburger.open .mid-bar {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open .bot-bar {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════════════════
   SLIDE-OUT MENU DRAWER (Semi-Transparent GUI with Gold Trim)
   ══════════════════════════════════════════════════════════════════════════ */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1010;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    will-change: opacity;
}

.drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.side-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    z-index: 1020;
    background: #09090b;
    border-right: 1px solid rgba(255, 196, 46, 0.32);
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.92);
    transform: translate3d(-100%, 0, 0);
    will-change: transform;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 196, 46, 0.25) transparent;
}

.side-drawer::-webkit-scrollbar {
    width: 5px;
}

.side-drawer::-webkit-scrollbar-track {
    background: transparent;
}

.side-drawer::-webkit-scrollbar-thumb {
    background: rgba(255, 196, 46, 0.25);
    border-radius: 4px;
}

.side-drawer.open {
    transform: translate3d(0, 0, 0);
}

.drawer-header {
    height: 72px;
    box-sizing: border-box;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 196, 46, 0.18);
    background: rgba(255, 196, 46, 0.02);
    flex-shrink: 0;
}

.drawer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin: 0 auto;
    text-align: center;
}

.drawer-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.drawer-brand-name {
    font-family: var(--serif);
    font-size: 1.34rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.2px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.drawer-brand-name .gold {
    color: #FFC42E;
    font-style: italic;
    display: inline-block;
    margin: 0 5px;
}

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

.drawer-section-label {
    font-size: 0.70rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.40);
    letter-spacing: 2.2px;
    text-transform: uppercase;
    padding: 0 6px 2px;
}

.drawer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 196, 46, 0.22);
    color: var(--white);
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.drawer-item:hover {
    background: rgba(255, 196, 46, 0.10);
    border-color: #FFC42E;
    transform: translateX(3px);
    box-shadow: 0 4px 16px rgba(255, 196, 46, 0.16);
}

.drawer-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-item-gem {
    color: #FFC42E;
    font-size: 1.05rem;
    filter: drop-shadow(0 0 6px rgba(255, 196, 46, 0.5));
}

.drawer-item-label {
    font-family: var(--sans);
    font-size: 1.06rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.drawer-item-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #FFC42E;
    background: rgba(255, 196, 46, 0.10);
    border: 1px solid rgba(255, 196, 46, 0.28);
    padding: 3px 8px;
    border-radius: 999px;
    text-transform: uppercase;
}

.drawer-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-chevron {
    font-size: 0.78rem;
    color: #FFC42E;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.drawer-item.expanded .drawer-chevron {
    transform: rotate(180deg);
}

.drawer-submenu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 6px 4px 4px 14px;
    margin-top: -6px;
    border-left: 2px solid rgba(255, 196, 46, 0.25);
    margin-left: 14px;
    animation: drawerFadeSlide 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawerFadeSlide {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drawer-submenu.open {
    display: flex;
}

.drawer-editorial-text {
    font-size: 0.81rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    margin: 2px 2px 8px 4px;
    letter-spacing: 0.1px;
    font-style: normal;
}

.drawer-subitems-wrap {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.drawer-subitem {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 13px;
    border-radius: 9px;
    background: rgba(255, 196, 46, 0.025);
    border: 1px solid rgba(255, 196, 46, 0.12);
    color: var(--white);
    text-decoration: none;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.drawer-subitem:hover {
    background: rgba(255, 196, 46, 0.10);
    border-color: rgba(255, 196, 46, 0.40);
    transform: translateX(3px);
}

.subitem-bullet {
    color: #FFC42E;
    font-size: 0.52rem;
    flex-shrink: 0;
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.drawer-subitem:hover .subitem-bullet {
    opacity: 1;
    transform: scale(1.25);
    color: #FFE082;
}

.subitem-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.subitem-name {
    font-family: var(--sans);
    font-size: 0.91rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
}

.subitem-brand {
    font-size: 0.72rem;
    color: #FFC42E;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.nav-brand {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

#navbar .nav-brand {
    font-size: 1.75rem;
    letter-spacing: 2px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, filter 0.25s ease;
}

#navbar .nav-brand:hover {
    transform: scale(1.025);
    opacity: 0.96;
    filter: drop-shadow(0 0 16px rgba(255, 196, 46, 0.3));
    text-decoration: none;
}

#navbar .nav-brand-wing {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

#navbar .nav-brand-left {
    justify-content: flex-end;
}

#navbar .nav-brand-right {
    justify-content: flex-start;
}

#navbar .nav-word-scents {
    color: var(--white);
    font-style: normal;
    font-weight: 700;
}

#navbar .nav-word-cents,
#navbar .nav-brand .nav-cents {
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
    letter-spacing: 2.2px;
}

#navbar .nav-brand .nav-amp {
    color: var(--gold);
    font-style: italic;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-weight: 400;
    font-size: 1.08em;
    transform: translateY(-1px);
    margin: 0;
}

#navbar .nav-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

#navbar .nav-logo-left {
    filter: drop-shadow(0 2px 8px rgba(255, 196, 46, 0.35));
}

#navbar .nav-brand:hover .nav-logo-left {
    transform: rotate(-3deg) scale(1.06);
}

/* Invert / Mirror right logo for symmetrical flanking */
#navbar .nav-logo-right {
    transform: scaleX(-1);
    filter: drop-shadow(0 2px 8px rgba(255, 196, 46, 0.35));
}

#navbar .nav-brand:hover .nav-logo-right {
    transform: scaleX(-1) rotate(-3deg) scale(1.06);
}


/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
#hero-section {
    background: transparent;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 100px 32px 80px;
    text-align: center;
}

.hero-headline {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--t3);
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: 0.2px;
}

/* Hero search bar */
.hero-search {
    max-width: 560px;
    margin: 0 auto;
}

.hero-search-field {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-pill);
    padding: 0 6px 0 22px;
    gap: 10px;
    transition: border-color 200ms;
}

.hero-search-field:focus-within {
    border-color: var(--gold-dark);
}

.hero-search-icon {
    width: 18px;
    height: 18px;
    color: var(--t4);
    flex-shrink: 0;
}

.hero-search-field:focus-within .hero-search-icon {
    color: var(--gold);
}

#hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--sans);
    font-size: 1rem;
    padding: 16px 0;
}

#hero-search-input::placeholder {
    color: var(--t4);
    font-weight: 300;
}

#hero-search-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    transition: background 150ms;
    flex-shrink: 0;
}

#hero-search-btn:hover {
    background: var(--gold-light);
}

/* ══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════════════ */
#how-section {
    padding: 80px 32px;
}

.how-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.how-heading {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 48px;
    text-align: center;
}

.how-heading em {
    color: var(--gold);
    font-style: italic;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-num {
    display: block;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.step h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.step p {
    font-size: 0.88rem;
    color: var(--t3);
    font-weight: 300;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   POPULAR BRANDS
   ══════════════════════════════════════════════════════════════════════════ */
#brands-section {
    padding: 60px 32px 80px;
    border-top: 1px solid var(--border);
}

.brands-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.brands-heading {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--t2);
    margin-bottom: 36px;
    text-align: center;
    font-style: italic;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.brand-card {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 200ms;
}

.brand-card:hover {
    border-color: var(--gold-dark);
    background: var(--gold-bg);
}

.brand-card span {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--t2);
    transition: color 200ms;
    display: block;
    white-space: nowrap;
}

.brand-card:hover span {
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════════════
   VERIFIED RETAILERS
   ══════════════════════════════════════════════════════════════════════════ */
#retailers-section {
    padding: 60px 32px 80px;
    border-top: 1px solid var(--border);
}

.retailers-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.retailers-heading {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    font-style: italic;
}

.retailers-sub {
    font-size: 0.92rem;
    color: var(--t3);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.retailer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.retailer-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--t4);
    letter-spacing: 0.3px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.retailer-name:hover {
    color: var(--gold);
    border-color: var(--gold-dark);
    background: var(--gold-bg);
    text-decoration: none;
}

.retailer-name.pulse {
    color: #FFC42E;
    border-color: rgba(255, 196, 46, 0.4);
    background: rgba(255, 196, 46, 0.06);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESULTS & SEARCH HEADER BAR (Sticky at top when leaving home)
   ══════════════════════════════════════════════════════════════════════════ */
.results-bar {
    border-bottom: 1px solid var(--border);
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.results-bar-inner {
    width: 100%;
    padding: 12px 28px 12px 72px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-sizing: border-box;
}

/* Far Left: Logo pinned all the way to the left edge of the page */
.results-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.results-brand,
#results-bar .results-brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: var(--serif) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transform: none !important;
    filter: none !important;
}

.results-brand:hover,
#results-bar .results-brand:hover {
    text-decoration: none !important;
    transform: none !important;
    filter: none !important;
}

.results-brand .nav-logo,
#results-bar .results-brand .nav-logo {
    width: 34px !important;
    height: 34px !important;
    object-fit: contain !important;
    filter: none !important;
    transform: none !important;
}

.results-brand span,
#results-bar .results-brand span {
    color: var(--gold) !important;
    font-style: italic !important;
}

.results-brand .nav-amp,
#results-bar .results-brand .nav-amp {
    display: inline-block !important;
    margin: 0 2px !important;
    padding: 0 !important;
    font-weight: 400 !important;
    font-size: 1em !important;
    color: var(--gold) !important;
    font-style: italic !important;
    transform: none !important;
}

.results-brand .nav-cents,
#results-bar .results-brand .nav-cents {
    color: var(--gold) !important;
    font-style: italic !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

/* Center: Back button + Search bar centered together on the page */
.results-bar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 680px;
}

.results-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-pill);
    color: var(--t2);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 150ms;
    flex-shrink: 0;
    white-space: nowrap;
}

.results-back-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 150ms;
}

.results-back-btn:hover {
    color: var(--white);
    border-color: var(--gold);
}

.results-back-btn:hover svg {
    transform: translateX(-3px);
}

.results-search-wrap {
    flex: 1;
    min-width: 260px;
    max-width: 520px;
}

/* Right: Equal-width balance spacer to ensure true geometric center */
.results-bar-right {
    display: flex;
    justify-content: flex-end;
}

.results-search-field {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-pill);
    padding: 0 4px 0 16px;
    gap: 10px;
    transition: border-color 200ms;
}

.results-search-field:focus-within {
    border-color: var(--gold-dark);
}

.results-search-icon {
    width: 16px;
    height: 16px;
    color: var(--t4);
    flex-shrink: 0;
}

.results-search-field:focus-within .results-search-icon {
    color: var(--gold);
}

#results-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.9rem;
    padding: 10px 0;
}

#results-search-input::placeholder {
    color: var(--t4);
}

#results-search-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: var(--radius-pill);
    transition: background 150ms;
    cursor: pointer;
    flex-shrink: 0;
}

#results-search-btn:hover {
    background: var(--gold-light);
}

/* ══════════════════════════════════════════════════════════════════════════
   LOADING STATE
   ══════════════════════════════════════════════════════════════════════════ */
#loading-section {
    padding: 100px 32px 140px;
    background: transparent;
}

.loading-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.loading-eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 12px;
}

.loading-title {
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.25;
}

.loading-query-text {
    font-style: italic;
    color: var(--gold);
}

.loading-sub {
    font-size: 0.92rem;
    color: var(--t3);
    font-weight: 300;
    margin-bottom: 36px;
}

.loader-track {
    width: 220px;
    height: 3px;
    background: var(--border-2);
    border-radius: 2px;
    margin: 0 auto 36px;
    overflow: hidden;
    position: relative;
}

.loader-fill {
    width: 35%;
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: slide 1.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loading-stores-preview {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}

.loading-store-pill {
    font-size: 0.76rem;
    color: var(--t4);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    transition: all 300ms;
}

.loading-store-pill.active {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-bg);
}

/* ══════════════════════════════════════════════════════════════════════════
   ERROR STATE
   ══════════════════════════════════════════════════════════════════════════ */
#error-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 32px;
}

.error-box {
    background: #140808;
    border: 1px solid #3a1515;
    border-radius: var(--radius);
    padding: 32px 36px;
    text-align: center;
}

.error-box p {
    color: var(--red-soft);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.error-back-btn {
    background: transparent;
    border: 1px solid var(--border-2);
    color: var(--t2);
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 150ms;
}

.error-back-btn:hover {
    color: var(--white);
    border-color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════════════
   OVERHAULED LUXURY PRODUCT SHOWCASE (Product is King)
   ══════════════════════════════════════════════════════════════════════════ */
#results-section {
    padding-bottom: 80px;
}

#product-hero {
    background: transparent;
    padding: 36px 32px 44px;
    position: relative;
}

.product-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 460px) 1fr;
    gap: 52px;
    align-items: start;
}

/* ──────────────────────────────────────────────────────────────────────────
   LEFT COLUMN: THE PRODUCT BOTTLE STAGE (Majestic Hero Spotlight)
   ────────────────────────────────────────────────────────────────────────── */
.product-stage {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.bottle-stage-pedestal {
    position: relative;
    background: radial-gradient(circle at 50% 45%, rgba(255, 196, 46, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, #0d0d0d 80%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 24px 24px 28px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* Luminous ambient gold glow behind bottle */
.bottle-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 196, 46, 0.12) 0%, rgba(255, 196, 46, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(28px);
    z-index: 1;
}

/* Top bar floating badges on the stage */
.bottle-stage-top-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.product-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.badge-concentration {
    background: #141416;
    border: 1px solid rgba(255, 196, 46, 0.35);
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.badge-stores {
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--t2);
    font-weight: 500;
    font-size: 0.74rem;
}

.badge-confidence {
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    color: var(--gold);
}

/* Bottle Frame */
.bottle-img-frame {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    z-index: 2;
}

.product-bottle-img {
    display: block;
    max-width: 100%;
    max-height: 380px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    border: 1.5px solid #000000;
    box-shadow: 0 0 0 1px #000000, 0 16px 40px rgba(0, 0, 0, 0.85);
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease, opacity 200ms ease;
    cursor: zoom-in;
}

.product-bottle-img:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 0 1px #000000, 0 24px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 196, 46, 0.15);
}

/* Bottle Size Floating Badge */
.bottle-size-badge {
    position: absolute;
    bottom: 16px;
    right: 18px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 196, 46, 0.4);
    color: var(--gold);
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 3;
}

/* Fallback card */
.bottle-fallback-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 40px 24px;
    z-index: 2;
}

.bottle-silhouette-icon svg {
    width: 84px;
    height: 126px;
    color: var(--gold);
    opacity: 0.75;
}

.bottle-fallback-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

.bottle-fallback-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--white);
}

/* Trust Strip below bottle */
.bottle-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 14px;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.72rem;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.trust-check {
    color: var(--gold);
    font-weight: 700;
}

.trust-dot {
    color: var(--border-2);
}

/* ──────────────────────────────────────────────────────────────────────────
   RIGHT COLUMN: LUXURY BUYING & EDITORIAL CONSOLE
   ────────────────────────────────────────────────────────────────────────── */
.product-console {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px;
}

.console-header {
    margin-bottom: 14px;
}

.product-brand-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.product-title {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.product-notes-block {
    margin-bottom: 16px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.product-notes-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.product-notes-text {
    font-size: 0.92rem;
    color: var(--t2);
    line-height: 1.45;
}

.product-description {
    font-size: 0.92rem;
    color: var(--t3);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 580px;
}

/* Integrated Luxury Buying Card */
.hero-deal-card {
    width: 100%;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.85) 0%, rgba(14, 14, 14, 0.95) 100%);
    border: 1px solid rgba(255, 196, 46, 0.25);
    border-radius: 20px;
    padding: 26px 28px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

.deal-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.deal-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

.deal-status-live {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--green-soft);
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    display: inline-block;
    animation: livePulse 2s infinite ease-in-out;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.deal-price-stage {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-main-cluster {
    display: flex;
    align-items: baseline;
}

.product-best-amount {
    font-family: var(--mono);
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-context-cluster {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.product-msrp {
    font-family: var(--mono);
    font-size: 0.95rem;
    color: var(--t4);
    text-decoration: line-through;
}

.savings-tag {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--green-soft);
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* Integrated Size Selector in Card */
.size-selector-wrap {
    margin-bottom: 22px;
}

.size-selector-label-row {
    margin-bottom: 8px;
}

.size-selector-wrap .control-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.size-pills-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.size-pill {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-2);
    background: rgba(255, 255, 255, 0.03);
    color: var(--t2);
    cursor: pointer;
    transition: all 160ms cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.size-pill:hover {
    border-color: rgba(255, 196, 46, 0.5);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.size-pill.active {
    border-color: var(--gold);
    color: var(--black);
    background: var(--gold);
    box-shadow: 0 4px 14px rgba(255, 196, 46, 0.3);
}

.size-count-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-family: var(--sans);
    padding: 1px 7px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--t3);
    font-weight: 500;
}

.size-pill:hover .size-count-badge {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.size-pill.active .size-count-badge {
    background: rgba(0, 0, 0, 0.22);
    color: var(--black);
    font-weight: 700;
}

/* High-Impact Primary CTA Button */
.product-hero-deal-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFC42E 0%, #F5B014 100%);
    color: var(--black);
    font-size: 1.02rem;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 196, 46, 0.35);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    margin-bottom: 14px;
}

.product-hero-deal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 196, 46, 0.5);
    background: linear-gradient(135deg, #FFD35F 0%, #FFC42E 100%);
    text-decoration: none;
    color: var(--black);
}

.product-hero-deal-btn:active {
    transform: translateY(0);
}

.product-hero-deal-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 160ms ease;
}

.product-hero-deal-btn:hover svg {
    transform: translate(2px, -2px);
}

.deal-guarantee-note {
    font-size: 0.74rem;
    color: var(--t4);
    text-align: center;
    line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────────────────────
   RETAILER COMPARISON BLOCK CHART (Clean, Sectioned, Easy to Read)
   ────────────────────────────────────────────────────────────────────────── */
#compare-section {
    max-width: 1060px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.compare-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.compare-section-title {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.compare-section-subtitle {
    font-size: 0.85rem;
    color: var(--t3);
    font-weight: 300;
}

.toggle-controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.toggle input { display: none; }

.toggle-slider {
    width: 34px;
    height: 18px;
    background: var(--border-2);
    border-radius: 10px;
    position: relative;
    transition: background 200ms;
    flex-shrink: 0;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: var(--t4);
    border-radius: 50%;
    transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle input:checked + .toggle-slider {
    background: var(--gold);
}

.toggle input:checked + .toggle-slider::after {
    left: 18px;
    background: var(--black);
}

.toggle-text {
    font-size: 0.8rem;
    color: var(--t2);
    font-weight: 500;
    user-select: none;
}

/* ── Block Chart Table Structure ── */
.price-table-wrap {
    background: #0e0e0e;
    border: 1px solid #242424;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

#price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

#price-table thead th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 13px 20px;
    background: #181818;
    border-bottom: 1px solid #282828;
    border-right: 1px solid #202020;
}

#price-table thead th:last-child {
    border-right: none;
}

#price-table tbody tr {
    transition: background 120ms ease;
    background: #111111;
}

#price-table tbody tr:nth-child(even) {
    background: #0d0d0d;
}

#price-table tbody tr:hover {
    background: #1a1a1a !important;
}

#price-table tbody tr.row-best {
    background: rgba(255, 196, 46, 0.06) !important;
}

#price-table tbody tr.row-best td:first-child {
    box-shadow: inset 4px 0 0 var(--gold);
}

#price-table tbody td {
    padding: 14px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #1c1c1c;
    border-right: 1px solid #191919;
}

#price-table tbody td:last-child {
    border-right: none;
    text-align: right;
}

#price-table tbody tr:last-child td {
    border-bottom: none;
}

/* Retailer Cell */
.store-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.store-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.store-verified-label {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 500;
    color: #4ADE80;
    letter-spacing: 0.2px;
}

.best-deal-tag {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 700;
    background: var(--gold);
    color: #000000;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Size / Bottle Cell */
.td-size {
    font-size: 0.86rem;
    color: #CCCCCC;
    font-weight: 500;
}

/* Price Cell */
.td-price {
    font-family: var(--mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.row-best .td-price {
    color: var(--gold);
}

/* Availability Cell */
.td-stock.in {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4ADE80;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.22);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.td-stock.in::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
}

.td-stock.out {
    display: inline-flex;
    align-items: center;
    color: #F87171;
    font-size: 0.78rem;
    font-weight: 500;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.tester-note {
    display: inline-block;
    font-size: 0.68rem;
    color: var(--t4);
    font-style: italic;
    margin-left: 6px;
}

/* Total Price Cell */
.td-total {
    font-family: var(--mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.row-best .td-total {
    color: var(--gold);
}

/* Pill Buttons for Get Deal */
.pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 150ms ease;
    white-space: nowrap;
}

.pill-btn svg {
    width: 12px;
    height: 12px;
}

.deal-btn.pill-btn {
    background: linear-gradient(135deg, #FFC42E 0%, #E5A817 100%);
    color: #000000;
    border: 1px solid rgba(255, 196, 46, 0.4);
    box-shadow: 0 2px 10px rgba(255, 196, 46, 0.25);
}

.deal-btn.pill-btn:hover {
    background: linear-gradient(135deg, #FFD35F 0%, #FFC42E 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 196, 46, 0.4);
    color: #000000;
    text-decoration: none;
}

.visit-link.pill-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #EEEEEE;
}

.visit-link.pill-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 196, 46, 0.08);
    transform: translateY(-1px);
    text-decoration: none;
}

.no-results-msg {
    padding: 44px 24px;
    text-align: center;
    color: var(--t3);
    font-size: 0.9rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   NOTES
   ══════════════════════════════════════════════════════════════════════════ */
#notes-section,
#dupes-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px 40px;
}

#notes-content {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.note-column {
    flex: 1;
    min-width: 180px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.note-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.note-label.top { color: #FACC15; }
.note-label.heart { color: #F472B6; }
.note-label.base { color: #FB923C; }
.note-label.linear { color: #A78BFA; }

.note-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.note-item {
    font-size: 0.85rem;
    color: var(--t2);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.note-item:last-child { border-bottom: none; }

.note-match-pill {
    font-size: 0.62rem;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.22);
    padding: 2px 7px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════════════════
   DUPES / BUDGET ALTERNATIVES
   ══════════════════════════════════════════════════════════════════════════ */
.dupes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dupe-card {
    /* Inherits full luxury styling from .cologne-card */
}

.dupe-card .cologne-card-img-wrap {
    height: 195px;
    padding: 34px 14px 12px;
}

.dupe-card .cologne-card-img {
    max-height: 135px;
}

.dupe-match-chip {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--t3);
    background: rgba(255, 196, 46, 0.05);
    border: 1px solid rgba(255, 196, 46, 0.18);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 5px;
}

.dupe-card:hover .dupe-match-chip {
    color: var(--t2);
    border-color: rgba(255, 196, 46, 0.35);
}

.dupe-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    gap: 16px;
    transition: border-color 120ms;
}

.dupe-row:hover { border-color: var(--border-2); }

.dupe-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dupe-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
}

.dupe-brand {
    font-size: 0.78rem;
    color: var(--t3);
}

.dupe-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.dupe-price {
    font-family: var(--mono);
    font-size: 0.88rem;
    color: var(--t2);
}

.dupe-savings {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--green-soft);
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.dupe-search {
    font-size: 0.75rem;
    color: var(--gold-dark);
    border: 1px solid var(--border-2);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    background: transparent;
    transition: all 120ms;
}

.dupe-search:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════════════
   SOURCE PULSE BAR
   ══════════════════════════════════════════════════════════════════════════ */
#source-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 12px 0;
}

.source-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.source-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--t4);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.source-names {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.source-name {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--t5);
    padding: 3px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    white-space: nowrap;
}

.source-name.pulse {
    color: #FFC42E;
    border-color: rgba(255, 196, 46, 0.4);
    background: rgba(255, 196, 46, 0.06);
}

/* ══════════════════════════════════════════════════════════════════════════
   COLOGNE FINDER / CATALOG SEARCH GRID
   ══════════════════════════════════════════════════════════════════════════ */
#catalog-section {
    width: 100%;
    min-height: calc(100vh - 100px);
    background: var(--bg);
}

.catalog-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 36px 24px 80px;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
}

.catalog-title {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.gold-highlight {
    color: var(--gold);
    font-style: italic;
}

.catalog-count-label {
    font-size: 0.88rem;
    color: var(--t3);
    margin-top: 6px;
}

.catalog-sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.catalog-sort-label {
    font-size: 0.82rem;
    color: var(--t3);
    font-weight: 500;
}

.catalog-sort-select {
    background: #151515;
    border: 1px solid var(--border-2);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.catalog-sort-select:hover,
.catalog-sort-select:focus {
    border-color: var(--gold);
    background: #1a1a1a;
}

/* Catalog Cards Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Individual Cologne Card */
.cologne-card {
    background: #111111;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.cologne-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 196, 46, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 196, 46, 0.15);
}

.cologne-card:active {
    transform: translateY(-2px);
}

/* Image Wrap */
.cologne-card-img-wrap {
    height: 220px;
    background: radial-gradient(circle at center, #181818 0%, #0c0c0c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 16px 14px;
    border-bottom: 1px solid #1a1a1a;
}

.cologne-card-img {
    max-width: 80%;
    max-height: 150px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.cologne-card:hover .cologne-card-img {
    transform: scale(1.05);
}

/* Badges on Card Image */
.cologne-badge-conc {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    background: #0d0d10;
    border: 1px solid rgba(255, 196, 46, 0.45);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.cologne-badge-stores {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: #081a0f;
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.cologne-badge-savings {
    position: absolute;
    bottom: 8px;
    right: 10px;
    z-index: 5;
    background: #1c1505;
    border: 1px solid rgba(255, 196, 46, 0.5);
    color: #FFD35F;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Card Body */
.cologne-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cologne-card-brand {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold);
    margin-bottom: 4px;
}

.cologne-card-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.32;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cologne-card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
    min-height: 22px;
}

.cologne-size-chip {
    font-size: 0.72rem;
    color: var(--t3);
    background: #181818;
    border: 1px solid #242424;
    border-radius: 4px;
    padding: 2px 6px;
    white-space: nowrap;
}

/* Card Footer */
.cologne-card-footer {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #1c1c1c;
}

.cologne-price-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.cologne-from {
    font-size: 0.74rem;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cologne-price {
    font-family: var(--sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
}

.cologne-msrp {
    font-size: 0.8rem;
    color: var(--t4);
    text-decoration: line-through;
    margin-left: 4px;
}

.cologne-view-btn {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cologne-card:hover .cologne-view-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 700;
}

/* Load More & Infinite Scroll */
.catalog-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 0;
    color: var(--t3);
    font-size: 0.9rem;
}

.catalog-spinner {
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(255, 196, 46, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: catalogSpin 0.7s linear infinite;
}

@keyframes catalogSpin {
    to { transform: rotate(360deg); }
}

.catalog-end {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 0;
    color: var(--t4);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-end-line {
    flex: 1;
    max-width: 140px;
    height: 1px;
    background: var(--border);
}

/* Empty State in Catalog */
.catalog-empty {
    text-align: center;
    padding: 64px 20px;
    color: var(--t3);
}

.catalog-empty h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .catalog-inner { padding: 24px 16px 60px; }
    .catalog-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
    .cologne-card-img-wrap { height: 180px; }
    .nav-inner { padding: 12px 16px; justify-content: center; min-height: 64px; }
    #navbar .nav-brand { font-size: 1.25rem; letter-spacing: 1px; }
    #navbar .nav-brand-wing { gap: 10px; }
    #navbar .nav-logo { width: 32px; height: 32px; }
    #navbar .nav-brand .nav-amp { padding: 0 8px; }
    .hero-inner { padding: 60px 16px 48px; }
    .hero-headline { font-size: 2.2rem; }
    #how-section { padding: 48px 16px; }
    .how-steps { grid-template-columns: 1fr; gap: 32px; }
    .results-bar-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px;
        gap: 10px;
    }
    .results-bar-left { justify-content: flex-start; }
    .results-bar-center { max-width: 100%; gap: 10px; }
    .results-search-wrap { max-width: 100%; min-width: 0; }
    .results-bar-right { display: none; }
    .product-name { font-size: 2rem; }
    .product-deal-card { width: 100%; min-width: unset; }
    #compare-section { padding: 32px 16px; }
    .compare-header { flex-direction: column; }
    #notes-section, #dupes-section { padding: 0 16px 36px; }
    #notes-content { flex-direction: column; }
    #price-table thead th, #price-table tbody td { padding: 12px 14px; }
    .dupes-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
    .dupe-row { flex-direction: column; align-items: flex-start; }
    .dupe-right { margin-top: 8px; }
}

@media (max-width: 440px) {
    #navbar .nav-brand { font-size: 1.1rem; letter-spacing: 0.6px; }
    #navbar .nav-brand-wing { gap: 6px; }
    #navbar .nav-logo { width: 26px; height: 26px; }
    #navbar .nav-brand .nav-amp { padding: 0 6px; }
}