/* ── Design Tokens ────────────────────────────────────────── */
:root {
    --wine: #7a1a2e;
    --wine-dark: #4d0f1d;
    --wine-mid: #9b2542;
    --rose: #c94060;
    --blush: #f5e0e6;
    --cream: #fdf8f4;
    --warm-white: #fffbf7;
    --text: #2a1218;
    --text-muted: #7a5560;
    --gold: #c9973a;
    --gold-light: #e8c87a;
    --shadow: rgba(122, 26, 46, 0.18);

    --font-display: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Jost', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ── Custom Cursor ───────────────────────────────────────── */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--wine);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background .3s;
    mix-blend-mode: multiply;
}

#cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--wine);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width .4s, height .4s, border-color .4s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
    width: 20px;
    height: 20px;
}

body:has(a:hover) #cursor-follower,
body:has(button:hover) #cursor-follower {
    width: 56px;
    height: 56px;
    border-color: var(--rose);
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--wine-mid);
    border-radius: 2px;
}

/* ── Loader ──────────────────────────────────────────────── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--wine-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

#loader-brand {
    font-family: var(--font-script);
    color: var(--gold-light);
    font-size: clamp(3rem, 8vw, 6rem);
    opacity: 0;
}

#loader-bar-wrap {
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, .15);
    border-radius: 2px;
    overflow: hidden;
}

#loader-bar {
    width: 0%;
    height: 100%;
    background: var(--gold-light);
    border-radius: 2px;
}

/* ── Nav ─────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 6%;
    transition: background .5s, padding .5s, box-shadow .5s;
}

nav.scrolled {
    background: rgba(253, 248, 244, .94);
    backdrop-filter: blur(12px);
    padding: 14px 6%;
    box-shadow: 0 1px 24px rgba(122, 26, 46, .1);
}

.nav-logo {
    font-family: var(--font-script);
    color: var(--wine);
    font-size: 2rem;
    text-decoration: none;

}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--wine-dark);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose);
    transition: width .4s var(--ease-out-expo);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--wine);
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 30px;
    font-size: .75rem !important;
    transition: background .3s, transform .3s !important;
}

.nav-cta:hover {
    background: var(--wine-dark) !important;
    transform: scale(1.04);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--wine);
    transition: .3s;
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--warm-white) 0%, var(--blush) 60%, #e8c4ce 100%);
    padding: 0 6%;
}

.hero-bg-ornament {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: min(700px, 90vw);
    height: min(700px, 90vw);
    border-radius: 50%;
    background: radial-gradient(ellipse at 60% 40%, rgba(201, 64, 96, .12), transparent 65%);
    pointer-events: none;
}

/* ── Hero Floating Image ─────────────────────────────────── */
.hero-image-wrapper {
    position: absolute;
    right: 2%;
    /* Pushed slightly right for balance */
    top: 65%;
    transform: translateY(-50%);
    width: min(650px, 50vw);
    z-index: 2;
    pointer-events: none;
    /* Prevents the invisible box from blocking text selection */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cake-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    /* Creates a soft, warm backlight behind the cake */
    background: radial-gradient(circle, rgba(253, 248, 244, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.hero-cake-png {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    /* This creates a realistic shadow based on the PNG's alpha channel, unlike box-shadow */
    filter: drop-shadow(0 30px 40px rgba(122, 26, 46, 0.25));
    visibility: hidden;
    /* Hidden initially so GSAP can animate it in cleanly */
}

/* Update Responsive Media Query for Mobile (max-width: 1024px) */
@media(max-width:1024px) {

    /* Hide the floating image on tablet/mobile to keep the text readable, or adjust its position */
    .hero-image-wrapper {
        display: none;
    }
}

.hero-content {
    max-width: 580px;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--rose);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--wine-dark);
    margin-bottom: 10px;
}

.hero-title em {
    font-style: italic;
    color: var(--rose);
}

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--gold);
    display: block;
    margin-bottom: 28px;
    line-height: 1.2;
}

.hero-desc {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 44px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--wine);
    color: #fff;
    padding: 15px 36px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: background .3s, transform .3s, box-shadow .3s;
    box-shadow: 0 8px 32px rgba(122, 26, 46, .3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(122, 26, 46, .4);
}

.btn-secondary {
    background: transparent;
    color: var(--wine);
    padding: 14px 34px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--wine);
    cursor: none;
    transition: background .3s, color .3s, transform .3s;
}

.btn-secondary:hover {
    background: var(--wine);
    color: #fff;
    transform: translateY(-2px);
}

.hero-stats {
    margin-top: 56px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--wine);
    display: block;
}

.stat-label {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(122, 26, 46, .2);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 6%;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--text-muted);
}

/* ── Section Commons ─────────────────────────────────────── */
section {
    padding: 100px 6%;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--rose);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--wine-dark);
    line-height: 1.1;
}

.section-title em {
    font-style: italic;
    color: var(--rose);
}

.section-subtitle {
    font-size: .92rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 520px;
    margin-top: 16px;
    font-weight: 300;
}

/* ── Story / About ───────────────────────────────────────── */

/* ── Editorial Story Layout ──────────────────────────────── */
.editorial-story {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding: 120px 6%;
}

/* ── Visuals & Imagery ───────────────────────────────────── */
.story-visuals {
    position: relative;
    width: 100%;
}

.story-img-main {
    width: 85%;
    aspect-ratio: 4/5;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(122, 26, 46, 0.08);
}

.story-img-main img,
.story-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.story-img-main:hover img,
.story-img-secondary:hover img {
    transform: scale(1.05);
}

.story-img-secondary {
    position: absolute;
    bottom: -12%;
    right: 0;
    width: 55%;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(122, 26, 46, 0.15);
    border: 8px solid var(--warm-white);
    /* Creates a cutout effect */
}

/* ── Rotating SVG Stamp ──────────────────────────────────── */
.story-stamp {
    position: absolute;
    top: -5%;
    right: 5%;
    width: 130px;
    height: 130px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(122, 26, 46, 0.1);
    z-index: 10;
}

.rotating-text-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
}

.rotating-text-svg text {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    font-weight: 500;
    fill: var(--wine);
    text-transform: uppercase;
}

.stamp-icon {
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ── Typography & Content ────────────────────────────────── */
.story-quote-box {
    position: relative;
    margin: 36px 0 32px;
    padding: 24px 32px;
    background: var(--cream);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.editorial-quote-mark {
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--blush);
    line-height: 1;
    opacity: 0.5;
}

.story-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--wine-mid);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.story-body {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 300;
}

.drop-cap {
    float: left;
    font-family: var(--font-display);
    font-size: 3.8rem;
    line-height: 0.8;
    color: var(--wine);
    margin-right: 12px;
    margin-top: 6px;
    font-style: italic;
}

.story-actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.signature-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--gold);
}

/* ── Responsive Updates ──────────────────────────────────── */
@media(max-width:1024px) {
    .editorial-story {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 80px 6%;
    }

    .story-img-main {
        width: 90%;
    }

    .story-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ── Cinematic Video Section ─────────────────────────────── */
#behind-scenes {
    padding: 100px 6%;
    background: var(--cream);
}

.cinematic-wrapper {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 550px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(122, 26, 46, 0.12);
}

.cinematic-wrapper .parallax-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    /* Extra height to allow for smooth parallax scrolling */
    top: -10%;
    object-fit: cover;
    z-index: 0;
}

.cinematic-overlay {
    position: absolute;
    inset: 0;
    /* Dark gradient on the left for text, fading to transparent on the right */
    background: linear-gradient(to right, rgba(42, 18, 24, 0.85) 0%, rgba(77, 15, 29, 0.4) 45%, transparent 100%);
    z-index: 1;
}

.film-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.05;
    pointer-events: none;
    /* Inlines an SVG noise pattern for instant premium texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.video-content-block {
    position: relative;
    z-index: 3;
    max-width: 540px;
    padding-left: 8%;
}

.video-content-block .section-eyebrow {
    color: var(--gold-light);
}

.video-content-block .section-eyebrow::before {
    background: var(--gold-light);
}

.video-content-block .section-title {
    color: #fff;
}

.video-content-block .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Play Reel Button ────────────────────────────────────── */
.play-reel-btn {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: none;
    /* Respects your custom cursor */
    color: #fff;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
}

.play-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, background 0.4s;
    backdrop-filter: blur(4px);
}

/* Pulsing outer ring */
.play-circle::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: pulse-ring 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.play-circle svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-left: 4px;
    /* Visually centers the triangle */
}

.play-reel-btn:hover .play-circle {
    transform: scale(1.05);
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustment */
@media(max-width: 768px) {
    .cinematic-overlay {
        background: linear-gradient(to top, rgba(42, 18, 24, 0.9) 0%, rgba(77, 15, 29, 0.5) 70%, transparent 100%);
    }

    .video-content-block {
        padding: 0 6%;
        margin-top: auto;
        margin-bottom: 40px;
    }

    .play-reel-btn {
        top: 40px;
        bottom: auto;
    }
}

/* ── Signature Cakes (Swiper) ────────────────────────────── */
#signature {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.cakes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 20px;
}

/* ── Swiper Layout Safeguards ────────────────────────────── */
/* Prevents the massive image glitch if JS is delayed */
.swiper {
    width: 100%;
    overflow: hidden !important;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
}

.swiper-slide {
    flex-shrink: 0;
    /* Safe fallback widths matching your JS breakpoints */
    width: 85%;
}

@media(min-width: 600px) {
    .swiper-slide {
        width: 45%;
    }
}

@media(min-width: 900px) {
    .swiper-slide {
        width: 30%;
    }
}

@media(min-width: 1200px) {
    .swiper-slide {
        width: 28%;
    }
}

.swiper-cake {
    padding-bottom: 50px !important;
}


/* ── Premium Product Cards ───────────────────────────────── */
.premium-product-card {
    cursor: pointer;
    group: relative;
    /* Useful if migrating to Tailwind later */
}

.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    background: var(--blush);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.premium-product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--wine);
    color: #fff;
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 2;
}

/* The Hover Quick View Overlay */
.quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(77, 15, 29, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.quick-view-overlay span {
    background: var(--cream);
    color: var(--wine-dark);
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.premium-product-card:hover .quick-view-overlay {
    opacity: 1;
}

.premium-product-card:hover .quick-view-overlay span {
    transform: translateY(0);
}

.product-meta {
    padding: 20px 0;
    text-align: center;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--wine-dark);
    margin-bottom: 6px;
}

.product-price {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--wine);
    font-weight: 500;
}

.product-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ── Quick View Modal ────────────────────────────────────── */
.qv-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
}

.qv-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 18, 24, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
}

.qv-content-wrapper {
    position: relative;
    background: var(--cream);
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(40px) scale(0.98);
}

.qv-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 1.2rem;
    color: var(--wine-dark);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.qv-close:hover {
    background: #fff;
    transform: scale(1.1);
}

.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.qv-image-col {
    background: var(--blush);
}

.qv-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qv-text-col {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qv-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--wine-dark);
    line-height: 1.1;
    margin-bottom: 12px;
}

.qv-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--wine);
    margin-bottom: 24px;
}

.qv-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 36px;
}

/* Responsive Modal */
@media(max-width: 768px) {
    .qv-grid {
        grid-template-columns: 1fr;
    }

    .qv-image-col {
        height: 300px;
    }

    .qv-text-col {
        padding: 36px 24px;
    }

    .qv-title {
        font-size: 2.2rem;
    }
}

/* ── Premium Custom Form ─────────────────────────────────── */
/* ── Editorial Custom Form ───────────────────────────────── */
.editorial-custom-section {
    background: var(--cream);
    padding: 100px 6%;
}

.custom-split-container {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(122, 26, 46, 0.05);
    max-width: 1300px;
    margin: 0 auto;
    border: 1px solid rgba(122, 26, 46, 0.05);
}

/* Left Image Column */
.custom-image-col {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.custom-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-out-expo);
}

.custom-image-col:hover .custom-cover-img {
    transform: scale(1.05);
}

.custom-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 18, 24, 0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.overlay-badge {
    background: var(--wine);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    width: max-content;
    margin-bottom: 12px;
}

.custom-image-overlay h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.1;
    font-weight: 300;
}

/* Right Form Column */
.custom-form-col {
    width: 60%;
    padding: 70px 80px;
    background: #fff;
}

.inquiry-form-wrapper {
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Light Theme Floating Labels */
.form-row {
    position: relative;
    margin-bottom: 28px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(122, 26, 46, 0.15);
    padding: 16px 0 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--wine-dark);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
}

.form-row textarea {
    min-height: 80px;
    resize: vertical;
}

.form-row label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
    font-weight: 300;
}

/* Light Theme Focus States */
.form-row input:focus~label,
.form-row input:not(:placeholder-shown)~label,
.form-row textarea:focus~label,
.form-row textarea:not(:placeholder-shown)~label,
.form-row select:focus~label,
.form-row select:valid~label,
.active-label {
    top: -8px;
    font-size: 0.7rem;
    color: var(--wine);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-bottom-color: var(--wine);
}

.form-row select option {
    background: #fff;
    color: var(--wine-dark);
}

/* Light Theme Drag & Drop */
.light-upload {
    border: 1.5px dashed rgba(122, 26, 46, 0.2);
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--warm-white);
    margin-top: 10px;
}

.light-upload:hover,
.light-upload.dragover {
    background: var(--blush);
    border-color: var(--rose);
}

.light-upload .upload-icon {
    color: var(--wine);
    margin-bottom: 12px;
}

.light-upload .upload-text {
    display: block;
    font-size: 0.9rem;
    color: var(--wine-dark);
    margin-bottom: 4px;
}

.light-upload .upload-text strong {
    color: var(--wine);
    font-weight: 500;
}

.light-upload .upload-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.light-upload .file-name-display {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--rose);
    font-style: italic;
    word-break: break-all;
}

/* Responsive Adjustments */
@media(max-width: 1024px) {
    .custom-split-container {
        flex-direction: column;
    }

    .custom-image-col {
        width: 100%;
        height: 350px;
    }

    .custom-form-col {
        width: 100%;
        padding: 50px 6%;
    }
}

@media(max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}



/* ── Testimonials ────────────────────────────────────────── */

/* ── Premium Editorial Testimonials ──────────────────────── */
.editorial-testimonials {
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
    padding: 100px 6%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-eyebrow {
    justify-content: center;
}

.testimonials-header .section-eyebrow::before {
    display: none;
}

.swiper-testimonials {
    padding-bottom: 60px !important;
}

/* The Card Frame */
.testimonial-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Soft double-shadow for a "thick cardstock" feel */
    box-shadow: 0 4px 20px rgba(122, 26, 46, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(122, 26, 46, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Background Watermark Quote */
.quote-watermark {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 14rem;
    color: var(--blush);
    opacity: 0.3;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* SVG Star Rating */
.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.star-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

/* The Review Text */
.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--wine-dark);
    line-height: 1.6;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    /* Pushes the author block to the bottom if cards are different heights */
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(122, 26, 46, 0.08);
    padding-top: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--warm-white);
    box-shadow: 0 4px 10px rgba(122, 26, 46, 0.1);
}

.author-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--wine-dark);
    letter-spacing: 0.02em;
}

.author-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Custom Swiper Pagination Dots */
.swiper-testimonials .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--wine-mid);
    opacity: 0.2;
    transition: all 0.3s;
}

.swiper-testimonials .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
    background: var(--wine);
}

@media(max-width: 768px) {
    .testimonial-card {
        padding: 36px 28px;
    }

    .quote-watermark {
        font-size: 10rem;
        top: -10px;
        right: 10px;
    }
}

/* ── Premium Gallery (Bento Layout) ──────────────────────── */
#gallery {
    background: var(--cream);
    padding: 100px 6%;
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.gallery-header .section-eyebrow {
    justify-content: center;
}

.gallery-header .section-eyebrow::before {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    /* Locks the height of each row for a perfect puzzle fit */
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* The Bento Box Puzzle Logic */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Big square top left */
.gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Small top middle */
.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
}

/* Tall right edge */
.gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Small middle */
.gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}

/* Wide bottom left */
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
}

/* Wide bottom right */

.gallery-ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.gallery-item:hover .gallery-ph {
    transform: scale(1.07);
}

/* Premium Reveal Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 18, 24, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.6rem;
    transform: translateY(20px);
    transition: transform 0.5s var(--ease-out-expo);
}

.gallery-item:hover .gallery-overlay-text {
    transform: translateY(0);
}

.gallery-overlay-line {
    width: 0;
    height: 2px;
    background: var(--gold-light);
    margin-top: 12px;
    transition: width 0.6s var(--ease-out-expo) 0.1s;
    /* Slight delay for staggered elegance */
}

.gallery-item:hover .gallery-overlay-line {
    width: 50px;
}

/* Responsive Degradation */
@media(max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    /* Restructure the puzzle for tablets */
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Changes from tall to normal */
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media(max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    /* Stack them beautifully on phones */
    .gallery-item:nth-child(n) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* ── Philosophy / Craft Section ──────────────────────────── */
.craft-section {
    background: var(--cream);
    padding: 120px 6%;
}

.craft-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.craft-header .section-eyebrow {
    justify-content: center;
}

.craft-header .section-eyebrow::before {
    display: none;
    /* Removes the line for centered eyebrows */
}

/* Elegant flush grid */
.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(122, 26, 46, 0.1);
    background: var(--warm-white);
    border-radius: 4px;
    /* Very subtle rounding */
    max-width: 1100px;
    margin: 0 auto;
}

.craft-item {
    padding: 60px 48px;
    display: flex;
    gap: 28px;
    border-bottom: 1px solid rgba(122, 26, 46, 0.1);
    border-right: 1px solid rgba(122, 26, 46, 0.1);
    transition: background 0.5s ease;
}

/* Remove right border from the 2nd column */
.craft-item:nth-child(2n) {
    border-right: none;
}

/* Remove bottom border from the last row */
.craft-item:nth-last-child(-n+2) {
    border-bottom: none;
}

/* A soft, luxurious hover fade */
.craft-item:hover {
    background: var(--blush);
}

.craft-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--rose);
    font-style: italic;
    line-height: 1;
    opacity: 0.8;
}

.craft-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--wine-dark);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.craft-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .craft-item {
        padding: 40px 32px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .craft-grid {
        grid-template-columns: 1fr;
    }

    .craft-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(122, 26, 46, 0.1);
    }

    .craft-item:last-child {
        border-bottom: none;
    }
}



/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .4), 0 0 0 10px rgba(37, 211, 102, .1);
    }
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* ── Editorial Location Section ──────────────────────────── */
.editorial-location {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 120px 6%;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: 8px;
    background: transparent;
    transition: background 0.3s, transform 0.3s;
    border: 1px solid transparent;
}

/* Subtle interactive hover effect */
.info-item:hover {
    background: var(--warm-white);
    border-color: rgba(122, 26, 46, 0.05);
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--wine);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.info-item:hover .info-icon {
    background: var(--wine);
    color: #fff;
}

.info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
}

.info-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.info-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--wine-dark);
    line-height: 1.4;
}

/* ── Premium Map Card ────────────────────────────────────── */
.map-card {
    width: 100%;
    height: 540px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(122, 26, 46, 0.1);
    group: relative;
}

.map-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-out-expo);
}

.map-card:hover .map-bg {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 18, 24, 0.85) 0%, rgba(77, 15, 29, 0.3) 100%);
    z-index: 1;
}

.map-interactive-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Animated Map Pin */
.map-pin-wrap {
    position: relative;
    margin-bottom: auto;
    /* Pushes the details box to the bottom */
    margin-top: auto;
}

.pin-icon {
    width: 44px;
    height: 44px;
    color: var(--gold-light);
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.map-card:hover .pin-icon {
    transform: translateY(-8px);
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: location-pulse 2s infinite;
}

@keyframes location-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Map Details Box */
.map-details-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 32px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    transform: translateY(10px);
    transition: transform 0.5s var(--ease-out-expo);
}

.map-card:hover .map-details-box {
    transform: translateY(0);
}

.map-city {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 6px;
}

.map-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 300;
}

.btn-map {
    background: #fff;
    color: var(--wine-dark);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, transform 0.3s;
    cursor: none;
    /* Respects your custom cursor */
}

.btn-map:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

@media(max-width: 1024px) {
    .editorial-location {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 80px 6%;
    }

    .map-card {
        height: 450px;
    }
}

/* ── Premium Editorial Footer ────────────────────────────── */
.editorial-footer {
    background: var(--wine-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 6% 30px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--gold-light);
    display: inline-block;
    margin-bottom: 16px;
    line-height: 1;
}

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.65);
}

.social-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-links a:hover::before {
    width: 12px;
}

/* Newsletter Section */
.footer-newsletter p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    transition: border-color 0.3s;
}

.newsletter-form:focus-within {
    border-color: var(--gold-light);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    background: none;
    border: none;
    color: var(--gold-light);
    cursor: pointer;
    padding: 0 8px;
    transition: transform 0.3s;
}

.newsletter-form button:hover {
    transform: translateX(4px);
}

/* Bottom Bar & Agency Credit */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.agency-credit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.exawep-badge {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
    letter-spacing: 0.05em;
}

.exawep-badge svg {
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s;
    width: 0;
    /* Hides icon initially to keep badge compact */
}

.exawep-badge:hover {
    background: var(--gold);
    color: var(--wine-dark);
    border-color: var(--gold);
}

.exawep-badge:hover svg {
    opacity: 1;
    transform: translate(0, 0);
    width: 12px;
}

/* Responsive Footer */
@media(max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media(max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-section {
    background: var(--wine);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, .8);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-light);
    flex-shrink: 0;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ── Reveal Animations (JS-driven) ──────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

/* ── Responsive ──────────────────────────────────────────── */
@media(max-width:1024px) {

    #story,
    #custom .custom-grid,
    #location,
    #flavors {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    nav .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-circle-decoration {
        display: none;
    }

    #hero {
        padding: 120px 6% 80px;
    }

    .promo-badge {
        right: 10px;
        width: 110px;
        height: 110px;
        font-size: 1rem;
    }

    .promo-badge span {
        font-size: 1.4rem;
    }
}

@media(max-width:640px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Sticky nav mobile menu ───────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1003;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: .5s var(--ease-out-expo);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--wine-dark);
    text-decoration: none;
    font-weight: 400;
    font-style: italic;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 6%;
    font-size: 2rem;
    cursor: pointer;
    color: var(--wine-dark);
    background: none;
    border: none;
}

/* ── Mobile & Accessibility Fixes ──────────────────────────── */
@media (pointer: coarse) {

    /* Revert to default cursor on touch devices to avoid double-tap bugs */
    body,
    .btn-primary,
    .btn-secondary,
    .btn-wa,
    .swiper-btn,
    a {
        cursor: auto !important;
    }

    /* Hide the custom cursor elements */
    #cursor,
    #cursor-follower {
        display: none !important;
    }
}

/* ── Navbar Additions (Cart Icon) ────────────────────────── */
.nav-actions {
    display: flex;
    align-items: center;
}

.cart-toggle-btn {
    background: none;
    border: none;
    color: var(--wine-dark);
    cursor: pointer;
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--rose);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(20%, -20%);
}

/* ── Menu Hero ───────────────────────────────────────────── */
.menu-page {
    background: var(--warm-white);
}

.menu-hero {
    padding: 140px 6% 60px;
    text-align: center;
    background: var(--cream);
    border-bottom: 1px solid rgba(122, 26, 46, 0.05);
}

.menu-hero .section-eyebrow {
    justify-content: center;
}

.menu-hero .section-eyebrow::before {
    display: none;
}



/* ── Menu Toolbar & Search ───────────────────────────────── */
.menu-toolbar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1300px;
    margin: 0 auto 40px;
}

@media(min-width: 768px) {
    .menu-toolbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.menu-search {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.menu-search input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: 40px;
    border: 1px solid rgba(122, 26, 46, 0.15);
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--wine-dark);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 26, 46, 0.03);
}

.menu-search input::placeholder {
    color: rgba(122, 26, 46, 0.4);
}

.menu-search input:focus {
    border-color: var(--wine);
    box-shadow: 0 6px 16px rgba(122, 26, 46, 0.08);
}

.menu-search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(122, 26, 46, 0.5);
    width: 18px;
    height: 18px;
    transition: 0.3s;
}

.menu-search input:focus+svg {
    color: var(--wine);
}

.menu-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    /* Hide scrollbar for clean UI */
    scrollbar-width: none;
}

.menu-categories::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    background: #fff;
    border: 1px solid rgba(122, 26, 46, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    color: var(--wine-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cat-btn:hover {
    border-color: var(--wine-mid);
    color: var(--wine);
}

.cat-btn.active {
    background: var(--wine);
    color: #fff;
    border-color: var(--wine);
    box-shadow: 0 6px 16px rgba(122, 26, 46, 0.2);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed rgba(122, 26, 46, 0.2);
}

/* ── Product Grid ────────────────────────────────────────── */
.menu-container {
    padding: 80px 6%;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid rgba(122, 26, 46, 0.04);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(122, 26, 46, 0.08);
}

.card-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.menu-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--wine-dark);
    margin-bottom: 6px;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    height: 40px;
    /* Locks height to keep grid uniform */
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(122, 26, 46, 0.08);
    padding-top: 16px;
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--wine);
}

.btn-add {
    background: var(--blush);
    color: var(--wine-dark);
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.3s;
}

.btn-add:hover {
    background: var(--wine);
    color: #fff;
}

/* ── Customization Modal ─────────────────────────────────── */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.menu-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 18, 24, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 850px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.menu-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    font-size: 1.2rem;
    color: var(--wine-dark);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.modal-close:hover {
    background: var(--blush);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--wine-dark);
    margin-bottom: 4px;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

/* Pill Selectors for Variants */
.variant-section {
    margin-bottom: 24px;
}

.variant-section label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.variant-section .req {
    color: var(--rose);
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-group input[type="radio"] {
    display: none;
}

.pill-group label {
    padding: 8px 16px;
    border: 1px solid rgba(122, 26, 46, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--wine-dark);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}

.pill-group input[type="radio"]:checked+label {
    background: var(--wine);
    color: #fff;
    border-color: var(--wine);
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(122, 26, 46, 0.2);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.modal-input:focus {
    border-color: var(--wine);
}

.modal-action-bar {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-total {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-total span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--wine);
    display: block;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1;
}

/* ── Slide-Out Cart ──────────────────────────────────────── */
.cart-sidebar {
    position: fixed;
    inset: 0;
    z-index: 10001;
    visibility: hidden;
}

.cart-sidebar.open {
    visibility: visible;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: 0.4s;
}

.cart-sidebar.open .cart-backdrop {
    opacity: 1;
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--cream);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open .cart-panel {
    transform: translateX(0);
}

.cart-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(122, 26, 46, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--wine-dark);
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px 30px;
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 40px;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(122, 26, 46, 0.05);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 500;
    color: var(--wine-dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wine);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--rose);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.cart-footer {
    padding: 24px 30px;
    background: #fff;
    border-top: 1px solid rgba(122, 26, 46, 0.1);
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.cart-summary span:last-child {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--wine-dark);
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.btn-wa-checkout {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-wa-checkout:hover {
    background: #20b858;
    transform: translateY(-2px);
}

@media(max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-img-col img {
        min-height: 250px;
        height: 250px;
    }

    .modal-details {
        padding: 30px 24px;
    }

    .cart-panel {
        max-width: 100%;
    }
}

/* ==========================================================================
   FINAL MOBILE POLISH & BUG FIXES
   ========================================================================== */

/* 1. Prevent Horizontal Scroll Blowout (Crucial for GSAP visibility on mobile) */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 768px) {

    /* 2. Global Section Padding Reduction for Mobile Space */
    section,
    .editorial-custom-section,
    .editorial-location,
    .editorial-testimonials,
    .craft-section {
        padding: 70px 5% !important;
    }

    /* 3. Clean up the Navigation Bar */
    .nav-cta {
        display: none !important;
        /* Hides "Order Now" to make room for Cart/Hamburger */
    }

    #main-nav {
        padding: 16px 5%;
    }

    .nav-actions {
        gap: 12px !important;
    }

    /* 4. Hero Section Mobile Polish (Centered & Stacked) */
    #hero {
        padding: 120px 5% 60px !important;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-eyebrow::before {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.6rem, 10vw, 3.5rem);
        /* Prevents word-wrapping breaks */
    }

    .hero-desc {
        text-align: center;
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        /* Fixes horizontal overflow */
        margin-top: 40px;
    }

    .stat-divider {
        display: none;
        /* Hide dividers on mobile to save space */
    }

    /* 5. Fix Custom Form Image Collapse */
    .custom-image-col {
        min-height: 280px !important;
    }

    .custom-form-col {
        padding: 40px 5% !important;
    }

    /* 6. Fix Craft Section Stacking */
    .craft-item {
        padding: 30px 20px !important;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .craft-num {
        font-size: 1.8rem;
    }

    /* 7. Footer Alignment */
    .footer-top {
        gap: 40px;
        text-align: center;
    }

    .social-row {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }
}

/* 8. Force Custom Cursor Off on Touch Devices to avoid sticking */
@media (pointer: coarse),
(max-width: 1024px) {

    #cursor,
    #cursor-follower {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    *,
    a,
    button {
        cursor: auto !important;
    }
}


/* ── Cart Quantity Controls ──────────────────────────────── */
.cart-item-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(122, 26, 46, 0.05);
    padding: 4px 8px;
    border-radius: 20px;
}

.cart-item-qty-controls button {
    background: #fff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* Removed cursor: none so it functions easily */
    color: var(--wine-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    transition: transform 0.2s;
}

.cart-item-qty-controls button:hover {
    transform: scale(1.1);
}

.cart-item-qty-controls span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wine-dark);
    min-width: 12px;
    text-align: center;
}

/* ── Menu Toolbar & Search ───────────────────────────────── */
.menu-toolbar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1300px;
    margin: 0 auto 40px;
}

@media(min-width: 768px) {
    .menu-toolbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.menu-search {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.menu-search input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: 40px;
    border: 1px solid rgba(122, 26, 46, 0.15);
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--wine-dark);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 26, 46, 0.03);
}

.menu-search input::placeholder {
    color: rgba(122, 26, 46, 0.4);
}

.menu-search input:focus {
    border-color: var(--wine);
    box-shadow: 0 6px 16px rgba(122, 26, 46, 0.08);
}

.menu-search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(122, 26, 46, 0.5);
    width: 18px;
    height: 18px;
    transition: 0.3s;
}

.menu-search input:focus+svg {
    color: var(--wine);
}

.menu-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.menu-categories::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    background: #fff;
    border: 1px solid rgba(122, 26, 46, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    color: var(--wine-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cat-btn:hover {
    border-color: var(--wine-mid);
    color: var(--wine);
}

.cat-btn.active {
    background: var(--wine);
    color: #fff;
    border-color: var(--wine);
    box-shadow: 0 6px 16px rgba(122, 26, 46, 0.2);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed rgba(122, 26, 46, 0.2);
}

/* ── Cart Quantity Controls ──────────────────────────────── */
.cart-item-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(122, 26, 46, 0.05);
    padding: 4px 8px;
    border-radius: 20px;
}

.cart-item-qty-controls button {
    background: #fff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--wine-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    transition: transform 0.2s;
}

.cart-item-qty-controls button:hover {
    transform: scale(1.1);
}

.cart-item-qty-controls span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wine-dark);
    min-width: 12px;
    text-align: center;
}

/* ── Legal & Policy Pages (Editorial Layout) ─────────────── */
.legal-page {
    background: var(--cream);
}

.legal-hero {
    padding: 180px 6% 60px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid rgba(122, 26, 46, 0.05);
}

.legal-hero .section-eyebrow::before {
    display: none;
}

.legal-update-date {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    font-style: italic;
    margin-top: 20px;
    letter-spacing: 0.05em;
}

.legal-container {
    padding: 80px 6% 120px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(122, 26, 46, 0.03);
    border: 1px solid rgba(122, 26, 46, 0.05);
}

.legal-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 24px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--wine-dark);
    margin: 48px 0 20px;
    font-weight: 500;
    line-height: 1.2;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 12px;
}

.legal-content strong {
    color: var(--wine);
    font-weight: 500;
}

/* Responsive Legal Text */
@media(max-width: 768px) {
    .legal-content {
        padding: 40px 30px;
    }

    .legal-content h2 {
        font-size: 1.6rem;
        margin-top: 36px;
    }
}