/* ===== FULL-WIDTH TOP NAVBAR - RESPONSIVE ===== */
/* HERO OVERLAY - Premium Frosted Effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from dark to light for text readability - NO BLUR as per feedback */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(255, 255, 255, 0.1) 60%, rgba(249, 249, 249, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ===== TOP BAR (Timeframe & Extras) ===== */
.top-bar {
    background-color: #e6e6e6;
    padding: 8px 5%;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-body);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    position: relative;
}

.top-bar-content {
    width: 100%;
    max-width: 1400px;
    /* Match footer-content max-width or similar */
    display: flex;
    justify-content: center;
    /* Centered content */
    align-items: center;
    gap: 3rem;
    /* Space between timeframe and extras */
}

.timeframe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timeframe i {
    font-size: 0.9rem;
    color: var(--gold);
    /* Gold icon */
}

.timeframe span {
    color: var(--text-body);
    font-weight: 600;
    /* Make text bolder */
}

.top-extras {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch-top {
    /* Container for the JS-injected switch */
    display: flex;
    align-items: center;
}

/* Override/Adapt the .lang-switch styles for the top bar context if needed */
.lang-switch-top .lang-switch {
    display: flex;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    /* Matched to .top-bar */
    color: var(--text-body);
    font-family: var(--font-ui);
    /* Ensure font matches */
    letter-spacing: 0.5px;
    /* Match timeframe spacing */
    text-transform: uppercase;
    /* Match timeframe */
}

.lang-switch-top .lang-option {
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-switch-top .lang-option.active {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

.lang-switch-top .lang-option:hover {
    color: var(--gold);
}

.lang-switch-top .lang-separator {
    color: rgba(0, 0, 0, 0.2);
}

.icon-link {
    color: var(--text-body);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.icon-link i {
    color: var(--gold);
    /* Gold icons */
}

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

.lang-switch-top {
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
}

/* GERMAN TEXT OVERRIDES - Prevent overcrowding */
body.lang-de h1 {
    font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
}

body.lang-de .hero-content p,
body.lang-de p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    max-width: 95%;
    /* More width for German text */
}

body.lang-de .nav-menu a {
    /* font-size: 0.7rem;  <-- REMOVED to keep mobile consistent with 1.1rem */
    letter-spacing: 0.3px;
}

header.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    /* GRID LAYOUT for Perfect Centering */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 60px;
    /* Allow expansion beyond this */

    background: var(--nav-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1.4rem 5%;
    border-bottom: 1px solid rgba(245, 176, 65, 0.2);
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

header.navbar.scrolled {
    background: var(--nav-bg);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

/* Explicit Grid Placement */
/* 1. Logo (Left) */
header .logo {
    grid-column: 1;
    justify-self: start;

    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
    font-size: 0;
}

header .logo i {
    font-size: 2.4rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

header .logo:hover i {
    transform: scale(1.1);
}

/* 2. Nav Menu (Center) */
header nav.nav-menu {
    grid-column: 2;
    justify-self: center;

    /* Reset Absolute Positioning */
    position: static;
    transform: none;

    display: flex;
    gap: 3.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

/* 3. Lang Switch (Right) */
header>.lang-switch {
    grid-column: 3;
    justify-self: end;
    margin-right: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}


/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    /* ... existing toggle styles ... */
    grid-column: 3;
    /* Ensure it stays right on tablet/mobile if grid persists */
    justify-self: end;

    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Link Styles */
header nav.nav-menu a {
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: .75rem;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

header nav.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

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

header nav.nav-menu a:hover::after {
    width: 100%;
}

header nav.nav-menu a.active {
    color: var(--gold);
}

header nav.nav-menu a.active::after {
    width: 100%;
}

/* Hide the old CTA button */
header nav a.cta {
    display: none;
}

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

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


/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 1024px) {

    /* Moved to 1024px to accommodate content sooner if needed, or keep 768px */
    .top-bar {
        display: block;
        /* Stack on very small screens? Or keep flex */
        padding: 5px 2%;
        font-size: 0.65rem;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .timeframe {
        justify-content: center;
    }

    .top-extras {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    header.navbar {
        display: flex;
        flex-wrap: wrap;
        /* Allow menu to wrap below */
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        min-height: 60px;
        /* Minimum height for logo/toggle row */
        height: auto;
        /* Allow dynamic expansion */
    }

    header .logo i {
        font-size: 1.8rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1100;
    }

    /* Mobile Menu Container - Now part of navbar flow */
    header nav.nav-menu {
        /* Remove fixed positioning - make it part of navbar */
        position: relative;
        top: auto;
        left: auto;

        /* Full width, below logo and toggle */
        width: 100%;
        order: 3;
        /* Ensure it appears below logo and toggle */

        /* Height transitions */
        max-height: 0;
        overflow: hidden;

        background: #e6e6e6;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;

        /* Padding when expanded */
        padding: 0 0 0 0;
        gap: 1.5rem;

        /* Smooth transitions */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            padding 0.4s ease,
            opacity 0.3s ease;

        opacity: 0;
        z-index: 1050;
        overscroll-behavior-y: contain;
        /* Prevent background scroll chaining */
    }

    header nav.nav-menu.active {
        /* When active, expand to fit content with scroll */
        max-height: calc(100vh - 60px);
        /* Limit height to viewport to allow scroll */
        padding: 1.5rem 0 5rem 0;
        opacity: 1;
        overflow-y: auto;
        /* Enable internal scrolling */
    }

    header nav.nav-menu a {
        font-size: 1.2rem;
        text-transform: none;
        font-weight: 400;
        color: var(--text-body);
        width: 100%;
        padding-bottom: 10px;
        border-bottom: none;

        /* Fade Effect */
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Trigger Fade In when Menu is Active */
    header nav.nav-menu.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger Delays for "Cascade" Effect */
    header nav.nav-menu.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    header nav.nav-menu.active a:nth-child(2) {
        transition-delay: 0.15s;
    }

    header nav.nav-menu.active a:nth-child(3) {
        transition-delay: 0.2s;
    }

    header nav.nav-menu.active a:nth-child(4) {
        transition-delay: 0.25s;
    }

    header nav.nav-menu.active a:nth-child(5) {
        transition-delay: 0.3s;
    }

    header nav.nav-menu.active a:nth-child(6) {
        transition-delay: 0.35s;
    }

    header nav.nav-menu a:hover,
    header nav.nav-menu a.active {
        color: var(--gold);
    }

    header nav.nav-menu a::after {
        display: none;
        /* No underline animation on mobile */
    }
}

@media (max-width: 480px) {
    header.navbar {
        padding: 0.5rem 4%;
        min-height: 50px;
    }

    header .logo i {
        font-size: 1.4rem;
    }

    .logo img {
        height: 32px;
    }

    .mobile-menu-toggle {
        width: 24px;
        height: 24px;
    }
}

/* ================================
   GLOBAL — EDITORIAL FOUNDATION
================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500&family=Montserrat:wght@400;500&display=swap');

/* Ensure fonts are loaded and applied consistently */

:root {
    --black: #ffffff;
    /* Inverted for light mode foundation (bg) */
    --white: #1a1a1a;
    /* Inverted for light mode foundation (text) */
    --gray: #4a4a4a;
    /* Darker gray for readability on light bg */
    --gold: #F5B041;
    /* New Yellow-Orange Accent */

    /* Semantic names for clarity */
    --bg-body: #e6e6e6;
    --text-body: #1a1a1a;
    --nav-bg: rgba(220, 220, 220, 0.98);
    /* Darker than body #e6e6e6 */

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-ui: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-body);
    color: var(--text-body);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Gold text selection */
::selection {
    background: var(--gold);
    color: #ffffff;
}

::-moz-selection {
    background: var(--gold);
    color: #ffffff;
}

/* LINKS */
a {
    color: inherit;
    text-decoration: none;
}

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

/* SECTIONS — CONSISTENT RHYTHM */
section {
    padding: 140px 8vw;
}

/* PARAGRAPHS */
p {
    color: var(--gray);
    max-width: 680px;
}

/* IMAGES */
img {
    width: 100%;
    display: block;
}

/* BUTTONS — TEXT ONLY */
button {
    background: none;
    border: none;
    font-family: var(--font-ui);
    cursor: pointer;
}

/* REMOVE ALL UI SHADOW ENERGY */
* {
    box-shadow: none !important;
}

/* ===== FOOTER - CLEAN, CLASSY & MODERN ===== */
footer {
    background: linear-gradient(to top, #d9d9d9, #e6e6e6);
    border-top: 1px solid rgba(245, 176, 65, 0.3);
    padding: 6rem 5% 3rem;
    color: var(--gray);
    margin-top: auto;
    /* Pushes footer to bottom if content is short */
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    align-items: start;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d4af37;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    /* Darker grey for better contrast */
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #4a4a4a;
    /* Darker grey for links */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    position: absolute;
    left: -15px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -5px;
}

/* Contact icons */
.footer-section p i {
    color: #d4af37;
    margin-right: 0.8rem;
    width: 20px;
}

.footer-section a {
    color: #4a4a4a;
    /* Ensure contact links are dark */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    /* Slightly bolder for readability */
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-social a i {
    margin: 0;
    width: auto;
}


.nav-menu a,
.nav-item-dropdown .dropdown-trigger {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-family: var(--font-menu);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-item-dropdown .dropdown-trigger:hover,
.nav-item-dropdown .dropdown-trigger.active {
    color: var(--gold);
}

/* DROPDOWN MENU */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(240, 240, 240, 0.98);
    min-width: 200px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: none;
    padding: 10px 0;
    border-top: 3px solid var(--gold);
    border-radius: 0 0 5px 5px;
}

/* Desktop Hover */
@media (min-width: 769px) {
    .nav-item-dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-menu a {
    color: var(--text-body);
    padding: 12px 25px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: rgba(245, 176, 65, 0.1);
    /* Light tint of #F5B041 */
    color: var(--gold);
    padding-left: 30px;
    /* Slight movement */
}

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

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

/* MOBILE MENU OVERRIDES FOR DROPDOWN */
@media (max-width: 768px) {
    .nav-item-dropdown {
        display: block;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    .nav-item-dropdown .dropdown-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        padding-left: 15px;
        /* Indent the cities list */
        min-width: auto;
        display: none;
        border-top: none;
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: 0;
        max-height: none;
        /* Remove max-height to allow natural flow */
        overflow-y: visible;
        /* Let parent handle scrolling */
    }

    /* JS Toggles 'active' class on .nav-item-dropdown */
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    .dropdown-menu a {
        padding: 12px 0 12px 20px;
        color: #666;
        border-bottom: none;
        font-size: 0.9rem;
        background: transparent;
    }

    .dropdown-menu a:hover {
        background: transparent;
        padding-left: 20px;
        color: var(--gold);
    }

    .mobile-menu-toggle {
        display: flex;
        /* Ensure it is flex */
        z-index: 1200;
        /* Ensure above everything */
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.footer-section ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: #d4af37;
    padding-left: 8px;
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    position: absolute;
    left: -15px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -5px;
}

/* Contact icons */
.footer-section p i {
    color: #d4af37;
    margin-right: 0.8rem;
    width: 20px;
}

.footer-section a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

/* Copyright in description column */
.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #777777;
}

/* Bottom bar */
.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.95rem;
    color: #777777;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 5% 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a:hover {
        padding-left: 0;
    }

    .footer-section ul li a::before {
        display: none;
    }
}

/* ===== GLOBAL SWIPER ARROW OVERRIDE - GOLD ===== */
.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #c6a75e !important;
    color: #c6a75e !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #c6a75e !important;
}

.swiper-button-next svg,
.swiper-button-prev svg,
.swiper-button-next path,
.swiper-button-prev path {
    fill: #c6a75e !important;
    stroke: #c6a75e !important;
    color: #c6a75e !important;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 2rem;
    /* Spacing from Logo */
    padding: 0.5rem 1rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 1002;
    /* Above other nav elements */
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--gold);
}

.lang-option {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-option:hover {
    opacity: 0.8;
}

.lang-option.active {
    opacity: 1;
    font-weight: 700;
    color: var(--black);
}

.lang-separator {
    color: var(--gold);
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {

    /* Hide DESKTOP header switch (direct child only) */
    header.navbar>.lang-switch {
        display: none;
    }

    /* Ensure MOBILE switch inside NAV is visible */
    header nav.nav-menu .lang-switch {
        display: flex !important;
        margin-top: 2rem;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid var(--gold);
    }
}

/* STRICT RULE: Hide the Mobile Toggle whenever screen is bigger than 768px */
@media (min-width: 769px) {
    header nav.nav-menu .lang-switch {
        display: none !important;
    }

    .mobile-only {
        display: none !important;
    }
}

/* ===== MODEL MODAL STYLES (Luxury) ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    /* Darker, more premium backdrop */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    width: 95%;
    max-width: 1200px;
    /* Wider to accommodate split text */
    height: 90vh;
    max-height: 850px;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

@media (min-width: 768px) {
    .modal-content {
        width: 90%;
        height: 700px;
    }
}

.modal-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
    }
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
    z-index: 30;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.close-modal:hover {
    background: #1a1a1a;
    color: var(--gold);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--gold);
}

/* Image Container */
.modal-image-container {
    flex: none;
    height: 35vh;
    min-height: 250px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .modal-image-container {
        flex: 0 0 40%;
        /* Slightly narrower image for more text space */
        height: 100%;
        min-height: auto;
    }
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Text Area */
.modal-text {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    height: auto;
    color: #1a1a1a !important;
    background: #fff;
    /* Scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #e6e6e6;
    display: flex;
    flex-direction: column;
}

.modal-text::-webkit-scrollbar {
    width: 6px;
}

.modal-text::-webkit-scrollbar-track {
    background: #e6e6e6;
}

.modal-text::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 3px;
}

@media (min-width: 768px) {
    .modal-text {
        padding: 40px 50px;
        flex: 1;
        height: 100%;
    }
}

.modal-text h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    /* Larger luxury size */
    margin-bottom: 0.2rem;
    color: #1a1a1a !important;
    letter-spacing: -1px;
    line-height: 1;
}

.modal-specs {
    font-family: var(--font-ui);
    font-weight: 500;
    letter-spacing: 3px !important;
    font-size: 0.8rem !important;
    color: var(--gold) !important;
    margin-bottom: 30px !important;
    display: block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 20px;
}

/* --- NEW GRID LAYOUT FOR DETAILS --- */
.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile default */
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 900px) {
    .modal-details-grid {
        grid-template-columns: 1fr 1fr;
        /* Desktop split */
        column-gap: 3rem;
        /* Space between columns */
    }
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-heading {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.modal-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.modal-description {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #444 !important;
    line-height: 1.7;
    /* Slightly tighter for density */
    font-weight: 400;
}

/* Compact Sedcard Table */
.sedcard-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-ui);
    font-size: 0.8rem;
}

.sedcard-table td {
    padding: 8px 0;
    /* Reduced padding */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.sedcard-table td:first-child {
    color: #888;
    width: 40%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.7rem;
}

.sedcard-table td:last-child {
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
}

/* Footer Action (Book Now) */
.modal-footer-action {
    margin-top: auto;
    /* Push to bottom if flex column */
    padding-top: 1rem;
}

/* CTA Button - Gold Gradient */
.cta-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #d4af37 0%, #ba952b 100%);
    color: #fff !important;
    text-align: center;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

/* --- SPLIT VIEW MODAL LOGIC (ADDED) --- */

/* Lightbox Overlay */
#lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

#lightbox-overlay .lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 2px solid var(--gold);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Mobile Default: Show Swiper, Hide Desktop Grid */
.desktop-gallery-grid {
    display: none !important;
}

.modal-image-container .swiper {
    display: block !important;
    height: 100%;
    min-height: 400px;
}

/* Desktop Overrides */
@media (min-width: 900px) {

    /* Main Layout: Split View */
    .modal-body {
        display: flex !important;
        flex-direction: row !important;
        gap: 2rem;
        padding: 0;
        height: 80vh;
        /* Fixed height for sticky feel */
        overflow: hidden;
        /* Body doesn't scroll, containers do */
    }

    /* LEFT SIDE: Image Container */
    .modal-image-container {
        flex: 1;
        /* Take up half space */
        width: 50% !important;
        height: 100% !important;
        overflow-y: auto !important;
        /* Enable independent scroll */
        padding-right: 5px;
        position: relative;
    }

    /* Hide Mobile Swiper */
    .modal-image-container .swiper {
        display: none !important;
    }

    /* Show Desktop Grid */
    .desktop-gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding-bottom: 2rem;
    }

    .desktop-gallery-grid img {
        width: 100%;
        height: auto;
        aspect-ratio: 2/3;
        object-fit: cover;
        cursor: pointer;
        display: block;
        transition: opacity 0.3s;
    }

    .desktop-gallery-grid img:hover {
        opacity: 0.8;
    }

    /* RIGHT SIDE: Text Content */
    .modal-text {
        flex: 1;
        /* Take up other half */
        width: 50% !important;
        overflow-y: auto !important;
        /* Enable independent scroll */
        padding: 2rem;
    }
}

text-decoration: none;
box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
position: relative;
overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #e5c14d 0%, #cfaa3d 100%);
}

.cta-btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.cta-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
    }

    .modal-image-container {
        height: 300px;
        flex: none;
    }

    .modal-text {
        padding: 25px;
    }
}

/* STRICT RULE: Hide the Mobile Toggle whenever screen is bigger than 768px */
@media (min-width: 769px) {
    header nav.nav-menu .lang-switch {
        display: none !important;
    }

    .mobile-only {
        display: none !important;
    }
}

/* ================================
   3D SCROLL ANIMATIONS (GLOBAL)
================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Delay variants for staggered animations */
.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

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

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

/* Slide from left */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Slide from right */
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Luxury UI Polish --- */

/* 1. Smooth Scrolling fixes (Lenis) */
html.lenis {
    height: auto;
}

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

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* 2. Custom Gold Cursor */
body.has-custom-cursor {
    cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select,
body.has-custom-cursor .clickable {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
    /* Ensures visibility on light/dark */
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.custom-cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(220, 168, 70, 0.1);
    /* Low opacity gold fill */
    border-color: transparent;
}

/* 3. Text Reveal Animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

/* Stagger delays for children if needed, but keeping it simple for now */

/* 4. Elegant Preloader */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fdfbf7;
    /* Off-white/Cream match */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(220, 168, 70, 0.3));
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* 5. Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.05;
    /* Subtle texture */
    pointer-events: none;
    z-index: 9000;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Moved to right as requested */
    /* left: 30px; Removed */
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    /* Gold as requested */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(220, 168, 70, 0.4);
    z-index: 10000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 168, 70, 0.6);
}

.floating-whatsapp i {
    color: #fff;
}

/* About Stats Section with Background */
/* About Stats Section (Specific Layout for Home) */
.about-stats {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8rem 2rem;
    margin-top: 4rem;
    background-image: url('../assets/stats-bg.jpg');
    background-size: cover;
    background-position: left center;
    background-attachment: fixed;
    background-color: #ffffff;
    color: var(--text-body);
    overflow: hidden;
}

.about-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Original Stats Gradient: Left aligned vignette */
    background:
        linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 75%, #ffffff 100%),
        radial-gradient(circle at left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 60%, #ffffff 100%);
    z-index: 1;
    pointer-events: none;
}

.about-stats>* {
    position: relative;
    z-index: 2;
}

.about-stats .stat {
    text-align: center;
}

.about-stats h3 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.about-stats p {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-body);
    font-weight: 400;
}

/* Reusable Soft Vignette Section (For Standard Model Backgrounds) */
.soft-vignette-section {
    position: relative;
    padding: 8rem 2rem;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: #ffffff;
    color: var(--text-body) !important;
    overflow: hidden;
}

.soft-vignette-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Spotlight Gradient for Models */
    background:
        linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, #ffffff 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6) 60%, #ffffff 100%);
    z-index: 1;
    pointer-events: none;
}

.soft-vignette-section>* {
    position: relative;
    z-index: 2;
}

/* Warm White Vignette Variant (For Fees) */
.soft-vignette-warm {
    position: relative;
    padding: 8rem 2rem;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: #fdfbf7;
    /* Warm white base */
    color: var(--text-body) !important;
    overflow: hidden;
}

.soft-vignette-warm::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Warm White Gradient */
    background:
        linear-gradient(to bottom, #fdfbf7 0%, rgba(253, 251, 247, 0) 20%, rgba(253, 251, 247, 0) 80%, #fdfbf7 100%),
        radial-gradient(circle at center, rgba(253, 251, 247, 0) 20%, rgba(253, 251, 247, 0.6) 60%, #fdfbf7 100%);
    z-index: 1;
    pointer-events: none;
}

.soft-vignette-warm>* {
    position: relative;
    z-index: 2;
}

/* Page Specific Background Helpers */
.bg-booking {
    background-image: url('../assets/model-booking.jpg');
}

.bg-fees {
    background-image: url('../assets/model-fees.jpg');
}

.bg-fees-warm {
    background-image: url('../assets/fees-warm.jpg');
}

.bg-stats {
    background-image: url('../assets/stats-bg.jpg');
}

/* Mobile responsive for stats */
@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 2rem;
    }
}

/* === ULTRA-PREMIUM CINEMATIC SPLIT === */
.editorial-split {
    display: flex;
    min-height: 90vh;
    /* Cinematic height */
    width: 100%;
    position: relative;
    background: var(--bg-body);
    overflow: hidden;
}

.split-image {
    width: 50%;
    /* Classic 50/50 Split */
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 10s ease;
    /* Subtle Ken Burns effect */
}

.editorial-split:hover .split-image img {
    transform: scale(1.05);
}

.split-content {
    background: var(--bg-body);
    width: 50%;
    margin-left: 50%;
    /* Move to right half */
    padding: 8rem 6rem;
    /* Luxurious spacing */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Vertical Gold Line Separator */
.split-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(212, 175, 55, 0.3);
}

.split-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-body);
    margin-bottom: 3rem;
    font-family: var(--font-serif);
    font-weight: 400;
}

.split-content h2 span {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-weight: 300;
    max-width: 600px;
}

/* Subtle Vignette for Desktop (Left Fade) */
.split-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(253, 251, 247, 0.4));
    pointer-events: none;
}


/* === FINE DINING FEE LIST === */
.fees-list-section {
    padding: 8rem 2rem;
    background: var(--bg-body);
}

.fees-list-section .fees-list {
    max-width: 800px;
    /* Narrower for elegance */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    /* Massive spacing */
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Barely visible line */
}

.fee-details {
    flex: 1;
    padding-right: 4rem;
}

.fee-details h3 {
    font-size: 1.2rem;
    color: var(--text-body);
    font-family: var(--font-ui);
    /* Clean Sans */
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
}

.fee-description {
    font-family: var(--font-serif);
    /* Serif for description */
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

.fee-duration {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-top: 1rem;
}

.fee-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    /* Hero Price */
    color: var(--text-body);
    font-weight: 400;
    white-space: nowrap;
    line-height: 1;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
    .editorial-split {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .split-image {
        position: relative;
        width: 100vw;
        /* Force full viewport width */
        margin-left: calc(50% - 50vw);
        /* Center breakout */
        height: 70vh;
        /* Drama on mobile */
    }

    .split-content {
        width: 100%;
        margin-left: 0;
        padding: 4rem 2rem;
    }

    /* Mobile Vignette (Bottom Fade) */
    .split-image::after {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(to bottom, transparent, var(--bg-body));
        opacity: 1;
    }

    .split-content::before {
        display: none;
    }

    /* Hide gold line */

    .split-content h2 {
        font-size: 3rem;
    }

    /* Mobile Fees */
    .fee-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        /* Center align for menu feel */
        align-items: center;
    }

    .fee-details {
        padding-right: 0;
    }

    .fee-price {
        font-size: 2.5rem;
        color: var(--gold);
        /* Gold price on mobile */
    }
}