:root {
    /* "The Matured Edit" - Swiss/Editorial Palette */
    --color-bg: #f4f4f0;
    /* "Stone" - cooler, more solid than warm pearl */
    --color-text: #111111;
    /* Sharp Black for contrast */
    --color-text-muted: #555555;

    --color-accent: #2a2a2a;
    /* Dark Charcoal - no more gold reliance */
    --color-line: rgba(0, 0, 0, 0.08);
    /* Architectural Lines */

    --color-surface: #ffffff;
    --border-glass: rgba(0, 0, 0, 0.05);

    /* Typography: The "Authority" Mix */
    --font-heading: 'Playfair Display', serif;
    /* Monumental */
    --font-body: 'Inter', sans-serif;
    /* Micro/Technical */

    /* Monumental Scale */
    --size-monumental: clamp(4rem, 10vw, 9rem);
    --size-title: clamp(2.5rem, 5vw, 4.5rem);
    --size-micro: 0.75rem;

    /* Spacing - "Breathing Room" */
    --spacing-unit: 20px;
    --spacing-huge: 80px;

    --color-glass: rgba(255, 255, 255, 0.85);
    /* Keep for legacy glass */
    --color-primary: #111;
    /* Map legacy primary to new black */
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    margin: 0;
    padding: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-x: hidden;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-top: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Premium Button */
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #8a6e40 100%);
    color: #fff;
    /* White text on bronze */
    padding: 16px 40px;
    border: none;
    border-radius: 2px;
    /* Sharper corners for classic feel? Or keep round? let's keep round but maybe less pill */
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 4px 20px rgba(176, 141, 85, 0.25);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-size: 200% auto;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(176, 141, 85, 0.4);
    color: #fff;
    background-position: right center;
}

/* Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s ease;
    transform: translateY(-100%);
    /* Hidden by default until scroll */
}

.sticky-nav.visible {
    transform: translateY(0);
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 40px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--color-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}


/* --- Entry Screen Styles --- */
.entry-page {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #000;
}

.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.split-pane {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.split-pane:last-child {
    border-right: none;
}

.split-pane:hover {
    flex: 1.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    transition: all 0.5s ease;
    backdrop-filter: blur(0px);
}

.split-pane:hover .overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(2px);
    /* Slight blur on hover for depth */
}

.content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 30px;
    max-width: 500px;
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.6s ease;
}

.split-pane:hover .content {
    transform: translateY(0);
    opacity: 1;
}

.content h2 {
    font-size: 3.5rem;
    /* Larger, more impactful */
    margin-bottom: 1rem;
    font-weight: 300;
    /* Thinner luxury font */
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, #D4AF37);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.split-pane:hover .cta-btn {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Preferences Toggle */
.preferences-toggle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--color-accent);
}

input:checked+.slider:before {
    transform: translateX(14px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Skeleton Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
    width: 80%;
}

.skeleton-title {
    height: 2em;
    margin-bottom: 1em;
    width: 60%;
}

.skeleton-img {
    width: 100%;
    height: 200px;
    display: block;
}

/* Mobile Responsiveness & Adjustments */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .split-pane:hover {
        flex: 1;
    }

    .content h2 {
        font-size: 2.2rem;
    }

    .split-pane {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* --- Slideshow Styles --- */
.slideshow-container,
.slideshow-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    overflow: hidden;
    background-color: #ffffff;
}

/* Hero Mode Specifics */
/* Hero Mode Specifics */
.slideshow-hero {
    position: absolute;
    /* Contained within parent */
    height: 100%;
    /* Fill parent */
    z-index: 0;
    overflow: hidden;
    perspective: 1px;
    transform-style: preserve-3d;
}

.slideshow-hero .slide {
    transform: translateZ(-1px) scale(2);
    z-index: -1;
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* RAW IMAGE: No gradient overlay */
    z-index: 3;
    pointer-events: none;
    display: none;
    /* Force hide for "pure and raw" request */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    z-index: 1;
}

.slide.active {
    opacity: 0.6;
    /* Dim background for better text contrast/premium feel */
    animation: slowZoom 20s linear infinite alternate;
    z-index: 2;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Override existing split-pane bg-image to be transparent/gone */
.split-pane .bg-image {
    background-image: none !important;
    background: transparent !important;
}

/* --- Restaurant Specifics --- */
.restaurant-hero {
    background: transparent;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    text-align: center;
}

.restaurant-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light gradient overlay */
    /* Removed light gradient to allow raw image + vignette */
    background: transparent;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 20px;
    /* Ensure text is readable on images */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    /* Gold gradient text */
    background: linear-gradient(45deg, #D4AF37, #b4932a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.menu-section {
    padding: 80px 5%;
    position: relative;
}

.category-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: table;
    /* Center properly with margin auto */
    margin-left: auto;
    margin-right: auto;
}

.category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 15px auto 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.menu-item {
    background: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.2);
}

.menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item h3 {
    margin: 15px 15px 5px;
    font-size: 1.25rem;
    color: var(--color-text);
}

.menu-item p {
    margin: 0 15px 15px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.item-price {
    padding: 15px;
    background: rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.item-price span {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 700;
}

.add-btn {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.add-btn:hover {
    background: var(--color-accent);
    color: #000;
}

/* Float Cart - Premium WhatsApp Style */
.cart-float-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    /* Controlled by JS */
    animation: bounceIn 0.5s;
}

.btn-whatsapp-float {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #075E54 100%);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-whatsapp-float:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.btn-whatsapp-float i {
    font-size: 1.4rem;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* --- Hotel Specifics --- */
.hotel-header {
    background: transparent;
    height: 70vh;
    /* Taller for hotel luxury feel */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    text-align: center;
}

.hotel-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light fade */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, #ffffff 100%);
    pointer-events: none;
}

/* Overlap content onto hero */
.room-grid,
.menu-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    /* Negative margin for overlap */
    padding-top: 100px;
    background: transparent;
    /* Let the body bg show or gradient? */
    /* Actually we want a gradient fade from top */
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 40px 5% 100px;
}

.room-card {
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.room-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.room-details {
    padding: 30px;
}

.room-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.room-details .price {
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0;
    display: block;
}

.back-nav {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 10;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.back-nav:hover {
    color: var(--color-accent);
}

/* =========================================
   "The Matured Edit" - New Components
   ========================================= */

/* Typography Utilities */
.type-monumental {
    font-family: var(--font-heading);
    font-size: var(--size-monumental);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-unit);
    color: var(--color-text);
}

.type-title {
    font-family: var(--font-heading);
    font-size: var(--size-title);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.type-micro {
    font-family: var(--font-body);
    font-size: var(--size-micro);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 10px;
}

/* Swiss Grid Lines */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-left: 1px solid var(--color-line);
    max-width: 100%;
}

.grid-col {
    border-right: 1px solid var(--color-line);
    padding: var(--spacing-unit);
}

/* Floating Concierge (Bottom Nav) */
.floating-concierge {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 8px;
    border-radius: 100px;
    display: flex;
    gap: 0;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floating-concierge:hover {
    bottom: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.concierge-item {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.concierge-item:hover,
.concierge-item.active {
    background: #111;
    color: #fff;
}

/* Hide top nav if present */
.sticky-nav {
    display: none !important;
}

/* --- Hotel Editorial Layout --- */
.hotel-header-editorial {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* 40/60 Split */
    height: 100vh;
    border-bottom: 1px solid var(--color-line);
}

@media (max-width: 768px) {
    .hotel-header-editorial {
        grid-template-columns: 1fr;
        height: auto;
    }

    .header-hero-col {
        height: 60vh;
        order: -1;
    }
}

.header-text-col {
    padding: var(--spacing-huge) var(--spacing-unit);
    border-right: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg);
    position: relative;
    z-index: 2;
    padding-left: 8vw;
    /* Breathing room */
}

.header-hero-col {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #000;
    /* Optimization: Prevent white flash before slideshow loads */
}

.header-hero-col .slideshow-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* The "Magazine" Room List */
.room-editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    /* Reduced from 90vh for better flow */
    border-bottom: 1px solid var(--color-line);
}

@media (max-width: 768px) {
    .room-editorial-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.room-editorial-row.alt {
    direction: rtl;
    /* Flip visual */
}

.room-editorial-row.alt>* {
    direction: ltr;
    /* Reset text */
}

.room-img-col {
    height: 100%;
    border-left: 1px solid var(--color-line);
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.room-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.room-editorial-row:hover .room-img-col img {
    transform: scale(1.03);
}

.room-info-col {
    padding: var(--spacing-huge);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8vw;
}

/* Minimalist Button */
.btn-minimal {
    font-family: var(--font-body);
    font-size: var(--size-micro);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 1px solid #000;
    padding-bottom: 4px;
    text-decoration: none;
    color: #000;
    background: transparent;
    width: fit-content;
    margin-top: 40px;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
}

.btn-minimal:hover {
    opacity: 0.6;
    padding-left: 15px;
}

/* =========================================
   Mobile Polish (Editorial)
   ========================================= */
@media (max-width: 768px) {

    /* Tame the Giant Type */
    .type-monumental {
        font-size: 3rem;
        /* Reduced from 3.5rem */
        line-height: 1;
        letter-spacing: -0.02em;
    }

    /* Adjust Floating Concierge */
    .floating-concierge {
        bottom: 20px;
        width: auto;
        max-width: 90%;
        padding: 6px;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .concierge-item {
        padding: 10px 16px;
        font-size: 0.7rem;
    }

    /* Reset Giant Spacing - Tighter for Mobile UX */
    .header-text-col,
    .room-info-col {
        padding: 40px 20px !important;
        /* Reduced from 60px */
        height: auto;
        min-height: auto;
    }

    /* Hotel Header Mobile */
    .hotel-header-editorial {
        grid-template-columns: 1fr;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    /* Ensure Hero Image has height on mobile */
    .header-hero-col {
        height: 40vh;
        /* Reduced from 50vh to show more text */
        min-height: 300px;
    }

    /* Restaurant Menu - Stack for legibility */
    .menu-item-editorial {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .menu-item-editorial .img-container {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 10px;
    }

    /* Room List - Stack */
    .room-editorial-row {
        grid-template-columns: 1fr;
        border-bottom: 1px solid var(--color-line);
        min-height: auto;
        /* Allow content to dictate height */
    }

    .room-img-col {
        height: 35vh;
        /* Reduced from 40vh */
        min-height: 250px;
    }
}

/* =========================================
   Sprint v3: "Mega-Menu" Styles
   ========================================= */

/* Hero Search Overlay */
.search-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    z-index: 10;
    text-align: center;
}

.search-input-wrapper {
    position: relative;
    margin-top: 30px;
}

.search-input {
    width: 100%;
    padding: 20px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-family: var(--font-body);
    color: #fff;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    transform: scale(1.02);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    outline: none;
    border-color: #fff;
}

/* Horizontal Category Pills (Netflix Style) */
.category-pills-container {
    padding: 20px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-bg);
    position: sticky;
    top: 0;
    z-index: 99;
    padding-left: 5%;
}

/* Hide Scrollbar */
.category-pills-container::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: inline-block;
    padding: 10px 24px;
    margin-right: 12px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
    transform: translateY(-2px);
}

/* Results Grid Injection */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    padding: 40px 5%;
    display: none;
    /* Hidden by default */
}

/* Horizontal Rails (Netflix Style) */
.rail-container {
    padding: 20px 0;
    border-bottom: 1px dashed var(--color-line);
}

.rail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 5%;
    margin-bottom: 20px;
}

.rail-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0;
}

.rail-scroll-area {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5%;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.rail-scroll-area::-webkit-scrollbar {
    display: none;
    /* Clean look */
}

.rail-card {
    min-width: 280px;
    /* Card Width */
    max-width: 280px;
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.3s ease;
}

.rail-card:hover {
    transform: translateY(-5px);
}

.rail-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 12px;
    background: #f0f0f0;
}

.see-all-card {
    min-width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-bg);
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    text-decoration: none;
    border: 1px solid var(--color-line);
}

@media (max-width: 768px) {
    .rail-card {
        min-width: 200px;
        max-width: 200px;
    }

    .rail-img {
        height: 150px;
    }
}

/* Visual Menu Overlay (Curtain Effect) */
.visual-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 80px 20px 40px 20px;
    overflow-y: auto;

    /* Animation State */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    /* Premium Easing */
}

.visual-menu-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.visual-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    /* Staggered reveal */
}

.visual-menu-modal.active .visual-menu-grid {
    opacity: 1;
    transform: translateY(0);
}

.visual-cat-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visual-cat-card:active {
    transform: scale(0.95);
}

.visual-cat-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    background: #ddd;
}

.close-modal-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

/* =========================================
   Sprint v3.5: Cinematic Hero ("Addictive")
   ========================================= */

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.ken-burns-active {
    animation: kenBurns 20s ease-out forwards;
}

/* Slideshow Hero Logic */
.slideshow-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    /* Prevent white flash */
    z-index: 0;
    overflow: hidden;
}

.slideshow-hero .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    will-change: transform, opacity;
}

.slideshow-hero .slide.active {
    opacity: 1;
    animation: kenBurns 20s ease-out forwards;
}

/* --- Matured Food Grid System --- */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.food-card {
    background: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    /* Slightly sharper corner for matured/editorial look */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.food-card .img-wrapper {
    width: 100%;
    position: relative;
    padding-top: 75%;
    /* 4:3 Aspect Ratio for premium feel */
    overflow: hidden;
    background: #f8f8f8;
}

.food-card .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-card:hover .img-wrapper img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.food-card .content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.food-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--color-text);
    line-height: 1.2;
}

/* --- The Executive List View --- */
.food-list-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px 50px;
    /* Row gap, Col gap */
}

@media (max-width: 768px) {
    .food-list-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.food-list-item {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.food-list-item:hover {
    transform: translateX(5px);
    border-bottom-color: var(--color-accent);
}

.plate-icon-wrapper {
    flex: 0 0 70px;
    /* Reduced slightly */
    height: 70px;
    margin-right: 20px;
    position: relative;
    border-radius: 12px;
    /* Nicer rounded square than circle potentially? Or keep circle. User wanted font awesome plate. */
    border-radius: 50%;
    overflow: hidden;
    background: #fcfcfc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    /* Default icon color */
    font-size: 1.5rem;
}

.plate-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-list-item:hover .plate-icon-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

.list-content {
    flex: 1;
    padding-right: 10px;
}

.list-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.list-content .desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 80px;
}

.list-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 8px;
}

.btn-add-minimal {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-minimal:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 10px rgba(191, 149, 63, 0.3);
}

/* --- Premium Branding --- */
/* Logo removed as per user request */

/* --- Premium Buttons --- */
.btn-whatsapp-premium {
    display: inline-block;
    background: #000;
    /* Black Background */
    color: #fff;
    /* White Text */
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle white border */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.5);
}
}

@media (max-width: 768px) {
    .food-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile for better focus */
        gap: 20px;
    }

    .food-card .content {
        padding: 20px;
    }

}

/* --- Matured Search Section --- */
.search-editorial {
    width: 100%;
    padding: 0 5%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title-editorial {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    /* Reduced size */
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle-luxury {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    /* Regular weight */
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: none;
}

.search-input-wrapper-matured {
    display: none;
}

.search-wrapper-luxury {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 50px;
    /* Cleaner Glass Effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.search-wrapper-luxury:hover,
.search-wrapper-luxury:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.search-input-luxury {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 25px;
    padding-left: 55px;
    /* Adjust for icon */
    font-size: 1rem;
    font-family: var(--font-body);
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.01em;
    border-radius: 50px;
    outline: none;
}

.search-input-luxury::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-family: var(--font-body);
}

.search-icon-luxury {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #fff;
    opacity: 0.8;
    pointer-events: none;
}

/* --- Mobile Bottom Navigation --- */
@media (max-width: 768px) {
    .floating-concierge {
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        /* Force right edge */
        width: 100vw !important;
        /* Use viewport width */
        max-width: 100vw !important;
        /* Prevent overflow */
        margin: 0 !important;
        /* Remove any margin */
        box-sizing: border-box !important;
        /* Include padding in width */
        transform: none !important;
        border-radius: 0 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1) !important;
        padding: 10px 0 !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        z-index: 9999 !important;
        height: 70px !important;
    }

    .concierge-item {
        flex-direction: column !important;
        background: transparent !important;
        box-shadow: none !important;
        color: var(--color-text-muted) !important;
        font-size: 0.7rem !important;
        border: none !important;
        padding: 5px !important;
        gap: 5px !important;
        width: auto !important;
    }

    .concierge-item.active {
        color: var(--color-accent) !important;
        background: transparent !important;
    }

    .concierge-item span {
        font-size: 1.2rem !important;
        margin: 0 !important;
        display: block !important;
    }

    /* Ensure content is not hidden behind nav */
    body {
        padding-bottom: 80px;
    }
}
/* --- Final Footer & Cart Fixes --- */

/* 1. Mobile Footer Layout Fix */
@media (max-width: 768px) {
    .concierge-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
    }
    
    .concierge-item i {
        font-size: 1.2rem !important;
        margin-bottom: 0 !important;
    }

    /* Group label and pill in a row */
    .nav-label-group {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }

    .concierge-item span {
        font-size: 0.75rem !important;
        display: inline-block !important; /* Prevent block break */
    }
    
    #cart-count-pill {
        font-size: 0.7rem !important;
        padding: 2px 6px !important;
        background: #000 !important; 
        color: #fff !important;
        border-radius: 10px !important;
        min-width: 18px !important;
        text-align: center !important;
        display: inline-block !important;
        vertical-align: middle !important;
        margin: 0 !important;
    }
}

/* 2. Premium Sticky Checkout Button */
.cart-summary-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 5% 30px; /* Extra bottom padding for safety */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: transform 0.3s ease;
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.total-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #000;
    display: block;
    line-height: 1;
}

.btn-whatsapp-checkout {
    background: #25D366;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: white;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-whatsapp-checkout:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

.btn-whatsapp-checkout i {
    font-size: 1.5rem;
}

/* Spacer to prevent content from hiding behind fixed footer */
.cart-spacer {
    height: 180px;
    width: 100%;
}

