@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #000000;
    --secondary: #FFFFFF;
    --accent: #FF3B30;
    --muted: #8E8E93;
    --bg: #0A0A0A;
    --bg-alt: #121212;
    --bg-cream: #F5F3F0;
    --bg-cream-alt: #EAE6E1;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg);
    color: var(--secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Custom Magnetic Cursor --- */
#cursor {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

#cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.huge-text { 
    font-size: clamp(3rem, 8vw, 6.5rem); 
    font-weight: 700; 
    line-height: 1.0; 
    letter-spacing: -0.03em; 
    word-break: break-word; 
    overflow-wrap: break-word; 
}

.section-title { 
    font-size: clamp(1.8rem, 4vw, 3.5rem); 
    font-family: var(--font-heading); 
    text-transform: uppercase; 
    font-weight: 700; 
    line-height: 1.1; 
    letter-spacing: -0.02em; 
}

.label { 
    font-size: 0.65rem; 
    letter-spacing: 0.2em; 
    color: var(--muted); 
    text-transform: uppercase; 
    font-weight: 600; 
}

/* --- Layout --- */
.container-vanguard { width: 100%; padding: 0 6vw; }
.v-space-xl { padding: 120px 0; }
.v-space-l { padding: 80px 0; }

/* --- Header (Editorial Floating) --- */
#vanguard-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

#vanguard-header.scrolled {
    padding: 20px 6vw;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.nav-links { display: flex; gap: 60px; }

/* Right side wrapper — always visible so hamburger shows on mobile */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-actions .nav-links { gap: 30px; }
.nav-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--secondary); }
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
}
.nav-link:hover::before { width: 100%; }

/* --- Hero (Asymmetric Split) --- */
.v-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-main-media {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    background: #111 url('https://images.unsplash.com/photo-1509631179647-0177331693ae?auto=format&fit=crop&q=80&w=1200') no-repeat center center;
    background-size: cover;
}

.hero-main-media img, .hero-main-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(1); */
    transition: filter 1s;
}

.v-hero:hover .hero-main-media img, .v-hero:hover .hero-main-media video { filter: grayscale(0); }

.hero-content-wrap {
    position: relative;
    z-index: 10;
    padding-left: 6vw;
}

.hero-title-overlap {
    position: relative;
    mix-blend-mode: difference;
}

/* --- Grids --- */
.v-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

/* --- Components --- */
.v-card {
    position: relative;
    background: transparent !important;
    overflow: hidden;
}

.v-card-media {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-cream-alt);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.v-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.v-card-content {
    padding: 30px 0;
}

.v-btn {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.v-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.v-btn-fill {
    background: var(--secondary);
    color: var(--primary);
}

/* --- Lookbook Masonry --- */
.lookbook-section {
    background: var(--secondary);
    color: var(--primary);
}

.glass-box {
    background: rgba(0,0,0,0.05);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 80px;
}

/* --- Footer --- */
.v-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 120px 0 60px;
}

/* --- Animations --- */
.animate-reveal {
    opacity: 0;
    transform: translateY(100px);
}

/* =========================================
   MOBILE MENU DRAWER
   ========================================= */

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    #cursor, #cursor-follower { display: none !important; }
    * { cursor: auto !important; }
}

/* Hamburger / close toggle button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    z-index: 1100;
    position: relative;
}

/* Full-screen mobile drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: #0A0A0A;
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-drawer .mobile-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.mobile-nav-drawer .mobile-nav-link:hover,
.mobile-nav-drawer .mobile-nav-link:active {
    color: #ffffff;
}

.mobile-nav-drawer .mobile-drawer-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6vw;
}

.mobile-nav-drawer .mobile-drawer-footer .mobile-cart-link {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

/* =========================================
   MOBILE / TABLET BREAKPOINTS
   ========================================= */

@media (max-width: 1024px) {
    /* Show hamburger, hide desktop nav links */
    .menu-toggle { display: block; }
    .nav-links { display: none; }

    /* Hero: make media full-width behind content */
    .hero-main-media { width: 100%; opacity: 0.45; }
    .container-vanguard { padding: 0 20px; }
}

@media (max-width: 768px) {
    /* Typography scale-down */
    .huge-text {
        font-size: clamp(2.4rem, 11vw, 4.5rem);
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
    }

    .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }

    /* Spacing reduction */
    .v-space-xl { padding: 60px 0; }
    .v-space-l  { padding: 40px 0; }
    .py-20      { padding-top: 4rem !important; padding-bottom: 4rem !important; }
    .mt-20      { margin-top: 3rem !important; }
    .mb-20      { margin-bottom: 3rem !important; }
    .mb-10      { margin-bottom: 2rem !important; }
    .mt-10      { margin-top: 2rem !important; }
    .my-10      { margin-top: 2rem !important; margin-bottom: 2rem !important; }

    /* Header padding */
    #vanguard-header { padding: 20px 20px; }
    #vanguard-header.scrolled { padding: 16px 20px; }
    .inner-page #vanguard-header { padding: 16px 20px !important; }

    /* Glass box - way too much padding on mobile */
    .glass-box { padding: 30px 24px !important; }

    /* Footer full-width description */
    .w-75 { width: 100% !important; }

    /* Footer stack */
    .v-footer .row { flex-direction: column; }
    .v-footer { padding: 60px 0 40px; }

    /* Gallery grid: single column */
    .gallery-item-wrap { aspect-ratio: 4/3 !important; }

    /* About values section */
    .border-end { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.15) !important; }
    .pe-lg-10, .px-lg-10 { padding-right: 0 !important; padding-left: 0 !important; }

    /* Nav brand smaller */
    .nav-brand { font-size: 1.2rem; }

    /* Hero min-height on short phones */
    .v-hero { min-height: 100svh; }

    /* Carousel item width on mobile */
    .v-carousel-item { flex: 0 0 80%; min-width: 240px; }

    /* Page title sections */
    .py-20 { padding-top: 5rem !important; padding-bottom: 2.5rem !important; }

    /* Manifesto / lookbook side image: stack below on mobile */
    .lookbook-section .row { flex-direction: column-reverse; }
    .lookbook-section .col-lg-5 { width: 100%; margin-top: 2rem; }
    .lookbook-section .col-lg-7 { width: 100%; }

    /* Footer newsletter form */
    .v-footer form { flex-direction: column; }

    /* Spec grid: 2 columns on mobile */
    .col-lg-3.col-md-6 { width: 50%; }
}

/* --- Global Resets & Elements --- */
a {
    color: inherit !important;
    text-decoration: none !important;
}

button {
    font-family: inherit;
    color: inherit;
}

select {
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

option {
    background-color: #0D0D0D;
    color: #FFFFFF;
}

/* --- Responsive Layout Utilities --- */

/* Responsive Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Curated Grid Spacing Gaps */
.g-0 { margin-right: 0; margin-left: 0; }
.g-0 > * { padding-right: 0; padding-left: 0; }

.g-3 { margin-right: -8px; margin-left: -8px; }
.g-3 > * { padding-right: 8px; padding-left: 8px; }

.g-4 { margin-right: -15px; margin-left: -15px; }
.g-4 > * { padding-right: 15px; padding-left: 15px; }

.g-5 { margin-right: -20px; margin-left: -20px; }
.g-5 > * { padding-right: 20px; padding-left: 20px; }

/* Grid Columns */
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 768px) {
    .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
    .col-lg-3 { flex: 0 0 auto; width: 25%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
    .offset-lg-1 { margin-left: 8.33333333%; }
}

/* Flexbox System */
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }

@media (min-width: 768px) {
    .flex-md-row { flex-direction: row !important; }
}

.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }

.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }

.d-grid { display: grid !important; }

/* Gaps */
.gap-0 { gap: 0 !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 2rem !important; }

/* Responsive Display Toggles */
.d-none { display: none !important; }

@media (min-width: 992px) {
    .d-lg-block { display: block !important; }
    .d-lg-none { display: none !important; }
}

/* Spacing Helpers (Margins) */
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.mb-8 { margin-bottom: 3rem !important; }
.mb-10 { margin-bottom: 4rem !important; }
.mb-20 { margin-bottom: 8rem !important; }

.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }
.mt-10 { margin-top: 4rem !important; }
.mt-15 { margin-top: 6rem !important; }
.mt-20 { margin-top: 8rem !important; }

.my-10 { margin-top: 4rem !important; margin-bottom: 4rem !important; }

.me-auto { margin-right: auto !important; }
.ms-auto { margin-left: auto !important; }

@media (min-width: 992px) {
    .ms-md-4 { margin-left: 1.5rem !important; }
    .mb-md-0 { margin-bottom: 0 !important; }
}

/* Spacing Helpers (Paddings) */
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-20 { padding-top: 8rem !important; padding-bottom: 8rem !important; }
.pt-10 { padding-top: 4rem !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-3 { padding-bottom: 1rem !important; }

@media (min-width: 992px) {
    .pe-lg-10 { padding-right: 4rem !important; }
}

/* Colors & Typography Helpers */
.text-white { color: var(--secondary) !important; }
.text-black { color: #000000 !important; }
.text-muted { color: var(--muted) !important; }

.opacity-30 { opacity: 0.3 !important; }
.opacity-40 { opacity: 0.4 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-60 { opacity: 0.6 !important; }

.fw-light { font-weight: 300 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

.fs-3 { font-size: 1.25rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.1rem !important; }

.text-center { text-align: center !important; }
.text-lg-end { text-align: right !important; }

.text-decoration-line-through { text-decoration: line-through !important; }

.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--muted) !important; }
.border-bottom { border-bottom: 1px solid var(--muted) !important; }
.border-dark { border-color: #000000 !important; }
.border-secondary { border-color: rgba(255, 255, 255, 0.1) !important; }

/* Widths */
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }

@media (min-width: 992px) {
    .w-lg-50 { width: 50% !important; }
    .w-lg-75 { width: 75% !important; }
}

/* Hybrid Flex/Grid Support for .v-grid children */
.v-grid > .col-lg-2 { grid-column: span 2; }
.v-grid > .col-lg-3 { grid-column: span 3; }
.v-grid > .col-lg-4 { grid-column: span 4; }
.v-grid > .col-lg-5 { grid-column: span 5; }
.v-grid > .col-lg-6 { grid-column: span 6; }
.v-grid > .col-lg-7 { grid-column: span 7; }
.v-grid > .col-lg-12 { grid-column: span 12; }
.v-grid > .col-md-6 { grid-column: span 6; }

.v-grid > * {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 992px) {
    .v-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    .v-grid > * {
        width: 100% !important;
    }
}

/* --- Premium Buttons High-Contrast Overrides (Fixes White-on-White Text Bug) --- */
.v-btn {
    color: var(--secondary) !important;
}
.v-btn-fill {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}
.v-btn:hover {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}
.v-btn-fill:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    color: var(--primary) !important;
}

/* --- Premium Section Backdrops & Color Systems --- */
.bg-cream {
    background-color: var(--bg-cream) !important;
    color: var(--primary) !important;
}

.bg-cream-alt {
    background-color: var(--bg-cream-alt) !important;
    color: var(--primary) !important;
}

.bg-dark-section {
    background-color: var(--bg) !important;
    color: var(--secondary) !important;
}

/* Explicit resets for texts and headings inside light cream sections */
.bg-cream h1, .bg-cream h2, .bg-cream h3, .bg-cream h4, .bg-cream h5, .bg-cream p, .bg-cream span, .bg-cream label {
    color: #000000 !important;
}
.bg-cream-alt h1, .bg-cream-alt h2, .bg-cream-alt h3, .bg-cream-alt h4, .bg-cream-alt h5, .bg-cream-alt p, .bg-cream-alt span, .bg-cream-alt label {
    color: #000000 !important;
}

/* Cream Section Button Contrast Overrides */
.bg-cream .v-btn, .bg-cream-alt .v-btn {
    border-color: #000000 !important;
    color: #000000 !important;
}
.bg-cream .v-btn:hover, .bg-cream-alt .v-btn:hover {
    background: #000000 !important;
    color: #FFFFFF !important;
}
.bg-cream .v-btn-fill, .bg-cream-alt .v-btn-fill {
    background: #000000 !important;
    color: #FFFFFF !important;
}
.bg-cream .v-btn-fill:hover, .bg-cream-alt .v-btn-fill:hover {
    background: #222222 !important;
    color: #FFFFFF !important;
}

/* --- Solid Header for Inner Storefront Pages --- */
.inner-page #vanguard-header {
    background: #0A0A0A !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px 6vw !important;
}

/* --- Infinite Scrolling Marquee Section --- */
.v-marquee-section {
    padding: 24px 0;
    background: var(--bg);
    overflow: hidden;
    width: 100%;
}

.marquee-wrap {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: infiniteScroll 28s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    letter-spacing: 0.1em;
    color: var(--secondary);
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes infiniteScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- Premium Products Carousel --- */
.v-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.v-carousel-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 30px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.v-carousel-container::-webkit-scrollbar {
    display: none; /* Hide Chrome/Safari scrollbar */
}

.v-carousel-item {
    flex: 0 0 23%;
    min-width: 290px;
    scroll-snap-align: start;
}

.carousel-arrow-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: var(--transition);
    border-radius: 50%;
    outline: none;
}

.carousel-arrow-btn:hover {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

.carousel-arrow-btn i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.v-carousel-scrollbar {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.06);
    margin-top: 40px;
    overflow: hidden;
}

.v-carousel-scrollbar-handle {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #000000;
    width: 20%;
    transition: left 0.1s ease-out;
}

/* --- Technical Specification Grid --- */
.spec-card {
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 30px;
    transition: var(--transition);
}

.spec-card:hover {
    border-top-color: #000000;
}

.spec-num {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.spec-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000 !important;
}

.spec-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6) !important;
    font-weight: 400;
}

/* --- Staggered Gallery Page --- */
.gallery-item-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 520px; /* Prevent portrait or wide grid items from becoming excessively tall */
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: #111111;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1), filter 1.5s;
}

.gallery-item-wrap:hover .gallery-img {
    transform: scale(1.04);
    filter: grayscale(0);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    transform: translateY(101%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.gallery-item-wrap:hover .gallery-caption {
    transform: translateY(0);
}

/* Mobile responsive fixes for carousel */
@media (max-width: 768px) {
    .v-carousel-item {
        flex: 0 0 75%;
        min-width: 250px;
    }
    .spec-card {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }
}

/* ── WhatsApp Concierge Floating Widget ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none !important;
}
.btn-wa {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-wa i {
    color: #25d366; /* Brand green */
}
.btn-wa:hover {
    transform: translateY(-4px);
    background: #111;
    border-color: #25d366;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 24px;
        right: 24px;
    }
    .btn-wa {
        padding: 10px 16px;
        font-size: 0.65rem;
        gap: 8px;
    }
}


