:root {
    --bg-color: #0d0c0a;
    --text-color: #f5f0e6;
    --accent: #d8812c;
    --accent-hover: #b56b23;
    --accent-light: rgba(216, 129, 44, 0.2);
    --accent-glow: rgba(216, 129, 44, 0.4);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --blur: blur(12px);

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Grain / Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}


/* ============================
   AMBIENT BACKGROUNDS
   ============================ */
/* Dynamic Smoke */
.smoke-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(20, 18, 16, 0.8), transparent 70%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    opacity: 0.4;
}

/* Parallax Wood Grain Layer */
.parallax-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

/* ============================
   PAGE LOADER
   ============================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1);
}

.page-loader.loaded {
    transform: translateY(-100%);
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ============================
   PARTICLE CANVAS
   ============================ */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-serif);
    font-weight: 400;
}

/* ============================
   ADVANCED INTERACTIVE EFFECTS
   ============================ */

/* Burning In Text */
.burn-text {
    background: linear-gradient(90deg, var(--text-color) 0%, var(--accent) 50%, #222 55%, #0d0c0a 100%);
    background-size: 300% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

.burn-text.visible {
    animation: burnIn 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 1;
}

@keyframes burnIn {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0% 0;
    }
}

.heat-hover {
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.heat-hover:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(216, 129, 44, 0.4);
}

/* ============================
   SCROLL REVEAL SYSTEM
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ============================
   NAVIGATION
   ============================ */
.site-top-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: relative;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    background: rgba(13, 12, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Spring sale ticker under nav — dismiss hides for 7 days (main.js) */
.site-promo-strip {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 3rem;
    padding: 0.45rem calc(5% + 2.75rem) 0.45rem 5%;
    background: linear-gradient(105deg, #0d3d2e 0%, #1a5c4a 25%, #2a8f72 50%, #1e6b55 75%, #0f2f28 100%);
    background-size: 200% 100%;
    animation: site-promo-strip-bg 14s ease-in-out infinite;
    border-bottom: 2px solid rgba(255, 214, 120, 0.55);
    box-shadow: 0 0 24px rgba(46, 196, 160, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@keyframes site-promo-strip-bg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.site-promo-strip--spring {
    overflow: hidden;
}

.site-promo-strip--hidden {
    display: none !important;
}

.site-promo-strip__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-promo-strip__ticker-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.site-promo-strip__ticker-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    padding: 0.15rem 0;
}

.site-promo-strip__ticker-link:hover .site-promo-strip__ticker-seg {
    filter: brightness(1.08);
}

.site-promo-strip__ticker {
    overflow: hidden;
    width: 100%;
}

/* Two equal-width loops (each = full ticker width) so text fills the whole banner; scroll moves one loop width */
.site-promo-strip__ticker-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 200%;
    animation: site-promo-ticker-scroll 22s linear infinite;
    will-change: transform;
}

.site-promo-strip__loop {
    box-sizing: border-box;
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 0.35rem 0.5rem;
    padding: 0 0.25rem;
}

.site-promo-strip__ticker-seg {
    flex: 0 1 auto;
    white-space: nowrap;
    font-family: var(--font-sans);
    font-size: clamp(0.68rem, 1.85vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fffef8;
    text-shadow:
        0 0 12px rgba(255, 230, 140, 0.9),
        0 0 28px rgba(80, 255, 200, 0.55),
        0 2px 0 rgba(0, 40, 30, 0.45);
}

.site-promo-strip__ticker-dot {
    flex-shrink: 0;
    opacity: 0.5;
    font-weight: 300;
    font-size: 0.9em;
    padding: 0 0.1rem;
}

/* Mobile: one phrase per loop — four space-evenly repeats overflow narrow screens and overlap/stack */
@media (max-width: 640px) {
    .site-promo-strip {
        min-height: 2.35rem;
        padding: 0.32rem calc(4% + 2.4rem) 0.32rem 3.5%;
        align-items: center;
    }

    .site-promo-strip__ticker-track {
        width: 200%;
        align-items: center;
        flex-wrap: nowrap;
    }

    .site-promo-strip__loop {
        flex-wrap: nowrap !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0 0.35rem;
        overflow: hidden;
        min-height: 1.35em;
    }

    /* Duplicate markup stays for desktop; mobile shows first segment only per loop (marquee still seamless) */
    .site-promo-strip__loop > span:not(:first-child) {
        display: none;
    }

    .site-promo-strip__ticker-seg {
        flex: 0 0 auto;
        font-size: clamp(0.58rem, 2.9vw, 0.82rem);
        letter-spacing: 0.1em;
        line-height: 1.25;
    }

    .site-promo-strip__ticker-dot {
        font-size: 0.75em;
        opacity: 0.45;
    }

    .site-promo-strip__dismiss {
        right: 0.35rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
    }
}

@keyframes site-promo-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.site-promo-strip__dismiss {
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.site-promo-strip__dismiss:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .site-promo-strip {
        animation: none;
        background: linear-gradient(105deg, #0d3d2e, #2a8f72);
    }

    .site-promo-strip__ticker-track {
        animation: none;
        width: 100%;
    }

    .site-promo-strip__loop:nth-child(2) {
        display: none;
    }

    .site-promo-strip__loop:first-child {
        flex: 0 0 100%;
        width: 100%;
    }
}

.navbar.scrolled {
    background: rgba(13, 12, 10, 0.95);
    border-bottom: 1px solid rgba(216, 129, 44, 0.3);
    padding: 0.8rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-color);
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 0;
}

.nav-links a {
    color: rgba(245, 240, 230, 0.7);
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 60%;
}

.cart-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-btn:hover {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--accent-light);
}

/* Hamburger — hidden on desktop; mobile styles in @media (max-width: 768px) */
.hamburger {
    display: none;
    box-sizing: border-box;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    font: inherit;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.hamburger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.hamburger__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
    flex-shrink: 0;
}

.hamburger__icon span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--text-color);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.25s ease;
    transform-origin: center;
}

.hamburger__label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.92);
    line-height: 1;
    user-select: none;
}

.hamburger.active .hamburger__icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger__icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (prefers-reduced-motion: reduce) {
    .hamburger__icon span {
        transition: none;
    }
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    height: 100vh;
    /* Fallback for older browsers */
    height: 100dvh;
    /* Modern fix for mobile address bar UI */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.9) 0%, rgba(15, 12, 10, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(20deg);
    animation: wordReveal 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.hero-title span {
    color: var(--accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(245, 240, 230, 0.7);
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 1s 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-actions .btn {
    text-decoration: none;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 56px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================
   EMAIL CAPTURE POPUP (homepage)
   ============================ */
.email-capture-popup {
    position: fixed;
    inset: 0;
    /* Above body::before grain (9999) so the welcome offer is visible */
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.email-capture-popup.email-capture-popup--open {
    opacity: 1;
    pointer-events: auto;
}

.email-capture-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 3, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.email-capture-popup__card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(165deg, rgba(22, 18, 14, 0.98) 0%, rgba(13, 11, 9, 0.99) 100%);
    border: 1px solid rgba(216, 129, 44, 0.28);
    border-radius: 14px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 40px rgba(216, 129, 44, 0.08);
}

.email-capture-popup__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(245, 240, 230, 0.75);
    font-size: 1.35rem;
    line-height: 1;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.email-capture-popup__close:hover {
    background: rgba(216, 129, 44, 0.2);
    color: var(--text-color);
}

.email-capture-popup__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.email-capture-popup__title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.email-capture-popup__lede {
    font-size: 0.95rem;
    color: rgba(245, 240, 230, 0.72);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.email-capture-popup__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.email-capture-popup__input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 1rem;
}

.email-capture-popup__input::placeholder {
    color: rgba(245, 240, 230, 0.35);
}

.email-capture-popup__input:focus {
    outline: none;
    border-color: rgba(216, 129, 44, 0.55);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.email-capture-popup__submit {
    padding: 0.9rem 1.25rem;
    border: none;
    border-radius: 8px;
    background: var(--accent);
    color: var(--bg-color);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.email-capture-popup__submit:hover {
    background: var(--accent-hover);
}

.email-capture-popup__submit:active {
    transform: scale(0.98);
}

.email-capture-popup__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.email-capture-popup__fine {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(245, 240, 230, 0.4);
}

.email-capture-popup__status {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    min-height: 1.25em;
}

.email-capture-popup__success .email-capture-popup__title {
    margin-bottom: 0.5rem;
}

.email-capture-popup__code-wrap {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    margin: 1.25rem 0 1.5rem;
}

.email-capture-popup__code {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px dashed rgba(216, 129, 44, 0.45);
    border-radius: 8px;
    font-family: ui-monospace, 'Cascadia Code', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8fffea;
    text-shadow: 0 0 20px rgba(143, 255, 234, 0.25);
}

.email-capture-popup__copy {
    padding: 0 1rem;
    border: 1px solid rgba(216, 129, 44, 0.45);
    border-radius: 8px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.email-capture-popup__copy:hover {
    background: rgba(216, 129, 44, 0.15);
}

.email-capture-popup__shop-cta {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 0.95rem 1.25rem;
    border-radius: 8px;
    font-size: 0.78rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: 0 4px 20px var(--accent-light);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: var(--blur);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-color);
    transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInScroll 1s 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.4);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--accent);
    border-radius: 3px;
    animation: scroll 2s infinite ease-in-out;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 18px);
        opacity: 0;
    }
}

/* Mobile swipe indicator */
.swipe-indicator {
    display: none;
    /* hidden on desktop */
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.swipe-finger {
    width: 28px;
    height: 28px;
    position: relative;
    animation: swipeUpDown 1.6s ease-in-out infinite;
}

/* Draw a downward chevron (∨) — border-top+right rotated 135deg */
.swipe-finger::before,
.swipe-finger::after {
    content: '';
    position: absolute;
    left: 50%;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    width: 10px;
    height: 10px;
    transform: translateX(-50%) rotate(135deg);
}

/* Top chevron is faded (trailing) */
.swipe-finger::before {
    top: 2px;
    opacity: 0.3;
}

/* Bottom chevron is bright (leading — "go this way") */
.swipe-finger::after {
    top: 12px;
    opacity: 1;
}

@keyframes swipeUpDown {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScroll {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================
   SECTION STYLES
   ============================ */
.section {
    padding: 8rem 5%;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 0.8rem;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.section-title:hover::after {
    width: 100%;
}

.text-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--accent-light),
            rgba(216, 129, 44, 0.3),
            var(--accent-light),
            transparent);
    border: none;
    margin: 0;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: rgba(245, 240, 230, 0.8);
    font-size: 1.15rem;
    line-height: 1.85;
}

/* ---- About the Artist ---- */
.artist-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.artist-photo-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(216, 129, 44, 0.25), 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(216, 129, 44, 0.3);
}

.artist-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: saturate(1.1) contrast(1.05);
    transition: transform 0.6s ease;
}

.artist-photo-wrap:hover .artist-photo {
    transform: scale(1.03);
}

.artist-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.artist-bio p {
    margin-bottom: 1.4rem;
    font-weight: 300;
    color: rgba(245, 240, 230, 0.82);
    font-size: 1.05rem;
    line-height: 1.9;
}


.glow-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 4rem 2rem;
    position: relative;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
}

.glow-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--accent-light), transparent 30%);
    animation: rotate 8s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.glow-box-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glow-box-inner h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--accent);
}

/* ============================
   PROCESS / TIMELINE SECTION
   ============================ */
.process {
    background: rgba(0, 0, 0, 0.2);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            var(--accent-light),
            var(--accent),
            var(--accent-light),
            transparent);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.timeline-content {
    width: 45%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-content:hover {
    border-color: var(--accent-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--bg-color);
    border: 2px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(216, 129, 44, 0.5);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--accent);
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 25px rgba(216, 129, 44, 0.8);
}

.timeline-marker::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.timeline-item:hover .timeline-marker::after {
    background: var(--bg-color);
}

@keyframes markerPulse {

    0%,
    100% {
        box-shadow: 0 0 10px var(--accent-light);
    }

    50% {
        box-shadow: 0 0 25px var(--accent-glow);
    }
}

.timeline-item:hover .timeline-marker {
    background: var(--accent);
    box-shadow: 0 0 35px var(--accent-glow);
    transform: translateX(-50%) scale(1.15) rotate(15deg);
    animation: none;
}

.timeline-step {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.timeline-content p {
    color: rgba(245, 240, 230, 0.7);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================
   GALLERY
   ============================ */
.gallery-wrapper {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

/* Desktop Grid Layout */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    filter: saturate(0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Scroll Layout */
@media (max-width: 768px) {
    .masonry-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1.2rem;
        padding-bottom: 2rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Edge fade effect */
        mask-image: linear-gradient(to right, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent);
    }

    .masonry-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 220px;
    }

    .scroll-instruction {
        display: block;
    }
}

.scroll-instruction {
    display: none;
    text-align: center;
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: -0.5rem;
    font-weight: 300;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    filter: saturate(1.1);
    z-index: 5;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(13, 12, 10, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '⤢';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(13, 12, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   LIGHTBOX
   ============================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ============================
   SHOP / PRODUCTS
   ============================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.shop-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.search-bar-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

#product-search {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-color);
    font-family: var(--font-sans);
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#product-search:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-light);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(216, 129, 44, 0.6);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--bg-color);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(216, 129, 44, 0.4);
}

.shop-load-more-row {
    margin: 2rem auto 0;
    max-width: 36rem;
    text-align: center;
}

.shop-all-pager-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.shop-all-pager-row .shop-load-more-hint {
    flex: 1 1 14rem;
    margin: 0;
    min-width: 0;
    text-align: center;
}

.shop-all-pager-btn {
    min-width: 3rem;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    line-height: 1;
}

.shop-all-pager-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.shop-load-more-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 1rem;
    line-height: 1.45;
}

.catalog-error-banner {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 80, 60, 0.5);
    background: rgba(40, 20, 18, 0.85);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.catalog-error-text {
    margin: 0;
    color: #f0d6d0;
    font-size: 0.95rem;
    line-height: 1.45;
    flex: 1 1 220px;
}

.catalog-retry-btn {
    flex-shrink: 0;
}

.product-variant-row {
    margin-bottom: 0.75rem;
}

.product-variant-row .variant-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a09d98;
    margin-bottom: 0.35rem;
}

.variant-select {
    width: 100%;
    max-width: 100%;
    padding: 0.45rem 0.65rem;
    font-size: 0.88rem;
    font-family: var(--font-sans);
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}

.variant-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(216, 129, 44, 0.25);
}

.product-modal .product-variant-row {
    margin-bottom: 1rem;
}

/* Bluetooth LED + Stash Lantern — promotional “was” → sale price visual */
.product-card--bt-led-promo,
.product-card--stash-promo {
    border-color: rgba(46, 196, 182, 0.35);
    box-shadow: 0 0 0 1px rgba(46, 196, 182, 0.12), 0 8px 28px rgba(0, 180, 160, 0.07);
}

.bt-led-img-ribbon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.55rem 0.75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 18, 22, 0.88) 35%, rgba(4, 28, 32, 0.95) 100%);
    z-index: 3;
    pointer-events: none;
}

.bt-led-ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bt-led-ribbon-was {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.bt-led-ribbon-arrow {
    color: rgba(80, 230, 210, 0.95);
    font-weight: 800;
}

.bt-led-ribbon-now {
    color: #8fffea;
    text-shadow: 0 0 16px rgba(64, 224, 208, 0.5);
}

.promo-led-price {
    margin-bottom: 0.85rem;
}

.bt-led-promo-badge {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9cfaf0;
    background: linear-gradient(135deg, rgba(18, 85, 82, 0.55), rgba(8, 45, 55, 0.65));
    border: 1px solid rgba(80, 220, 200, 0.4);
    padding: 0.28rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.45rem;
    box-shadow: 0 0 14px rgba(0, 200, 180, 0.18);
}

.price-slash-wrap {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
}

.price-was {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.promo-led-price .sale-price {
    font-size: 1.28rem;
    font-weight: 600;
    color: #8fffea;
    text-shadow: 0 0 18px rgba(64, 224, 208, 0.28);
}

.promo-save {
    display: block;
    font-size: 0.74rem;
    color: var(--accent);
    margin-top: 0.3rem;
    letter-spacing: 0.04em;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card.out-of-stock {
    opacity: 0.6;
    filter: grayscale(30%);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-light);
}

.product-card.out-of-stock:hover {
    transform: none;
    box-shadow: none;
}

.product-img {
    height: 300px;
    width: 100%;
    background: #1a1815;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
}

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

.stock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.out-of-stock-badge {
    background: rgba(220, 50, 50, 0.9);
    color: #fff;
}

.low-stock-badge {
    background: rgba(216, 129, 44, 0.92);
    color: #1a1008;
}

.modal-low-stock-banner {
    margin: 0.75rem 0 0;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1008;
    background: rgba(216, 129, 44, 0.88);
    border: 1px solid rgba(180, 95, 30, 0.5);
}

.sold-out-btn {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.product-price {
    color: var(--accent);
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-desc {
    font-size: 0.9rem;
    color: #a09d98;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    display: none;
    /* Hide entirely on the main grid so it doesn't break layout */
}

.view-details-btn {
    width: 100%;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--accent);
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================
   PRODUCT MODAL
   ============================ */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #110d0a;
    border: 1px solid var(--border);
    border-radius: 16px;
    z-index: 2001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.product-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.product-modal-img {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-right: 1px solid var(--border);
    position: relative;
    display: flex;
    align-items: center;
}

.modal-nav {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    transform: scale(1.1);
}

.modal-prev {
    left: 15px;
}

.modal-next {
    right: 15px;
}


.product-modal-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    z-index: 2002;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
}

.modal-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 300;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-price--promo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    border-bottom-color: rgba(80, 220, 200, 0.12);
}

.modal-price-slash {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.modal-price--promo .sale-price {
    font-size: 1.85rem;
    font-weight: 600;
    color: #8fffea;
}

.modal-price--promo .price-was {
    font-size: 1.05rem;
}

.modal-desc {
    color: rgba(245, 240, 230, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.modal-desc-intro {
    margin: 0 0 1.1rem;
}

.modal-desc-section {
    margin-bottom: 1.25rem;
}

.modal-desc-section:last-child {
    margin-bottom: 0;
}

.modal-desc-heading {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.5rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.modal-desc-body {
    margin: 0;
}

.modal-desc-list {
    margin: 0;
    padding-left: 1.2rem;
    list-style: disc;
}

.modal-desc-list li {
    margin: 0.35em 0;
    padding-left: 0.2em;
}

/* Shopify rich text in modal */
.modal-desc p {
    margin: 0 0 0.75em;
}

.modal-desc p:last-child {
    margin-bottom: 0;
}

.modal-desc ul:not(.modal-desc-list),
.modal-desc ol {
    margin: 0.5em 0 1em;
    padding-left: 1.2rem;
}

.modal-desc li {
    margin: 0.35em 0;
}

.modal-desc a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.add-to-cart {
    margin-top: auto;
    width: 100%;
    padding: 0.85rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.add-to-cart:hover {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--accent-light);
}

/* Skeleton Loading */
.skeleton {
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
    overflow: hidden;
}

.testimonial-slider-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollTestimonials 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 129, 44, 0.4);
}

.testimonial-card .stars {
    color: #e1b12c;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: rgba(245, 240, 230, 0.9);
    flex-grow: 1;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: var(--accent);
    font-weight: 600;
    text-align: right;
    margin-top: auto;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* ============================
   CONTACT
   ============================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3.5rem;
    transition: border-color 0.4s ease;
}

.contact-grid:hover {
    border-color: var(--accent-light);
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: rgba(245, 240, 230, 0.7);
    line-height: 1.8;
}

.contact-details .contact-item a {
    color: rgba(245, 240, 230, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-details .contact-item a:hover {
    color: var(--accent);
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-color) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn:hover svg {
    fill: #fff;
    transform: scale(1.1);
}



.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.contact-form select option {
    background: #1a1511;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: rgba(216, 129, 44, 0.6);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(216, 129, 44, 0.15);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Premium Button Styling for the Contact Form */
#contact-submit-btn {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #e66810 100%);
    box-shadow: 0 4px 15px rgba(216, 129, 44, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#contact-submit-btn:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(216, 129, 44, 0.5);
    transform: translateY(-3px);
}

#contact-submit-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    cursor: not-allowed;
    border-color: transparent;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 5rem 5% 2rem;
    background: #080706;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-grid h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-grid h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.footer-grid a {
    display: block;
    color: rgba(245, 240, 230, 0.5);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-grid a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    color: rgba(245, 240, 230, 0.35);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .navbar {
        gap: 0.4rem;
        flex-wrap: nowrap;
        align-items: center;
    }

    .hamburger {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 0.42rem 0.85rem;
        min-height: 44px;
        flex-shrink: 0;
        border: 1px solid rgba(216, 129, 44, 0.5);
        border-radius: 999px;
        background: rgba(10, 9, 8, 0.55);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .hamburger:active {
        background: rgba(18, 16, 14, 0.75);
    }

    .cart-btn {
        flex-shrink: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(13, 12, 10, 0.96);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 0;
        border-left: 1px solid var(--border);
        transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a::after {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .artist-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .artist-photo {
        height: 320px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .section {
        padding: 5rem 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Timeline mobile */
    .timeline::before {
        left: 24px;
    }

    .timeline-item {
        flex-direction: row !important;
        text-align: left !important;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .timeline-marker {
        left: 24px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .masonry-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    /* Product Modal Mobile */
    .product-modal {
        width: 95%;
        max-height: 85vh;
        /* Keep within screen bounds */
        display: flex;
        flex-direction: column;
    }

    .product-modal-content {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        height: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .product-modal-img {
        min-height: 250px;
        flex-shrink: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .product-modal-info {
        padding: 2rem 1.5rem;
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions .btn {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
        text-align: center;
    }

    .social-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .contact-socials {
        gap: 0.8rem;
    }
}


/* ============================
   FOOTER
   ============================ */
.footer {
    background: #080808;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--accent);
    font-style: italic;
    margin-bottom: 2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* ============================
   SHOPPING CART DRAWER
   ============================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(216, 129, 44, 0.2);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--accent);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--accent);
}

.cart-items {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
}

.empty-cart-msg {
    text-align: center;
    color: #a09d98;
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.cart-item-attributes {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--accent);
    font-size: 0.9rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4757;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.cart-shipping-note {
    font-size: 0.75rem;
    color: rgba(245, 240, 230, 0.65);
    margin-bottom: 0.75rem;
    line-height: 1.45;
}

.cart-discount {
    margin-bottom: 1rem;
}

.cart-discount-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.55);
    margin-bottom: 0.4rem;
}

.cart-discount-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.cart-discount-row .cart-discount-input {
    flex: 1;
    min-width: 0;
    width: auto;
}

.cart-discount-confirm {
    flex-shrink: 0;
    align-self: stretch;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(216, 129, 44, 0.55);
    background: rgba(216, 129, 44, 0.18);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cart-discount-confirm:hover:not(:disabled) {
    background: rgba(216, 129, 44, 0.32);
    border-color: rgba(216, 129, 44, 0.75);
}

.cart-discount-confirm:disabled {
    opacity: 0.65;
    cursor: wait;
}

.cart-discount-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.cart-discount-input::placeholder {
    color: rgba(245, 240, 230, 0.35);
}

.cart-discount-input:focus {
    outline: none;
    border-color: rgba(216, 129, 44, 0.45);
    box-shadow: 0 0 0 2px var(--accent-light);
}

.cart-discount-hint {
    font-size: 0.68rem;
    color: rgba(245, 240, 230, 0.45);
    margin-top: 0.35rem;
    line-height: 1.35;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    color: rgba(245, 240, 230, 0.88);
}

.cart-summary-line--shipping {
    font-size: 0.85rem;
    color: rgba(245, 240, 230, 0.72);
}

.cart-summary-line--discount {
    font-size: 0.85rem;
    color: rgba(129, 214, 165, 0.95);
}

.cart-summary-line--discount span:last-child {
    font-variant-numeric: tabular-nums;
}

.cart-summary-total {
    font-size: 1.15rem;
    font-weight: 600;
    padding-top: 0.45rem;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-btn,
#card-button {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.checkout-btn:not(:disabled):hover,
#card-button:hover {
    background: var(--accent-hover);
}

/* ============================
   CUSTOM LANTERN BUILDER
   ============================ */
body.custom-lantern-page {
    background: radial-gradient(circle at 50% 15%, #2c1a08 0%, var(--bg-color) 60%);
    background-attachment: fixed;
}

.custom-lantern-hero {
    padding-top: 10rem;
    padding-bottom: 2rem;
}

.custom-lantern-hero-copy {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* Thin accent under title — does not alter page background gradient */
.custom-lantern-hero-accent {
    width: min(200px, 42vw);
    height: 3px;
    margin: 1.25rem auto 1.5rem;
    border-radius: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(216, 129, 44, 0.15),
        rgba(216, 129, 44, 0.75),
        rgba(255, 180, 100, 0.55),
        rgba(216, 129, 44, 0.75),
        rgba(216, 129, 44, 0.15),
        transparent
    );
    box-shadow: 0 0 24px rgba(216, 129, 44, 0.35);
}

.custom-lantern-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(216, 129, 44, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.custom-lantern-subtitle {
    color: rgba(245, 240, 230, 0.72);
    font-size: 1.25rem;
    line-height: 1.8;
}

.custom-lantern-builder-section {
    padding-top: 2rem;
}

.custom-lantern-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.custom-lantern-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.custom-lantern-card {
    position: relative;
    overflow: hidden;
    background: rgba(15, 12, 10, 0.55);
    border: 1px solid rgba(216, 129, 44, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(216, 129, 44, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.custom-lantern-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(216, 129, 44, 0.35),
        rgba(255, 200, 140, 0.45),
        rgba(216, 129, 44, 0.35),
        transparent
    );
    pointer-events: none;
    opacity: 0.85;
}

.custom-lantern-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(216, 129, 44, 0.08);
    border-color: rgba(216, 129, 44, 0.35);
}

.custom-lantern-card-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.custom-lantern-card h2 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

@keyframes lantern-step-soft {
    0%,
    100% {
        opacity: 0.88;
    }

    50% {
        opacity: 1;
    }
}

.custom-lantern-step {
    display: inline-block;
    margin-bottom: 0.6rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: lantern-step-soft 4s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(216, 129, 44, 0.25);
}

.custom-lantern-helper {
    color: rgba(245, 240, 230, 0.55);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Step 1 above Step 2 so Side C/D dropdowns appear above the cap color card */
.custom-lantern-main .custom-lantern-card:first-child {
    position: relative;
    z-index: 2;
}

.custom-lantern-main .custom-lantern-card:nth-child(2) {
    position: relative;
    z-index: 1;
}

.custom-lantern-sides-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.custom-lantern-side-slot label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(245, 240, 230, 0.65);
}

.custom-lantern-side-slot:nth-child(1) label::before,
.custom-lantern-side-slot:nth-child(2) label::before,
.custom-lantern-side-slot:nth-child(3) label::before,
.custom-lantern-side-slot:nth-child(4) label::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    color: rgba(245, 240, 230, 0.95);
    background: linear-gradient(145deg, rgba(216, 129, 44, 0.35), rgba(0, 0, 0, 0.35));
    border: 1px solid rgba(216, 129, 44, 0.45);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.custom-lantern-side-slot:nth-child(1) label::before {
    content: "A";
}

.custom-lantern-side-slot:nth-child(2) label::before {
    content: "B";
}

.custom-lantern-side-slot:nth-child(3) label::before {
    content: "C";
}

.custom-lantern-side-slot:nth-child(4) label::before {
    content: "D";
}

/* Custom dropdown with thumbnails (replaces native select) */
.custom-lantern-dropdown {
    position: relative;
    margin-bottom: 0.9rem;
}

.custom-lantern-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-lantern-dropdown-trigger:focus-visible {
    outline: 2px solid rgba(216, 129, 44, 0.85);
    outline-offset: 2px;
}

.custom-lantern-dropdown-trigger:hover,
.custom-lantern-dropdown.open .custom-lantern-dropdown-trigger {
    border-color: rgba(216, 129, 44, 0.7);
    background: rgba(216, 129, 44, 0.08);
    box-shadow: 0 0 20px rgba(216, 129, 44, 0.25), inset 0 0 10px rgba(216, 129, 44, 0.1);
}

.custom-lantern-dropdown-trigger-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.custom-lantern-dropdown-trigger-thumb.empty {
    background: rgba(255, 255, 255, 0.06);
}

.custom-lantern-dropdown-trigger-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(245, 240, 230, 0.6);
}

.custom-lantern-dropdown-trigger.has-selection .custom-lantern-dropdown-trigger-label {
    color: #fff;
}

.custom-lantern-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 280px;
    overflow-y: auto;
    background: #0d0c0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(216, 129, 44, 0.45) rgba(255, 255, 255, 0.04);
}

.custom-lantern-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.custom-lantern-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 12px 12px 0;
}

.custom-lantern-dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(216, 129, 44, 0.5), rgba(216, 129, 44, 0.2));
    border-radius: 8px;
}

.custom-lantern-dropdown.open .custom-lantern-dropdown-menu {
    display: block;
}

.custom-lantern-dropdown-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: background 0.15s;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: #0d0c0a;
    color: #f5f0e6;
}

.custom-lantern-dropdown-option:hover {
    background: rgba(216, 129, 44, 0.12);
}

.custom-lantern-dropdown-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom-lantern-dropdown-option-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.custom-lantern-dropdown-option-label {
    flex: 1;
}

.custom-lantern-dropdown-option-custom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-lantern-dropdown-divider {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: rgba(245, 240, 230, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-lantern-dropdown-option-thumb.custom-blank,
.custom-lantern-dropdown-trigger-thumb.custom-blank {
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.04) 4px,
        rgba(255, 255, 255, 0.08) 4px,
        rgba(255, 255, 255, 0.08) 8px
    );
    border: 1px dashed rgba(216, 129, 44, 0.4);
}

.custom-lantern-custom-input-wrap {
    margin-top: 0.5rem;
}

.custom-lantern-custom-name-input {
    width: 100%;
    padding: 0.75rem 1rem;
    min-height: 44px;
    font-size: 16px;
    font-family: var(--font-sans);
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(216, 129, 44, 0.5);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

@media (min-width: 768px) {
    .custom-lantern-custom-name-input {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
        min-height: auto;
    }
}

.custom-lantern-custom-name-input::placeholder {
    color: rgba(245, 240, 230, 0.4);
}

.custom-lantern-custom-name-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(216, 129, 44, 0.25);
}

.custom-lantern-preview {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 108px;
    transition: all 0.3s ease;
}

@keyframes preview-pop {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 rgba(216, 129, 44, 0);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 5px 20px rgba(216, 129, 44, 0.5), inset 0 0 15px rgba(216, 129, 44, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(216, 129, 44, 0.05), inset 0 0 15px rgba(216, 129, 44, 0.15);
    }
}

.custom-lantern-preview.pop-anim {
    animation: preview-pop 0.4s ease-out;
}

.custom-lantern-preview.selected {
    border-color: rgba(216, 129, 44, 0.6);
    background: rgba(216, 129, 44, 0.08);
    box-shadow: 0 5px 15px rgba(216, 129, 44, 0.05), inset 0 0 15px rgba(216, 129, 44, 0.15);
}

.custom-lantern-preview-image {
    width: 86px;
    height: 86px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    background-size: cover;
    background-position: center;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 2px 8px rgba(0, 0, 0, 0.35),
        0 4px 14px rgba(0, 0, 0, 0.25);
}

.custom-lantern-preview-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.custom-lantern-preview-copy strong {
    font-size: 0.98rem;
}

.custom-lantern-preview-copy span {
    font-size: 0.88rem;
    color: rgba(245, 240, 230, 0.6);
    line-height: 1.45;
}

.custom-lantern-color-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.custom-lantern-color-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.25s ease;
}

.custom-lantern-color-option:hover,
.custom-lantern-color-option.active {
    transform: translateY(-3px);
    border-color: var(--accent);
    background: rgba(216, 129, 44, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(216, 129, 44, 0.2);
}

.custom-lantern-color-option.active {
    box-shadow:
        0 0 0 2px rgba(13, 12, 10, 0.95),
        0 0 0 4px rgba(216, 129, 44, 0.55),
        0 12px 28px rgba(0, 0, 0, 0.35),
        inset 0 0 15px rgba(216, 129, 44, 0.2);
}

.custom-lantern-color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.custom-lantern-color-option.active .custom-lantern-color-swatch {
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.custom-lantern-summary {
    position: sticky;
    top: 110px;
}

.custom-lantern-summary-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.custom-lantern-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.25rem;
    border-radius: 14px;
    background: linear-gradient(
        165deg,
        rgba(216, 129, 44, 0.12) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    border: 1px solid rgba(216, 129, 44, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.custom-lantern-price-wrap span {
    color: rgba(245, 240, 230, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.custom-lantern-price-wrap strong {
    color: var(--accent);
    font-size: 1.5rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(216, 129, 44, 0.35);
}

.custom-lantern-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.custom-lantern-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 0.35rem 0.85rem;
    margin: 0 -0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.custom-lantern-summary-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.custom-lantern-summary-row span {
    color: rgba(245, 240, 230, 0.58);
    font-size: 0.9rem;
}

.custom-lantern-summary-row strong {
    text-align: right;
    font-size: 0.95rem;
}

.custom-lantern-alert {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 240, 230, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.custom-lantern-alert[data-tone="success"] {
    border-color: rgba(46, 213, 115, 0.32);
    background: rgba(46, 213, 115, 0.08);
    color: #9ff0bd;
}

.custom-lantern-alert[data-tone="warning"] {
    border-color: rgba(255, 71, 87, 0.25);
    background: rgba(255, 71, 87, 0.08);
    color: #ffb0b8;
}

.custom-lantern-checkout-btn {
    margin-top: 0;
    border-radius: 50px;
    padding: 0.95rem 1.75rem;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
    box-shadow:
        0 4px 15px rgba(216, 129, 44, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.custom-lantern-checkout-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 129, 44, 0.4), 0 0 10px rgba(255, 107, 53, 0.6);
}

/* Mobile sticky summary - hidden on desktop */
.custom-lantern-mobile-summary {
    display: none;
}

@media (max-width: 900px) {
    .custom-lantern-mobile-summary {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(13, 12, 10, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(216, 129, 44, 0.22);
        box-shadow:
            0 -8px 32px rgba(0, 0, 0, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        padding: 0.9rem 1rem;
        padding-bottom: max(0.9rem, env(safe-area-inset-bottom));
        z-index: 999;
    }

    .custom-lantern-mobile-summary-inner {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .custom-lantern-mobile-summary-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--accent);
        flex-shrink: 0;
    }

    .custom-lantern-mobile-summary-status {
        flex: 1;
        min-width: 0;
        font-size: 0.85rem;
        color: rgba(245, 240, 230, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .custom-lantern-mobile-checkout-btn {
        flex: 1 1 100%;
        width: 100%;
    }

    .custom-lantern-mobile-checkout-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Add bottom padding so content isn't hidden behind sticky bar */
    body.custom-lantern-page {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
    }
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter {
    background: rgba(216, 129, 44, 0.05);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-color);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.newsletter-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-light);
}

.newsletter-form button {
    border-radius: 30px;
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media screen and (max-width: 768px) {

    /* Prevent ANY horizontal overflow/scroll */
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Mobile nav: slide-in drawer + hamburger — defined in earlier @media (max-width: 768px) block */

    /* Swap mouse indicator for swipe indicator */
    .mouse {
        display: none;
    }

    .swipe-indicator {
        display: flex;
    }



    /* Fix hero background image on mobile — background-attachment:fixed
       is broken on iOS/Android and makes the image invisible */
    .hero {
        background-attachment: scroll;
        background-position: left center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    /* Stack buttons vertically and center them */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        min-width: unset;
    }

    .hero-content {
        padding: 60px 1.5rem 0 1.5rem;
        /* Push content down to clear fixed navbar and address bar */
        width: 100%;
        box-sizing: border-box;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .artist-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .artist-photo {
        height: 320px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .section {
        padding: 5rem 5%;
    }

    .cart-drawer {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .custom-lantern-layout {
        grid-template-columns: 1fr;
    }

    .custom-lantern-summary {
        position: static;
    }
}

@media (max-width: 768px) {

    .custom-lantern-sides-grid,
    .custom-lantern-color-grid {
        grid-template-columns: 1fr;
    }

    .custom-lantern-card {
        padding: 1.5rem;
    }

    .custom-lantern-card-header {
        flex-direction: column;
    }
}

/* ============================
   FOOTER RETURNS POLICY
   ============================ */
.footer-policy {
    margin: 2rem 0;
}

/** Shopify-hosted legal (Settings → Legal); keep in sync with LiveRecover / checkout compliance */
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 1rem;
}

.footer-legal-links a {
    color: rgba(245, 240, 230, 0.78);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--accent);
    border-bottom-color: rgba(216, 129, 44, 0.55);
}

.footer-legal-sep {
    color: rgba(245, 240, 230, 0.35);
    font-size: 0.7rem;
    user-select: none;
}

.policy-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-color);
    padding: 0.8rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.policy-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.policy-toggle.open .policy-arrow {
    transform: rotate(180deg);
}

.policy-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.policy-content.open {
    max-height: 800px;
    opacity: 1;
}

.policy-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-top: 1rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.policy-text h4 {
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy-text h4:first-child {
    margin-top: 0;
}

.policy-text p {
    color: rgba(245, 240, 230, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Stash lantern modal: choose metal cap color (required, per lantern) — on top of everything */
.stash-lantern-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.stash-lantern-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.stash-lantern-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: var(--card-bg, #1a1612);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    max-width: 480px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    z-index: 100051;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
/* Modal is a sibling of overlay in DOM — show when modal has .active (JS adds it) */
.stash-lantern-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.stash-lantern-modal-overlay.active .stash-lantern-modal {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.stash-lantern-modal .modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.stash-lantern-modal-title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    color: var(--text-color);
}
.stash-lantern-step-desc {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem;
    font-size: 0.95rem;
}
.stash-lantern-quantity-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.stash-lantern-quantity-btns button {
    min-width: 48px;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    cursor: pointer;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
}
.stash-lantern-quantity-btns button:hover,
.stash-lantern-quantity-btns button.selected {
    border-color: var(--accent);
    background: rgba(216, 129, 44, 0.15);
}
.stash-lantern-continue {
    margin-top: 0.5rem;
}
/* Oval buttons to match site style (custom-lantern-checkout-btn) */
.stash-lantern-modal .btn-primary,
.stash-lantern-modal .stash-lantern-continue,
.stash-lantern-modal .stash-lantern-next,
.stash-lantern-modal .stash-lantern-add-all {
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 700;
    border: none;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
    box-shadow: 0 4px 15px rgba(216, 129, 44, 0.2);
    transition: all 0.3s ease;
}
.stash-lantern-modal .btn-primary:hover:not(:disabled),
.stash-lantern-modal .stash-lantern-continue:hover:not(:disabled),
.stash-lantern-modal .stash-lantern-next:hover:not(:disabled),
.stash-lantern-modal .stash-lantern-add-all:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 129, 44, 0.4), 0 0 10px rgba(255, 107, 53, 0.6);
}
.stash-lantern-modal .btn-outline,
.stash-lantern-modal .stash-lantern-back {
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: var(--text-color);
    transition: all 0.3s ease;
}
.stash-lantern-modal .btn-outline:hover,
.stash-lantern-modal .stash-lantern-back:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}
.stash-lantern-color-grid {
    margin-bottom: 1rem;
}
.stash-lantern-step-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.stash-lantern-step-actions .btn { min-width: 100px; }

/* ============================
   FAQ PAGE
   ============================ */
body.faq-page {
    background: radial-gradient(circle at 50% 15%, #2c1a08 0%, var(--bg-color) 60%);
    background-attachment: fixed;
}

.faq-hero {
    padding: 8rem 1.5rem 2rem;
    text-align: center;
}

.faq-hero .faq-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(216, 129, 44, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
}

.faq-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.faq-hero .faq-lead {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(245, 240, 230, 0.72);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-section {
    padding: 0 1.5rem 5rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(15, 12, 10, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(245, 240, 230, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(216, 129, 44, 0.12);
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.faq-item details[open] summary::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-item details[open] summary {
    color: var(--accent);
    background: rgba(216, 129, 44, 0.06);
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-answer {
    padding: 0 1.25rem 1.2rem;
    color: rgba(245, 240, 230, 0.78);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    margin-bottom: 0.85rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-color);
    font-weight: 600;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(216, 129, 44, 0.35);
}

.faq-answer a:hover {
    border-bottom-color: var(--accent);
}

.faq-answer ul {
    margin: 0.5rem 0 0.5rem 1.25rem;
}

@media (max-width: 600px) {
    .faq-hero {
        padding-top: 6.5rem;
    }

    .faq-item summary {
        font-size: 0.92rem;
        padding: 1rem;
    }
}