/* =====================================================
   PRIVI · Luxury Beauty & Lifestyle Design System
   ===================================================== */

:root {
    /* Primary palette */
    --beige: #F5E6DA;
    --gold: #C8A96B;
    --black: #111111;
    --warm-white: #FFFDF9;
    --rose-gold: #B76E79;

    /* Secondary palette */
    --pink-nude: #E8CFC4;
    --premium-gray: #2B2B2B;
    --champagne: #D6B98C;

    /* Functional tokens */
    --ink: #111111;
    --ink-soft: #2B2B2B;
    --muted: #6B6259;
    --line: rgba(17, 17, 17, 0.08);
    --line-strong: rgba(17, 17, 17, 0.16);
    --surface: #FFFDF9;
    --surface-2: #FAF3EA;
    --surface-3: #F5E6DA;
    --backdrop: rgba(255, 253, 249, 0.72);
    --shadow-sm: 0 2px 12px rgba(17, 17, 17, 0.04);
    --shadow-md: 0 12px 40px rgba(17, 17, 17, 0.08);
    --shadow-lg: 0 30px 80px rgba(17, 17, 17, 0.12);
    --shadow-gold: 0 20px 50px rgba(200, 169, 107, 0.25);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 44px;

    --ease-luxe: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

    --header-h: 84px;
}

/* ---------- base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html, body {
    font-family: "Poppins", "Inter", ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11", "kern";
}

body {
    background:
        radial-gradient(1200px 600px at 90% -10%, rgba(200, 169, 107, 0.10), transparent 60%),
        radial-gradient(900px 500px at -10% 10%, rgba(183, 110, 121, 0.08), transparent 55%),
        linear-gradient(180deg, var(--warm-white) 0%, #FBF5EC 100%);
    min-height: 100vh;
}

::selection { background: rgba(200, 169, 107, 0.28); color: var(--ink); }

a { color: inherit; text-decoration: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(17, 17, 17, 0.12); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(17, 17, 17, 0.24); }

/* ---------- typography ---------- */
.font-display { font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif; letter-spacing: -0.01em; }
.font-serif-luxe { font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif; letter-spacing: 0.005em; }
.font-body { font-family: "Poppins", "Inter", ui-sans-serif, system-ui, sans-serif; }

.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
}

.headline {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
}

.text-balance { text-wrap: balance; }

/* ---------- brand logo ---------- */
.brand-logo-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    overflow: hidden;
    background: #3a0010;
    box-shadow: inset 0 0 0 1px rgba(200, 169, 107, 0.22);
}

.brand-logo-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    object-position: center;
}

/* ---------- containers & layout ---------- */
.container-luxe {
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container-luxe { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container-luxe { padding-inline: 3rem; } }

.section { padding-block: 4rem; }
.section-lg { padding-block: 6rem; }
@media (min-width: 1024px) {
    .section { padding-block: 6rem; }
    .section-lg { padding-block: 8rem; }
}

/* ---------- glass / surfaces ---------- */
.glass {
    background: rgba(255, 253, 249, 0.62);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.glass-dark {
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
}

.surface-warm {
    background: linear-gradient(135deg, #FFFDF9 0%, #FAF3EA 100%);
}

.surface-noir {
    background: linear-gradient(135deg, #111111 0%, #2B2B2B 100%);
    color: #FBF5EC;
}

.surface-blush {
    background: linear-gradient(135deg, #F5E6DA 0%, #E8CFC4 60%, #D6B98C 100%);
}

.gradient-luxe {
    background: linear-gradient(120deg, #F5E6DA 0%, #E8CFC4 38%, #B76E79 100%);
}

.gradient-noir {
    background: linear-gradient(180deg, #111111 0%, #2B2B2B 100%);
}

.gradient-text-gold {
    background: linear-gradient(120deg, #C8A96B 0%, #D6B98C 50%, #B76E79 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    height: 48px;
    padding: 0 1.5rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .35s var(--ease-luxe), box-shadow .35s var(--ease-luxe), background .3s, color .3s, border-color .3s;
    user-select: none;
    position: relative;
    overflow: hidden;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-sm { height: 40px; padding: 0 1.1rem; font-size: 11px; }
.btn-lg { height: 56px; padding: 0 1.9rem; font-size: 13px; }

.btn-primary {
    background: var(--ink);
    color: var(--warm-white);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background: var(--premium-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: linear-gradient(120deg, var(--gold) 0%, var(--champagne) 50%, var(--gold) 100%);
    background-size: 200% 100%;
    color: var(--ink);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--ink); }

.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.9);
}
.btn-light:hover { background: white; }

/* shine sweep on hover */
.btn::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease-luxe);
    pointer-events: none;
}
.btn:hover::after { left: 130%; }

/* ---------- cards ---------- */
.card {
    background: rgba(255, 253, 249, 0.86);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .5s var(--ease-luxe), box-shadow .5s var(--ease-luxe), border-color .3s;
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 107, 0.35);
}

.product-card { position: relative; overflow: hidden; }
.product-card .product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #F5E6DA 0%, #FAF3EA 100%);
}
.product-card .product-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-luxe), opacity .5s var(--ease-luxe);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-card .product-media .img-secondary {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity .6s var(--ease-luxe);
}
.product-card:hover .product-media .img-secondary { opacity: 1; }

.product-card .quick-actions {
    position: absolute;
    right: 14px; top: 14px;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .45s var(--ease-luxe), transform .45s var(--ease-luxe);
}
.product-card:hover .quick-actions { opacity: 1; transform: translateX(0); }

.icon-btn {
    width: 40px; height: 40px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 6px 18px rgba(17, 17, 17, 0.08);
    color: var(--ink);
    transition: transform .3s var(--ease-luxe), background .3s, color .3s;
}
.icon-btn:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.icon-btn.is-active { background: var(--rose-gold); color: white; border-color: var(--rose-gold); }

.product-card .quick-add {
    position: absolute;
    left: 14px; right: 14px; bottom: 14px;
    transform: translateY(140%);
    opacity: 0;
    transition: transform .55s var(--ease-luxe), opacity .55s var(--ease-luxe);
}
.product-card:hover .quick-add { transform: translateY(0); opacity: 1; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.badge-gold { background: rgba(200, 169, 107, 0.15); color: var(--gold); border: 1px solid rgba(200, 169, 107, 0.35); }
.badge-rose { background: rgba(183, 110, 121, 0.12); color: var(--rose-gold); border: 1px solid rgba(183, 110, 121, 0.3); }
.badge-noir { background: var(--ink); color: white; }
.badge-light { background: rgba(255, 253, 249, 0.85); color: var(--ink); border: 1px solid var(--line); }

.divider-fade {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.5), transparent);
}

/* ---------- form ---------- */
.field {
    width: 100%;
    height: 52px;
    padding: 0 1.1rem;
    font-size: 14px;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.85);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    outline: none;
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.field::placeholder { color: rgba(17, 17, 17, 0.4); }
.field:hover { border-color: rgba(200, 169, 107, 0.55); }
.field:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.15); background: white; }
textarea.field { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; }
select.field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}
.field-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
}

.checkbox-luxe {
    width: 18px; height: 18px;
    border: 1.5px solid var(--line-strong);
    border-radius: 5px;
    accent-color: var(--ink);
}

/* ---------- navbar ---------- */
.nav-shell {
    position: sticky;
    top: 0;
    z-index: 60;
    transition: background .4s var(--ease-luxe), border-color .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav-shell::before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(255, 253, 249, 0);
    transition: background .4s var(--ease-luxe);
    pointer-events: none;
}
.nav-shell.is-scrolled {
    background: rgba(255, 253, 249, 0.78);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.nav-link {
    position: relative;
    padding: 8px 2px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    transition: color .3s;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease-luxe);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.mega-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 12px);
    width: min(1080px, calc(100vw - 48px));
    background: rgba(255, 253, 249, 0.96);
    backdrop-filter: saturate(180%) blur(22px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease-luxe), transform .35s var(--ease-luxe);
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 13px;
    color: var(--ink);
    transition: background .25s, color .25s;
}
.mega-link:hover { background: var(--surface-2); color: var(--gold); }

.search-pill {
    display: flex; align-items: center; gap: 10px;
    height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.7);
    border: 1px solid var(--line);
    transition: width .5s var(--ease-luxe), background .25s, border-color .25s, box-shadow .3s;
    width: 280px;
}
.search-pill:focus-within {
    width: 420px;
    background: white;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.12);
}
.search-pill input {
    flex: 1; border: none; outline: none; background: transparent;
    font-size: 13px; color: var(--ink);
}
.search-pill input::placeholder { color: rgba(17,17,17,0.4); }

.cart-bubble {
    position: absolute;
    top: -6px; right: -6px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    background: var(--rose-gold);
    color: white;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(183,110,121,0.4);
    animation: bubblePop 1.2s var(--ease-luxe);
}

/* mobile drawer */
.drawer {
    position: fixed; inset: 0;
    z-index: 80;
    pointer-events: none;
}
.drawer .drawer-mask {
    position: absolute; inset: 0;
    background: rgba(17,17,17,0.4);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .35s var(--ease-luxe);
}
.drawer .drawer-panel {
    position: absolute;
    top: 0; right: 0; height: 100%; width: min(420px, 90vw);
    background: var(--warm-white);
    transform: translateX(100%);
    transition: transform .5s var(--ease-luxe);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer-mask { opacity: 1; }
.drawer.is-open .drawer-panel { transform: translateX(0); }

/* ---------- mobile bottom nav ---------- */
.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: rgba(17,17,17,0.86);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    box-shadow: 0 20px 60px rgba(17,17,17,0.3);
    color: white;
}
.bottom-nav a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px; height: 52px;
    border-radius: 999px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color .25s, background .25s, transform .25s;
    gap: 2px;
}
.bottom-nav a:hover, .bottom-nav a.is-active {
    color: var(--ink);
    background: var(--gold);
}
@media (min-width: 1024px) { .bottom-nav { display: none; } }

/* ---------- hero ---------- */
.hero-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}
.hero-glow {
    position: absolute;
    pointer-events: none;
    filter: blur(60px);
    opacity: .55;
    border-radius: 50%;
}
.hero-glow.g1 { width: 380px; height: 380px; background: var(--gold); top: -120px; right: -100px; }
.hero-glow.g2 { width: 360px; height: 360px; background: var(--rose-gold); bottom: -140px; left: -120px; opacity: .35; }

.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particles span {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(200,169,107,0.95) 0%, rgba(200,169,107,0) 70%);
    animation: float 12s linear infinite;
}

/* hero slides */
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease-luxe);
}
.hero-slide.is-active { opacity: 1; }
.hero-dots { display: inline-flex; gap: 8px; }
.hero-dots button {
    width: 28px; height: 4px;
    border-radius: 999px;
    background: rgba(17,17,17,0.18);
    transition: background .3s, width .3s;
}
.hero-dots button.is-active { background: var(--gold); width: 44px; }

/* ---------- carousels ---------- */
.h-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll > * { scroll-snap-align: start; flex: 0 0 auto; }

.carousel-arrow {
    width: 44px; height: 44px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: white;
    border: 1px solid var(--line);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    transition: background .3s, color .3s, transform .3s;
}
.carousel-arrow:hover { background: var(--ink); color: white; transform: translateY(-1px); }

/* ---------- skeleton & shimmer ---------- */
.skeleton {
    background:
        linear-gradient(90deg, rgba(17,17,17,0.04) 0%, rgba(17,17,17,0.10) 50%, rgba(17,17,17,0.04) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.4s ease-in-out infinite;
    border-radius: 14px;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease-luxe), transform .9s var(--ease-luxe);
    will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- table luxe ---------- */
.table-luxe {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}
.table-luxe thead th {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 16px 20px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
}
.table-luxe tbody td { padding: 16px 20px; border-bottom: 1px solid var(--line); }
.table-luxe tbody tr:hover td { background: rgba(245,230,218,0.35); }

/* ---------- chip ---------- */
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    height: 36px; padding: 0 14px;
    border-radius: 999px;
    font-size: 12px; letter-spacing: 0.04em;
    background: rgba(255,253,249,0.85);
    border: 1px solid var(--line);
    color: var(--ink);
    transition: background .25s, border-color .25s, color .25s, transform .25s;
    cursor: pointer;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.is-active { background: var(--ink); color: white; border-color: var(--ink); }

/* ---------- tabs ---------- */
.tab {
    position: relative;
    padding: 10px 0;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .3s;
}
.tab::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -1px;
    height: 2px; background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease-luxe);
}
.tab.is-active { color: var(--ink); }
.tab.is-active::after { transform: scaleX(1); }

/* ---------- gallery ---------- */
.gallery-main {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2);
}
.gallery-main img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s var(--ease-luxe);
}
.gallery-main:hover img { transform: scale(1.04); }

.thumb {
    width: 70px; height: 70px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: border-color .25s, transform .25s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { transform: translateY(-2px); }
.thumb.is-active { border-color: var(--gold); }

/* ---------- progress ---------- */
.steps {
    display: flex; align-items: center; gap: 14px;
}
.steps .step {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.steps .step .dot {
    width: 28px; height: 28px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600;
    background: white;
    transition: background .3s, color .3s, border-color .3s;
}
.steps .step.is-active { color: var(--ink); }
.steps .step.is-active .dot { background: var(--ink); color: white; border-color: var(--ink); }
.steps .step.is-done .dot { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ---------- toast / flash ---------- */
.flash {
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 18px;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
    animation: slideUp .5s var(--ease-luxe);
}
.flash-success { border-color: rgba(200, 169, 107, 0.45); background: linear-gradient(120deg, rgba(245,230,218,0.85), rgba(255,253,249,0.85)); }
.flash-error { border-color: rgba(183, 110, 121, 0.45); }

/* ---------- animations ---------- */
@keyframes shimmer { 0% { background-position: -150% 0; } 100% { background-position: 150% 0; } }
@keyframes float { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-120vh) translateX(40px); opacity: 0; } }
@keyframes slideUp { 0% { transform: translateY(12px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes bubblePop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.15); opacity: 1; } 100% { transform: scale(1); } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,107,0.45); } 50% { box-shadow: 0 0 28px 4px rgba(200,169,107,0.35); } }
@keyframes goldShift { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.animate-glow { animation: glow 3.6s ease-in-out infinite; }
.animate-spin-slow { animation: spinSlow 22s linear infinite; }
.animate-gold-shift {
    background-size: 200% 200%;
    animation: goldShift 6s ease-in-out infinite alternate;
}

/* ---------- ratio media ---------- */
.aspect-portrait { aspect-ratio: 4 / 5; }
.aspect-square { aspect-ratio: 1; }
.aspect-cinema { aspect-ratio: 21 / 9; }
.aspect-wide   { aspect-ratio: 16 / 9; }

/* ---------- utility ---------- */
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

.text-muted { color: var(--muted); }
.text-gold { color: var(--gold); }
.text-rose { color: var(--rose-gold); }

.line-soft { border-color: var(--line); }

.has-spotlight {
    position: relative;
    overflow: hidden;
}
.has-spotlight::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 90deg, transparent 0deg, rgba(200,169,107,0.3) 60deg, transparent 120deg);
    animation: spinSlow 16s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity .5s;
}
.has-spotlight:hover::before { opacity: 1; }
.has-spotlight > * { position: relative; z-index: 1; }

/* ---------- print friendly ---------- */
@media print {
    .nav-shell, .bottom-nav, footer { display: none !important; }
    body { background: white; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}
