/* =========================================================================
   SUGANDH INK - Premium Niche Fragrance House
   Design language: Byredo / Diptyque / Le Labo editorial aesthetic
   Palette: warm cream · antique gold · deep charcoal
   ========================================================================= */

@import url('base.css');

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
    /* Map legacy variables to base design system tokens */
    --cream-dark:   var(--cream-2);
    --cream-deep:   var(--cream-3);
    --ink-mid:      var(--ink-2);
    --ink-dim:      var(--ink-3);

    --ease-out:     var(--ease);
    --ease-inout:   var(--ease-in);

    --max:          var(--max-w);
    --gutter:       var(--px);
    --col:          calc((var(--max) - var(--gutter) * 2) / 12);
}


/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display:block; max-width:100%; }
button { cursor:pointer; border:none; background:none; font-family:var(--sans); }
ul { list-style:none; }

/* ── Curtain Transition Overlay ─────────────────────────────────────────────── */
.page-curtain {
    position: fixed; inset: 0;
    background: var(--ink);
    z-index: 99997;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.page-curtain.slide-in {
    transform: translateY(0);
}
.page-curtain.slide-out {
    transform: translateY(-100%);
}

/* ── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }
html { scrollbar-width: thin; scrollbar-color: var(--gold) var(--cream-dark); }

/* ── Reveal Animation Base ──────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].in,
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Typography helpers ─────────────────────────────────────────────────────── */
.italic { font-style: italic; }
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ── Custom cursor ──────────────────────────────────────────────────────────── */
.cursor {
    position: fixed; top:0; left:0;
    pointer-events: none; z-index: 99999;
    display: none;
}
.cursor-ring {
    position: absolute;
    width: 36px; height: 36px;
    border: 1px solid rgba(155,122,66,0.5);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width .35s var(--ease-out), height .35s var(--ease-out), opacity .35s;
}
.cursor-dot {
    position: absolute;
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%,-50%);
}
body.cursor-hover .cursor-ring { width:60px; height:60px; border-color:var(--gold); }

/* ── Preloader ──────────────────────────────────────────────────────────────── */
.loader {
    position: fixed; inset:0;
    background: var(--ink);
    z-index: 99998;
    display: flex; align-items:center; justify-content:center;
    overflow: hidden;
}
.loader-inner {
    display: flex; flex-direction:column; align-items:center; gap:32px;
    color: var(--cream);
}
.loader-wordmark {
    display: flex; align-items:center; gap:20px;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    overflow: hidden;
}
.loader-word { display:block; transform:translateY(100%); opacity:0; }
.loader-divider-line {
    display: block; width:1px; height:0.7em;
    background: var(--gold); flex-shrink:0;
}
.loader-bar-wrap {
    width: clamp(180px,40vw,360px);
    height: 1px;
    background: rgba(255,255,255,0.12);
}
.loader-bar { height:100%; width:0%; background: var(--gold); transition: width .05s linear; }
.loader-pct {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 400;
}

/* ── Announcement banner ────────────────────────────────────────────────────── */
.announcement-banner {
    background: var(--ink);
    color: rgba(248,245,240,0.8);
    text-align: center;
    padding: 11px 50px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.announcement-banner a {
    color: var(--gold-light);
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}
.announcement-banner a:hover { border-color: var(--gold-light); }
.banner-close {
    position: absolute; right:18px; top:50%; transform:translateY(-50%);
    color: rgba(248,245,240,0.5); font-size: 1rem; padding:4px 8px;
    transition: color .2s;
}
.banner-close:hover { color: var(--cream); }

/* ── Header / Nav ───────────────────────────────────────────────────────────── */
.site-header {
    position: fixed; top:0; left:0; width:100%; z-index:800;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), top 0.4s var(--ease);
    max-width: 100vw;
    overflow-x: hidden;
}
.site-header.lifted {
    background: var(--cream);
    border-bottom: 1px solid var(--cream-3);
    box-shadow: 0 4px 30px rgba(72,64,54,0.03);
}
.site-header.site-header-solid {
    position: sticky;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-3);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--px);
    height: var(--nav-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s var(--ease);
}
.logo-group:hover {
    opacity: 0.85;
}
.header-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}
.logo-text {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--ink);
    text-transform: uppercase;
    line-height: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon-btn {
    position: relative;
    padding: 8px;
    color: var(--ink);
    border-radius: 4px;
    transition: opacity 0.2s, transform 0.2s;
    display: flex; align-items:center; justify-content:center;
}
.nav-icon-btn:hover { opacity:.6; transform: translateY(-1px); }

.cart-count {
    position: absolute; top:2px; right:2px;
    min-width:16px; height:16px;
    background: var(--gold);
    color: #fff;
    font-size: 0.55rem; font-weight:700;
    border-radius: 999px;
    display: none; align-items:center; justify-content:center;
    line-height:1;
    padding:0 4px;
}
.cart-count.visible { display:flex; }

/* Hamburger Button (Desktop & Mobile) */
.hamburger-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 99999;
    padding: 6px;
}
.menu-btn-label {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.3s;
}
.hamburger-spans {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 24px;
}
.hamburger-spans span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}

/* Crossed states */
.hamburger-menu-btn.open .hamburger-spans span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}
.hamburger-menu-btn.open .hamburger-spans span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Fullscreen menu overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #ECECE4 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
}
.mobile-menu.open {
    /* controlled by GSAP, but fallback display block if needed */
}


.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-grow: 1;
    justify-content: center;
    padding: 20px;
}
.mm-link {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: var(--display);
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 500;
    color: var(--ink);
    text-transform: uppercase;
    line-height: 1;
    padding: 8px 0;
    text-decoration: none;
    transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.mm-num {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--olive-3);
    vertical-align: super;
}
.mm-text {
    display: inline-block;
    transition: transform 0.4s var(--ease), font-family 0.4s;
}
.mm-link:hover {
    color: var(--gold);
}
.mm-link:hover .mm-text {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    text-transform: capitalize;
    transform: translateX(16px);
}

.mm-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px var(--px);
    border-top: 1px solid var(--cream-3);
}
.mm-footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mm-footer-title {
    font-family: var(--sans);
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--ink-3);
    margin-bottom: 4px;
}
.mm-footer-link, .mm-footer-text {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--ink-2);
    text-decoration: none;
    transition: color 0.2s;
}
.mm-footer-link:hover {
    color: var(--gold);
}


/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items:center; justify-content:center;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 15px 36px;
    border-radius: 0;
    transition: all .35s var(--ease-out);
    cursor:pointer;
}
.btn-primary {
    background: var(--ink);
    color: var(--cream);
    border: 1px solid var(--ink);
}
.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--cream);
}

/* ── Section typography helpers ─────────────────────────────────────────────── */
.section-eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--ink);
}
.section-link {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-dim);
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}
.section-link:hover { color:var(--gold); border-color:var(--gold); }

/* ── Reveal animation ───────────────────────────────────────────────────────── */
[data-reveal] {
    opacity:0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].revealed,
[data-reveal].in {
    opacity:1;
    transform: translateY(0);
}

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    padding: 40px var(--px);
    gap: 60px;
    align-items: center;
    z-index: 10;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.hero-overline {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--olive-3);
    font-weight: 600;
}
.hero-headline {
    font-family: var(--display);
    font-size: clamp(3rem, 6.5vw, 6.2rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.hero-headline em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    text-transform: none;
}
.hero-body {
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-2);
    max-width: 480px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 0.75;
    background: var(--cream-2);
    border: 1px solid var(--cream-3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(72,64,54,0.06);
}
.hero-bottle {
    height: 80%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.12));
    transition: transform 1.2s var(--ease), opacity 1.2s var(--ease);
}
.hero-img-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--cream);
    padding: 12px 20px;
    border: 1px solid var(--cream-3);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.label-code {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--olive-3);
    text-transform: uppercase;
}
.label-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
}

.scroll-prompt {
    position: absolute;
    bottom: 30px;
    left: var(--px);
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-3);
    z-index: 10;
}
.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--cream-3);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: scrollLineAnim 2s infinite var(--ease);
}
@keyframes scrollLineAnim {
    0% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
    50.1% { transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes scanLine {
    0%   { left:-100%; }
    100% { left:100%; }
}

/* ── Marquee strip ──────────────────────────────────────────────────────────── */
.marque-strip {
    background: var(--ink);
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marque-track {
    display: flex; gap:36px; align-items:center;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marque-track span {
    font-size: 0.72rem; letter-spacing:0.22em; text-transform:uppercase;
    color: rgba(248,245,240,0.55);
    font-weight:400;
}
.marque-dot { color: var(--gold) !important; }
@keyframes marqueeScroll {
    0%   { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}
.marque-strip:hover .marque-track { animation-play-state:paused; }

/* ── Asymmetric Showcase Items ─────────────────────────────────────────────── */
.showcase-section {
    padding: 140px var(--px) 80px;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 160px; /* high-end spacing between showcases */
}
.showcase-header {
    max-width: var(--max-w);
    margin: 0 auto 20px;
    width: 100%;
}
.showcase-item {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
/* Alternating odd/even items */
.showcase-item:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}
.showcase-item:nth-child(even) .showcase-image-wrap {
    order: 2;
}
.showcase-item:nth-child(even) .showcase-details {
    order: 1;
}

.showcase-image-wrap {
    position: relative;
    background: var(--cream-2);
    border: 1px solid var(--cream-3);
    aspect-ratio: 0.85;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(72,64,54,0.02);
    transition: background 0.4s var(--ease);
}
.showcase-image-wrap img {
    width: 62%;
    height: 62%;
    object-fit: contain;
    transition: filter 0.6s var(--ease);
}
.showcase-item:hover .showcase-image-wrap {
    background: var(--cream);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(155,122,66,0.06);
}
.showcase-item:hover .showcase-image-wrap img {
    filter: brightness(1.04);
}
.showcase-img-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}
.showcase-img-label .label-code {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--olive-3);
    font-weight: 600;
}
.showcase-img-label .label-name {
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
}

.showcase-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}
.showcase-num {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--olive-3);
    font-weight: 600;
}
.showcase-name {
    font-family: var(--display);
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.05;
    margin: 0;
}
.showcase-name em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    text-transform: lowercase;
}
.showcase-desc {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--ink-2);
    line-height: 1.75;
    margin: 0;
    font-weight: 300;
}
.showcase-notes {
    font-family: var(--sans);
    font-size: 0.84rem;
    color: var(--ink-3);
    margin-top: -8px;
    font-weight: 300;
}
.showcase-notes strong {
    color: var(--ink-2);
    font-weight: 500;
}
.showcase-action {
    align-self: flex-start;
    margin-top: 12px;
}


/* Product card */
.pcard {
    flex: 0 0 calc(25% - 15px);
    min-width: 240px;
    max-width: 330px;
    display: flex;
    flex-direction: column;
    transition: transform .45s var(--ease);
}
.pcard:hover {
    transform: translateY(-4px);
}
.pcard-img {
    background: var(--cream-2);
    border: 1px solid var(--cream-3);
    aspect-ratio: 0.85;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(72,64,54,0.02);
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pcard:hover .pcard-img {
    background: var(--cream);
    border-color: var(--cream-3);
}
.pcard-img img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    transition: filter 0.6s var(--ease);
}
.pcard:hover .pcard-img img {
    filter: brightness(1.04);
}
.pcard-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #fff;
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    padding: 4px 10px;
    text-transform: uppercase;
}
.pcard-code {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--olive-3);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
}
.pcard-name {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.15;
}
.pcard-notes {
    font-family: var(--sans);
    font-size: 0.82rem;
    color: var(--ink-3);
    margin-bottom: 12px;
    line-height: 1.55;
    font-weight: 300;
}
.pcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}
.pcard-price {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}


/* Hairline */
.hairline-wrap { max-width:var(--max); margin:0 auto; padding:0 var(--gutter); }
.hairline { height:1px; background:var(--border); }

/* ── Scent Family grid ──────────────────────────────────────────────────────── */
.family-section {
    padding: 100px var(--px);
    background: var(--cream);
    border-top: 1px solid var(--cream-3);
}
.family-header {
    max-width: var(--max-w);
    margin: 0 auto 56px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}
.family-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--cream-3);
    background: var(--cream-3);
    gap: 1px; /* create thin gap lines */
}
.family-card {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: background 0.4s var(--ease);
    text-decoration: none;
}
.family-card:hover {
    background: var(--cream-2);
}
.family-card-img {
    aspect-ratio: 0.85;
    overflow: hidden;
    background: var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s var(--ease);
}
.family-card:hover .family-card-img {
    background: var(--cream);
}
.family-card-img img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: filter 0.8s var(--ease);
    filter: grayscale(40%);
}
.family-card:hover .family-card-img img {
    filter: grayscale(0) brightness(1.03);
}

.family-card-body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.family-num {
    display: block;
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    color: var(--olive-3);
    font-weight: 600;
}
.family-card-body h3 {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    line-height: 1.1;
}
.family-card-body p {
    font-family: var(--sans);
    font-size: 0.88rem;
    color: var(--ink-2);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}


/* ── Story / Manifesto ──────────────────────────────────────────────────────── */
.story-section {
    padding: 120px var(--px);
    background: var(--cream-2);
    border-top: 1px solid var(--cream-3);
    border-bottom: 1px solid var(--cream-3);
}
.story-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.story-image {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--cream-3);
    overflow: hidden;
    aspect-ratio: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(72,64,54,0.04);
}
.story-image img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    transition: filter 1.2s var(--ease);
}
.story-image:hover img {
    filter: brightness(1.04);
}
.story-image:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(155,122,66,0.08);
}
.story-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 20px;
    background: rgba(250,245,235,0.92);
    backdrop-filter: blur(8px);
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--ink-3);
    border-top: 1px solid var(--cream-3);
    text-align: center;
    font-weight: 500;
}
.story-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.story-text .section-title {
    margin-bottom: 4px;
}
.story-text p {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink-2);
    line-height: 1.8;
    font-weight: 300;
}
.story-text .btn {
    margin-top: 12px;
    align-self: flex-start;
}


/* ── Ingredients grid ───────────────────────────────────────────────────────── */
.ingredients-section { padding:100px var(--gutter); background:var(--ink); }
.ingredients-header {
    max-width:var(--max); margin:0 auto 60px; text-align:center;
}
.ingredients-header .section-eyebrow { color:var(--gold-light); }
.ingredients-header .section-title { color:var(--cream); }
.ingredients-sub { margin-top:16px; font-size:0.88rem; color:rgba(248,245,240,0.5); max-width:500px; margin-left:auto; margin-right:auto; }

.ingredients-grid {
    max-width:var(--max); margin:0 auto;
    display:grid; grid-template-columns:repeat(4,1fr); gap:2px;
}
.ing-card {
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.07);
    padding:32px 28px;
    display:flex; flex-direction:column; gap:12px;
    transition: background .4s, border-color .4s;
}
.ing-card:hover { background:rgba(255,255,255,0.07); border-color:rgba(155,122,66,0.3); }
.ing-card-img {
    height:160px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:8px;
}
.ing-card-img img { height:100%; width:auto; object-fit:contain; filter:brightness(0.92); transition:filter .5s; }
.ing-card:hover .ing-card-img img { filter:brightness(1); }
.ing-meta { font-size:0.6rem; letter-spacing:0.2em; color:var(--gold-light); text-transform:uppercase; font-weight:500; }
.ing-name { font-family:var(--serif); font-size:1.4rem; font-weight:300; color:var(--cream); }
.ing-desc { font-size:0.82rem; color:rgba(248,245,240,0.5); line-height:1.7; flex:1; }
.ing-price { font-size:0.85rem; font-weight:500; color:var(--gold-light); margin-top:auto; }

/* ── Pull quote ─────────────────────────────────────────────────────────────── */
.quote-section {
    padding:120px var(--gutter);
    background:var(--cream-dark);
    text-align:center;
}
.pull-quote {
    max-width:820px; margin:0 auto;
    font-family:var(--serif);
    font-size: clamp(1.5rem,3vw,2.4rem);
    font-weight:300;
    line-height:1.4;
    letter-spacing:0.01em;
    color:var(--ink);
    position:relative;
}
.pull-quote em { color:var(--gold); }
.quote-mark {
    font-family:var(--serif); font-size:5rem;
    color:var(--gold); opacity:.25; line-height:0.5;
    display:inline;
    vertical-align:middle;
}

/* ── Reviews ────────────────────────────────────────────────────────────────── */
.reviews-section { padding:100px 0 80px; }
.reviews-header {
    max-width:var(--max); margin:0 auto 48px; padding:0 var(--gutter);
    display:flex; justify-content:space-between; align-items:end; gap:24px;
}
.reviews-nav { display:flex; gap:10px; }
.reviews-nav button {
    width:40px; height:40px;
    border:1px solid var(--border-strong);
    border-radius:0;
    font-size:1rem; color:var(--ink);
    transition: all .25s;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--serif);
}
.reviews-nav button:hover { background:var(--ink); color:var(--cream); border-color:var(--ink); }

.reviews-track-wrap { overflow:hidden; }
.reviews-track {
    display:flex; gap:20px;
    padding:4px var(--gutter) 20px;
    overflow-x:auto; overflow-y:visible;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    cursor:grab;
}
.reviews-track::-webkit-scrollbar { display:none; }

.review-card {
    flex:0 0 340px;
    border:1px solid var(--border);
    padding:32px 28px;
    display:flex; flex-direction:column; gap:16px;
    background:var(--white);
    transition: border-color .35s, box-shadow .35s, transform .35s var(--ease-out);
}
.review-card:hover {
    border-color:var(--gold);
    box-shadow:0 16px 60px rgba(155,122,66,0.08);
    transform:translateY(-4px);
}
.rc-stars { color:var(--gold); font-size:0.85rem; letter-spacing:3px; }
.rc-text { font-size:0.88rem; color:var(--ink-mid); line-height:1.8; flex:1; }
.rc-footer { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); padding-top:14px; }
.rc-footer strong { font-size:0.82rem; font-weight:600; color:var(--ink); }
.rc-footer span { font-size:0.72rem; color:var(--ink-dim); letter-spacing:0.06em; }

/* ── Full Collection grid ───────────────────────────────────────────────────── */
.collection-section { padding:100px var(--gutter); }
.collection-header {
    max-width:var(--max); margin:0 auto 60px; text-align:center;
}
.collection-sub { margin-top:14px; font-size:0.88rem; color:var(--ink-dim); }
.collection-grid {
    max-width:var(--max); margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:var(--border);
}
.citem {
    background:var(--cream);
    padding:28px 24px;
    display:flex; flex-direction:column; gap:10px;
    transition:background .3s;
    cursor:pointer;
}
.citem:hover { background:var(--cream-dark); }
.citem-img {
    width:100%; aspect-ratio:1;
    background:var(--cream-dark);
    display:flex; align-items:center; justify-content:center;
    overflow:hidden; margin-bottom:6px;
}
.citem-img img {
    width:70%; height:70%; object-fit:contain;
    transition: filter .6s var(--ease-out);
}
.citem:hover .citem-img img { filter: brightness(1.06); }
.citem-code { font-size:0.58rem; letter-spacing:0.22em; color:var(--gold); font-weight:500; text-transform:uppercase; }
.citem-name { font-family:var(--serif); font-size:1rem; font-weight:400; color:var(--ink); }
.citem-notes { font-size:0.75rem; color:var(--ink-dim); line-height:1.5; }
.citem-footer { display:flex; align-items:center; justify-content:space-between; padding-top:8px; border-top:1px solid var(--border); margin-top:auto; }
.citem-actions { display:flex; align-items:center; gap:6px; }
.citem-price { font-size:0.82rem; font-weight:500; color:var(--ink); }
.citem-btn {
    font-size:0.6rem; letter-spacing:0.14em; text-transform:uppercase;
    padding:7px 14px;
    border:1px solid var(--border-strong);
    color:var(--ink); font-weight:500;
    transition: all .25s;
}
.citem:hover .citem-btn { background:var(--ink); color:var(--cream); border-color:var(--ink); }

/* ── Contact ────────────────────────────────────────────────────────────────── */
.contact-section { padding:100px var(--gutter); background:var(--cream-dark); }
.contact-inner { max-width:var(--max); margin:0 auto; }
.contact-text { margin-bottom:56px; }
.contact-text p { margin-top:16px; font-size:0.9rem; color:var(--ink-mid); max-width:480px; }
.contact-cards {
    display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
    background:var(--border);
}
.contact-card {
    background:var(--cream);
    padding:40px 32px;
    display:flex; flex-direction:column; gap:12px;
    transition:background .3s, transform .4s var(--ease-out);
}
.contact-card:hover { background:var(--white); transform:translateY(-4px); }
.cc-icon { color:var(--gold); }
.contact-card h4 {
    font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase;
    color:var(--ink-dim); font-weight:600;
}
.contact-card span {
    font-family:var(--serif); font-size:1.2rem; font-weight:400; color:var(--ink);
}

/* ── Newsletter ─────────────────────────────────────────────────────────────── */
.newsletter-section {
    padding:100px var(--gutter);
    background:var(--ink);
}
.newsletter-inner {
    max-width:var(--max); margin:0 auto;
    display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.nl-text h2 {
    font-family:var(--serif);
    font-size:clamp(2rem,3.5vw,3rem);
    font-weight:300; color:var(--cream); line-height:1.15;
    margin-bottom:14px;
}
.nl-text h2 em { color:var(--gold-light); }
.nl-text p { font-size:0.88rem; color:rgba(248,245,240,0.5); line-height:1.75; }

.nl-form { display:flex; flex-direction:column; gap:0; }
.nl-input-wrap {
    display:flex;
    border:1px solid rgba(255,255,255,0.15);
}
.nl-input-wrap input {
    flex:1; background:transparent; border:none; outline:none;
    padding:18px 22px;
    font-family:var(--sans); font-size:0.85rem;
    color:var(--cream);
    letter-spacing:0.05em;
}
.nl-input-wrap input::placeholder { color:rgba(248,245,240,0.3); }
.nl-input-wrap input:focus { background:rgba(255,255,255,0.04); }
.nl-input-wrap button {
    background:var(--gold); color:#fff;
    font-size:0.7rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase;
    padding:0 28px; border:none;
    transition:background .3s;
    font-family:var(--sans);
    cursor:pointer;
}
.nl-input-wrap button:hover { background:var(--gold-light); }
.nl-success {
    font-size:0.75rem; color:var(--gold-light); letter-spacing:0.1em;
    margin-top:12px; opacity:0; transition:opacity .5s;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer { background:var(--cream-dark); }
.footer-top {
    max-width:var(--max); margin:0 auto;
    padding:80px var(--gutter) 60px;
    display:grid;
    grid-template-columns:1.8fr 1fr 1fr 1fr 1fr;
    gap:40px;
    border-bottom:1px solid var(--border);
}
.footer-brand {}
.footer-logo {
    font-family:var(--serif);
    font-size:1.6rem; font-weight:300;
    letter-spacing:0.2em;
    color:var(--ink); margin-bottom:16px;
}
.footer-brand p {
    font-size:0.8rem; line-height:1.8; color:var(--ink-dim); max-width:260px; margin-bottom:24px;
}
.footer-socials { display:flex; gap:10px; }
.fsocial {
    width:32px; height:32px;
    border:1px solid var(--border-strong);
    display:flex; align-items:center; justify-content:center;
    color:var(--ink-mid);
    transition:background .25s, color .25s, border-color .25s;
}
.fsocial:hover { background:var(--ink); color:var(--cream); border-color:var(--ink); }

.footer-col h5 {
    font-size:0.65rem; letter-spacing:0.22em; text-transform:uppercase;
    font-weight:600; color:var(--ink); margin-bottom:20px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col a {
    font-size:0.82rem; color:var(--ink-dim);
    transition:color .2s, padding-left .2s;
    display:block;
}
.footer-col a:hover { color:var(--gold); padding-left:4px; }

.footer-bottom {
    max-width:var(--max); margin:0 auto;
    padding:20px var(--gutter);
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:12px;
}
.footer-bottom > span { font-size:0.72rem; color:var(--ink-dim); letter-spacing:0.06em; }
.payment-row { display:flex; gap:8px; }
.pay-badge {
    background:var(--white); border:1px solid var(--border);
    padding:4px 10px; font-size:0.6rem; font-weight:700;
    letter-spacing:0.05em; color:var(--ink-dim);
}

/* ── Library Drawer ─────────────────────────────────────────────────────────── */
.drawer-overlay {
    position:fixed; inset:0; z-index:1998;
    background:rgba(24,25,26,0.5);
    opacity:0; visibility:hidden;
    pointer-events:none;
    transition:opacity .5s, visibility .5s;
    backdrop-filter:blur(4px);
}
.drawer-overlay.open { opacity:1; visibility:visible; pointer-events:auto; }

.library-drawer {
    position:fixed; top:0; right:-100%; z-index:1999;
    width:100%; max-width:480px; height:100vh;
    background:var(--cream);
    border-left:1px solid var(--border);
    display:flex; flex-direction:column;
    transition:right .6s var(--ease-out);
    overflow:hidden;
}
.library-drawer.open { right:0; }

.ld-header {
    display:flex; align-items:flex-start; justify-content:space-between;
    padding:28px 32px;
    border-bottom:1px solid var(--border);
    flex-shrink:0;
}
.ld-eyebrow { font-size:0.62rem; letter-spacing:0.25em; color:var(--gold); text-transform:uppercase; font-weight:500; margin-bottom:4px; }
.ld-title { font-family:var(--serif); font-size:1.5rem; font-weight:300; color:var(--ink); }
.ld-close {
    color:var(--ink-mid); padding:8px;
    border:1px solid var(--border);
    transition:all .25s;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0; margin-top:4px;
}
.ld-close:hover { background:var(--ink); color:var(--cream); border-color:var(--ink); }

.ld-list {
    flex:1; overflow-y:auto;
    padding:0 32px 32px;
}
.ld-item {
    display:grid; grid-template-columns:70px 1fr;
    gap:18px; padding:22px 0;
    border-bottom:1px solid var(--border);
    align-items:start;
    cursor:pointer;
    transition:background .2s;
}
.ld-item:hover { background:var(--cream-dark); margin:0 -32px; padding:22px 32px; }
.ld-thumb {
    aspect-ratio:3/4; background:var(--cream-dark);
    display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.ld-thumb img { width:80%; height:80%; object-fit:contain; }
.ld-code { font-size:0.58rem; letter-spacing:0.2em; color:var(--gold); margin-bottom:4px; font-weight:500; text-transform:uppercase; }
.ld-name { font-family:var(--serif); font-size:1rem; color:var(--ink); margin-bottom:6px; }
.ld-notes { font-size:0.72rem; color:var(--ink-dim); line-height:1.5; margin-bottom:8px; }
.ld-footer-row { display:flex; align-items:center; justify-content:space-between; margin-top:8px; }
.ld-price { font-size:0.85rem; font-weight:500; color:var(--ink); }
.ld-acquire {
    font-size:0.6rem; letter-spacing:0.14em; text-transform:uppercase;
    padding:6px 14px; border:1px solid var(--border-strong);
    color:var(--ink); font-weight:600; transition:all .25s;
    font-family:var(--sans);
}
.ld-acquire:hover { background:var(--ink); color:var(--cream); border-color:var(--ink); }
.ld-acquire.added { background:var(--gold); color:#fff; border-color:var(--gold); }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1300px) {
    .hero-grid { grid-template-columns: 1fr 420px 1fr; gap: 32px; }
}

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns:1fr 380px 1fr; gap:24px; }
    .family-grid { grid-template-columns:repeat(2,1fr); }
    .ingredients-grid { grid-template-columns:repeat(2,1fr); }
    .catalog-grid { grid-template-columns:repeat(3,1fr); }
    .collection-grid { grid-template-columns:repeat(3,1fr); }
    .footer-top { grid-template-columns:1.5fr 1fr 1fr 1fr; gap:30px; }
    .footer-top .footer-col:last-child { grid-column: 2 / span 1; }
}

@media (max-width: 900px) {
    :root { --nav-h: 52px; }

    .header-logo-row {
        padding: 10px 0 4px;
    }
    .header-logo-img {
        height: 36px;
    }

    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: var(--nav-h);
        padding: 0 var(--gutter);
    }
    .nav-left { display:none; }
    .nav-right {
        display: flex;
        margin-left: auto;
    }
    .nav-right .nav-link { display:none; }
    .hamburger {
        display: flex;
        order: -1; /* aligns to the left of navbar! */
    }

    .hero-grid {
        grid-template-columns:1fr;
        grid-template-rows:auto;
        text-align:center;
        padding:40px var(--gutter);
        gap:40px;
    }
    .hero-text { max-width:100%; align-items:center; }
    .hero-body { max-width:100%; }
    .hero-visual { min-height:300px; }
    .hero-bottle { max-height:300px; }
    .hero-stats {
        flex-direction:row; border-left:none; border-top:1px solid var(--border-strong);
        padding:24px 0 0; justify-content:center;
        grid-row:3;
    }
    .stat-rule { width:1px; height:40px; }

    .story-inner { grid-template-columns:1fr; gap:40px; }
    .story-image { aspect-ratio:16/9; }
    .story-text .btn { align-self:center; }

    .contact-cards { grid-template-columns:1fr; }
    .newsletter-inner { grid-template-columns:1fr; gap:40px; }

    .footer-top {
        grid-template-columns:1fr 1fr;
        gap:32px;
    }
    .footer-brand { grid-column:1/-1; }
}

@media (max-width: 640px) {
    .section-head { grid-template-columns:1fr; gap:8px; }
    .section-head .section-link { justify-self:start; }
    .family-grid { grid-template-columns:1fr; gap:1px; }
    .family-card-img { aspect-ratio:16/9; }
    .ingredients-grid { grid-template-columns:1fr; }
    .catalog-grid { grid-template-columns:repeat(2,1fr); }
    .collection-grid { grid-template-columns:repeat(2,1fr); }
    .reviews-header { grid-template-columns:1fr; }
    .reviews-nav { justify-self:start; }
    .footer-top { grid-template-columns:1fr 1fr; }
    .pull-quote { font-size:1.3rem; }
    .hero-headline { font-size:2.4rem; }
    .hero-stats { gap:20px; }
}

@media (max-width: 400px) {
    .catalog-grid { grid-template-columns:1fr; }
    .collection-grid { grid-template-columns:1fr; }
    .footer-top { grid-template-columns:1fr; }
}

/* =========================================================================
   SUGANDH INK - Spotlight & Heritage Banner Sections Styling
   ========================================================================= */

/* ── Spotlight Section ── */
.spotlight-section {
    padding: 100px var(--gutter);
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.spotlight-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.spotlight-content {
    display: flex;
    flex-direction: column;
}
.spotlight-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin: 8px 0;
}
.spotlight-code {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.spotlight-desc {
    font-size: 0.95rem;
    color: var(--ink-mid);
    line-height: 1.85;
    margin-bottom: 32px;
}
.spotlight-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.meta-item strong {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.meta-item span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
}
.spotlight-visual {
    display: flex;
    justify-content: center;
    background: var(--cream);
    padding: 40px;
    border: 1px solid var(--border);
    aspect-ratio: 1.1;
    overflow: hidden;
}
.spotlight-image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spotlight-image-wrap img {
    max-height: 80%;
    object-fit: contain;
    transition: filter 0.6s var(--ease-out);
}
.spotlight-visual:hover img {
    filter: brightness(1.04);
}
.spotlight-visual:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(155,122,66,0.08);
}

/* ── Heritage Banner Section ── */
.heritage-banner-section {
    padding: 140px var(--gutter);
    background: linear-gradient(rgba(24,25,26,0.82), rgba(24,25,26,0.82)), url('../assets/images/products/15.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
    border-top: 1px solid rgba(247,244,239,0.1);
    border-bottom: 1px solid rgba(247,244,239,0.1);
}
.heritage-banner-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.heritage-banner-content h3 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.01em;
}
.heritage-banner-content p {
    font-size: 0.95rem;
    color: rgba(247,244,239,0.7);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .spotlight-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .heritage-banner-section {
        padding: 100px var(--gutter);
        background-attachment: scroll; /* Disable parallax on touch devices */
    }
    /* Hide and completely remove custom pointer cursor on mobile devices */
    .cursor, .cursor-ring, .cursor-dot {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* =========================================================================
   SUGANDH INK - Missing CSS & Redesign Upgrades
   ========================================================================= */

/* Spanning 2 columns for spotlight ingredient card on desktop */
@media (min-width: 1101px) {
    .ing-card-wide {
        grid-column: span 2;
    }
}

/* Footer WhatsApp notes alignment and styles */
.footer-wa-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--ink-dim);
}
.footer-wa-note svg {
    color: #25d366; /* WhatsApp Green */
    fill: currentColor;
}
.footer-wa-note a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-wa-note a:hover {
    color: var(--ink);
}

/* WhatsApp button on product cards */
.pcard-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366; /* WhatsApp Green */
    color: #white;
    color: #ffffff !important;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.pcard-wa:hover {
    background: #128c7e; /* Darker green */
    transform: scale(1.02);
}
.pcard-wa svg {
    fill: currentColor;
}

/* Catalog count */
.catalog-count {
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink-dim);
    text-transform: uppercase;
}

/* Reviews inputs, ratings and boxes */
.rev-input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border);
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s;
}
.rev-input:focus {
    border-color: var(--gold);
}
.rev-textarea {
    resize: vertical;
    min-height: 80px;
}
.star-row {
    display: flex;
    gap: 6px;
    margin: 12px 0;
}
.star-btn {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--border-strong);
    cursor: pointer;
    transition: color 0.2s;
}
.star-btn.filled {
    color: var(--gold);
}
.reviews-empty {
    width: 100%;
    padding: 48px 24px;
    text-align: center;
    color: var(--ink-dim);
    font-size: 0.88rem;
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-login-prompt {
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--cream-dark);
    text-align: center;
}

/* =========================================================================
   SUGANDH INK - Redesigned Cart Drawer Styling
   ========================================================================= */

.drawer-profile-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.user-profile-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    position: relative;
    margin-bottom: 16px;
}
.up-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--serif);
}
.up-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.up-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
}
.up-email {
    font-size: 0.76rem;
    color: var(--ink-dim);
}
.up-logout-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color 0.2s;
}
.up-logout-btn:hover {
    color: var(--ink);
}
.drawer-section-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 18px 0 10px;
}
.drawer-shipping-fields input,
.drawer-shipping-fields textarea,
.guest-details-form input,
.guest-details-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.8rem;
    color: var(--ink);
    margin-bottom: 10px;
    outline: none;
    font-family: var(--sans);
}
.drawer-shipping-fields textarea,
.guest-details-form textarea {
    resize: vertical;
    min-height: 60px;
}
.drawer-shipping-fields input:focus,
.drawer-shipping-fields textarea:focus,
.guest-details-form input:focus,
.guest-details-form textarea:focus {
    border-color: var(--gold);
}
.btn-save-shipping {
    padding: 8px 16px;
    font-size: 0.65rem;
    margin-top: 4px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    font-family: var(--sans);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}
.btn-save-shipping:hover {
    background: var(--gold);
    color: #fff;
}
.user-guest-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn-google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #757575;
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--sans);
}
.btn-google-login:hover {
    background: #f1f1f1;
}
.drawer-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--ink-dim);
    font-size: 0.68rem;
    margin: 12px 0;
}
.drawer-divider::before,
.drawer-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}
.drawer-divider:not(:empty)::before {
    margin-right: .5em;
}
.drawer-divider:not(:empty)::after {
    margin-left: .5em;
}
.drawer-cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--ink-dim);
}
.drawer-cart-empty p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.drawer-summary {
    background: var(--cream-dark);
    padding: 16px 20px;
    margin-top: 20px;
    border: 1px solid var(--border);
}
.drawer-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 8px;
    color: var(--ink-mid);
}
.drawer-summary-row.total {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    border-top: 1px solid var(--border);
    padding-top: 8px;
    margin-top: 8px;
    margin-bottom: 0;
}
.btn-checkout {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
}
.drawer-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 8px;
}
.ditem {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.ditem-thumb {
    width: 50px;
    height: 50px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ditem-thumb img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}
.ditem-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ditem-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ditem-name {
    font-family: var(--serif);
    font-size: 0.92rem;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ditem-size {
    font-size: 0.7rem;
    color: var(--ink-dim);
}
.ditem-price {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink);
}
.ditem-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ditem-remove {
    background: transparent;
    border: none;
    color: #b22222;
    font-size: 0.68rem;
    cursor: pointer;
    padding: 0;
}
.ditem-remove:hover {
    text-decoration: underline;
}
.ditem-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    background: #fff;
}
.ditem-stepper button {
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ditem-stepper button:hover {
    background: var(--cream-dark);
}
.ditem-stepper span {
    font-size: 0.75rem;
    width: 20px;
    text-align: center;
}

/* ── Toast Container ────────────────────────────────────────────────────────── */
#toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.toast {
    background: var(--ink);
    color: var(--cream);
    padding: 12px 24px;
    font-size: 0.82rem;
    font-family: var(--sans);
    letter-spacing: 0.05em;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
    pointer-events: auto;
    white-space: nowrap;
    max-width: 90vw;
    text-align: center;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   Search Overlay
   ========================================================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(24, 25, 26, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.search-overlay.open {
    opacity: 1;
    visibility: visible;
}
.search-modal {
    width: 100%;
    max-width: 640px;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    max-height: 70vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s var(--ease-out);
}
.search-overlay.open .search-modal {
    transform: translateY(0) scale(1);
}
.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}
.search-input-wrap svg {
    flex-shrink: 0;
    color: var(--ink-dim);
}
.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--ink);
    outline: none;
    padding: 4px 0;
}
.search-input::placeholder {
    color: var(--ink-dim);
    font-weight: 300;
}
.search-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    color: var(--ink-dim);
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.search-close-btn:hover {
    color: var(--ink);
    background: var(--cream-dark);
}
.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.search-empty {
    padding: 32px 20px;
    text-align: center;
    color: var(--ink-dim);
    font-size: 0.85rem;
}
.search-result-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s;
    align-items: center;
}
.search-result-item:hover {
    background: var(--cream-dark);
}
.sri-thumb {
    width: 48px;
    height: 48px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}
.sri-thumb img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.sri-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sri-name {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sri-num {
    color: var(--ink-dim);
    font-family: var(--serif);
}
.sri-code {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
}
.sri-price {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-mid);
}

/* =========================================================================
   Wishlist Styles
   ========================================================================= */
.wishlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--ink-dim);
    transition: color 0.25s, transform 0.25s;
    padding: 4px;
}
.wishlist-btn:hover {
    color: #e74c3c;
    transform: scale(1.1);
}
.wishlist-btn.in-wishlist {
    color: #e74c3c;
}
.wishlist-btn.in-wishlist svg {
    fill: #e74c3c;
}

/* Product title wishlist button */
.product-title-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-left: 12px;
    transform: translateY(-2px);
}
.product-title-wishlist:hover {
    transform: translateY(-2px) scale(1.15);
}

/* Card wishlist button (overlay on image) */
.card-wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(248, 245, 240, 0.85);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 2;
    transition: background 0.25s, transform 0.25s, color 0.25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.card-wishlist-btn:hover {
    background: rgba(248, 245, 240, 1);
    transform: scale(1.1);
    color: #e74c3c;
}
.card-wishlist-btn.in-wishlist {
    color: #e74c3c;
}
.card-wishlist-btn.in-wishlist svg {
    fill: #e74c3c;
}

/* Wishlist badge uses existing .cart-count styles */

/* Responsive search */
@media (max-width: 768px) {
    .search-overlay {
        padding-top: 8vh;
        align-items: stretch;
    }
    .search-modal {
        max-width: 100%;
        margin: 0 12px;
        max-height: 80vh;
    }
    .search-input {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .search-overlay {
        padding-top: 4vh;
        align-items: stretch;
    }
    .search-modal {
        max-width: 100%;
        margin: 0 8px;
        max-height: 85vh;
        border-radius: 6px;
    }
    .search-input-wrap {
        padding: 12px 14px;
    }
    .search-result-item {
        padding: 8px 14px;
        grid-template-columns: 40px 1fr;
        gap: 10px;
    }
    .sri-thumb {
        width: 40px;
        height: 40px;
    }
    .sri-name {
        font-size: 0.85rem;
    }
}

/* Prompt styles for search results in collection */
.citem-img {
    position: relative;
    overflow: hidden;
}

/* Ensure pcard-img has position relative for wishlist button overlay */
.pcard-img {
    position: relative;
}

/* ── WhatsApp Chat Widget ───────────────────────────────────────────────────── */
.wa-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 92px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-chat-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: wa-chat-enter 0.6s ease-out both;
}
.wa-chat-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}
.wa-chat-btn svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}
.wa-chat-tooltip {
    position: absolute;
    right: 64px;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.72rem;
    padding: 8px 14px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.wa-chat-btn:hover + .wa-chat-tooltip,
.wa-chat-tooltip:hover {
    opacity: 1;
}
@keyframes wa-chat-enter {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* =========================================================================
   Scent Quiz Styles
   ========================================================================= */
.quiz-hero { padding: 120px 0 40px; text-align: center; }
.quiz-hero .overline { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.quiz-hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; color: var(--ink); line-height: 1.1; }
.quiz-hero h1 em { color: var(--gold); }
.quiz-hero p { font-size: 0.9rem; color: var(--ink-mid); max-width: 480px; margin: 16px auto 0; line-height: 1.8; }
.quiz-container { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter) 80px; }
.quiz-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 48px; }
.qstep-dot { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 500; color: var(--ink-dim); transition: all 0.4s var(--ease-out); flex-shrink: 0; }
.qstep-dot.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.qstep-dot.done { background: var(--gold); border-color: var(--gold); color: #fff; }
.qstep-bar { flex: 1; height: 1px; background: var(--border); }
.qstep-bar.filled { background: var(--gold); }
.quiz-steps { position: relative; min-height: 360px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: qFadeIn 0.5s var(--ease-out); }
@keyframes qFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.qstep-label { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.qstep-question { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 300; color: var(--ink); margin-bottom: 36px; line-height: 1.2; }
.q-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.q-option { padding: 18px 20px; border: 1px solid var(--border); background: var(--cream); text-align: center; cursor: pointer; transition: all 0.3s var(--ease-out); font-size: 0.85rem; font-weight: 400; color: var(--ink-mid); font-family: var(--sans); }
.q-option:hover { border-color: var(--gold-light); background: var(--cream-dark); }
.q-option.selected { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; gap: 16px; }
.quiz-nav .btn { min-width: 140px; }
.qstep-counter { font-size: 0.72rem; color: var(--ink-dim); letter-spacing: 0.1em; }
.q-results { display: none; }
.q-results.active { display: block; animation: qFadeIn 0.6s var(--ease-out); }
.q-results-header { text-align: center; padding: 40px 0; }
.q-results-header h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; color: var(--ink); }
.q-results-header h2 em { color: var(--gold); }
.q-results-header p { font-size: 0.88rem; color: var(--ink-dim); margin-top: 8px; }
.q-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.q-result-card { background: var(--cream); border: 1px solid var(--border); padding: 24px; display: flex; flex-direction: column; gap: 10px; cursor: pointer; transition: all 0.35s var(--ease-out); }
.q-result-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(155,122,66,0.08); }
.qrc-img { aspect-ratio: 1; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.qrc-img img { width: 70%; height: 70%; object-fit: contain; transition: filter 0.5s var(--ease-out); }
.q-result-card:hover .qrc-img img { filter: brightness(1.06); }
.qrc-code { font-size: 0.58rem; letter-spacing: 0.22em; color: var(--gold); font-weight: 500; text-transform: uppercase; }
.qrc-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink); }
.qrc-notes { font-size: 0.75rem; color: var(--ink-dim); line-height: 1.5; }
.qrc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--border); margin-top: auto; }
.qrc-price { font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.qrc-score { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--gold); }
.q-restart { text-align: center; margin-top: 40px; }

/* =========================================================================
   Mood Browse Pills
   ========================================================================= */
.mood-row {
    grid-column: 1 / -1;
    margin-bottom: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mood-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mood-row-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.mood-clear-btn {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-dim);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}
.mood-clear-btn:hover { color: var(--ink); }
.mood-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mood-pill {
    padding: 8px 20px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink-mid);
    background: var(--cream);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    font-family: var(--sans);
    text-transform: none;
}
.mood-pill:hover {
    border-color: var(--gold-light);
    color: var(--ink);
    background: var(--cream-dark);
}
.mood-pill.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}

@media (max-width: 500px) {
    .q-options { grid-template-columns: 1fr 1fr; }
    .quiz-nav .btn { min-width: 100px; font-size: 0.65rem; padding: 12px 20px; }
    .mood-pills { gap: 6px; }
    .mood-pill { padding: 6px 14px; font-size: 0.65rem; }
}

/* =========================================================================
   Guest Checkout Section
   ========================================================================= */
.co-auth-toggle {
    margin-bottom: 28px;
    padding: 20px;
    background: var(--cream-deep);
    border: 1px solid var(--border);
    border-radius: 6px;
}
.co-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.co-toggle-btn {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: var(--cream);
    color: var(--ink-dim);
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 4px;
}
.co-toggle-btn:hover {
    border-color: var(--gold-light);
    color: var(--ink);
}
.co-toggle-btn.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}
.co-toggle-divider {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.co-mode-panel {
    padding-top: 8px;
}
.co-guest-notice {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--ink-mid);
    margin-bottom: 12px;
    line-height: 1.5;
}
.co-create-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--ink);
}
.co-create-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    flex-shrink: 0;
}
.co-signin-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}
.co-si-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: var(--cream);
    color: var(--ink);
    box-sizing: border-box;
}
.co-si-input:focus {
    outline: none;
    border-color: var(--gold);
}

/* =========================================================================
   Loyalty Rewards / Atelier Club
   ========================================================================= */
.ly-history-table { width: 100%; border-collapse: collapse; }
.ly-history-table th { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); font-weight: 500; }
.ly-history-table td { font-family: var(--font-body); font-size: 0.82rem; color: var(--ink-mid); padding: 10px 14px; border-bottom: 1px solid var(--border); }
.ly-history-table td.ly-pts-positive { color: #27ae60; font-weight: 500; }
.ly-history-table td.ly-pts-negative { color: #c0392b; }
.ly-points-number { font-family: var(--font-display); font-size: 3.2rem; font-weight: 300; color: var(--gold); line-height: 1; }

/* =========================================================================
   Checkout Samples & Gift Options
   ========================================================================= */
.co-sample-item.co-sample-selected { border-color: var(--gold); background: var(--gold-pale); }
.co-sample-item:hover { border-color: var(--gold-light); }
.co-gift-options textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 4px; font-family: var(--font-body); font-size: 0.88rem; background: var(--cream); color: var(--ink); box-sizing: border-box; resize: vertical; }
.co-gift-options textarea:focus { outline: none; border-color: var(--gold); }

/* =========================================================================
   Track Order Styles (shared with account)
   ========================================================================= */
.ac-reorder-btn { font-size: 0.65rem; padding: 8px 16px; }
.ac-reorder-btn:hover { background: var(--ink); color: var(--cream); }

/* =========================================================================
   Subscription - Scent of the Month
   ========================================================================= */

/* ── Subscription plan cards ─────────────────────────────────────────── */

.sub-page { padding: 140px 0 40px; }

.sub-active-card { max-width: var(--max); margin: 0 auto 40px; padding: 0 var(--gutter); }
.sub-active-inner { border: 1px solid var(--gold); background: var(--gold-pale); padding: 32px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.sub-active-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.sub-active-info .sub-active-plan { font-family: var(--font-body); font-size: 0.82rem; color: var(--ink-mid); }
.sub-active-info .sub-active-date { font-family: var(--font-body); font-size: 0.72rem; color: var(--ink-dim); margin-top: 4px; }
.sub-active-status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-top: 6px; }
.sub-status-active { background: rgba(39,174,96,0.08); color: #27ae60; }
.sub-status-paused { background: rgba(155,122,66,0.1); color: #9b7a42; }
.sub-status-cancelled { background: rgba(192,57,43,0.06); color: #c0392b; }
.sub-active-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.sub-active-actions button { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 20px; border: 1px solid var(--border); background: transparent; color: var(--ink); cursor: pointer; transition: all 0.2s; }
.sub-active-actions button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.sub-btn-pause { border-color: #9b7a42; color: #9b7a42; }
.sub-btn-pause:hover { background: #9b7a42; color: var(--cream); }
.sub-btn-cancel { border-color: #c0392b; color: #c0392b; }
.sub-btn-cancel:hover { background: #c0392b; color: var(--cream); }
.sub-btn-resume { border-color: #27ae60; color: #27ae60; }
.sub-btn-resume:hover { background: #27ae60; color: var(--cream); }

/* ── Subscription form modal ─────────────────────────────────────────── */

.sub-form-overlay { position: fixed; inset: 0; background: rgba(24,25,26,0.6); z-index: 99990; display: none; align-items: center; justify-content: center; padding: 24px; overflow-y: auto; }
.sub-form-overlay.open { display: flex; }
.sub-form-modal { background: var(--cream); max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 48px 40px; position: relative; }
.sub-form-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.4rem; color: var(--ink-dim); cursor: pointer; font-family: var(--sans); line-height: 1; }
.sub-form-close:hover { color: var(--ink); }
.sub-form-modal h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--ink); margin-bottom: 4px; }
.sub-form-modal .sub-form-subtitle { font-family: var(--font-body); font-size: 0.82rem; color: var(--ink-dim); margin-bottom: 28px; }
.sub-form-group { margin-bottom: 20px; }
.sub-form-group label { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); display: block; margin-bottom: 6px; }
.sub-form-group input, .sub-form-group textarea, .sub-form-group select { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 4px; font-family: var(--font-body); font-size: 0.88rem; color: var(--ink); background: var(--white); box-sizing: border-box; }
.sub-form-group input:focus, .sub-form-group textarea:focus, .sub-form-group select:focus { outline: none; border-color: var(--gold); }
.sub-form-group textarea { min-height: 60px; resize: vertical; }
.sub-form-row { display: flex; gap: 12px; }
.sub-form-row .sub-form-group { flex: 1; }
.sub-form-pref-group { margin-bottom: 20px; }
.sub-form-pref-group > label { margin-bottom: 10px; }
.sub-form-prefs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sub-form-pref-item { padding: 12px 16px; border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); font-size: 0.78rem; color: var(--ink-mid); text-align: center; background: var(--white); }
.sub-form-pref-item:hover { border-color: var(--gold-light); }
.sub-form-pref-item.selected { border-color: var(--gold); background: var(--gold-pale); color: var(--ink); }
.sub-form-submit { width: 100%; padding: 16px; background: var(--ink); color: var(--cream); border: none; font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; font-weight: 500; }
.sub-form-submit:hover { background: var(--gold); }
.sub-form-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.sub-success { display: none; text-align: center; padding: 40px 24px; }
.sub-success.show { display: block; }
.sub-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 12px; }
.sub-success p { font-family: var(--font-body); font-size: 0.88rem; color: var(--ink-mid); line-height: 1.7; }
.sub-success .sub-success-id { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin: 16px 0; }

/* =========================================================================
   Inner hero (shared by loyalty, gift-cards)
   ========================================================================= */
.inner-hero { padding: 140px 0 80px; text-align: center; border-bottom: 1px solid var(--border); }
.inner-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 24px; }
.inner-hero h1 em { font-style: italic; color: var(--gold); }
.inner-hero .lead { font-family: var(--font-body); font-size: 1.05rem; color: var(--ink-mid); max-width: 580px; margin: 0 auto; line-height: 1.8; }

/* =========================================================================
   Product Comparison Tool
   ========================================================================= */

.compare-hero {
    padding: 40px 0 20px;
    text-align: center;
}
.compare-hero .t-display {
    margin-bottom: 12px;
}
.compare-hero .t-display em {
    color: var(--gold);
    font-style: italic;
}
.compare-hero-text {
    font-size: 0.9rem;
    color: var(--ink-mid);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

.compare-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}
.compare-toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare-toolbar-left .btn {
    padding: 8px 18px;
    font-size: 0.65rem;
}
.compare-toolbar-right {
    font-size: 0.75rem;
    color: var(--ink-dim);
    letter-spacing: 0.06em;
}
.compare-count-label {
    font-weight: 500;
}

.compare-empty-state {
    text-align: center;
    padding: 80px 20px;
    border: 1px dashed var(--border);
    margin-bottom: 40px;
}
.compare-empty-icon {
    color: var(--ink-dim);
    margin-bottom: 20px;
    opacity: 0.5;
}
.compare-empty-state p {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 8px;
}
.compare-empty-hint {
    font-size: 0.82rem;
    color: var(--ink-dim);
}

.compare-select-wrap {
    margin-bottom: 28px;
    max-width: 480px;
    position: relative;
}
.compare-search-field {
    position: relative;
    display: flex;
    align-items: center;
}
.compare-search-field input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--border-strong);
    background: var(--white);
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s;
}
.compare-search-field input:focus {
    border-color: var(--gold);
}
.compare-search-field input::placeholder {
    color: var(--ink-dim);
}
.compare-search-field svg {
    position: absolute;
    left: 14px;
    color: var(--ink-dim);
    pointer-events: none;
}

.compare-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    z-index: 100;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(24,25,26,0.1);
}
.compare-search-empty {
    padding: 20px;
    text-align: center;
    color: var(--ink-dim);
    font-size: 0.82rem;
}
.compare-search-result {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
    align-items: center;
}
.compare-search-result:hover {
    background: var(--cream-dark);
}
.csr-thumb {
    width: 40px;
    height: 40px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 2px;
}
.csr-thumb img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.csr-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.csr-name {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.csr-code {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
}

.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 60px;
    border: 1px solid var(--border);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    table-layout: auto;
}
.compare-label {
    width: 130px;
    min-width: 130px;
    padding: 14px 18px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--cream-dark);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    text-align: left;
}
.compare-cell {
    padding: 14px 18px;
    font-size: 0.82rem;
    color: var(--ink-mid);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.6;
    background: var(--white);
}
.compare-table tr:last-child .compare-label,
.compare-table tr:last-child .compare-cell {
    border-bottom: none;
}
.compare-img-cell {
    text-align: center;
}
.compare-product-img {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 1;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.compare-product-img img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.compare-product-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 4px;
}
.compare-product-price {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
}
.compare-code {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
}
.compare-desc-cell {
    font-size: 0.8rem;
    line-height: 1.7;
}
.compare-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--ink-dim);
    padding: 4px 10px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--sans);
}
.compare-remove-btn:hover {
    color: #b22222;
    border-color: #b22222;
    background: rgba(178,34,34,0.04);
}

.compare-float-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 900;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ink);
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    font-family: var(--sans);
    box-shadow: 0 4px 20px rgba(24,25,26,0.2);
}
.compare-float-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.compare-float-btn.visible {
    display: inline-flex;
}
.compare-float-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    background: var(--gold);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0 5px;
    line-height: 1;
}

.compare-card-btn {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 4px 10px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--sans);
    font-weight: 500;
}
.compare-card-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}
.compare-card-btn.added {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-pale);
}

.compare-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--sans);
    font-weight: 500;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
}
.compare-detail-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}
.compare-detail-btn.added {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-pale);
}

@media (max-width: 768px) {
    .compare-hero {
        padding: 24px 0 12px;
    }
    .compare-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .compare-select-wrap {
        max-width: 100%;
    }
    .compare-table-wrap {
        margin-left: calc(-1 * var(--gutter));
        margin-right: calc(-1 * var(--gutter));
        border-left: none;
        border-right: none;
    }
    .compare-label {
        width: 100px;
        min-width: 100px;
        padding: 10px 12px;
        font-size: 0.62rem;
    }
    .compare-cell {
        padding: 10px 12px;
        font-size: 0.78rem;
    }
    .compare-product-img {
        max-width: 80px;
    }
    .compare-product-name {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .compare-label {
        width: 80px;
        min-width: 80px;
        padding: 8px 10px;
        font-size: 0.58rem;
    }
    .compare-cell {
        padding: 8px 10px;
        font-size: 0.72rem;
    }
    .compare-float-btn {
        bottom: 16px;
        left: 16px;
        padding: 8px 14px;
        font-size: 0.65rem;
    }
}

/* =========================================================================
   Referral Program Styles
   ========================================================================= */
.rf-hero { padding: 140px 0 80px; text-align: center; border-bottom: 1px solid var(--border); }
.rf-hero h1 { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 24px; }
.rf-hero h1 em { font-style: italic; color: var(--gold); }
.rf-hero .lead { font-family: var(--sans); font-size: 1.05rem; color: var(--ink-mid); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.rf-content { padding: 80px 0; max-width: 860px; margin: 0 auto; }
.rf-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.rf-step { border: 1px solid var(--border); border-radius: 8px; padding: 36px 24px; text-align: center; background: var(--cream); transition: transform .3s var(--ease-out), box-shadow .3s; }
.rf-step:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(155,122,66,0.1); }
.rf-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--sans); font-size: 0.85rem; font-weight: 500; }
.rf-step h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.rf-step p { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-dim); line-height: 1.7; }
.rf-link-section { background: var(--cream-deep); padding: 36px 40px; border-radius: 8px; text-align: center; margin-bottom: 40px; border: 1px solid var(--border); }
.rf-link-section h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; margin-bottom: 8px; color: var(--ink); }
.rf-link-section .rf-sub { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-dim); margin-bottom: 24px; }
.rf-code-display { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.rf-code { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--gold); letter-spacing: 0.12em; background: var(--cream); padding: 10px 24px; border: 1px solid var(--border); border-radius: 4px; user-select: all; }
.rf-code-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.rf-btn { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 12px 28px; border-radius: 0; transition: all .3s var(--ease-out); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.rf-btn-copy { background: var(--ink); color: var(--cream); border: 1px solid var(--ink); }
.rf-btn-copy:hover { background: var(--gold); border-color: var(--gold); }
.rf-btn-wa { background: #25d366; color: #fff; border: 1px solid #25d366; }
.rf-btn-wa:hover { background: #128c7e; border-color: #128c7e; }
.rf-points-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.rf-points-card { border: 1px solid var(--border); border-radius: 8px; padding: 28px 24px; text-align: center; background: var(--cream); }
.rf-points-card .rf-points-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.rf-points-card .rf-points-label { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-dim); margin: 8px 0 4px; }
.rf-history { margin-bottom: 40px; }
.rf-history h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; margin-bottom: 20px; text-align: center; }
.rf-history h2 em { font-style: italic; color: var(--gold); }
.rf-history-empty { text-align: center; padding: 40px; font-family: var(--sans); font-size: 0.88rem; color: var(--ink-dim); }
.rf-history-table { width: 100%; border-collapse: collapse; }
.rf-history-table th { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); font-weight: 500; }
.rf-history-table td { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-mid); padding: 10px 14px; border-bottom: 1px solid var(--border); }
.rf-history-table td.rf-pts-positive { color: #27ae60; font-weight: 500; }
.rf-history-table .rf-status-claimed { color: #27ae60; font-weight: 500; }
.rf-history-table .rf-status-pending { color: var(--gold); }
@media (max-width: 768px) {
    .rf-content { padding: 60px 24px; }
    .rf-steps { grid-template-columns: 1fr; }
    .rf-link-section { padding: 28px 20px; }
    .rf-points-panel { grid-template-columns: 1fr; }
    .rf-code-display { flex-direction: column; }
    .rf-code-actions { flex-direction: column; align-items: center; }
}

/* =========================================================================
   Waitlist / Back-in-Stock Styles
   ========================================================================= */

/* ── Out-of-Stock Pill ─────────────────────────────────────────────────── */
.size-pill.oos {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: line-through;
    border-color: var(--border-strong);
    background: var(--cream-dark);
    color: var(--ink-dim);
}
.size-pill.oos .oos-label {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-top: 2px;
    font-weight: 500;
    text-decoration: none;
}

/* ── Notify Me Button ──────────────────────────────────────────────────── */
.notify-btn {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    font-weight: 500;
}
.notify-btn:hover {
    background: var(--gold);
    color: var(--cream);
}
.notify-btn-sm {
    font-size: 0.62rem;
    padding: 6px 14px;
    margin-top: 8px;
}

/* ── Waitlist Section on Product Page ──────────────────────────────────── */
.waitlist-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.waitlist-prompt {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--ink-dim);
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
}
.waitlist-inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
}
.waitlist-email-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 0.82rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s;
    min-width: 0;
}
.waitlist-email-input:focus {
    border-color: var(--gold);
}
.waitlist-email-input::placeholder {
    color: var(--ink-dim);
    font-size: 0.78rem;
}
.waitlist-confirmed {
    padding: 10px 14px;
    background: rgba(155, 122, 66, 0.06);
    border: 1px solid rgba(155, 122, 66, 0.2);
    border-radius: 4px;
}
.waitlist-confirmed-text {
    font-size: 0.76rem;
    color: var(--gold);
    font-weight: 500;
}

/* ── Out-of-Stock Badge on Collection Cards ────────────────────────────── */
.oos-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(24, 25, 26, 0.75);
    backdrop-filter: blur(4px);
    color: var(--cream);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 500;
    z-index: 2;
    font-family: var(--sans);
    pointer-events: none;
}

/* ── Cart OOS Item ─────────────────────────────────────────────────────── */
.cart-item-oos {
    opacity: 0.65;
    background: rgba(192, 57, 43, 0.03);
}
.cart-oos-warning {
    font-size: 0.68rem;
    color: #c0392b;
    letter-spacing: 0.06em;
    margin: 6px 0;
    padding: 4px 0;
    font-weight: 500;
    text-transform: uppercase;
}

/* ── Toast Notifications ───────────────────────────────────────────────── */
#toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}
.toast {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    padding: 14px 28px;
    border-radius: 4px;
    background: var(--ink);
    color: var(--cream);
    box-shadow: 0 8px 32px rgba(24, 25, 26, 0.18);
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
    pointer-events: auto;
    max-width: 90vw;
    text-align: center;
    line-height: 1.5;
}
.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.toast.success {
    background: var(--ink);
    color: var(--cream);
}

/* ══════════════════════════════════════════════════════════════
   COMING SOON — Launching Soon Landing Page
   ══════════════════════════════════════════════════════════════ */
.cs-body {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Hero */
.cs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.cs-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(180, 150, 100, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(100, 80, 60, 0.06) 0%, transparent 50%),
                linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    z-index: 0;
}
.cs-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cs-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 175, 130, 0.25);
    animation: cs-float linear infinite;
    pointer-events: none;
}
@keyframes cs-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    25% { opacity: 0.8; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.5; }
    75% { opacity: 0.7; }
}
.cs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}
.cs-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200, 175, 130, 0.8);
    border: 1px solid rgba(200, 175, 130, 0.25);
    padding: 8px 20px;
    margin-bottom: 40px;
    opacity: 0;
}
.cs-title { margin: 0 0 32px; }
.cs-line-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    opacity: 0;
}
.cs-line-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--cream);
    line-height: 1.1;
    opacity: 0;
}
.cs-desc {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 12px;
    opacity: 0;
}
.cs-desc-light { color: rgba(200, 175, 130, 0.7); }
.cs-cta-row { margin: 40px 0 24px; opacity: 0; }
.btn-gold.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 0.85rem;
}
.cs-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
}
.cs-contact-info a { color: rgba(200, 175, 130, 0.8); text-decoration: none; }
.cs-contact-info a:hover { color: var(--gold); }
.cs-dot { color: rgba(200, 175, 130, 0.4); }
.cs-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
}
.cs-scroll-hint span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 8px;
}
.cs-scroll-line {
    width: 1px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(200, 175, 130, 0.4), transparent);
    animation: cs-scroll-pulse 2s ease-in-out infinite;
}
@keyframes cs-scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.4); }
}

/* Narrative Section */
.cs-narrative {
    padding: 120px 24px;
    background: #0d0d0d;
}
.cs-narrative-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.cs-narrative-text { max-width: 480px; }
.cs-eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(200, 175, 130, 0.6);
    display: block;
    margin-bottom: 16px;
}
.cs-narrative-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 24px;
    line-height: 1.3;
}
.cs-narrative p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}
.cs-narrative-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.cs-visual-block {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(200, 175, 130, 0.12);
    background: rgba(255, 255, 255, 0.02);
}
.cs-visual-block:nth-child(3) { grid-column: 1 / -1; }
.cs-stat {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.cs-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Services Section */
.cs-services {
    padding: 120px 24px;
    background: #0a0a0a;
}
.cs-services-inner { max-width: 1100px; margin: 0 auto; }
.cs-services-header { text-align: center; margin-bottom: 64px; }
.cs-services-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--cream);
    margin: 0;
}
.cs-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.cs-service-card {
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s, background 0.3s;
}
.cs-service-card:hover {
    border-color: rgba(200, 175, 130, 0.25);
    background: rgba(255, 255, 255, 0.04);
}
.cs-service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    margin: 0 0 12px;
}
.cs-service-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
}
.cs-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s;
}
.cs-link:hover { opacity: 0.7; }

/* Newsletter */
.cs-newsletter {
    padding: 120px 24px;
    background: #0d0d0d;
    text-align: center;
}
.cs-newsletter-inner { max-width: 520px; margin: 0 auto; }
.cs-newsletter-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 16px;
}
.cs-newsletter-inner > p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 32px;
}
.cs-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}
.cs-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s;
}
.cs-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.3); }
.cs-newsletter-form input:focus { border-color: var(--gold); }
.cs-newsletter-form .btn { white-space: nowrap; }
.cs-form-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 16px;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .cs-narrative-inner { grid-template-columns: 1fr; gap: 48px; }
    .cs-narrative-text { max-width: 100%; }
    .cs-services-grid { grid-template-columns: 1fr; }
    .cs-newsletter-form { flex-direction: column; }
    .cs-hero { min-height: 90vh; padding: 100px 20px 60px; }
    .cs-narrative, .cs-services, .cs-newsletter { padding: 80px 20px; }
    .cs-visual-block { padding: 32px 20px; }
}
@media (max-width: 480px) {
    .cs-narrative-visual { grid-template-columns: 1fr; }
    .cs-visual-block:nth-child(3) { grid-column: 1; }
    .cs-title { margin-bottom: 24px; }
}

/* =========================================================================
   Manifesto Section
   ========================================================================= */
.manifesto-section {
    padding: 120px var(--px);
    background: var(--cream-2);
    border-top: 1px solid var(--cream-3);
    border-bottom: 1px solid var(--cream-3);
}
.manifesto-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.manifesto-title {
    margin-bottom: 40px;
}
.manifesto-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}
.manifesto-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.manifesto-text {
    font-size: 1.05rem;
    color: var(--ink-2);
    line-height: 1.85;
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto;
}
.manifesto-signoff {
    margin-top: 48px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
}

/* =========================================================================
   Curated Discovery Section
   ========================================================================= */
.curated-section {
    padding: 100px var(--px);
    background: var(--cream);
}
.curated-header {
    max-width: var(--max-w);
    margin: 0 auto 56px;
    text-align: center;
}
.curated-sub {
    font-size: 0.92rem;
    color: var(--ink-2);
    max-width: 480px;
    margin: 16px auto 0;
    line-height: 1.7;
    font-weight: 300;
}
.curated-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.curated-card {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: 1px solid var(--cream-3);
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
    overflow: hidden;
}
.curated-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(155, 122, 66, 0.06);
    transform: translateY(-4px);
}
.curated-card-img {
    aspect-ratio: 0.85;
    background: var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.curated-card-img img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: filter 0.6s var(--ease);
}
.curated-card:hover .curated-card-img img {
    filter: brightness(1.05);
}
.curated-card-body {
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.curated-code {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.curated-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.15;
    margin: 0;
}
.curated-notes {
    font-size: 0.84rem;
    color: var(--ink-2);
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
    flex: 1;
}
.curated-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-top: auto;
}
.curated-action {
    text-align: center;
    margin-top: 48px;
}

/* =========================================================================
   Craftsmanship Section
   ========================================================================= */
.craft-section {
    padding: 100px var(--px);
    background: var(--cream-2);
    border-top: 1px solid var(--cream-3);
    border-bottom: 1px solid var(--cream-3);
}
.craft-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.craft-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.craft-content p {
    font-size: 0.95rem;
    color: var(--ink-2);
    line-height: 1.85;
    font-weight: 300;
}
.craft-content p em {
    color: var(--ink);
    font-weight: 400;
}
.craft-content .btn {
    align-self: flex-start;
    margin-top: 8px;
}
.craft-visual {
    display: flex;
    justify-content: center;
}
.craft-image-frame {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 0.85;
    background: var(--cream);
    border: 1px solid var(--cream-3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(72,64,54,0.04);
}
.craft-image-frame img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    transition: filter 1s var(--ease);
}
.craft-image-frame:hover img {
    filter: brightness(1.04);
}
.craft-image-frame:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(155, 122, 66, 0.06);
}

@media (max-width: 900px) {
    .curated-grid { grid-template-columns: 1fr; }
    .craft-inner { grid-template-columns: 1fr; gap: 40px; }
    .craft-visual { grid-row: 1; }
    .manifesto-section { padding: 80px var(--px); }
    .curated-section { padding: 80px var(--px); }
    .craft-section { padding: 80px var(--px); }
}

/* ── WhatsApp Buy Popup ───────────────────────────────────────────────────── */
.wa-buy-overlay {
    position: fixed; inset: 0;
    background: rgba(24, 25, 26, 0.5);
    z-index: 99995;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}
.wa-buy-overlay.visible {
    opacity: 1;
    pointer-events: all;
}
.wa-buy-popup {
    background: var(--cream);
    max-width: 420px;
    width: 100%;
    padding: 48px 40px 36px;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.wa-buy-popup.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.wa-buy-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--ink-dim);
    padding: 4px;
    transition: color 0.2s;
}
.wa-buy-close:hover {
    color: var(--ink);
}
.wa-buy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
}
.wa-buy-icon svg {
    width: 32px;
    height: 32px;
}
.wa-buy-title {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
}
.wa-buy-text {
    font-size: 0.85rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 28px;
}
.wa-buy-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 0.85rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}
.wa-buy-btn:hover {
    background: #1ebe5d;
}
.wa-buy-response {
    font-size: 0.72rem;
    color: var(--ink-dim);
    margin-top: 12px;
}
.wa-buy-dismiss {
    font-size: 0.72rem;
    color: var(--ink-dim);
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 16px;
    padding: 4px 8px;
    transition: color 0.2s;
}
.wa-buy-dismiss:hover {
    color: var(--ink);
}

@media (max-width: 480px) {
    .wa-buy-popup {
        padding: 36px 24px 28px;
    }
}
