/* ==============================================================
   KHANDELWAL CATERS - ZAROKHA LUXURY THEME (V8)
   Pitch Black Background | Muted Warm Gold Accents | Serif Headings
   ============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@200;300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
    /* Fonts */
    --base-font: 'Montserrat', sans-serif;
    --serif-font: 'Cormorant Garamond', serif;
    --display-font: 'Cinzel', serif;
    
    /* Luxury Dark Colors */
    --bg-dark: #0a0a0a;        /* Deep Rich Charcoal/Black */
    --bg-card: #141414;        /* Soft Onyx for Cards */
    --text-main: #f9f6f0;      /* Warm Pearl White */
    --text-muted: #a19f99;     /* Soft Greige */
    
    /* Rich Metallic Gold Gradients */
    --primary: #d4af37;        /* Base Metallic Gold */
    --primary-glow: rgba(212, 175, 55, 0.15);
    --primary-hover: #e0bf52;
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --gold-text-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #b38728);
    
    /* Glassmorphism & Borders */
    --glass-bg: rgba(20, 20, 20, 0.65);
    --glass-border: rgba(212, 175, 55, 0.2);
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Layout & Transitions */
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --micro-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;      /* Sharp, architectural borders */
}

/* GLOBAL RESETS */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { width: 100%; max-width: 100vw; overflow-x: hidden; }
body { 
    font-family: var(--base-font); 
    color: var(--text-main); 
    background: var(--bg-dark); 
    overflow-x: hidden; 
    transition: background-color 0.5s ease, color 0.5s ease;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--display-font); 
    font-weight: 500; 
    color: var(--primary); /* Shift to gold for luxury emphasis */
    letter-spacing: 2px;
}
a { text-decoration: none; color: inherit; transition: var(--micro-transition); }
button, input, select, textarea { font-family: inherit; }
.text-center { text-align: center; }
.spacer-top { margin-top: 40px; }
.w-100 { width: 100%; }

/* VFX SPARKLES CANVAS */
#vfx-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* LUXURY HEADER & NAVIGATION */
.luxury-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: transparent;
}
.luxury-header.scrolled {
    padding: 15px 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-area {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.logo-serif {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
}
.logo-sans {
    font-family: var(--base-font);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: -5px;
}
.mobile-menu-btn {
    display: none;
}
.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 242, 235, 0.65);
    position: relative;
    padding: 5px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--micro-transition);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* SLEEK BUTTONS */
.primary-btn, .secondary-btn {
    padding: 12px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

/* Base button glow effect using pseudo-element */
.primary-btn::before, .secondary-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}
.primary-btn:hover::before, .secondary-btn:hover::before {
    left: 150%;
}

.primary-btn.gold-accent-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: inset 0 0 0 0 var(--primary);
}
.primary-btn.gold-accent-btn:hover {
    background: var(--gold-gradient);
    color: #0a0a0a;
    border: 1px solid transparent;
    box-shadow: 0 0 20px var(--primary-glow);
}
.secondary-btn.light-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.secondary-btn.light-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}
.secondary-btn.border-btn {
    background: transparent;
    color: rgba(245, 242, 235, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.secondary-btn.border-btn:hover {
    color: var(--text-main);
    border-color: var(--gold);
}
.small-btn {
    padding: 8px 18px;
    font-size: 0.65rem;
    letter-spacing: 2px;
}
.large-btn {
    padding: 16px 40px;
    font-size: 0.8rem;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
#hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 8, 0.65);
    background: linear-gradient(180deg, rgba(6,6,8,0.4) 0%, rgba(6,6,8,0.85) 100%);
    z-index: -1;
}
.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}
.hero-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--serif-font);
    padding: 0 10px;
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 15px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* HERITAGE QUOTE SECTION */
.heritage-intro-section {
    padding: 120px 20px;
    background: var(--bg-dark);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.heritage-intro-container {
    max-width: 850px;
    margin: 0 auto;
}
.heritage-gold-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
}
.heritage-quote-text {
    font-family: var(--serif-font);
    font-size: 2.8rem;
    line-height: 1.4;
    color: var(--text-main);
    font-weight: 300;
    margin-bottom: 30px;
    font-style: italic;
}
.heritage-thin-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
    opacity: 0.7;
}
.heritage-sub-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
}

/* SERVICES SECTION */
.services-section {
    padding: 120px 20px;
    background: #09090b;
    border-bottom: 1px solid var(--border-color);
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}
.section-header .sub-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.section-header h2 {
    font-size: 2.6rem;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--serif-font);
    margin-bottom: 20px;
}
.gold-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.8;
}
.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.service-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
}
.service-card:hover .service-img {
    transform: scale(1.05);
}
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12,12,14,0) 50%, rgba(12,12,14,0.9) 100%);
}
.service-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-details h3 {
    font-size: 1.3rem;
    font-weight: 500;
    font-family: var(--serif-font);
    margin-bottom: 15px;
    text-transform: capitalize;
}
.service-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}
.service-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-link i {
    transition: transform 0.3s ease;
}
.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* AI QUIZ SECTION (Cleaned and Minimal) */
.quiz-section {
    padding: 100px 20px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}
.quiz-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
}
.quiz-card h3 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 40px;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.quiz-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 18px;
    color: var(--text-main);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}
.quiz-btn:hover {
    border-color: var(--gold);
    background: rgba(197, 168, 128, 0.05);
    transform: translateY(-2px);
}
.quiz-result {
    text-align: center;
}
.quiz-result h3 {
    font-family: var(--serif-font);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

/* PLANNER SECTION */
.planner-section {
    padding: 120px 20px;
    background: #09090b;
    border-bottom: 1px solid var(--border-color);
}
.planner-container {
    max-width: 1400px;
    margin: 0 auto;
}
.stepper-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 70px auto;
    position: relative;
    z-index: 1;
}
.step-progress-bar {
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
}
.progress-line {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: var(--transition);
}
.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.node-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 242, 235, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.step-node.active .node-circle, .step-node.completed .node-circle {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}
.step-node span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 242, 235, 0.4);
    transition: var(--transition);
}
.step-node.active span, .step-node.completed span {
    color: var(--text-main);
}
.planner-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 50px;
}
.panel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
}
.panel-card h3 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 35px;
}
.step-content {
    display: none;
}
.step-content.active {
    display: block;
}

/* FORM STYLING (Minimalist bottom borders) */
.form-group {
    margin-bottom: 30px;
    text-align: left;
}
.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}
.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--micro-transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--gold);
}
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon .icon {
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
}
.input-with-icon .form-control {
    padding-left: 30px;
}
.btn-group {
    display: flex;
    gap: 15px;
}
.btn-group.spacer-top {
    margin-top: 40px;
}

/* GUEST SLIDER */
.slider-container {
    position: relative;
    padding-top: 10px;
}
.luxury-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    border: none;
    margin: 25px 0;
}
.luxury-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #0c0c0e;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
    transition: var(--micro-transition);
}
.luxury-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}
.highlight-gold {
    color: var(--gold);
    font-weight: 700;
}
.badge {
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}
.gold-badge {
    background: rgba(197, 168, 128, 0.12);
    color: var(--gold);
    border: 1px solid var(--border-color);
}
.emerald-badge {
    background: rgba(0, 230, 118, 0.08);
    color: #00E676;
    border: 1px solid rgba(0, 230, 118, 0.15);
}

/* ROYAL BINDER FLIPBOOK */
.royal-menu-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}
.menu-folio-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 242, 235, 0.6);
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--micro-transition);
}
.menu-folio-btn.active, .menu-folio-btn:hover {
    border-color: var(--gold);
    color: var(--text-main);
    background: rgba(197, 168, 128, 0.05);
}
.royal-flipbook {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    border: 1px solid var(--border-color);
    background: #09090b;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 520px;
}
.book-sidebar {
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.book-sidebar-header h4 {
    font-family: var(--serif-font);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 5px;
}
.book-sidebar-header span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}
.book-category-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}
.book-cat-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--micro-transition);
}
.book-cat-btn.active, .book-cat-btn:hover {
    color: var(--text-main);
    transform: translateX(5px);
}
.book-cat-btn.active i {
    color: var(--gold);
}
.book-pages-wrapper {
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.book-page {
    flex-direction: column;
    height: 100%;
}
.book-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.book-page-header h3 {
    font-family: var(--serif-font);
    font-weight: 400;
    font-size: 1.6rem;
}
.book-page-num {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
}
.menu-items-inner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    overflow-y: auto;
    max-height: 380px;
    padding-right: 10px;
}
.menu-items-inner-grid::-webkit-scrollbar {
    width: 3px;
}
.menu-items-inner-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

/* DISH CARD (ZAROKHA MINIMAL DESIGN) */
/* DISH CARD (ZAROKHA MINIMAL DESIGN with 3D FLIP) */
.menu-card-3d {
    background: transparent;
    perspective: 1000px;
    height: 240px; /* fixed height for consistent card dimensions */
    cursor: pointer;
    border: none;
    padding: 0;
    transition: var(--transition);
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Flip card on hover */
.menu-card-3d:hover .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front, .card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-3d-front {
    background: var(--bg-card);
    color: var(--text-main);
    z-index: 2;
    transform: rotateY(0deg);
}

.card-3d-back {
    background: #121214;
    color: var(--text-main);
    transform: rotateY(180deg);
    z-index: 1;
    justify-content: center;
}

.menu-card-3d.selected .card-3d-front,
.menu-card-3d.selected .card-3d-back {
    border-color: var(--gold);
    background: var(--primary-glow);
}

.card-category-badge {
    font-size: 0.75rem;
    color: var(--gold);
    align-self: flex-start;
    font-weight: 500;
}

.card-dish-name {
    font-family: var(--serif-font);
    font-size: 1.25rem;
    color: var(--text-main);
    margin: auto 0;
}

.card-flip-hint {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.card-view-3d-btn {
    transition: var(--micro-transition);
}

.card-view-3d-btn:hover {
    transform: scale(1.1);
    background: var(--gold) !important;
}

.card-nutrition-title {
    font-family: var(--serif-font);
    font-size: 1rem;
    color: var(--gold);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.card-select-status {
    display: none;
}

.menu-card-3d.selected .card-select-status {
    display: block;
}

/* STEP 3 THREEJS LAYOUT */
.threejs-split-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.threejs-canvas-wrapper {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}
.threejs-plate-container {
    width: 100%;
    height: 100%;
}
.threejs-canvas {
    width: 100%;
    height: 100%;
    display: block;
}
.cad-config-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}
.cad-panel-title {
    font-family: var(--serif-font);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.table-configurator-panel {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.table-cloth-btn {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--micro-transition);
}
.table-cloth-btn.active, .table-cloth-btn:hover {
    border-color: var(--gold);
    color: var(--text-main);
    background: rgba(197, 168, 128, 0.05);
}

/* NUTRIENTS COMPONENT */
.nutrients-panel-widget {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}
.nutrients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.nutrient-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
}
.nutrient-box .val {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
}
.nutrient-box .lbl {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.allergens-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.allergen-chip {
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 20px;
    background: rgba(255, 23, 68, 0.05);
    color: #FF1744;
    border: 1px solid rgba(255, 23, 68, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.allergen-chip.safe {
    background: rgba(0, 230, 118, 0.05);
    color: #00E676;
    border-color: rgba(0, 230, 118, 0.15);
}

/* ADDONS UPGRADE COMPONENT */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.addon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
}
.addon-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
}
.addon-card input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: var(--micro-transition);
}
.addon-card input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}
.addon-card input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #060608;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.addon-details {
    display: flex;
    flex-direction: column;
}
.addon-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}
.addon-title i {
    color: var(--gold);
}
.addon-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 3px;
}

/* RIGHT PLANNER SIDEBAR (Curation Summary) */
.sticky-summary-card {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
}
.sticky-summary-card h3 {
    font-family: var(--serif-font);
    font-size: 1.6rem;
    font-weight: 400;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.summary-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
.summary-row span {
    color: var(--text-muted);
    font-weight: 300;
}
.summary-row strong {
    color: var(--text-main);
    font-weight: 600;
}

/* FLOATING SUMMARY BAR (Bottom) */
.floating-price-bar {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 12, 14, 0.95);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 15px 40px;
    z-index: 100;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
}
.floating-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.floating-info {
    display: flex;
    gap: 40px;
}
.info-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.info-block .lbl {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.info-block .val {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

/* CHEF QUOTE SECTION */
.chef-quote-section {
    padding: 140px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0c0c0e 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}
.chef-quote-container {
    max-width: 900px;
    margin: 0 auto;
}
.chef-quote-content {
    position: relative;
    z-index: 2;
}
.chef-title-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
}
.chef-main-quote {
    font-family: var(--serif-font);
    font-size: 3rem;
    line-height: 1.4;
    color: var(--text-main);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 40px;
}
.chef-signature-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.chef-name {
    font-family: var(--serif-font);
    font-size: 1.4rem;
    color: var(--text-main);
    font-weight: 400;
    letter-spacing: 1px;
}
.chef-desc {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* GALLERY SECTION (ZAROKHA MEDIA GRID) */
.gallery-section {
    padding: 120px 20px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}
.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.gallery-card:hover {
    border-color: rgba(197, 168, 128, 0.4);
    transform: scale(1.02);
}
.gallery-media-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #000;
}
.gallery-media-wrapper img, .gallery-media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-card:hover .gallery-media-wrapper img,
.gallery-card:hover .gallery-media-wrapper video {
    transform: scale(1.05);
}
.gallery-caption {
    padding: 20px;
    font-family: var(--serif-font);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
}

/* CLIENT TESTIMONIALS SLIDER */
.reviews-section {
    padding: 120px 20px;
    background: #09090b;
    border-bottom: 1px solid var(--border-color);
}
.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.review-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}
.review-slide p {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
}
.review-author {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

/* FLOATING AI CHAT WIDGET */
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    z-index: 1000;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    max-height: 500px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-chat-widget.collapsed {
    transform: translateY(calc(100% - 70px));
}
.ai-chat-header {
    background: rgba(197, 168, 128, 0.08);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
}
.ai-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: #060608;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}
.ai-chat-header strong {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ai-chat-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 300px;
    max-height: 350px;
}
.ai-chat-body::-webkit-scrollbar {
    width: 2px;
}
.ai-chat-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
}
.chat-msg {
    padding: 12px 18px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    max-width: 85%;
    line-height: 1.5;
}
.ai-msg {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    align-self: flex-start;
}
.user-msg {
    background: var(--primary-glow);
    color: var(--gold);
    border: 1px solid var(--border-color);
    align-self: flex-end;
}
.ai-chat-input {
    display: flex;
    border-top: 1px solid var(--border-color);
}
.ai-chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px;
    color: var(--text-main);
    font-size: 0.85rem;
    outline: none;
}
.ai-chat-input button {
    background: transparent;
    border: none;
    color: var(--gold);
    padding: 0 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--micro-transition);
}
.ai-chat-input button:hover {
    color: var(--text-main);
}

/* MODAL OVERLAYS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 8, 0.92);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}
.modal-overlay.show {
    display: flex;
}
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--micro-transition);
}
.modal-close-btn:hover {
    color: var(--text-main);
}
.modal-content h3 {
    font-family: var(--serif-font);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

/* 3D DISH MODAL DETAIL LAYOUT */
#dish-3d-modal .modal-content {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
}
.dish-modal-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 500px;
}
.dish-modal-canvas-area {
    background: #000;
    border-right: 1px solid var(--border-color);
    position: relative;
}
.dish-modal-canvas {
    width: 100%;
    height: 100%;
    display: block;
}
.dish-modal-details-area {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}
.dish-modal-title {
    font-family: var(--serif-font);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.dish-modal-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* MAP MODAL PICKER */
#modal-map-picker .modal-content {
    max-width: 650px;
    padding: 30px;
}
.map-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
#map-container {
    height: 350px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}
.selected-address-box {
    background: rgba(197, 168, 128, 0.05);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ADMIN VIEW PANELS & WRAPPERS */
#admin-view {
    background: var(--bg-dark);
    min-height: 100vh;
}
.admin-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.admin-top-bar {
    padding: 20px 40px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-badge {
    background: rgba(197, 168, 128, 0.12);
    color: var(--gold);
    margin-left: 10px;
    font-size: 0.6rem;
}
.admin-layout {
    display: flex;
    flex: 1;
}
.admin-sidebar {
    width: 280px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 30px 20px;
}
.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.admin-nav-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 15px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    cursor: pointer;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--micro-transition);
}
.admin-nav-btn.active, .admin-nav-btn:hover {
    background: var(--primary-glow);
    border-color: var(--border-color);
    color: var(--gold);
}
.admin-content-panel {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}
.admin-tab-content {
    display: none;
}
.admin-tab-content.active {
    display: block;
}
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--micro-transition);
}
.stat-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.08);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.stat-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 5px;
}
.dashboard-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}
.tab-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 5px;
}

/* CRM KANBAN BOARD */
.crm-kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    height: calc(100vh - 380px);
    min-height: 500px;
}
.crm-column {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--micro-transition);
}
.crm-column.drag-over {
    border-color: var(--gold);
    background: rgba(197, 168, 128, 0.02);
}
.crm-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.count-badge {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
}
.crm-card-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.crm-lead-card {
    background: #09090b;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: grab;
    text-align: left;
    transition: var(--micro-transition);
}
.crm-lead-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}
.crm-lead-title {
    font-family: var(--serif-font);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.crm-lead-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.crm-lead-value {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
}

/* CRM DETAILED SLIDE-IN DRAWER */
.crm-detail-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    box-shadow: -15px 0 30px rgba(0,0,0,0.8);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 50px 40px;
    overflow-y: auto;
}
.crm-detail-drawer.open {
    transform: translateX(0);
}
.crm-drawer-close {
    position: absolute;
    top: 25px;
    left: 25px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
}
.crm-drawer-title {
    font-family: var(--serif-font);
    font-size: 2.2rem;
    font-weight: 400;
    margin-top: 20px;
}
.calculator-section {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
}
.calculator-section h4 {
    font-family: var(--serif-font);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
}
.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ingredient-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
}

/* KITCHEN ORDERS GRID (KOT) */
.kot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}
.kot-ticket {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}
.kot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.kot-items-list {
    list-style: none;
    margin-bottom: 25px;
}
.kot-items-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

/* LUXURY TABLE SYSTEM */
.luxury-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.luxury-table th {
    padding: 20px 25px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    border-bottom: 1px solid var(--border-color);
    background: rgba(197, 168, 128, 0.02);
}
.luxury-table td {
    padding: 20px 25px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(245, 242, 235, 0.85);
}
.luxury-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* DATE LOCKER CALENDAR COMPONENT */
.calendar-days-heading span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.visual-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}
.calendar-day-node {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    cursor: pointer;
    background: var(--bg-card);
    transition: var(--micro-transition);
    min-height: 80px;
}
.calendar-day-node:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.02);
}
.calendar-day-node.selected {
    border-color: var(--gold);
    background: var(--primary-glow);
}
.calendar-day-node.surcharged {
    border-top: 3px solid var(--gold);
}
.calendar-day-node.blocked {
    background: rgba(255, 23, 68, 0.08) !important;
    color: #FF1744;
    border-color: rgba(255, 23, 68, 0.2);
    cursor: not-allowed;
}
.calendar-day-node .day-num {
    font-weight: 700;
    font-size: 0.95rem;
}
.calendar-day-node .day-status {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* FINANCIAL TIMELINE CHART */
.chart-canvas-container {
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.chart-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.chart-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 180px;
    width: 100%;
    justify-content: center;
}
.chart-bar {
    width: 24px;
    border-radius: 2px 2px 0 0;
    background: var(--primary);
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.chart-bar.expenses { background: #FF1744; }
.chart-bar.profits { background: var(--gold); }
.chart-col-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WHITE LABEL CMS CUSTOMIZER */
.cms-branding-panel {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}
.color-picker-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}
.color-picker-box input[type="color"] {
    -webkit-appearance: none;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}
.color-picker-box input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}
.color-picker-box input[type="color"]::-webkit-color-swatch {
    border: 1px solid var(--border-color);
    border-radius: 50%;
}
.alert-box {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    line-height: 1.5;
}
.note-alert {
    background: var(--primary-glow);
    color: var(--text-main);
    border: 1px solid var(--primary);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1100px) {
    .hero-content h1 { font-size: 3rem; }
    .planner-layout { grid-template-columns: 1fr; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border-color); }
    .admin-stats-grid, .crm-kanban-board { grid-template-columns: 1fr 1fr; }
    .crm-kanban-board { height: auto; }
}

@media (max-width: 768px) {
    /* Header Fixes */
    .luxury-header, .luxury-header.scrolled { 
        padding: 15px 20px; 
    }
    .header-container {
        flex-wrap: wrap; 
        position: relative;
    }
    .header-actions { 
        width: 100%; 
        justify-content: center; 
        margin-top: 15px; 
    }
    .main-nav { 
        display: none; 
        width: 100%; 
        flex-direction: column; 
        text-align: center; 
        background: var(--bg-card); 
        padding: 10px 0; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .main-nav.open { display: flex; }
    .nav-link { padding: 15px 0; border-bottom: 1px solid var(--border-color); }
    .header-actions button#track-btn, .header-actions button#admin-login-btn { display: none; }
    .hide-mobile { display: none !important; }
    .mobile-menu-btn { display: block; }
    
    /* Hero Fixes */
    .hero-content h1 { font-size: 2rem; padding: 0 10px; }
    #hero-subtitle { font-size: 1rem; padding: 0 20px; }
    .hero-buttons { 
        flex-direction: column; 
        gap: 15px; 
        width: 100%; 
        padding: 0 20px; 
    }
    .hero-buttons button { width: 100%; margin: 0; }
    
    /* Exquisite Experiences Fix */
    .experience-scroll {
        flex-direction: column;
        display: flex;
        overflow-y: visible;
        overflow-x: hidden;
        padding-bottom: 0;
        width: 100%;
    }
    .experience-card {
        min-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* Menu Curation Fix */
    .menu-curator {
        flex-direction: column;
    }
    .category-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .cat-btn {
        display: inline-block;
        width: auto;
        margin-right: 10px;
        margin-bottom: 0;
    }
    .menu-category-grid {
        grid-template-columns: 1fr;
    }
    
    /* Layouts Fix */
    .services-grid, .gallery-grid, .addons-grid, .cms-branding-panel, .threejs-split-layout, .dish-modal-layout { 
        grid-template-columns: 1fr; 
    }
    .dish-modal-layout { display: flex; flex-direction: column; height: auto; }
    .dish-modal-canvas-area { height: 240px; border-right: none; border-bottom: 1px solid var(--border-color); }
    .admin-stats-grid, .crm-kanban-board { grid-template-columns: 1fr; }
    .node-circle { width: 40px; height: 40px; font-size: 0.75rem; }
    .step-node span { font-size: 0.6rem; letter-spacing: 1px; }

    /* Floating Widgets Fix */
    .ai-chat-widget {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 20px;
        max-height: 400px;
    }
}

/* LUXURY FORM INPUTS */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-main);
    font-family: var(--base-font);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    background: rgba(20, 20, 20, 0.85);
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* ================================================================
   CUISINE CATALOG — FULL MENU SHOWCASE SYSTEM
   ================================================================ */

/* CATALOG OUTER WRAPPER */
.cuisine-catalog-section {
    background: var(--bg-dark);
    padding: 0;
}

.cuisine-catalog-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* SECTION LABEL + HEADING */
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.cuisine-catalog-heading {
    font-family: var(--serif-font);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 15px;
}

.cuisine-catalog-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
}

/* ─── CUISINE TAB NAVIGATION BAR ────────────────────────────── */
.cuisine-tab-nav,
.cuisine-nav-tabs {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.cuisine-tab-nav::-webkit-scrollbar { display: none; }

.cuisine-tab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-family: var(--base-font);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--micro-transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.cuisine-tab-btn i {
    font-size: 0.85rem;
}

.cuisine-tab-btn:hover {
    color: var(--text-main);
    border-bottom-color: rgba(212, 175, 55, 0.4);
}

.cuisine-tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ─── CUISINE SCROLL CONTAINER ───────────────────────────────── */
.cuisine-scroll-container {
    /* Vertical stacking layout */
}

/* ─── INDIVIDUAL CUISINE SECTION ─────────────────────────────── */
.cuisine-section {
    padding: 60px 20px 40px;
    max-width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}

.cuisine-section:last-child { border-bottom: none; }

/* ─── CUISINE SECTION HERO HEADER ────────────────────────────── */
.cuisine-section-hero {
    text-align: center;
    padding: 40px 15px 30px;
    margin-bottom: 30px;
    position: relative;
}

.cuisine-hero-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.cuisine-hero-title {
    font-family: var(--serif-font);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cuisine-hero-title i {
    color: var(--gold);
    font-size: 2.2rem;
}

.cuisine-hero-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.cuisine-hero-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.5;
}

/* ─── GUJARATI HERO THEME (Saffron Warmth) ───────────────────── */
.gujarati-hero {
    background: linear-gradient(135deg,
        rgba(212, 134, 28, 0.06) 0%,
        rgba(20, 20, 20, 0.0) 40%,
        rgba(34, 90, 55, 0.05) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 134, 28, 0.12);
    margin-bottom: 40px;
}

.gujarati-hero .cuisine-hero-title i {
    color: #d4861c;
}

.gujarati-hero .cuisine-hero-badge {
    color: #d4861c;
}

.gujarati-hero .cuisine-hero-line {
    background: linear-gradient(to right, #d4861c, #2e7d32);
    opacity: 0.7;
    width: 100px;
}

/* ─── RAJASTHANI HERO THEME (Desert Royal) ───────────────────── */
.rajasthani-hero {
    background: linear-gradient(135deg,
        rgba(139, 27, 27, 0.07) 0%,
        rgba(20, 20, 20, 0.0) 40%,
        rgba(180, 115, 20, 0.06) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 27, 27, 0.12);
    margin-bottom: 40px;
}

.rajasthani-hero .cuisine-hero-title i {
    color: #b47314;
}

.rajasthani-hero .cuisine-hero-badge {
    color: #b47314;
}

.rajasthani-hero .cuisine-hero-line {
    background: linear-gradient(to right, #b47314, #8b1b1b);
    opacity: 0.7;
    width: 100px;
}

/* ─── CUISINE SUB-SECTION ─────────────────────────────────────── */
.cuisine-subsection {
    margin-bottom: 55px;
}

.cuisine-subsection-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cuisine-sub-icon {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.8;
}

.cuisine-subsection-title {
    font-family: var(--serif-font);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-main);
    letter-spacing: 1px;
}

.cuisine-sub-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.15), transparent);
}

/* ─── CUISINE DISH CARDS GRID ─────────────────────────────────── */
.cuisine-dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.cuisine-dish-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--micro-transition);
    position: relative;
    overflow: hidden;
}

.cuisine-dish-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px; height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cuisine-dish-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.cuisine-dish-card:hover::before {
    opacity: 1;
}

.cuisine-dish-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--gold);
}

.cuisine-dish-info {
    flex: 1;
    min-width: 0;
}

.cuisine-dish-name {
    font-family: var(--serif-font);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.3;
}

.cuisine-dish-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.55;
}

.cuisine-dish-nutr {
    margin-top: 8px;
    align-self: flex-end;
    flex-shrink: 0;
}

.nutr-pill {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nutr-pill i {
    color: #ff7043;
    font-size: 0.6rem;
}

/* ─── SIGNATURE GUJARATI THALI CARD ──────────────────────────── */
.signature-thali-section {
    padding: 20px 0 30px;
}

.signature-thali-card {
    background: linear-gradient(135deg,
        rgba(212, 134, 28, 0.08) 0%,
        rgba(14, 14, 14, 0.95) 50%,
        rgba(34, 90, 55, 0.08) 100%);
    border: 1px solid rgba(212, 134, 28, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.thali-crown-badge {
    background: linear-gradient(90deg, rgba(212, 134, 28, 0.2), transparent);
    border-bottom: 1px solid rgba(212, 134, 28, 0.15);
    padding: 12px 30px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #d4861c;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.thali-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
    align-items: center;
}

.thali-hero-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #d4861c;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.thali-title {
    font-family: var(--serif-font);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.thali-title span {
    background: linear-gradient(135deg, #d4861c, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thali-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
}

.thali-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Thali Plate Visual */
.thali-plate {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .thali-plate {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .thali-plate {
        width: 100%;
        max-width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .thali-plate {
        width: 100%;
        max-width: 200px;
        height: 200px;
    }
}

.thali-plate-rim {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(212, 134, 28, 0.4) 0%,
        rgba(212, 175, 55, 0.15) 25%,
        rgba(212, 134, 28, 0.4) 50%,
        rgba(212, 175, 55, 0.15) 75%,
        rgba(212, 134, 28, 0.4) 100%
    );
    border: 2px solid rgba(212, 134, 28, 0.3);
    animation: thaliRotate 20s linear infinite;
}

@keyframes thaliRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.thali-items-grid {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(255,255,255,0.05);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    padding: 10px;
}

.thali-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    padding: 6px;
}

.thali-item i {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.7;
}

.thali-item span {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1.2;
}

.thali-item-sweet i {
    color: #e91e63;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cuisine-dishes-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    .thali-card-body {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }
    .thali-desc { max-width: 100%; }
    .thali-cta { justify-content: center; }
}

@media (max-width: 768px) {
    .cuisine-hero-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 8px;
    }
    .cuisine-tab-btn span { display: none; }
    .cuisine-tab-btn { padding: 12px 16px; font-size: 0.65rem; }
    .cuisine-dishes-grid {
        grid-template-columns: 1fr;
    }
    .thali-title { font-size: 2rem; }
    .cuisine-catalog-heading { font-size: 2.2rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPREHENSIVE MOBILE RESPONSIVE FIXES (390px - 768px)
   Addresses horizontal overflow, layout stacking, typography scaling
   ─────────────────────────────────────────────────────────────────────────── */

/* Global mobile viewport constraints */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .luxury-header,
    .luxury-header.scrolled {
        padding: 12px 15px;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .header-actions .small-btn {
        padding: 8px 12px;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .logo-serif {
        font-size: 1.4rem;
    }
    
    .logo-sans {
        font-size: 0.55rem;
    }
}

/* Mobile layout for Menu Curation Section */
@media (max-width: 768px) {
    .royal-menu-selector {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
    }
    
    .menu-folio-btn {
        flex: 1 1 auto;
        min-width: 120px;
        padding: 10px 12px;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .royal-flipbook {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .book-sidebar {
        padding: 20px 15px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .book-category-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        margin: 20px 0;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .book-cat-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .book-pages-wrapper {
        padding: 20px 15px;
    }
    
    .menu-items-inner-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-height: none;
        padding-right: 0;
    }
}

/* Mobile adjustments for dish cards in menu curation */
@media (max-width: 768px) {
    .menu-card-3d {
        height: 200px;
    }
    
    .card-3d-front,
    .card-3d-back {
        padding: 15px;
    }
    
    .card-dish-name {
        font-size: 1.1rem;
    }
    
    .cuisine-tab-nav,
    .cuisine-nav-tabs {
        padding: 0 10px;
        top: 60px;
    }
    
    .cuisine-tab-btn {
        padding: 12px 14px;
        font-size: 0.65rem;
    }
    
    .cuisine-section {
        padding: 60px 20px 40px;
    }
    
    .cuisine-section-hero {
        padding: 40px 15px 30px;
    }
}

/* Smartphone (480px and below) - typography and spacing reductions */
@media (max-width: 480px) {
    .luxury-header,
    .luxury-header.scrolled {
        padding: 10px 12px;
    }
    
    .logo-serif {
        font-size: 1.2rem;
    }
    
    .logo-sans {
        font-size: 0.5rem;
        letter-spacing: 3px;
        margin-top: -3px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 2rem);
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .large-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.75rem;
    }
    
    .heritage-quote-text {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
    }
    
    .section-header h2 {
        font-size: clamp(1.6rem, 5.5vw, 2rem);
        margin-bottom: 15px;
    }
    
    .cuisine-catalog-heading {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .cuisine-hero-title {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
        gap: 6px;
    }
    
    .cuisine-hero-title i {
        font-size: 1.5rem !important;
    }
    
    .cuisine-hero-sub {
        font-size: 0.85rem;
    }
    
    .cuisine-subsection-title {
        font-size: 1.1rem;
    }
    
    .chef-main-quote {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    
    .thali-card-body {
        padding: 25px 20px;
        gap: 25px;
    }
    
    .thali-plate {
        width: 180px;
        height: 180px;
    }
    
    .thali-title {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        margin: 0;
    }
    
    .service-img {
        height: 200px;
    }
    
    .service-details {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-card {
        margin: 0;
    }
    
    .gallery-media-wrapper {
        height: 220px;
    }
}

/* AI Chat Widget Mobile Adjustments */
@media (max-width: 768px) {
    .ai-chat-widget {
        width: calc(100% - 20px) !important;
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        max-width: none;
        transform: translateX(0) !important;
    }
    
    .ai-chat-widget.collapsed {
        transform: translateY(calc(100% - 50px)) !important;
    }
    
    .ai-chat-header {
        padding: 12px 15px;
    }
    
    .ai-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .ai-chat-header strong {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .ai-chat-header i {
        font-size: 0.9rem;
    }
    
    .ai-chat-body {
        min-height: 200px;
        max-height: 250px;
        padding: 12px;
    }
    
    .chat-msg {
        max-width: 90%;
        font-size: 0.8rem;
        padding: 10px 14px;
    }
}

/* Floating Price Bar Mobile Adjustments */
@media (max-width: 768px) {
    .floating-price-bar {
        padding: 12px 20px;
        width: calc(100% - 20px) !important;
        left: 10px !important;
        right: 10px !important;
        max-width: none;
    }
    
    .floating-info {
        gap: 15px;
    }
    
    .info-block .val {
        font-size: 1rem;
    }
}

/* Tablet specific adjustments (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .cuisine-dishes-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .thali-card-body {
        grid-template-columns: 1fr;
        padding: 35px;
    }
    
    .thali-plate {
        width: 240px;
        height: 240px;
    }
}

/* Prevent any horizontal overflow from decorative elements */
@media (max-width: 768px) {
    .cuisine-hero-line,
    .gold-divider,
    .heritage-thin-line {
        max-width: 100%;
    }
    
    .cuisine-sub-line {
        display: none;
    }
}

/* Ensure all containers respect viewport width */
@media (max-width: 768px) {
    .cuisine-catalog-inner,
    .planner-container,
    .heritage-intro-container,
    .section-header,
    .reviews-container,
    .gallery-grid,
    .services-grid,
    .cuisine-section {
        max-width: 100%;
        width: 100%;
    }
    
    .cuisine-section {
        padding: 40px 15px 30px;
    }
}

/* Text overflow prevention */
@media (max-width: 768px) {
    .cuisine-dish-name,
    .cuisine-dish-desc,
    .dish-modal-title,
    .dish-modal-desc,
    .card-desc {
        overflow-wrap: anywhere;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .cuisine-dish-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cuisine-dish-icon {
        margin: 0 auto 10px;
    }
}

/* 480px smartphone fine-tuning */
@media (max-width: 480px) {
    .cuisine-dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .cuisine-dish-card {
        padding: 14px;
    }
    
    .cuisine-section {
        padding: 30px 12px 25px;
    }
    
    .cuisine-section-hero {
        padding: 25px 10px 20px;
        margin-bottom: 25px;
    }
}

/* MOBILE-FIRST: Ultimate safeguard against horizontal overflow */
@media (max-width: 768px) {
    .royal-flipbook {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }
    
    .book-sidebar {
        padding: 20px 15px !important;
    }
    
    .thali-card-body {
        grid-template-columns: 1fr !important;
        padding: 25px 15px !important;
        gap: 25px !important;
        text-align: center !important;
    }
    
    .planner-layout {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .hero-buttons .large-btn {
        padding: 10px 15px !important;
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }
    
    #hero-subtitle {
        padding: 0 15px !important;
        font-size: 0.9rem !important;
    }
}

/* ================================================================
   MOBILE-FIRST PREMIUM DESIGN LAYER (below 768px)
   Complete redesign for mobile without affecting desktop
   ================================================================ */

@media (max-width: 768px) {
    /* === HERO MOBILE REDESIGN === */
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(6, 6, 8, 0.65) 0%,
            rgba(6, 6, 8, 0.75) 100%
        );
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 92vw;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 9vw, 2.8rem) !important;
        line-height: 1.3 !important;
        letter-spacing: 1px !important;
        color: var(--text-main) !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        margin-bottom: 20px !important;
    }
    
    .hero-tag {
        font-size: 0.7rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 15px !important;
    }
    
    #hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: var(--text-main) !important;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-buttons .large-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
        min-height: 48px;
    }
    
    /* === HEADER MOBILE REDESIGN === */
    .luxury-header {
        padding: 12px 15px !important;
        height: 60px;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .logo-serif {
        font-size: clamp(1.2rem, 4vw, 1.6rem) !important;
    }
    
    .logo-sans {
        font-size: clamp(0.5rem, 2vw, 0.65rem) !important;
        letter-spacing: 2px !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
        font-size: 1.3rem !important;
        color: var(--gold) !important;
        padding: 8px;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--bg-card);
        padding: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        max-height: 50vh;
        overflow-y: auto;
    }
    
    .header-actions {
        position: fixed;
        bottom: 80px;
        left: 0;
        right: 0;
        width: 100%;
        justify-content: center;
        padding: 15px;
        background: rgba(15, 15, 18, 0.95);
        backdrop-filter: blur(10px);
        z-index: 99;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .header-actions .small-btn {
        min-height: 40px;
        padding: 10px 16px !important;
        font-size: 0.75rem !important;
    }
    
    /* Hide action buttons in header for mobile */
    .luxury-header .header-actions {
        display: none !important;
    }
    
    /* === SECTION SPACING MOBILE === */
    .services-section,
    .planner-section,
    .gallery-section,
    .reviews-section,
    .cuisine-section,
    .chef-quote-section {
        padding: 48px 18px !important;
    }
    
    .section-header h2 {
        font-size: clamp(1.6rem, 8vw, 2.4rem) !important;
        line-height: 1.3 !important;
        letter-spacing: 1px !important;
    }
    
    .cuisine-catalog-heading {
        font-size: clamp(1.8rem, 9vw, 2.8rem) !important;
        line-height: 1.3 !important;
    }
    
    .heritage-quote-text {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
        line-height: 1.4 !important;
    }
    
    /* === MENU CURATION MOBILE === */
    /* Hide desktop sidebar completely on mobile */
    .book-sidebar {
        display: none !important;
    }
    
    /* Make menu area full width */
    .royal-flipbook {
        display: block !important;
        min-height: auto !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .book-pages-wrapper {
        padding: 20px 15px !important;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        background: var(--bg-card);
    }
    
    .menu-items-inner-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        max-height: none !important;
    }
    
    .menu-folio-btn {
        flex: 1 1 auto;
        min-width: 110px;
        padding: 12px 14px;
        font-size: 0.68rem;
        letter-spacing: 1px;
        min-height: 44px;
    }
    
    .royal-menu-selector {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
    }
    
    /* === DISH CARD MOBILE REDESIGN === */
    .cuisine-dish-card {
        display: block !important;
        padding: 20px !important;
        text-align: center !important;
    }
    
    .cuisine-dish-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
        margin: 0 auto 12px !important;
    }
    
    .cuisine-dish-name {
        font-size: clamp(1.25rem, 5.5vw, 1.75rem) !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    
    .cuisine-dish-desc {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }
    
    .cuisine-dish-nutr {
        margin: 12px auto 0 !important;
        align-self: center !important;
    }
    
    /* === THALI CARD MOBILE REDESIGN === */
    .thali-card-body {
        grid-template-columns: 1fr !important;
        padding: 25px 20px !important;
        gap: 25px !important;
        text-align: center !important;
    }
    
    .thali-plate {
        width: 100% !important;
        max-width: 220px !important;
        height: 220px !important;
        margin: 0 auto 15px !important;
    }
    
    .thali-items-grid {
        grid-template-columns: 4 !important;
        gap: 6px !important;
        padding: 8px !important;
    }
    
    .thali-item i {
        font-size: 0.9rem !important;
    }
    
    .thali-item span {
        font-size: 0.52rem !important;
    }
    
    .thali-title {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
        margin-bottom: 15px !important;
    }
    
    .thali-desc {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    
    .thali-cta {
        justify-content: center;
        gap: 12px;
    }
    
    /* === EXPERIENCES/SERVICES MOBILE === */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .service-card {
        margin: 0 !important;
    }
    
    .service-img {
        height: 200px !important;
    }
    
    .service-details {
        padding: 20px !important;
    }
    
    /* === GALLERY MOBILE === */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .gallery-media-wrapper {
        height: 220px !important;
    }
    
    /* === CHEF QUOTE MOBILE === */
    .chef-main-quote {
        font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
        line-height: 1.4 !important;
    }
    
    /* === AI CHAT WIDGET MOBILE === */
    .ai-chat-widget {
        width: 56px !important;
        height: 56px !important;
        border-radius: 50% !important;
        left: auto !important;
        right: 15px !important;
        bottom: 90px !important;
        max-width: none !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }
    
    .ai-chat-widget.collapsed {
        transform: none !important;
    }
    
    .ai-chat-header {
        padding: 0 !important;
        border: none !important;
        cursor: pointer;
    }
    
    .ai-avatar {
        width: 100% !important;
        height: 100% !important;
        font-size: 1.2rem !important;
        border-radius: 50% !important;
    }
    
    .ai-chat-widget .ai-chat-header > div:not(.ai-avatar) {
        display: none !important;
    }
    
    .ai-chat-widget .ai-chat-header i {
        display: none !important;
    }
    
    .ai-chat-header strong {
        display: none !important;
    }
    
    .ai-chat-body,
    .ai-chat-input {
        display: none !important;
    }
    
    /* When expanded on mobile */
    .ai-chat-widget.mobile-expanded {
        width: calc(100% - 30px) !important;
        height: auto !important;
        border-radius: 16px !important;
        max-height: 70vh !important;
    }
    
    .ai-chat-widget.mobile-expanded .ai-chat-header {
        padding: 12px 15px !important;
        border-bottom: 1px solid var(--border-color);
    }
    
    .ai-chat-widget.mobile-expanded .ai-chat-header > div:not(.ai-avatar) {
        display: flex !important;
    }
    
    .ai-chat-widget.mobile-expanded .ai-chat-body,
    .ai-chat-widget.mobile-expanded .ai-chat-input {
        display: block !important;
    }
    
    /* === FLOATING PRICE BAR MOBILE === */
    .floating-price-bar {
        padding: 12px 15px !important;
        width: calc(100% - 30px) !important;
        left: 15px !important;
        right: 15px !important;
        max-width: none !important;
        bottom: 20px !important;
    }
    
    .info-block .val {
        font-size: 1rem !important;
    }
    
    /* === CUSTOMER VIEW MOBILE padding === */
    #customer-view {
        padding-bottom: 120px !important;
    }
    
    /* === FORM MOBILE === */
    .form-group {
        margin-bottom: 20px !important;
    }
    
    .form-control {
        min-height: 48px !important;
        padding: 12px 15px !important;
    }
    
    .primary-btn.w-100 {
        min-height: 48px !important;
    }
}

/* ================================================================
   480px SMART PHONE FINE-TUNING
   ================================================================ */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.6rem, 9vw, 2.2rem) !important;
    }
    
    .services-section,
    .planner-section,
    .gallery-section,
    .reviews-section,
    .cuisine-section {
        padding: 36px 15px !important;
    }
    
    .cuisine-dish-card {
        padding: 16px !important;
    }
    
    .cuisine-dish-name {
        font-size: 1.2rem !important;
    }
    
    .cuisine-dish-desc {
        font-size: 0.88rem !important;
    }
    
    .thali-plate {
        max-width: 180px !important;
        height: 180px !important;
    }
}
