/* =========================================
   iVRA COSMETICS — Me & You Collection
   Frosted Pop-Apothecary Design System
   ========================================= */

:root {
    /* Base Colors */
    --pop-bg: #FFFFFF;
    --pop-surface: #F8F9FA;
    --pop-text: #111111;
    --pop-text-mut: #666666;
    --pop-border: rgba(17, 17, 17, 0.1);

    /* Dynamic Accent Color (updated via JS) */
    /* Start with Pink */
    --accent-pop: #D54A88;

    /* Typography */
    --ff-brand: 'Playfair Display', serif;
    --ff-motif: 'Oswald', impact, sans-serif;
    --ff-body: 'Inter', -apple-system, sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body.light-theme {
    background-color: var(--pop-bg);
    color: var(--pop-text);
    font-family: var(--ff-body);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
    transition: background-color 0.8s ease;
}

a,
button {
    cursor: none;
    text-decoration: none;
    border: none;
    background: none;
    font-family: inherit;
}

::selection {
    background: var(--accent-pop);
    color: #fff;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    pointer-events: none;
    z-index: 9999999;
}

.cursor__dot {
    width: 100%;
    height: 100%;
    background: var(--pop-text);
    border-radius: 50%;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-pop);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999998;
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s, backdrop-filter 0.3s;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-follower.is-hover {
    width: 60px;
    height: 60px;
    background: rgba(17, 17, 17, 0.05);
}

.cursor-follower.is-view {
    width: 90px;
    height: 90px;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cursor-follower::after {
    content: "VIEW";
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--pop-text);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-follower.is-view::after {
    opacity: 1;
}

/* =========================================
   PAGE TRANSITION OVERLAY
   ========================================= */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    pointer-events: none;
}

.page-transition__logo {
    font-family: var(--ff-motif);
    font-size: 4rem;
    color: var(--pop-text);
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
}

/* =========================================
   PAGE TRANSITION OVERLAY
   ========================================= */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    pointer-events: none;
}

.page-transition__logo {
    font-family: var(--ff-motif);
    font-size: 4rem;
    color: var(--pop-text);
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
}

/* =========================================
   NOISE OVERLAY — Disabled per design request
   ========================================= */
.noise-overlay {
    display: none;
}

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: var(--pop-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__text-wrap {
    font-family: var(--ff-motif);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--pop-text);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    text-align: center;
}

.preloader__word {
    opacity: 0;
    display: none;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pop-border);
}

.navbar__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    font-family: var(--ff-brand);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--pop-text);
}

.navbar__logo-i {
    font-style: italic;
    color: var(--accent-pop);
    transition: color 0.5s ease;
}

.navbar__center {
    font-family: var(--ff-motif);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.navbar__cart {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--pop-text);
    border-radius: 40px;
    transition: all 0.3s;
}

.navbar__cart:hover {
    background: var(--pop-text);
    color: var(--pop-bg);
}

/* Mobile Menu Toggle Button */
.magnetic {
    display: inline-block;
    will-change: transform;
    transition: transform 0.1s;
}

.menu-btn {
    display: none;
    /* Desktop hidden */
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    z-index: 1001;
    position: relative;
}

.menu-btn.is-active .menu-btn__line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.menu-btn.is-active .menu-btn__line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.menu-btn__line {
    width: 100%;
    height: 2px;
    background: var(--pop-text);
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at top right);
}

.mobile-menu__inner {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu__link {
    font-family: var(--ff-motif);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    color: var(--pop-text);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.02em;
    transform: translateY(40px);
    opacity: 0;
}

.mobile-menu__footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--pop-text-mut);
    padding-top: 2rem;
    border-top: 1px solid var(--pop-border);
    opacity: 0;
}


/* =========================================
   MAIN LAYOUT & HERO
   ========================================= */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--pop-bg);
}

.hero__bg-marquee {
    position: absolute;
    top: 50%;
    width: 100vw;
    transform: translateY(-50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 2;
    /* Moved in front of the glitch container */
    mix-blend-mode: overlay;
    opacity: 0.8;
    /* Ensures the giant text acts like a luminous watermark over the bottles */
}

.hero__bg-marquee-inner {
    font-family: var(--ff-motif);
    font-size: clamp(8rem, 25vw, 25rem);
    font-weight: 700;
    color: var(--pop-surface);
    display: inline-block;
    padding-right: 2rem;
    line-height: 0.8;
    letter-spacing: -0.04em;
    user-select: none;
}

.hero__glitch-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Cyberpunk CRT Scanline Overlay */
.hero__glitch-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15) 0px,
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 3px);
    z-index: 3;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero__glitch-base,
.hero__glitch-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
}

.hero__glitch-base {
    z-index: 1;
    filter: contrast(1.1) brightness(0.85);
}

.hero__glitch-img {
    z-index: 2;
    transform-origin: center center;
    mix-blend-mode: hard-light;
    filter: contrast(1.5) saturate(1.3);
    animation: cyberpunkGlitch 4s infinite linear;
}

@keyframes cyberpunkGlitch {
    0% {
        opacity: 0;
        transform: scale(1);
        clip-path: inset(0 0 0 0);
        filter: drop-shadow(0 0 0 transparent) contrast(1.5);
    }

    /*30%  { opacity: 0; }*/
    31% {
        opacity: 1;
        transform: scale(1.05);
        clip-path: inset(20% 0 60% 0);
        filter: drop-shadow(15px 0 0 #0ff) drop-shadow(-15px 0 0 #f0f) contrast(1.8);
    }

    33% {
        opacity: 1;
        transform: scale(0.95);
        clip-path: inset(80% 0 5% 0);
        filter: drop-shadow(-15px 0 0 #0ff) drop-shadow(15px 0 0 #f0f) hue-rotate(90deg) invert(0.2);
    }

    35% {
        opacity: 0;
        transform: scale(1);
        clip-path: inset(0 0 0 0);
        filter: drop-shadow(0 0 0 transparent) contrast(1.5);
    }

    58% {
        opacity: 0;
    }

    59% {
        opacity: 0.9;
        transform: scale(1.1);
        clip-path: inset(45% 0 45% 0);
        filter: drop-shadow(20px 0 0 #0ff);
    }

    61% {
        opacity: 0;
    }

    85% {
        opacity: 0;
    }

    86% {
        opacity: 1;
        transform: scale(1);
        clip-path: inset(0 0 0 0);
    }

    88% {
        opacity: 1;
        transform: scale(1.02);
        filter: sepia(1.5) contrast(2) invert(0) hue-rotate(180deg);
    }

    89% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Third Layer PIXI Glitch Canvas */
.hero__pixi-glitch {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.8;
}

.hero__card {
    position: relative;
    z-index: 3;
    /* Elevated above marquee and glitches */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    max-width: 600px;
    width: 90%;
    transform-style: preserve-3d;
}

.hero__card-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-pop);
    margin-bottom: 1.5rem;
    display: block;
    transition: color 0.5s;
}

.hero__card-title {
    font-family: var(--ff-brand);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__card-desc {
    font-size: 1.1rem;
    color: var(--pop-text-mut);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-motif);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pop-text);
    z-index: 2;
}

/* =========================================
   THE GAMME SHOWCASE (Sticky Color Shift)
   ========================================= */
.showcase {
    position: relative;
    background: var(--pop-bg);
    transition: background-color 0.8s ease;
}

.showcase__pinned {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* navbar offset */
}

/* The ambient color glow behind the bottle */
.showcase__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: var(--accent-pop);
    opacity: 0.08;
    filter: blur(80px);
    transition: background 0.8s ease;
    z-index: 0;
    pointer-events: none;
}

.showcase__layout {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Col: Titles */
.showcase__col--left {
    text-align: left;
}

.showcase__num {
    font-family: var(--ff-motif);
    font-size: 8rem;
    font-weight: 700;
    line-height: 0.8;
    color: var(--pop-surface);
    -webkit-text-stroke: 1px var(--accent-pop);
    display: block;
    margin-bottom: 1rem;
    transition: -webkit-text-stroke 0.8s;
}

.showcase__title {
    font-family: var(--ff-motif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: var(--pop-text);
}

/* Center Col: Bottle Images */
.showcase__col--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60vh;
}

/* Scroll hint under product image */
.showcase__scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    opacity: 0.5;
    transition: opacity 0.4s ease;
    animation: showcaseHintBounce 2.5s ease-in-out infinite;
}

.showcase__scroll-hint:hover {
    opacity: 0.9;
}

.showcase__scroll-hint svg {
    width: 18px;
    height: 18px;
    color: var(--pop-text);
}

.showcase__scroll-hint-text {
    font-family: var(--ff-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pop-text-mut);
}

@keyframes showcaseHintBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.showcase__image-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
}

.showcase__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    mix-blend-mode: multiply;
    filter: drop-shadow(0 0 0 transparent);
}

.showcase__img.showcase__img--active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(5px 5px 80px var(--accent-pop));
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase__img.showcase__img--prev {
    opacity: 0;
    transform: translateY(-40px) scale(0.9);
}

/* Right Col: Details */
.showcase__col--right {
    text-align: left;
    padding-left: 2rem;
}

.showcase__subtitle {
    font-family: var(--ff-brand);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-pop);
    margin-bottom: 1rem;
    transition: color 0.8s;
}

.showcase__desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--pop-text-mut);
    margin-bottom: 2rem;
    max-width: 300px;
}

/* Specific Pill Button */
.pill-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--ff-motif);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.pill-btn--accent {
    background: var(--accent-pop);
    color: #fff;
    border: 2px solid transparent;
}

.pill-btn--accent:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pill-btn--dark {
    background: var(--pop-text);
    color: var(--pop-bg);
}

.pill-btn--huge {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
}

.pill-btn--dark::after {
    content: attr(data-hover-text);
    position: absolute;
    inset: 0;
    background: var(--accent-pop);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn--dark[data-hover-text=""]::after {
    display: none;
}

.pill-btn--dark:hover::after {
    transform: translateY(0);
}

.pill-btn--dark:hover {
    padding-left: 5rem;
    padding-right: 5rem;
}


/* =========================================
   PURE INGREDIENTS GRID
   ========================================= */
.ingredients {
    padding: 10rem 2rem;
    position: relative;
    background: var(--pop-surface);
    overflow: hidden;
}

/* Purity Starburst */
.ingredients__starburst {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 280px;
    height: 280px;
    color: var(--pop-text);
    opacity: 0.05;
    pointer-events: none;
    z-index: 10;
}

.ingredients__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.ingredients__title {
    font-family: var(--ff-motif);
    font-size: 4rem;
    text-transform: uppercase;
}

.ingredients__subtitle {
    font-family: var(--ff-brand);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--pop-text-mut);
}

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

.grid-item {
    padding-top: 2rem;
    border-top: 2px solid var(--pop-border);
    cursor: pointer;
    transition: border-color 0.4s;
}

.grid-item:hover {
    border-color: var(--pop-text);
}

.grid-item__num {
    font-family: var(--ff-motif);
    font-size: 3rem;
    color: var(--accent-pop);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-item:hover .grid-item__num {
    transform: translateX(10px) skewX(-10deg);
}

.grid-item__title {
    font-family: var(--ff-brand);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.grid-item__text {
    font-size: 1rem;
    color: var(--pop-text-mut);
    line-height: 1.8;
    transition: opacity 0.4s;
}

.grid-item:hover .grid-item__text {
    opacity: 0.6;
}

/* Text Slicer Mask */
.reveal-block {
    display: block;
    overflow: hidden;
}

.reveal-inner {
    display: block;
    transform: translateY(110%);
    opacity: 0;
}

/* Floating bubbles background */
.bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(17, 17, 17, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
    pointer-events: none;
}

.bubble--1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
}

.bubble--2 {
    width: 500px;
    height: 500px;
    top: 40%;
    right: -5%;
}

.bubble--3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 30%;
}

/* =========================================
   HORIZONTAL EXPLORE GALLERY
   ========================================= */
.drag-gallery {
    padding: 10rem 0;
    background: var(--pop-bg);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--pop-border);
}

.drag-gallery__header {
    text-align: center;
    margin-bottom: 4rem;
}

.drag-gallery__eyebrow {
    font-family: var(--ff-motif);
    color: var(--accent-pop);
    font-size: 1.2rem;
}

.drag-gallery__title {
    font-family: var(--ff-brand);
    font-size: 3rem;
}

.drag-track {
    display: flex;
    gap: 4rem;
    padding: 0 10vw;
    width: max-content;
}

.drag-item {
    width: 60vw;
    max-width: 800px;
    height: 60vh;
    background: var(--pop-surface);
    position: relative;
    overflow: hidden;
}

.drag-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
    transform-origin: center center;
}

/* ---- Dual-Row Gallery (>6 images) ---- */
.drag-gallery--dual {
    padding: 8rem 0;
}

.drag-gallery--dual .drag-track {
    padding: 0 4vw;
    gap: 1.5rem;
    width: max-content;
}

.drag-gallery--dual .drag-track--row1 {
    margin-bottom: 1.5rem;
}

.drag-gallery--dual .drag-item {
    width: 30vw;
    max-width: 480px;
    height: 35vh;
    min-height: 260px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.drag-gallery--dual .drag-item img {
    mix-blend-mode: normal;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.drag-gallery--dual .drag-item:hover img {
    transform: scale(1.05);
}

/* ---- Gallery Lightbox Popup ---- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.gallery-lightbox.is-active {
    display: flex;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: zoom-out;
}

.gallery-lightbox__content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    will-change: transform;
}

.gallery-lightbox__close {
    position: absolute;
    top: -3rem;
    right: -1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s, transform 0.3s;
    z-index: 3;
}

.gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

/* =========================================
   CTA & FOOTER
   ========================================= */
.cta-banner {
    padding: 12rem 2rem;
    background: var(--pop-bg);
    border-top: 1px solid var(--pop-border);
    text-align: center;
}

.cta-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cta-banner__title {
    font-family: var(--ff-motif);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4rem;
    color: var(--pop-text);
    /* For Wave scattering */
    perspective: 1000px;
    display: inline-block;
    cursor: crosshair;
}

.char-span {
    display: inline-block;
    transition: color 0.4s;
    transform-origin: center center;
    will-change: transform;
}

/* Footer Ribbon Marquee */
.footer-ribbon {
    width: 100%;
    border-top: 1px solid var(--pop-text);
    border-bottom: 1px solid var(--pop-border);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: var(--pop-surface);
}

.footer-ribbon__inner {
    font-family: var(--ff-motif);
    font-size: 1.2rem;
    display: inline-block;
    padding-right: 2rem;
    color: var(--pop-text);
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1;
}

.footer-light {
    padding: 4rem 2rem;
    background: var(--pop-bg);
}

.footer-light__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-light__brand {
    font-family: var(--ff-brand);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-light__logo-i {
    font-style: italic;
    color: var(--accent-pop);
}

.footer-light__links {
    display: flex;
    gap: 2rem;
}

.footer-light__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pop-text);
    transition: color 0.3s;
}

.footer-light__links a:hover {
    color: var(--accent-pop);
}

.footer-light__copy {
    font-size: 0.8rem;
    color: var(--pop-text-mut);
}

/* Liquid Progress Dial */
.progress-dial {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    z-index: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: difference;
    color: #fff;
}

.progress-dial svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
}

.progress-meter {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
}

.progress-dial__arrow {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 14px;
    pointer-events: none;
}

/* Hidden Reveal Image */
.hover-reveal-img {
    position: fixed;
    width: 30vw;
    height: 40vw;
    max-width: 350px;
    max-height: 500px;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 100;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    mix-blend-mode: multiply;
    /*border: 1px solid var(--pop-border);*/
}

.hover-reveal-img.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .showcase__layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .showcase__col--left,
    .showcase__col--right {
        text-align: center;
        padding: 0;
    }

    .showcase__col--center {
        height: 40vh;
        order: -1;
    }

    /* Image on top */
    .grid-editorial {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase__desc {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .navbar__center {
        display: none;
    }

    .navbar__cart {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .footer-light__inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero__card {
        padding: 3rem 1.5rem;
    }
}