:root {
    --void: #02020a;
    --deep: #07070f;
    --surface: #0f0e1a;
    --panel: #16152a;
    --gold: #c8a96d;
    --gold2: #e8d4a8;
    --gold3: #8a6a38;
    --ember: #e84830;
    --mist: rgba(255, 255, 255, 0.06);
    --mistb: rgba(255, 255, 255, 0.10);
    --ink: #f0ece4;
    --dim: rgba(240, 236, 228, 0.45);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    background: var(--void);
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    cursor: default;
    overflow-x: hidden;
}

/* Hide custom cursor UI and fall back to default OS cursor */
#cursor-canvas,
.cursor-core {
    display: none !important;
}

/* ══ LIQUID CURSOR CANVAS ═══════════════════════ */
#cursor-canvas {
    position: fixed;
    inset: 0;
    z-index: 9995;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* ══ DIAMOND CURSOR ═════════════════════════════ */
.cursor-core {
    position: fixed;
    z-index: 9996;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-arm {
    width: 14px;
    height: 14px;
    background: var(--gold);
    transform: rotate(45deg);
    transition: width 0.3s, height 0.3s, background 0.3s;
    animation: diamondPulse 2s ease-in-out infinite;
}

.cursor-arms {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    animation: armsRotate 4s linear infinite;
}

.cursor-arm {
    position: absolute;
    background: var(--gold);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.cursor-arm-h {
    width: 50px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cursor-arm-v {
    width: 1px;
    height: 50px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.cursor-ring-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(200, 169, 109, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    animation: outerRotate 8s linear infinite reverse;
}

.cursor-label {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.cursor-core.hover .cursor-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold2);
}

.cursor-core.hover .cursor-ring-outer {
    width: 120px;
    height: 120px;
    border-color: rgba(200, 169, 109, 0.5);
}

.cursor-core.hover .cursor-label {
    opacity: 1;
}

.cursor-core.hover .cursor-arm {
    opacity: 0.8;
}

@keyframes diamondPulse {

    0%,
    100% {
        transform: rotate(45deg) scale(1);
    }

    50% {
        transform: rotate(45deg) scale(1.3);
    }
}

@keyframes armsRotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes outerRotate {
    to {
        transform: translate(-50%, -50%) rotate(45deg+360deg);
    }
}


/* ══ NAV ═════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s;
}

nav.scrolled {
    padding: 1.2rem 4rem;
    background: rgba(2, 2, 10, 0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(200, 169, 109, 0.12);
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
}

.nav-center a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.nav-center a:hover {
    color: var(--gold);
}

.nav-center a:hover::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icon {
    font-size: 0.8rem;
    color: var(--dim);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
}

.nav-icon:hover {
    color: var(--gold);
}

.cart-dot {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--void);
    font-size: 0.6rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    margin-left: 0.3rem;
}

/* ══ VIDEO HERO ══════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) contrast(1.1) saturate(0.8);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05) translateX(0);
    }

    100% {
        transform: scale(1.12) translateX(-20px);
    }
}

.hero-video-fallback {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(30, 18, 8, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 70%, rgba(20, 10, 30, 0.8) 0%, transparent 60%),
        linear-gradient(135deg, #03020c 0%, #0a0618 25%, #130b08 50%, #06060f 75%, #01010a 100%);
    overflow: hidden;
}

.hero-video-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 40% at 65% 45%, rgba(200, 169, 109, 0.08) 0%, transparent 70%);
    animation: lightShift 8s ease-in-out infinite alternate;
}

@keyframes lightShift {
    0% {
        opacity: 0.5;
        transform: scale(1) translate(0, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1.2) translate(-20px, 10px);
    }
}

.hero-liquid-filter {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to top, var(--void) 0%, transparent 40%),
        linear-gradient(to right, rgba(2, 2, 10, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(2, 2, 10, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1100px;
    padding: 2rem;
}

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s 1.6s ease both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.2s 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line2 {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 169, 109, 0.7);
    display: block;
    margin-left: 3rem;
}

.hero-sub {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 1s 2.1s ease both;
}

.hero-ctas {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s 2.3s ease both;
}

.btn-film {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink);
    background: none;
    border: none;
    cursor: default;
    transition: gap 0.4s;
}

.btn-film:hover {
    gap: 1.5rem;
}

.play-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 109, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s;
}

.play-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-film:hover .play-circle {
    border-color: var(--gold);
}

.btn-film:hover .play-circle::before {
    transform: scale(1);
}

.play-circle span {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.btn-film:hover .play-circle span {
    color: var(--void);
}

.btn-cta-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--void);
    border: none;
    padding: 1.1rem 3rem;
    cursor: default;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-cta-primary:hover::before {
    transform: translateX(100%);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(200, 169, 109, 0.4);
}

/* Mobile nav adjustments removed — navigation is always visible */

.morph-blob {
    position: absolute;
    filter: blur(60px);
    animation: morphFloat 20s ease-in-out infinite;
    opacity: 0.12;
}

@keyframes morphFloat {
    0% {
        border-radius: 62% 38% 46% 54%/60% 44% 56% 40%;
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        border-radius: 38% 62% 64% 36%/44% 70% 30% 56%;
        transform: translate(20px, -30px) rotate(72deg);
    }

    40% {
        border-radius: 74% 26% 40% 60%/56% 38% 62% 44%;
        transform: translate(-10px, 40px) rotate(144deg);
    }

    60% {
        border-radius: 32% 68% 54% 46%/38% 60% 40% 62%;
        transform: translate(30px, -10px) rotate(216deg);
    }

    80% {
        border-radius: 58% 42% 30% 70%/50% 72% 28% 50%;
        transform: translate(-20px, 20px) rotate(288deg);
    }

    100% {
        border-radius: 62% 38% 46% 54%/60% 44% 56% 40%;
        transform: translate(0, 0) rotate(360deg);
    }
}

/* ══ LIQUID MARQUEE ═══════════════════════════════ */
.marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(200, 169, 109, 0.1);
    border-bottom: 1px solid rgba(200, 169, 109, 0.1);
    background: rgba(200, 169, 109, 0.02);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeFlow 30s linear infinite;
}

.marquee-track2 {
    display: flex;
    white-space: nowrap;
    animation: marqueeFlow 30s linear infinite reverse;
    margin-top: 0.5rem;
}

.marquee-item {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 300;
    color: var(--dim);
    padding: 0 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
}

@keyframes marqueeFlow {
    to {
        transform: translateX(-50%);
    }
}

/* ══ PARTNER LOGO SHOWCASE ════════════════════════ */
.partner-showcase {
    padding: 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(30, 41, 59, 0.5));
    border-top: 1px solid rgba(200, 169, 109, 0.08);
    border-bottom: 1px solid rgba(200, 169, 109, 0.08);
}

.partner-showcase h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
}

.logo-marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-marquee {
    display: flex;
    gap: 2.5rem;
    animation: scrollLogos 40s linear infinite;
    padding: 0.5rem 0;
}

.logo-marquee:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    color: #f1f5f9;
    transition: all 0.3s ease;
    cursor: default;
}

.partner-logo svg {
    height: 100%;
    width: auto;
    max-width: 140px;
    filter: brightness(0.9) saturate(0.8);
    transition: all 0.3s ease;
}

.partner-logo:hover svg {
    filter: brightness(1.2) saturate(1) drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transform: scale(1.08);
}

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

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

/* ══ LIQUID SECTION TRANSITION ═══════════════════ */
.liquid-sep {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: transparent;
}

.liquid-sep svg {
    position: absolute;
    width: 200%;
    height: 100%;
    animation: waveScroll 10s linear infinite;
}

.liquid-sep svg:nth-child(2) {
    animation: waveScroll 10s linear infinite;
    animation-delay: -5s;
    opacity: 0.5;
    animation-direction: reverse;
}

@keyframes waveScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ══ COLLECTIONS HORIZONTAL SCROLL ══════════════ */
.collections-section {
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    padding: 0 5rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-kicker {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-kicker::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-title .ghost {
    -webkit-text-stroke: 1px rgba(200, 169, 109, 0.3);
    color: transparent;
}

.see-all {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.3s, gap 0.3s;
}

.see-all:hover {
    opacity: 1;
    gap: 1.25rem;
}

.see-all::after {
    content: '→';
    font-family: sans-serif;
}

.h-scroll-wrap {
    overflow-x: auto;
    padding: 0 5rem 3rem;
    scrollbar-width: none;
    display: flex;
    gap: 1.5rem;
}

.h-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.col-card {
    flex: 0 0 360px;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: default;
    flex-shrink: 0;
}

.col-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-card:hover .col-card-bg {
    transform: scale(1.06);
}

.col-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.1);
}

.c1 {
    background: linear-gradient(160deg, #100c04 0%, #1e1608 40%, #120a18 100%);
}

.c2 {
    background: linear-gradient(160deg, #080810 0%, #12101e 40%, #08100e 100%);
}

.c3 {
    background: linear-gradient(160deg, #100406 0%, #1e0a10 40%, #100c04 100%);
}

.c4 {
    background: linear-gradient(160deg, #040c10 0%, #0a1420 40%, #060410 100%);
}

.c5 {
    background: linear-gradient(160deg, #0c0404 0%, #1a0c0c 40%, #0a0810 100%);
}

.col-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 2, 10, 0.95) 0%, rgba(2, 2, 10, 0.3) 50%, transparent 100%);
}

.col-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-card:hover .col-card-content {
    transform: translateY(0);
}

.col-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.col-sub {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--dim);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.col-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    background: none;
    border: 1px solid rgba(200, 169, 109, 0.3);
    padding: 0.6rem 1.4rem;
    cursor: default;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s 0.1s, transform 0.4s 0.1s, border-color 0.3s, background 0.3s;
}

.col-card:hover .col-cta {
    opacity: 1;
    transform: translateY(0);
}

.col-cta:hover {
    background: var(--gold);
    color: var(--void);
    border-color: var(--gold);
}

/* ══ FEATURED PRODUCT — BIG ══════════════════════ */
.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.feat-media {
    position: relative;
    overflow: hidden;
}

.feat-media-inner {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feat-media:hover .feat-media-inner {
    transform: scale(1.04);
}

.feat-media video,
.feat-media .feat-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat-placeholder {
    background: linear-gradient(160deg, #08080f 0%, #12101c 30%, #1a1210 60%, #0a0a14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-placeholder-inner {
    text-align: center;
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
}

.feat-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--void) 100%);
    pointer-events: none;
}

.feat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
    position: relative;
    z-index: 2;
}

.feat-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feat-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.feat-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 4.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.0;
    margin-bottom: 1.5rem;
}

.feat-title em {
    font-style: italic;
    color: var(--gold);
}

.feat-desc {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--dim);
    max-width: 400px;
    margin-bottom: 3rem;
}

.feat-price-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feat-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
}

.feat-price-old {
    font-size: 1.1rem;
    color: rgba(200, 169, 109, 0.4);
    text-decoration: line-through;
}

.feat-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    background: var(--ember);
    color: var(--ink);
    padding: 0.4rem 0.9rem;
    text-transform: uppercase;
}

.feat-btn-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-gold {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    background: var(--gold);
    color: var(--void);
    border: none;
    padding: 1.1rem 2.8rem;
    cursor: default;
    position: relative;
    overflow: hidden;
    font-weight: 400;
    transition: transform 0.3s, box-shadow 0.4s;
}

.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.5s;
}

.btn-gold:hover::after {
    transform: translateX(120%);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(200, 169, 109, 0.35);
}

.btn-outline {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    background: none;
    border: 1px solid rgba(200, 169, 109, 0.35);
    color: var(--gold);
    padding: 1.1rem 2.2rem;
    cursor: default;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 109, 0.08);
}

/* Floating product details */
.feat-float {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: rgba(7, 7, 15, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 109, 0.15);
    padding: 1.5rem;
    width: 220px;
}

.feat-float-label {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.material-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--dim);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ══ STATS / BRAND STRIP ════════════════════════ */
.brand-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(200, 169, 109, 0.1);
    border-bottom: 1px solid rgba(200, 169, 109, 0.1);
}

.brand-stat {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(200, 169, 109, 0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}

.brand-stat:last-child {
    border-right: none;
}

.brand-stat:hover {
    background: rgba(200, 169, 109, 0.04);
}

.brand-stat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.brand-stat:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
}

/* ══ LIQUID MORPH SHOWCASE ═══════════════════════ */
.morph-section {
    padding: 8rem 5rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.morph-visual {
    position: relative;
    height: 600px;
}

.morph-video-main {
    position: absolute;
    width: 75%;
    height: 80%;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 2px;
}

.morph-video-main video,
.morph-video-main .mv-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-placeholder {
    background: linear-gradient(135deg, #0a080f 0%, #1a1022 50%, #060c14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.08);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
}

.morph-video-float {
    position: absolute;
    width: 55%;
    height: 55%;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border-radius: 2px;
    border: 4px solid var(--void);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.morph-video-float video,
.morph-video-float .mvf-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mvf-placeholder {
    background: linear-gradient(135deg, #0f0408 0%, #1c0e10 50%, #080f10 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.08);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.liquid-drip {
    position: absolute;
    top: 30%;
    right: -10px;
    width: 3px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: dripFlow 3s ease-in-out infinite;
}

@keyframes dripFlow {

    0%,
    100% {
        transform: scaleY(1) translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1.15) translateY(10px);
        opacity: 0.8;
    }
}

.morph-text .feat-tag {
    margin-bottom: 2rem;
}

.morph-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.morph-title em {
    font-style: italic;
    color: var(--gold);
}

.morph-body {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--dim);
    margin-bottom: 2.5rem;
}

.process-list {
    list-style: none;
    margin-bottom: 3rem;
}

.process-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    color: var(--dim);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.process-list li:hover {
    color: var(--ink);
}

.process-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.5;
    min-width: 28px;
}

/* ══ TESTIMONIAL VIDEO STRIP ════════════════════ */
.testi-section {
    padding: 7rem 5rem;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(200, 169, 109, 0.08);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.testi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 169, 109, 0.1);
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.4s, transform 0.4s, background 0.4s;
    cursor: default;
}

.testi-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 169, 109, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.testi-card:hover::before {
    opacity: 1;
}

.testi-card:hover {
    border-color: rgba(200, 169, 109, 0.3);
    transform: translateY(-8px);
}

.testi-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
    color: rgba(240, 236, 228, 0.85);
    margin-bottom: 2rem;
    position: relative;
}

.testi-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold3), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    color: var(--void);
}

.testi-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
}

.testi-handle {
    font-size: 0.7rem;
    color: var(--dim);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
}

/* ══ NEWSLETTER ═══════════════════════════════════ */
.newsletter {
    padding: 10rem 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.nl-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.nl-title em {
    font-style: italic;
    color: var(--gold);
}

.nl-title .ghost {
    -webkit-text-stroke: 1px rgba(200, 169, 109, 0.25);
    color: transparent;
}

.nl-sub {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--dim);
    margin-bottom: 4rem;
}

.nl-form {
    display: flex;
    max-width: 560px;
    margin: 0 auto;
    border: 1px solid rgba(200, 169, 109, 0.2);
    transition: border-color 0.4s;
}

.nl-form:focus-within {
    border-color: var(--gold);
}

.nl-input {
    flex: 1;
    background: rgba(200, 169, 109, 0.04);
    border: none;
    padding: 1.2rem 1.8rem;
    color: var(--ink);
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
}

.nl-input::placeholder {
    color: rgba(200, 169, 109, 0.35);
    letter-spacing: 0.1em;
}

.nl-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    background: var(--gold);
    color: var(--void);
    border: none;
    padding: 1.2rem 2rem;
    cursor: default;
    transition: background 0.3s;
    font-weight: 400;
}

.nl-btn:hover {
    background: var(--gold2);
}

/* ══ FOOTER ═══════════════════════════════════════ */
footer {
    padding: 5rem 5rem 3rem;
    border-top: 1px solid rgba(200, 169, 109, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.f-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.f-brand-text {
    font-size: 0.82rem;
    line-height: 1.85;
    color: var(--dim);
    max-width: 300px;
}

.f-col-head {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.f-links {
    list-style: none;
}

.f-links li {
    margin-bottom: 0.7rem;
}

.f-links a {
    font-size: 0.82rem;
    color: var(--dim);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.03em;
}

.f-links a:hover {
    color: var(--ink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 169, 109, 0.08);
}

.f-copy {
    font-size: 0.72rem;
    color: var(--dim);
    letter-spacing: 0.05em;
}

.f-socials {
    display: flex;
    gap: 1rem;
}

.f-social {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(200, 169, 109, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--dim);
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
}

.f-social:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ══ NOTIFICATIONS ════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 9997;
    background: rgba(7, 7, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 109, 0.3);
    padding: 1.2rem 2rem;
    min-width: 260px;
    transform: translateY(80px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s;
}

.toast.on {
    transform: translateY(0);
    opacity: 1;
}

.toast-line1 {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.toast-line2 {
    font-size: 0.8rem;
    color: var(--dim);
}

/* ══ REVEAL ANIMATIONS ════════════════════════════ */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.d5 {
    transition-delay: 0.5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

/* ══ SCROLLBAR ═══════════════════════════════════ */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--void);
}

::-webkit-scrollbar-thumb {
    background: var(--gold3);
}

/* ══ RESPONSIVE ═══════════════════════════════════ */
@media(max-width:1100px) {
    .featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feat-media {
        height: 60vh;
    }

    .feat-overlay-gradient {
        background: linear-gradient(to top, var(--void) 0%, transparent 50%);
    }

    .feat-content {
        padding: 4rem 2.5rem;
    }

    .morph-section {
        grid-template-columns: 1fr;
        padding: 5rem 2.5rem;
    }

    .morph-visual {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-strip {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        padding: 1.5rem 2rem;
    }

    .nav-center {
        display: none;
    }
}

@media(max-width:640px) {

    .testi-grid,
    .brand-strip {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .h-scroll-wrap {
        padding: 0 1.5rem 2rem;
    }

    .morph-section,
    .testi-section,
    .newsletter {
        padding: 5rem 1.5rem;
    }

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

    footer {
        padding: 3rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
    }
}

/* Navigation */
header,
footer {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

footer {
    padding: 2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0.5rem;
    background: #0d0d1a;
    border-radius: 8px;
}

.nav-links li {
    margin: 0;
}

.nav-links a,
.logo-link {
    color: var(--ink);
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    transform: translateY(-2px);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile nav adjustments */
@media (max-width: 900px) {
    .nav-container {
        justify-content: center;
        position: relative;
        padding: 0.6rem 1rem;
    }

    .logo {
        font-size: 1.15rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }

    .logo-link {
        white-space: nowrap;
    }

    /* Show hamburger and position it at left */
    .hamburger {
        display: flex;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
    }

    .hamburger span {
        background-color: var(--ink);
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        text-transform: none;
        letter-spacing: 0;
    }
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 1rem 2rem;
}


/* Featured products */
.featured-products {
    margin-bottom: 3rem;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* API Products */
.api-products {
    margin-bottom: 3rem;
}

.api-products #products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.api-products div {
    background: var(--panel);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(2, 2, 10, 0.6);
    border: 1px solid rgba(200, 169, 109, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.api-products div:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.api-products img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.api-products h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.api-products p:nth-of-type(1) {
    font-weight: bold;
    font-size: 1.1rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.api-products p:nth-of-type(2) {
    color: #6b7280;
    line-height: 1.5;
}

/* Product Variants */
.variant-selector {
    margin: 1.2rem 0;
}

.variant-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.98rem;
}

.variant-selector select {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(200, 169, 109, 0.12);
    border-radius: 10px;
    font-size: 0.98rem;
    background: var(--panel);
    color: var(--ink);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.variant-selector select:focus {
    outline: none;
    border-color: rgba(200, 169, 109, 0.28);
    box-shadow: 0 6px 18px rgba(200, 169, 109, 0.06);
}

.variant-error {
    color: var(--ember);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 600;
    display: none;
}

.variant-error.show {
    display: block;
    animation: shake 0.45s ease;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

/* Neon Color Buttons */
.variant-section {
    margin: 2rem 0;
}

.variant-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.color-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-btn {
    padding: 0.6rem 1rem;
    border: 1px solid rgba(200, 169, 109, 0.12);
    border-radius: 25px;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(2, 2, 10, 0.45);
}

.color-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(2, 2, 10, 0.6);
    border-color: rgba(200, 169, 109, 0.28);
}

.color-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3), 0 8px 25px rgba(59, 130, 246, 0.4);
    animation: neonPulse 2s infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3), 0 8px 25px rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.5), 0 12px 35px rgba(59, 130, 246, 0.6);
    }
}

@media (max-width: 640px) {
    .color-buttons {
        justify-content: center;
    }

    .color-btn {
        flex: 1;
        min-width: 70px;
    }
}

/* Product layout: images (left) + info (right). Thumbnails sit below main image. */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.product-gallery .thumbs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thumb-btn {
    border: 1px solid rgba(200, 169, 109, 0.12);
    background: transparent;
    padding: 4px;
    border-radius: 8px;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.thumb-btn.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 109, 0.12);
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery .thumbs {
        flex-direction: row;
        gap: 0.5rem;
        overflow: auto;
        padding-bottom: 0.5rem;
    }

    .thumb-btn {
        width: 64px;
        height: 64px;
    }
}



/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.no-results {
    grid-column: 1 / -1;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    color: #0f172a;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.product-card {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.product-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.product-card:nth-child(even) {
    animation-delay: 0.2s;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #D4AF37;
    transition: color 0.3s ease;
}

.product-info h3:hover {
    color: #FFD700;
}

.product-price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.product-badge {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

/* Product detail */
.product-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.product-images {
    flex: 1;
    min-width: 300px;
}

.product-images img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.product-info-detail {
    flex: 1;
    min-width: 300px;
}

.product-info-detail h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 2rem;
}

.product-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #334155;
    font-size: 1.1rem;
}

.reviews-section {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 20px;
    background: #272b29;
    border: 1px solid #1b201d;
}

.reviews-section h3 {
    color: #a09734;
    margin-bottom: 1.5rem;
}

.reviews-list {
    display: grid;
    gap: 1.2rem;
}

.review-item {
    background: #2f2e598a;
    padding: 1.3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid #d1fae5;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-header strong {
    color: #000000;
}

.review-stars {
    font-size: 1rem;
    color: #16a34a;
}

.review-comment {
    color: #000000;
    line-height: 1.8;
}

.review-form {
    margin-top: 1.75rem;
    display: grid;
    gap: 1rem;
}

.review-form h4 {
    margin: 0 0 0.85rem 0;
    font-size: 1.1rem;
    color: #a73535;
}

.review-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #a33535;
}

.review-form input,
.review-form textarea,
.review-form select {
    width: 100%;
    border: 1px solid rgba(200, 169, 109, 0.16);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    background: #ffffff;
    color: #000000;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-form textarea {
    min-height: 120px;
    resize: vertical;
}

.review-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.review-form .rating-group {
    flex: 1 1 160px;
}

.review-form button#submit-review-btn {
    max-width: 240px;
}

.review-form .field-error {
    margin-top: 0.5rem;
}

.rating-text {
    color: #166534;
    font-size: 0.95rem;
}

.stars {
    font-size: 1.4rem;
    color: #16a34a;
}

/* Cart */
.cart-item {
    display: flex;
    align-items: center;
    background: var(--panel);
    border: 1px solid rgba(200, 169, 109, 0.06);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 36px rgba(2, 2, 10, 0.6);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cart-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(2, 2, 10, 0.7);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.cart-item:hover img {
    transform: scale(1.1);
}

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

.cart-item h3 {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    color: var(--ink);
}

.cart-item h3:hover {
    color: var(--gold);
}

.cart-item-info p {
    color: var(--dim);
    margin: 0 0 0.25rem 0;
}

.cart-quantity {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cart-quantity button {
    .cart-quantity button {
        padding: 0.25rem 0.5rem;
        background: transparent;
        border: 1px solid rgba(200, 169, 109, 0.14);
        color: var(--gold);
        border-radius: 6px;
    }

    .cart-quantity input {
        width: 56px;
        text-align: center;
        margin: 0 0.5rem;
        background: transparent;
        border: 1px solid rgba(200, 169, 109, 0.08);
        color: var(--ink);
        padding: 6px 8px;
        border-radius: 6px;
    }

    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cart-quantity button:hover {
    transform: scale(1.1);
}

.cart-quantity input {
    width: 50px;
    text-align: center;
    margin: 0 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.25rem;
}

.remove-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cart-total {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: right;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Checkout */
.checkout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.order-summary,
.checkout-form {
    flex: 1;
    min-width: 300px;
    background: var(--panel);
    border: 1px solid rgba(200, 169, 109, 0.12);
    padding: 1.6rem;
    border-radius: 14px;
    box-shadow: 0 10px 36px rgba(2, 2, 10, 0.6);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.order-summary:hover,
.checkout-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(2, 2, 10, 0.7);
}

.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--ink);
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.25rem;
    border: 1px solid rgba(200, 169, 109, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: rgba(200, 169, 109, 0.28);
    box-shadow: 0 6px 18px rgba(200, 169, 109, 0.06);
}

.checkout-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form group spacing */
.form-group {
    margin-bottom: 0.25rem;
}

/* Inline field error messages */
.field-error {
    display: block;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 500;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 0;
}

.field-error.visible {
    min-height: 1.25rem;
    max-height: 3rem;
    opacity: 1;
    padding: 0.25rem 0 0.5rem 0;
}

/* Error state for inputs */
.checkout-form input.input-error,
.checkout-form textarea.input-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
    animation: shake 0.4s ease;
}

@keyframes shake {

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

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.modal-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

/* Success Modal Card */
.modal-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
    opacity: 1;
}

.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 2.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
    animation: popIn 0.6s ease 0.3s both;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.modal-card h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.modal-card p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-sub {
    font-size: 0.9rem !important;
    color: #94a3b8 !important;
    margin-bottom: 1.5rem !important;
}

.modal-btn {
    margin-top: 0.5rem;
    display: inline-block;
}

/* About and Terms */
.about-section,
.terms-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.about-content,
.terms-content {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: #D4AF37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.terms-content h3 {
    color: #D4AF37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
    color: #134e4a;
}

.footer-section h3,
.footer-section h4 {
    color: #0f5132;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section ul li a {
    color: #134e4a;
}

.footer-section ul li a:hover {
    color: #047857;
}

.footer-section p {
    color: #115e59;
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    padding-top: 1rem;
    text-align: center;
    color: #115e59;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* Animation classes */
.product-card.animate {
    animation: fadeInUp 0.8s ease-out;
}

.cart-item.animate {
    animation: slideInLeft 0.6s ease-out;
}

.checkout-form.animate,
.order-summary.animate {
    animation: fadeInUp 0.8s ease-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    /* Navigation remains horizontal and visible on all sizes; no hide/collapse */

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-detail {
        flex-direction: column;
    }

    .checkout-container {
        flex-direction: column;
    }

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

    .filters {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .marquee-content span {
        font-size: 1rem;
        margin-right: 2rem;
    }

    .reviews-list {
        gap: 1rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ============================== */
/* Midnight Gold Design Overrides */
/* ============================== */
:root {
    --void: #02020a;
    --deep: #07070f;
    --panel: #16152a;
    --gold: #c8a96d;
    --gold2: #e8d4a8;
    --gold3: #8a6a38;
    --ink: #f0ece4;
    --dim: rgba(240, 236, 228, 0.45);
    --ember: #e84830;
    --mist: rgba(255, 255, 255, 0.05);
    --mistb: rgba(255, 255, 255, 0.08);
}

/* Reset + base */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background: var(--void);
    color: var(--ink);
    font-family: 'DM Sans', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
    margin: 0;
    overflow-x: hidden;
}

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

/* Page container spacing to avoid header overlap */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 1.25rem 2rem;
}

/* ---------- NAVBAR / HEADER ---------- */
header,
nav,
#nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    transition: background-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
    background: transparent;
}

#nav.scrolled,
header.scrolled {
    background: rgba(2, 2, 10, 0.52);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(138, 106, 56, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.logo,
.logo-link {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--dim);
    position: relative;
    padding: 4px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.88rem;
    transition: color .22s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    bottom: -6px;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    border-radius: 2px;
    transform-origin: center;
    transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

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

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    cursor: pointer;
    gap: 6px;
    flex-direction: column;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: background .18s;
}

/* Removed mobile hide rules — navigation remains visible at all sizes */

/* ---------- SECTIONS + CONTAINERS ---------- */
section,
.section-header,
.products-section,
.featured,
.morph-section {
    background: transparent;
    padding: 2rem 0;
}

/* ---------- PRODUCT GRID ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(24px, 3vw, 32px);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
    background: var(--panel);
    border: 1px solid rgba(200, 169, 109, 0.15);
    border-radius: 16px;
    padding: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(2, 2, 10, 0.6), 0 2px 0 rgba(200, 169, 109, 0.02) inset;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.product-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-info h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.2;
}

.product-price {
    margin: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

.product-badge {
    background: linear-gradient(90deg, var(--gold3), var(--gold));
    color: var(--void);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    display: inline-block;
}

.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(200, 169, 109, 0.35);
    box-shadow: 0 18px 45px rgba(2, 2, 10, 0.65),
        0 0 28px rgba(200, 169, 109, 0.04);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--void);
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background .25s, transform .15s;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn:hover {
    background: linear-gradient(90deg, var(--gold2), var(--gold));
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 12px;
    border-radius: 8px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--void);
}

/* shimmer */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.12) 30%, rgba(255, 255, 255, 0.03) 60%, rgba(255, 255, 255, 0) 100%);
}

.btn:hover::after {
    opacity: 1;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--ink);
    margin: 0 0 0.5rem 0;
}

.subheading,
.section-kicker {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

p,
li,
span,
.product-description,
.morph-body {
    color: var(--dim);
}

/* ---------- INPUTS / SEARCH ---------- */
input[type="text"],
input[type="search"],
input[type="number"],
textarea,
select {
    background: rgba(200, 169, 109, 0.05);
    border: 1px solid rgba(200, 169, 109, 0.20);
    color: var(--ink);
    padding: 10px 12px;
    border-radius: 8px;
    outline: none;
    transition: box-shadow .18s, border-color .18s;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 6px 18px rgba(200, 169, 109, 0.06);
    border-color: rgba(200, 169, 109, 0.32);
}

/* ---------- PANELS / CARDS USED ELSEWHERE ---------- */
.product-detail,
.about-content,
.terms-content,
.feat-float,
.checkout-container {
    background: var(--panel);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(200, 169, 109, 0.12);
    box-shadow: 0 8px 30px rgba(2, 2, 10, 0.62);
    color: var(--dim);
}

.about-text h3,
.terms-content h3 {
    color: var(--gold);
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--void);
    border-top: 1px solid rgba(200, 169, 109, 0.06);
    color: var(--dim);
    padding: 2rem 0;
}

.footer-content h4,
.footer-section h3 {
    color: var(--gold);
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 640px) {
    .product-card img {
        height: 160px;
    }

    main {
        padding-top: 90px;
    }

    .product-grid {
        gap: 18px;
        padding: 0 1rem;
    }
}

/* Helpers */
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden {
    display: none !important;
}

a:focus,
button:focus,
input:focus {
    outline: 3px solid rgba(200, 169, 109, 0.12);
    outline-offset: 2px;
}

.small {
    color: var(--dim);
    font-size: 0.9rem;
}

/* Fix overlay artifacts */
.hero-overlay,
.blob-arena,
.liquid-sep {
    mix-blend-mode: normal;
}

/* Sticky header spacing variable */
:root {
    --header-height: 72px;
}

body>main {
    padding-top: calc(var(--header-height) + 48px);
}

/* Force default OS cursor everywhere (override custom cursor rules) */
html,
body,
button,
a,
input,
textarea,
select,
label {
    cursor: default !important;
}

/* Compact global spacing overrides */
:root {
    --header-height: 60px;
    --section-spacing: clamp(1.5rem, 2.5vw, 2.5rem);
    --section-spacing-large: clamp(3rem, 4vw, 4.5rem);
}

header,
nav,
#nav {
    padding: 0.85rem 1.25rem !important;
    min-height: auto !important;
    margin: 0 !important;
}

header nav .nav-container,
nav .nav-container {
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 0.75rem !important;
    align-items: center !important;
}

header nav .logo,
nav .nav-logo,
.logo,
.logo-link {
    margin: 0 !important;
}

header nav .nav-links,
nav .nav-links {
    margin: 0 !important;
    padding: 0 !important;
    gap: 1rem !important;
}

header nav .nav-links a,
nav .nav-links a {
    padding: 0.15rem 0 !important;
}

nav.scrolled,
#nav.scrolled,
header.scrolled {
    padding: 0.6rem 1.25rem !important;
}

body>main,
main {
    padding-top: calc(var(--header-height) + 20px) !important;
}

.hero {
    min-height: min(88vh, calc(100vh - 4rem)) !important;
    padding: 0 !important;
}

.hero-content {
    padding: 1.5rem 1rem !important;
}

.hero-eyebrow {
    margin-bottom: 1rem !important;
}

.hero-title {
    margin-bottom: 1.4rem !important;
}

.hero-sub {
    margin-bottom: 1.8rem !important;
}

.hero-ctas {
    gap: 1rem !important;
}

.scroll-cue {
    margin-top: 1rem !important;
}

.marquee-wrap {
    padding: 1rem 0 !important;
}

.liquid-sep {
    height: 120px !important;
}

.collections-section {
    padding: 4.5rem 0 3rem !important;
}

.section-header {
    padding: 0 2rem !important;
    margin-bottom: 2.5rem !important;
}

.h-scroll-wrap {
    padding: 0 2rem 2rem !important;
}

.col-card-content {
    padding: 1.5rem !important;
}

.featured {
    min-height: min(82vh, 84rem) !important;
}

.feat-content {
    padding: 3rem 2rem !important;
}

.feat-desc {
    margin-bottom: 2rem !important;
}

.feat-price-row {
    margin-bottom: 1.5rem !important;
    gap: 1rem !important;
}

.feat-btn-row {
    gap: 1rem !important;
}

.testi-section,
.newsletter,
.morph-section,
.products-section,
.about-section,
.terms-section {
    padding-top: var(--section-spacing-large) !important;
    padding-bottom: var(--section-spacing-large) !important;
}

.about-section,
.terms-section {
    padding: 2.2rem 1rem !important;
}

.about-content,
.terms-content {
    padding: 2rem !important;
    gap: 1.5rem !important;
}

.footer-content {
    gap: 1.5rem !important;
    padding: 0 1rem !important;
    margin-bottom: 1rem !important;
}

footer {
    padding: 1.5rem 0 !important;
}

.footer-bottom {
    padding-top: 0.75rem !important;
}

.products-section {
    padding: 2.5rem 0 2rem !important;
}

.filters {
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 1rem !important;
}

.product-grid {
    gap: clamp(1rem, 2vw, 1.5rem) !important;
    margin-top: 1.25rem !important;
    padding: 0 1rem !important;
}

.product-detail,
.checkout-container {
    gap: 1.5rem !important;
    padding: 1.5rem !important;
}

.reviews-section {
    margin-top: 2rem !important;
    padding: 1.5rem !important;
}

.review-item {
    padding: 1rem !important;
}

.checkout-form input,
.checkout-form textarea,
input[type="text"],
textarea,
select {
    padding: 0.75rem 0.9rem !important;
}

@media (max-width: 900px) {

    header,
    nav,
    #nav {
        padding: 0.7rem 1rem !important;
    }

    .partner-showcase {
        padding: 2rem 1.5rem;
    }

    .partner-showcase h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .logo-marquee {
        gap: 2rem;
    }

    .partner-logo {
        padding: 0 1rem;
    }

    .partner-logo svg {
        max-width: 110px;
        height: 50px;
    }

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

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

@media (max-width: 640px) {
    main {
        padding-top: 78px !important;
    }

    .hero {
        min-height: 72vh !important;
    }

    .collections-section,
    .testi-section,
    .newsletter,
    .about-section,
    .terms-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .h-scroll-wrap {
        padding: 0 1rem 1.5rem !important;
    }

    .partner-showcase {
        padding: 1.5rem 1rem;
    }

    .partner-showcase h3 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .logo-marquee {
        gap: 1.5rem;
    }

    .partner-logo {
        padding: 0 0.75rem;
    }

    .partner-logo svg {
        max-width: 90px;
        height: 40px;
    }

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

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