/* Kanaa The Dream — storefront (matched to thedream.taskera.app visual system) */
:root {
    --pink: #E0B05A;
    --pink-light: #ECC986;
    --pink-soft: #F9EFD7;
    --purple: #2E2A28;
    --purple-light: #5C534D;
    --red: #E53935;
    --bg: #FCF8F0;
    --white: #FFFFFF;
    --text: #212121;
    --text-secondary: #757575;
    --border: #EEE2C9;
    --header: #E8C547;
    --header-light: #F5E08A;
    --header-mid: #F0D56E;
    --header-dark: #D4A84B;
    --header-text: #2E2A28;
    --header-muted: #A67C2D;
    --header-surface: rgba(255,255,255,0.48);
    --header-surface-border: rgba(46,42,40,0.14);
    --header-search-bg: rgba(255,255,255,0.78);
    --header-drawer-border: rgba(46,42,40,0.12);
    --header-shadow: rgba(180,140,40,0.16);
    --announce-bg: #FBF6EC;
    --gold: #C79A54;
    --duck: #F0D56E;
    --duck-deep: #E0B05A;
    --brand-grad: linear-gradient(135deg, #F0D56E, #E0B05A);
    --brand-grad-rev: linear-gradient(135deg, #E0B05A, #F0D56E);
    --serif: "Cormorant Garamond", serif;
    --sans: "Poppins", sans-serif;
    --display: "Baloo 2", cursive;
    --shadow: 0 4px 20px rgba(224, 176, 90, 0.12);
    --radius: 16px;
    --radius-full: 999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* aliases used by older blades */
    --rose: var(--gold);
    --rose-deep: #b5883f;
    --rose-soft: var(--pink-soft);
    --sage: #6d8f7a;
    --ink: var(--text);
    --muted: var(--text-secondary);
    --bg-soft: var(--announce-bg);
    --line: var(--border);
    --footer: var(--purple);
    --font-sans: var(--sans);
    --font-display: var(--serif);
    --accent: var(--gold);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: var(--sans); }
.font-display { font-family: var(--serif); }
.wrap, .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 22px; }

/* Announcement — hidden by default; .is-visible when enabled in admin */
.offer-strip, .announcement-bar { display: none; }
.offer-strip.is-visible, .announcement-bar.is-visible {
    display: block;
    background: var(--announce-bg);
    color: #4a3f38;
    text-align: center;
    padding: 11px 20px;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Header — themed boutique bar (colors from admin Theme settings) */
.site-header, .header {
    background:
        radial-gradient(120% 180% at 0% 0%, rgba(255, 250, 230, 0.35), transparent 55%),
        radial-gradient(90% 140% at 100% 100%, rgba(224, 176, 90, 0.22), transparent 50%),
        linear-gradient(105deg, var(--header-light) 0%, var(--header-mid) 42%, var(--header) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--header-surface-border);
    box-shadow: 0 10px 28px var(--header-shadow);
}
.site-header::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--header-light), var(--gold), transparent);
    opacity: 0.9;
}
.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 28px;
    min-height: 88px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.brand, .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    color: var(--header-text);
}
.brand img, .logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    background: #fffef8;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px solid color-mix(in srgb, var(--gold) 55%, transparent);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.35),
        0 6px 16px rgba(46, 42, 40, 0.1);
}
.brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}
.brand-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--header-text);
}
.brand-tag {
    font-family: "Great Vibes", cursive;
    font-size: 22px;
    color: var(--header-muted);
    letter-spacing: 0.02em;
    margin-left: 2px;
}
.brand-word {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 22px;
    color: var(--header-text);
    line-height: 1.1;
    white-space: nowrap;
}
.nav-cats {
    display: none;
    align-items: center;
    gap: 28px;
    margin-left: 10px;
    flex: 1 1 auto;
    min-width: 0;
}
@media (min-width: 1100px) {
    .nav-cats { display: flex; }
}
.nav-cats > a,
.nav-drop > summary,
.nav-link {
    position: relative;
    padding: 6px 0;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 600;
    font-style: italic;
    color: var(--header-text);
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
    white-space: nowrap;
    list-style: none;
    cursor: pointer;
    background: none;
    border: none;
}
.nav-cats > a::after,
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}
.nav-cats > a:hover,
.nav-cats > a.active,
.nav-drop > summary:hover,
.nav-link:hover,
.nav-link.active {
    color: var(--header-text);
    opacity: 1;
}
.nav-cats > a:hover::after,
.nav-cats > a.active::after,
.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}
.nav-drop { position: relative; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after {
    content: "▾";
    font-size: 11px;
    margin-left: 4px;
    opacity: 0.85;
}
.nav-drop-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 12rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.45rem;
    z-index: 90;
}
.nav-drop-menu a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    font-family: var(--sans);
}
.nav-drop-menu a:hover { background: var(--pink-soft); color: var(--gold); }

.header-search {
    display: none;
    align-items: center;
    gap: 0;
    background: var(--header-search-bg);
    border: 1px solid var(--header-surface-border);
    border-radius: 999px;
    padding: 3px 3px 3px 16px;
    height: 42px;
    min-width: 220px;
    width: min(280px, 24vw);
    flex-shrink: 0;
    margin-left: auto;
    backdrop-filter: blur(6px);
}
@media (min-width: 1100px) {
    .header-search { display: flex; }
}
.header-search input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 13px;
    font-family: var(--serif);
    font-style: italic;
    color: var(--header-text);
    box-shadow: none;
    border-radius: 0;
    height: 100%;
    flex: 1;
    min-width: 0;
}
.header-search input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}
.header-search input::placeholder { color: color-mix(in srgb, var(--header-text) 50%, transparent); }
.search-go {
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--header-mid), var(--gold));
    color: #fffef8;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    flex-shrink: 0;
}
.search-go:hover { filter: brightness(1.05); }

.nav-utils, .header-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-left: 4px;
}
@media (max-width: 1099px) {
    .nav-utils, .header-right { margin-left: auto; }
}
.nav-utils a, .nav-utils button {
    background: none;
    border: none;
    cursor: pointer;
}
.util-link {
    display: none;
    align-items: baseline;
    gap: 6px;
    padding: 8px 12px;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    color: var(--header-text);
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}
.util-link em {
    font-style: normal;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    color: #fffef8;
    background: var(--gold);
    border-radius: 999px;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.util-link:hover {
    background: var(--header-surface);
    color: var(--header-text);
}
.util-bag {
    background: var(--header-surface);
    border: 1px solid var(--header-surface-border);
}
@media (min-width: 1100px) {
    .util-link { display: inline-flex; }
}
/* legacy icon-btn kept for any leftover markup */
.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.12); }
.icon-btn svg { width: 1.35rem; height: 1.35rem; }
.badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #fff;
    color: var(--purple);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--header-surface-border);
    border-radius: 999px;
    background: var(--header-surface);
    color: var(--header-text);
    cursor: pointer;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
}
.menu-toggle-bars {
    width: 14px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    box-shadow: inset 0 4px 0 -3px currentColor;
}
@media (min-width: 1100px) { .menu-toggle { display: none; } }
.mobile-drawer {
    display: none;
    background: linear-gradient(180deg, var(--header), var(--header-dark));
    padding: 0.75rem 22px 1.25rem;
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
    display: block;
    padding: 0.85rem 0;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: var(--header-text);
    border-bottom: 1px solid var(--header-drawer-border);
}
.mobile-search {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--header-search-bg);
    border: 1px solid var(--header-surface-border);
    border-radius: 999px;
    padding: 3px 3px 3px 16px;
    height: 44px;
    margin: 8px 0 14px;
}
.mobile-search input {
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    color: var(--header-text);
    font-family: var(--serif);
    font-style: italic;
    flex: 1;
    min-width: 0;
}
.mobile-search input::placeholder { color: color-mix(in srgb, var(--header-text) 50%, transparent); }
.mobile-search input:focus { outline: none; box-shadow: none; }

/* Buttons */
.btn, .btn-primary, .hero-shopnow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(199, 154, 84, 0.28);
    transition: var(--transition);
}
.btn:hover, .btn-primary:hover { background: #b5883f; transform: translateY(-2px); }
.btn-lg, .hero-shopnow {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(199, 154, 84, 0.35);
}
.hero-shopnow:hover, .btn-lg:hover { background: #b5883f; transform: translateY(-2px) scale(1.02); }
.btn-outline {
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--border);
    box-shadow: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-light {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
}
.link-rose, .link-gold { color: var(--gold); font-weight: 700; font-size: 0.84rem; }
.link-rose:hover, .link-gold:hover { text-decoration: underline; }

.flash {
    margin: 1rem auto 0;
    width: min(1280px, calc(100% - 48px));
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}
.flash.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Hero — full photo + glass UI band over bottom */
.hero, .hero-editorial, .hero-dream, .hero-split {
    display: block;
    min-height: 0;
    overflow: hidden;
    position: relative;
    background: #1c1610;
}
.hero-stage {
    position: relative;
    width: 100%;
    height: min(86vh, 760px);
    overflow: hidden;
    background: #e8dfd0;
}
.hero-photo,
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    border: none;
    animation: heroZoom 16s ease-out forwards;
}
.hero-photo-fallback {
    background: linear-gradient(135deg, #f5e8d0, #e8c547 45%, #d4a84b);
}
@keyframes heroZoom {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}
.hero-wash,
.hero-copy-pane,
.hero-visual,
.hero-brand,
.hero-eyebrow { display: none !important; }
.hero::before, .hero-media::after { display: none; }

.hero-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.1rem 0 1.25rem;
    background: linear-gradient(
        180deg,
        rgba(255, 253, 248, 0.18) 0%,
        rgba(255, 250, 240, 0.42) 35%,
        rgba(251, 246, 236, 0.55) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 -8px 32px rgba(20, 14, 8, 0.12);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
}
.hero-band .hero-copy,
.hero-band .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.35rem 24px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #2E2A28;
    animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-band-text { flex: 1 1 auto; min-width: 0; max-width: 42rem; }
.hero-copy h1, .hero h1 {
    font-family: var(--display);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #2E2A28;
    line-height: 1.15;
    margin: 0 0 0.4rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    max-width: none;
}
.hero-support {
    display: block;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    max-width: 46ch;
    line-height: 1.5;
    color: #3d342c;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}
.hero-editorial .hero-shopnow,
.hero-dream .hero-shopnow,
.hero-split .hero-shopnow {
    background: linear-gradient(135deg, #ecc986, #c79a54 55%, #b5883f);
    color: #2e2a28;
    animation: ctaPulse 2.8s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(199, 154, 84, 0.35); }
    50% { box-shadow: 0 10px 32px rgba(224, 176, 90, 0.55); }
}
@media (max-width: 900px) {
    .hero-stage { height: min(78vh, 620px); }
    .hero-photo,
    .hero-media { object-position: center 12%; }
    .hero-band {
        padding: 1rem 0 1.15rem;
        background: linear-gradient(
            180deg,
            rgba(255, 253, 248, 0.22) 0%,
            rgba(251, 246, 236, 0.62) 100%
        );
    }
    .hero-band .hero-copy,
    .hero-band .hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.15rem;
        gap: 0.95rem;
    }
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-soft, .section-cream { background: var(--announce-bg); }
.section-head, .section-header {
    text-align: center;
    margin-bottom: 36px;
}
.section-header.center.gold .section-title,
.section-head .page-title,
.section-title, .page-title {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.3px;
    margin: 0;
}
.section-subtitle, .lead, .eyebrow + .lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 2px;
}
.eyebrow {
    display: none;
}
.section-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-row h2 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}
.section-row .lead { margin: 0; }

/* Collections — centered title + evenly centered cards */
.section-collections,
.section#collections {
    background: var(--announce-bg);
}
.section-collections .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-collections .section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 36px;
}
.collections-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 28px 24px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.cat-col {
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 168px;
    max-width: calc(50% - 12px);
    background: transparent;
    border: none;
    box-shadow: none;
    text-decoration: none;
}
.cat-photo {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 24px rgba(120, 100, 80, 0.10);
    background: #f2ece2 center / cover no-repeat;
    transition: transform 0.55s ease;
}
.cat-col:hover .cat-photo { transform: scale(1.03); }
.cat-label {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-align: center;
}
.section-header.center.gold {
    text-align: center;
    display: block;
}
.section-header.center.gold .section-title {
    color: var(--gold);
}
@media (min-width: 900px) {
    .cat-col { width: 180px; }
}
@media (max-width: 640px) {
    .collections-grid { gap: 20px 14px; }
    .cat-col { width: calc(50% - 8px); max-width: none; }
    .cat-label { font-size: 15px; }
}
.section-header.center.gold .section-subtitle {
    display: block;
}

/* Legacy cat-card aliases */
.cat-grid { display: contents; }
.cat-card { display: contents; }
.cat-bg { display: none; }
.cat-text { display: none; }

/* Value marquee — continuous infinite scroll */
.value-marquee, .marquee {
    background: var(--announce-bg);
    padding: 26px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
    width: 100%;
}
.vm-track, .marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    will-change: transform;
    animation: vmScroll 32s linear infinite;
}
.vm-item, .marquee-track span.vm-item {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: #4a3f38;
    white-space: nowrap;
    padding: 0 1.35rem;
    flex-shrink: 0;
}
.vm-dot {
    color: var(--gold);
    font-size: 14px;
    opacity: 0.75;
    flex-shrink: 0;
    padding: 0 0.35rem;
}
.value-marquee:hover .vm-track {
    animation-play-state: paused;
}
@keyframes vmScroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .vm-track, .marquee-track {
        animation: vmScroll 60s linear infinite !important;
    }
}

/* New Arrivals — rich cards (reference style) */
.section-new-arrivals {
    background: var(--bg);
}
.section-new-arrivals .section-head {
    text-align: center;
}
.na-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 1100px) {
    .na-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .na-grid { grid-template-columns: 1fr; }
}
.na-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(120, 100, 80, 0.10);
    border: 1px solid rgba(238, 226, 201, 0.8);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.na-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(120, 100, 80, 0.16);
}
.na-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #f2ece2;
    overflow: hidden;
}
.na-img-link, .na-media img, .na-img-fallback {
    display: block;
    width: 100%;
    height: 100%;
}
.na-media img { object-fit: cover; transition: transform 0.55s ease; }
.na-card:hover .na-media img { transform: scale(1.05); }
.na-img-fallback { background: linear-gradient(135deg, #f2ece2, #e8dfd2); }
.na-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    color: #fff;
}
.na-badge-new { background: var(--header); }
.na-badge-hot { background: #2E2A28; }
.na-wish-form {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    margin: 0;
}
.na-wish, .na-wish-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--header);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.na-wish-link {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}
.na-wish svg, .na-wish-link svg { width: 18px; height: 18px; }
.na-wish:hover, .na-wish-link:hover { color: var(--red); }
.na-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.na-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #d4d4d4;
    font-size: 14px;
    line-height: 1;
}
.na-stars .on { color: #C79A54; }
.na-stars em {
    font-style: normal;
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: 6px;
    font-weight: 500;
}
.na-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}
.na-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}
.na-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.na-size {
    margin: 0;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}
.na-size input { position: absolute; opacity: 0; pointer-events: none; width: 0; }
.na-size span {
    display: inline-block;
    padding: 5px 10px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 650;
    color: var(--text-secondary);
    background: #fff;
}
.na-size:hover span { border-color: var(--gold); color: var(--text); }
.na-size:has(input:checked) span {
    border-color: var(--purple);
    color: var(--purple);
    background: var(--pink-soft);
}
.na-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.na-price strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
}
.na-price s {
    font-size: 13px;
    color: #9e9e9e;
}
.na-off {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
}
.na-atc {
    width: 100%;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--brand-grad);
    box-shadow: 0 6px 18px rgba(157, 138, 168, 0.28);
    transition: transform 0.15s ease, filter 0.15s ease;
}
.na-atc:hover { filter: brightness(1.05); transform: translateY(-1px); }
.na-atc:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Products */
.grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1000px) {
    .grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .grid, .products-grid { grid-template-columns: 1fr; }
}
.product, .product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: none;
    padding: 0;
}
.product:hover, .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(224, 176, 90, 0.18);
}
.product-media, .product-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f2ece2;
    border-radius: 0;
    margin: 0;
    border: none;
}
.product-media img, .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product:hover .product-media img { transform: scale(1.06); }
.product-tag, .product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--header);
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
}
.product-tag.sale {
    background: var(--gold);
    left: auto;
    right: 14px;
}
.product .meta { display: none; }
.product h3, .product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
    line-height: 1.4;
    padding: 0;
}
.product > a, .product-info { padding: 14px; display: block; }
.product form { padding: 0 14px 14px; }
.price, .product-price {
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.price .was, .price-original {
    color: #9e9e9e;
    text-decoration: line-through;
    font-weight: 500;
    font-size: 13px;
}
.product .btn { width: 100%; border-radius: var(--radius-full); padding: 10px; font-size: 13px; }

/* Reels — See It. Feel It. Love It. */
.section-reels { background: var(--bg); }
.reel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 900px) {
    .reel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .reel-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}
.reel-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(120, 100, 80, 0.12);
    background: #efe8dd;
    border: none;
    padding: 0;
    display: block;
    width: 100%;
    text-align: left;
    color: inherit;
}
.reel-card .reel-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.reel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40, 32, 28, 0.30) 0%, rgba(40, 32, 28, 0) 42%);
    pointer-events: none;
}
.reel-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 40%;
    z-index: 2;
    color: #fff;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    line-height: 1.25;
}
.reel-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 8px 14px 8px 8px;
    max-width: calc(100% - 28px);
    text-decoration: none;
    color: inherit;
}
.reel-tag img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.reel-tag .rt-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: #2E2A28;
    line-height: 1.1;
}
.reel-tag .rt-price { font-size: 13px; color: #4a3f38; }
.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(220, 40, 40, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, background 0.2s;
    pointer-events: none;
}
.reel-card:hover .reel-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(230, 30, 30, 1);
}
.reel-play::after {
    content: "";
    margin-left: 4px;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff;
}
.reel-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 14, 18, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.reel-modal.open { display: flex; }
.reel-modal-dialog {
    position: relative;
    width: min(400px, 100%);
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.reel-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #2E2A28;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}
.reel-modal-frame {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    display: block;
    background: #111;
}
.reel-modal-fallback {
    padding: 28px 20px;
    text-align: center;
    color: #fff;
    background: #1c1517;
}
.reel-modal-fallback a {
    display: inline-flex;
    margin-top: 14px;
    background: var(--gold);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
}

/* Messages we hold close — horizontal chat cards */
.section-messages {
    background: var(--announce-bg);
    border-bottom: 3px solid var(--gold);
}
.section-messages .section-head {
    text-align: center;
    margin-bottom: 28px;
}
.testi-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 6px 4px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.testi-scroll::-webkit-scrollbar { height: 6px; }
.testi-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 999px;
}
.testi-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #ece7f2;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(120, 110, 140, 0.10);
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 280px;
}
.testi-card .msg {
    max-width: 88%;
    padding: 9px 13px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
    font-family: var(--sans);
}
.testi-card .msg.in {
    align-self: flex-start;
    background: #f0f0f2;
    color: #2b2b2b;
    border-bottom-left-radius: 5px;
}
.testi-card .msg.out {
    align-self: flex-end;
    background: #7B52AB;
    color: #fff;
    border-bottom-right-radius: 5px;
}
.testi-card .testi-time {
    font-size: 10px;
    color: #aaa;
    text-align: right;
    margin-top: 2px;
}

/* legacy aliases */
.chat-stage { display: contents; }
.chat-thread { display: contents; }
.chat-title { display: none; }
.chat-bubble { display: none; }
.chat-meta { display: none; }

/* Best Selling — minimal image cards + arrows */
.section-bestselling {
    background: var(--bg);
}
.section-bestselling .section-head {
    margin-bottom: 40px;
}
.bs-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.bs-scroll {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-width: 0;
}
.bs-scroll::-webkit-scrollbar { display: none; }
.bs-item {
    flex: 0 0 calc(25% - 21px);
    min-width: 200px;
    max-width: 280px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    text-align: center;
}
.bs-media {
    position: relative;
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    background: #ebe4d8;
}
.bs-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.bs-item:hover .bs-media img { transform: scale(1.04); }
.bs-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 10px;
    color: #fff;
    letter-spacing: 0.2px;
    z-index: 1;
}
.bs-badge-oos {
    background: #5c5c5c;
}
.bs-badge-sale {
    background: var(--header);
}
.bs-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin: 16px 0 0;
    line-height: 1.3;
}
.bs-nav {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #e4dcd0;
    background: #fff;
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 14px rgba(80, 70, 60, 0.08);
}
.bs-nav:hover {
    background: var(--header);
    border-color: var(--header);
    color: #fff;
}
.bs-prev {
    background: #cfc4d8;
    border-color: #cfc4d8;
    color: #3a3340;
    margin-right: 10px;
}
.bs-prev:hover {
    background: var(--header);
    border-color: var(--header);
    color: #fff;
}
.bs-next {
    margin-left: 10px;
}
@media (max-width: 900px) {
    .bs-item {
        flex: 0 0 calc(45% - 14px);
        min-width: 160px;
    }
    .bs-name { font-size: 18px; }
    .bs-nav { width: 40px; height: 40px; }
}
@media (max-width: 560px) {
    .bs-item { flex: 0 0 72%; }
    .bs-nav { display: none; }
}

/* Promo banner */
.promo-band, .promo-banner {
    max-width: 1360px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    background: #d8cfbf center / cover no-repeat;
    color: #fff;
}
.promo-band-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: left center;
    opacity: 1;
}
.promo-band-media::after, .promo-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(46, 42, 40, 0.55), rgba(46, 42, 40, 0.15) 55%, transparent);
}
.promo-inner {
    position: relative;
    z-index: 1;
    padding: 48px 56px;
}
.promo-inner h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    margin: 0 0 16px;
    max-width: 10ch;
    line-height: 1.1;
}
.promo-inner p { margin: 0 0 22px; max-width: 32ch; font-size: 15px; opacity: 0.9; }
.promo-inner .btn { border-radius: 0; padding: 14px 36px; }

/* Mama / QA grid */
.mama-grid, .qa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 700px) {
    .mama-grid, .qa-grid { grid-template-columns: repeat(2, 1fr); }
}
.mama-tile, .qa-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f2ece2;
}
.mama-tile img, .qa-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.mama-tile:hover img { transform: scale(1.06); }

/* Instagram — horizontal rounded tiles */
.section-instagram {
    background: var(--bg);
    padding-bottom: 48px;
}
.section-instagram .section-head {
    margin-bottom: 32px;
}
.ig-handle {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 6px;
    margin-top: 4px;
}
.ig-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.ig-scroll::-webkit-scrollbar { display: none; }
.ig-tile, .insta-card {
    flex: 0 0 calc((100% - 80px) / 6);
    min-width: 140px;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #ebe4d8;
    position: relative;
    scroll-snap-align: start;
    display: block;
}
.ig-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ig-tile:hover img { transform: scale(1.05); }
.ig-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.45);
    display: grid;
    place-items: center;
    z-index: 1;
}
@media (max-width: 900px) {
    .ig-tile, .insta-card {
        flex: 0 0 calc((100% - 32px) / 3);
        min-width: 120px;
    }
}
@media (max-width: 560px) {
    .ig-tile, .insta-card {
        flex: 0 0 42%;
        min-width: 130px;
    }
}

/* Trust trio */
.section-trust {
    background: var(--bg);
    padding-top: 28px;
    padding-bottom: 80px;
}
.trust-trio {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
}
@media (max-width: 760px) {
    .trust-trio { grid-template-columns: 1fr; gap: 36px; }
}
.trust-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 18px;
    text-align: center;
}
.trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-card strong {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.2;
}
.trust-card p {
    margin: 0 auto;
    max-width: 280px;
    color: var(--text-secondary);
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
}
.trust-card .icon { display: none; }

/* Chips / filters */
.cats { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.chip {
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    transition: var(--transition);
}
.chip.active, .chip:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* Forms */
.form { display: grid; gap: 14px; max-width: 480px; }
.form.wide { max-width: 720px; }
label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 6px;
}
input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font: inherit;
    font-size: 14px;
    background: #fff;
    color: var(--text);
}
textarea { border-radius: 12px; }
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 154, 84, 0.12);
}

table { width: 100%; border-collapse: collapse; }
th, td {
    text-align: left;
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    font-size: 14px;
}
th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}
.empty { padding: 2.5rem; text-align: center; color: var(--text-secondary); }
.pagination { display: flex; gap: 6px; list-style: none; padding: 0; flex-wrap: wrap; margin: 1.5rem 0 0; }
.pagination li a, .pagination li span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
}
.pagination li.active span, .pagination li a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* PDP */
.pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: start;
}
@media (max-width: 860px) { .pdp-grid { grid-template-columns: 1fr; } }
.pdp-gallery { display: grid; gap: 12px; }
.pdp-main-media { width: 100%; overflow: hidden; background: #f3efe8; }
.pdp-main-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdp-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
    gap: 10px;
}
.pdp-thumb {
    appearance: none;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    background: #f3efe8;
    aspect-ratio: 1;
}
.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdp-thumb.is-active {
    border-color: var(--gold, #c79a54);
    box-shadow: 0 0 0 1px var(--gold, #c79a54);
}
.pdp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.pdp-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    background: var(--pink-soft);
    color: var(--purple);
}
.size-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.size-pills label {
    margin: 0;
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    background: #fff;
}
.size-pills input { position: absolute; opacity: 0; pointer-events: none; width: 0; }
.size-pills label:has(input:checked) {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* Cart */
.cart-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-line {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.cart-line img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.summary-card, .checkout-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 100px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}
.summary-row.total {
    font-weight: 800;
    font-size: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* Story / content */
.story-hero {
    padding: 72px 0 40px;
    text-align: center;
    background: var(--announce-bg);
}
.story-hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    max-width: 16ch;
    margin: 8px auto;
    line-height: 1.12;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}
.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
}
.stat span { font-size: 12px; color: var(--text-secondary); font-weight: 600; }
.values-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}
.value-card h3 { margin: 8px 0; font-size: 16px; font-family: var(--display); }
.value-card p { margin: 0; color: var(--text-secondary); font-size: 13px; }

.timeline { display: grid; }
.timeline-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 14px 0;
    position: relative;
}
.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timeline-step.active .timeline-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.timeline-step::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -14px;
    width: 2px;
    background: var(--border);
}
.timeline-step:last-child::before { display: none; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.faq details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; font-size: 14px; }
.faq details p { margin: 10px 0 0; color: var(--text-secondary); font-size: 13px; }

/* Footer */
.site-footer {
    margin-top: 0;
    background: var(--purple);
    color: #fff;
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 12px;
}
.footer-blurb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    max-width: 34ch;
}
.footer-col h4 {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 14px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a, .footer-col p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-col a:hover { color: var(--pink-light); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); margin-left: 12px; }
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.wa-float svg { width: 26px; height: 26px; }

/* ========== Shop All (PLP) ========== */
.shop-page {
    background-color: var(--bg);
    background-image: radial-gradient(rgba(180, 160, 130, 0.22) 1.1px, transparent 1.1px);
    background-size: 18px 18px;
    padding: 36px 0 72px;
    min-height: 60vh;
}
.shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
.shop-layout > .shop-main { grid-column: 2; grid-row: 1; }
.shop-layout > .shop-filters { grid-column: 1; grid-row: 1; }
.shop-layout > .shop-scrim,
.shop-layout > .shop-sort-sheet { grid-column: 1 / -1; }

.shop-filters {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(120, 100, 80, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.55);
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
    overflow: hidden;
}
.shop-filters-head {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(240, 232, 218, 0.7);
    flex-shrink: 0;
}
.shop-filters-head h2 {
    margin: 0;
    font-family: var(--serif, Georgia, serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}
.shop-filter-form {
    padding: 22px 20px 18px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.shop-filters-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-top: 1px solid rgba(240, 232, 218, 0.7);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}
.shop-clear {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.shop-apply {
    appearance: none;
    border: none;
    background: var(--text);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 10px;
    cursor: pointer;
}
.shop-panel-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.8);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.shop-scrim {
    display: none;
}
.shop-sort-sheet {
    display: none;
}
.shop-actions {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}
.shop-chip {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
}
.shop-chip-dark {
    background: var(--text);
    color: #fff;
    border: 1.5px solid var(--text);
}
.shop-chip-outline {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text);
    border: 1.5px solid rgba(0,0,0,0.85);
}
.shop-chip-outline strong {
    font-weight: 700;
}
.shop-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
}
html.shop-panel-open,
body.shop-panel-open {
    overflow: hidden;
}
.filter-block {
    padding-bottom: 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f0e8da;
}
.filter-block-last {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.filter-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--serif, Georgia, serif);
    font-style: italic;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 14px;
}
.filter-ico { font-size: 15px; line-height: 1; }
.filter-checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.filter-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.filter-check .box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid #d8cdb8;
    background: #fff;
    flex-shrink: 0;
    position: relative;
}
.filter-check input:checked + .box {
    background: var(--gold);
    border-color: var(--gold);
}
.filter-check input:checked + .box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.filter-check em {
    font-style: normal;
    font-weight: 500;
}
.filter-check small {
    color: var(--text-secondary);
    font-weight: 500;
}

.price-range { padding: 4px 2px 0; }
.price-track {
    position: relative;
    height: 6px;
    background: #efe6d6;
    border-radius: 999px;
    margin: 18px 0 12px;
}
.price-fill {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 999px;
    z-index: 1;
}
.price-track input[type="range"] {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    height: 6px;
    border: none;
    z-index: 2;
}
.price-track input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 3;
}
.price-track input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    pointer-events: auto;
}
.price-track input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}
.price-track input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
}
.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.filter-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.size-pill {
    margin: 0;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}
.size-pill input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.size-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1.5px solid #e5dccb;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}
.size-pill input:checked + span,
.size-pill.active span {
    border-color: var(--gold);
    background: #f8efd8;
    color: var(--text);
}

.filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
}
.filter-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-ui {
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: #ddd4c4;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.toggle-ui::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}
.filter-toggle input:checked + .toggle-ui {
    background: var(--gold);
}
.filter-toggle input:checked + .toggle-ui::after {
    transform: translateX(20px);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.shop-count {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}
.shop-main {
    min-width: 0;
    width: 100%;
}
.shop-sort-options {
    list-style: none;
    margin: 0;
    padding: 8px 0 20px;
}
.shop-sort-option {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 14px 20px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    font-family: var(--serif, Georgia, serif);
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.shop-sort-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.shop-sort-option.is-active,
.shop-sort-option:has(input:checked) {
    font-weight: 700;
}
.shop-sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    border: 1.5px solid #e8dfd0;
    border-radius: 999px;
    padding: 6px 8px 6px 16px;
    box-shadow: 0 4px 14px rgba(120, 100, 80, 0.06);
}
.shop-sort select {
    width: auto;
    min-width: 140px;
    border: none;
    background: transparent;
    padding: 6px 28px 6px 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.shop-empty {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
}
.shop-pager {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1100px) {
    .shop-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 20px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .shop-layout {
        display: block;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
    .shop-toolbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        margin-bottom: 18px;
    }
    .shop-actions { display: flex; }
    .shop-desktop-sort { display: none !important; }
    .shop-count { order: 2; width: 100%; text-align: center; }
    .shop-actions { order: 1; }

    .shop-scrim {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(30, 24, 20, 0.38);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }
    .shop-scrim.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .shop-filters {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(92vw, 380px);
        max-height: none;
        z-index: 95;
        border-radius: 0 18px 18px 0;
        transform: translateX(-105%);
        transition: transform 0.3s ease;
        box-shadow: 8px 0 40px rgba(0,0,0,0.18);
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(22px) saturate(1.25);
        -webkit-backdrop-filter: blur(22px) saturate(1.25);
    }
    .shop-filters.is-open { transform: translateX(0); }
    .shop-filters-head { display: flex; }

    .shop-sort-sheet {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 95;
        max-height: min(70vh, 480px);
        border-radius: 22px 22px 0 0;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(22px) saturate(1.25);
        -webkit-backdrop-filter: blur(22px) saturate(1.25);
        border: 1px solid rgba(255,255,255,0.6);
        box-shadow: 0 -12px 40px rgba(0,0,0,0.16);
        transform: translateY(110%);
        transition: transform 0.3s ease;
        overflow: hidden;
    }
    .shop-sort-sheet.is-open { transform: translateY(0); }
    .shop-sort-sheet-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 16px 18px 10px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        flex-shrink: 0;
    }
    .shop-sort-sheet-head h2 {
        margin: 0;
        font-family: var(--serif, Georgia, serif);
        font-style: italic;
        font-size: 22px;
        font-weight: 600;
    }
    .shop-sort-sheet-form {
        overflow-y: auto;
        flex: 1;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        justify-items: center;
    }
    .shop-grid > * { width: 100%; max-width: 100%; }
}
@media (max-width: 520px) {
    .shop-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
    .hide-sm { display: none !important; }
    .section-title, .page-title, .section-row h2 { font-size: 32px; }
    .vm-item, .marquee-track span { font-size: 22px; }
    .header-inner { padding: 12px 16px; gap: 12px; min-height: 72px; }
    .brand img, .logo-img { height: 46px; padding: 4px 10px; }
    .brand-lockup { display: none; }
    .brand-word { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    /* keep marquee moving slowly; other motion can rest */
}
