/* ==========================================================================
   CHEZBAL RESTAURANT — LUXURY FINE DINING STYLESHEET
   Belgian Premium Gastronomic Identity & Multilingual Experience
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg: #0A0A0C;
    --color-bg-alt: #111115;
    --color-surface: #16161C;
    --color-surface-hover: #1E1E26;
    --color-surface-glass: rgba(22, 22, 28, 0.85);

    /* Gold & Accents */
    --color-gold: #D4AF37;
    --color-gold-light: #ECC875;
    --color-gold-dark: #A88420;
    --color-gold-muted: rgba(212, 175, 55, 0.18);
    --gold-gradient: linear-gradient(135deg, #F5D77F 0%, #D4AF37 50%, #9E7D23 100%);
    --gold-gradient-hover: linear-gradient(135deg, #FFF0B3 0%, #E5C358 50%, #B8922C 100%);

    /* Typography Colors */
    --color-text-primary: #F8F8FA;
    --color-text-secondary: #B0B0BA;
    --color-text-muted: #727280;
    --color-text-inverse: #0A0A0C;

    /* Borders & Accents */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-gold: rgba(212, 175, 55, 0.35);
    --color-border-gold-glow: rgba(212, 175, 55, 0.6);

    /* Status Colors */
    --color-success: #2ECC71;
    --color-error: #E74C3C;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows & Elevations */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.22);
    --shadow-gold-lg: 0 16px 50px rgba(212, 175, 55, 0.35);

    /* Layout */
    --container-width: 1240px;
    --container-padding: 24px;
    --navbar-height: 88px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    color-scheme: dark;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #070709;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease-out;
}

.page-transition.is-hidden {
    opacity: 0;
}

.page-transition__logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulseLogo 1.5s ease-in-out infinite alternate;
}

@keyframes pulseLogo {
    from { opacity: 0.6; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1.02); }
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    color: inherit;
    outline: none;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* --------------------------------------------------------------------------
   03. TYPOGRAPHY & HEADINGS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.18;
}

.section__subtitle {
    font-size: 1.08rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   04. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold-gradient);
    color: #0A0A0C;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
    background: var(--gold-gradient-hover);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-2px);
    color: #000;
}

.btn--outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-gold);
    backdrop-filter: blur(8px);
}

.btn--outline:hover {
    background: var(--color-gold-muted);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn--full {
    width: 100%;
}

/* --------------------------------------------------------------------------
   05. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    padding: 16px 0;
    background: var(--color-surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.navbar__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity var(--transition-fast);
}

.navbar__logo:hover {
    opacity: 0.88;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-text-primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.navbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector */
.navbar__lang {
    position: relative;
}

.navbar__lang-current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.navbar__lang-current:hover,
.navbar__lang-current.active {
    border-color: var(--color-border-gold);
    background: rgba(212, 175, 55, 0.1);
}

.navbar__lang-current svg {
    transition: transform var(--transition-fast);
}

.navbar__lang-current.active svg {
    transform: rotate(180deg);
}

.navbar__lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    background: #14141A;
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    backdrop-filter: blur(16px);
}

.navbar__lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.navbar__lang-option:hover,
.navbar__lang-option.active {
    background: var(--color-gold-muted);
    color: var(--color-gold-light);
}

.navbar__lang-flag {
    font-size: 1.1rem;
}

.navbar__lang-code {
    margin-left: auto;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.navbar__reserve-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    color: #0A0A0C;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-base);
}

.navbar__reserve-btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
}

.navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.navbar__mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #111116;
    border-left: 1px solid var(--color-border-gold);
    z-index: 999;
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.navbar__mobile.open {
    transform: translateX(0);
}

.navbar__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.navbar__mobile-links a {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.navbar__mobile-links a:hover,
.navbar__mobile-links a.active {
    color: var(--color-gold);
}

.navbar__mobile-reserve {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gold-gradient);
    color: #0A0A0C;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.navbar__mobile-lang {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.navbar__mobile-lang a {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
}

.navbar__mobile-lang a.active {
    background: var(--color-gold);
    color: #0A0A0C;
    border-color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   06. HERO COMPONENT
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 80px;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 65%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 12, 0.5) 0%, rgba(10, 10, 12, 0.92) 80%, #0A0A0C 100%),
        url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.03);
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 12, 0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.hero__tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 24px;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-full);
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 26px;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: #D2D2DA;
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
    animation: scrollLine 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   07. INFO BAR
   -------------------------------------------------------------------------- */
.info-bar {
    position: relative;
    z-index: 3;
    margin-top: -36px;
    padding-bottom: 40px;
}

.info-bar__grid {
    background: var(--color-surface);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 26px 40px;
    backdrop-filter: blur(16px);
}

.info-bar__item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.info-bar__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-gold-muted);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-bar__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-bar__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
}

.info-bar__value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.info-bar__divider {
    width: 1px;
    height: 44px;
    background: var(--color-border);
}

/* --------------------------------------------------------------------------
   08. ABOUT COMPONENT
   -------------------------------------------------------------------------- */
.about {
    background: var(--color-bg);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
}

.about__image {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.about__image-wrapper:hover img {
    transform: scale(1.04);
}

.about__image-accent {
    position: absolute;
    inset: -12px;
    border: 1px solid var(--color-border-gold);
    border-radius: calc(var(--radius-lg) + 12px);
    z-index: -1;
    pointer-events: none;
}

.about__experience-badge {
    position: absolute;
    bottom: -24px;
    right: 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    padding: 20px 26px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about__experience-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    max-width: 100px;
    line-height: 1.3;
}

.about__content .section__tag {
    margin-bottom: 12px;
}

.about__content .section__title {
    text-align: left;
    margin-bottom: 24px;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__divider {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin-top: 30px;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about__feature {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.about__feature:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.about__feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--color-gold-muted);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.about__feature-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   09. MENU COMPONENT
   -------------------------------------------------------------------------- */
.menu-section {
    background: var(--color-bg-alt);
}

.menu__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.menu__tab {
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.menu__tab:hover {
    color: var(--color-gold-light);
    border-color: var(--color-border-gold);
}

.menu__tab.active {
    background: var(--gold-gradient);
    color: #0A0A0C;
    font-weight: 600;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.menu__card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.menu__card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.menu__card:hover .menu__card-image img {
    transform: scale(1.08);
}

.menu__card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold);
    backdrop-filter: blur(8px);
}

.menu__card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu__card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}

.menu__card-name {
    font-size: 1.45rem;
    font-weight: 500;
}

.menu__card-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
}

.menu__card-desc {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.menu__card-allergens {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
}

.menu__card-allergens-label {
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* Menu Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}

.modal__content {
    position: relative;
    z-index: 2;
    background: var(--color-surface);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    width: 100%;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

.modal__content::-webkit-scrollbar {
    width: 6px;
}
.modal__content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 4px;
}

.modal.active .modal__content {
    transform: scale(1);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.modal__close:hover {
    background: var(--color-gold);
    color: #000;
}

.modal__image {
    height: 280px;
    overflow: hidden;
}

.modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal__body {
    padding: 30px;
}

.modal__tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-gold-muted);
    color: var(--color-gold);
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.modal__title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.modal__desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal__allergens {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.modal__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   10. CHEF COMPONENT
   -------------------------------------------------------------------------- */
.chef {
    background: var(--color-bg);
}

.chef__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.chef__content .section__tag {
    margin-bottom: 12px;
}

.chef__content .section__title {
    text-align: left;
    margin-bottom: 24px;
}

.chef__bio {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.chef__quote {
    position: relative;
    padding: 24px 30px;
    background: var(--color-surface);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 30px;
}

.chef__quote svg {
    position: absolute;
    top: 16px;
    right: 20px;
    color: var(--color-gold);
}

.chef__quote p {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.5;
}

.chef__meta {
    display: flex;
    gap: 20px;
}

.chef__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-gold-light);
}

.chef__image {
    position: relative;
}

.chef__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.chef__image-wrapper img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.chef__image-frame {
    position: absolute;
    inset: -14px;
    border: 1px solid var(--color-border-gold);
    border-radius: calc(var(--radius-lg) + 14px);
    z-index: -1;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   11. EXPERIENCES COMPONENT
   -------------------------------------------------------------------------- */
.experiences {
    background: var(--color-bg-alt);
}

.experiences__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.experiences__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.experiences__card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.experiences__card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--color-gold-muted);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.experiences__card-title {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.experiences__card-text {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
}

.experiences__card-link {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.experiences__card:hover .experiences__card-link {
    gap: 12px;
}

/* --------------------------------------------------------------------------
   12. EVENTS COMPONENT
   -------------------------------------------------------------------------- */
.events {
    background: var(--color-bg);
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.events__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.events__card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.events__card-date {
    background: var(--gold-gradient);
    color: #0A0A0C;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.events__card-day {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.events__card-month {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.events__card-body {
    padding: 30px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.events__card-title {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.events__card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.events__card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.events__card-meta svg {
    color: var(--color-gold);
}

.events__card-desc {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

/* --------------------------------------------------------------------------
   13. GALLERY COMPONENT
   -------------------------------------------------------------------------- */
.gallery {
    background: var(--color-bg-alt);
}

.gallery__filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery__filter {
    padding: 9px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.gallery__filter:hover,
.gallery__filter.active {
    background: var(--gold-gradient);
    color: #0A0A0C;
    font-weight: 600;
    border-color: transparent;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery__item {
    position: relative;
    height: 270px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: var(--color-gold);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.94);
    backdrop-filter: blur(14px);
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox__close:hover,
.lightbox__nav:hover {
    background: var(--color-gold);
    color: #0A0A0C;
}

.lightbox__close {
    top: 24px;
    right: 24px;
}

.lightbox__nav--prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__image-wrapper {
    position: relative;
    z-index: 2;
    max-width: 88vw;
    max-height: 82vh;
}

.lightbox__image-wrapper img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   14. REVIEWS COMPONENT
   -------------------------------------------------------------------------- */
.reviews {
    background: var(--color-bg);
}

.reviews__slider {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews__card {
    min-width: 100%;
    padding: 40px 30px;
    text-align: center;
}

.reviews__card-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.reviews__card-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.reviews__card-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.reviews__card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0A0A0C;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.reviews__card-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.reviews__control {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.reviews__control:hover {
    border-color: var(--color-border-gold);
    color: var(--color-gold);
}

.reviews__dots {
    display: flex;
    gap: 8px;
}

.reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.reviews__dot.active {
    background: var(--color-gold);
    width: 26px;
    border-radius: var(--radius-full);
}

.reviews__google {
    text-align: center;
    margin-top: 40px;
}

/* --------------------------------------------------------------------------
   15. RESERVATION COMPONENT
   -------------------------------------------------------------------------- */
.reservation {
    background: var(--color-bg-alt);
}

.reservation__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: flex-start;
}

.reservation__info .section__title {
    text-align: left;
    margin-bottom: 20px;
}

.reservation__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.reservation__detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--color-text-primary);
}

.reservation__detail svg {
    color: var(--color-gold);
}

.reservation__form-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
}

.form__label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.form__input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.form__input:focus {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form__select {
    cursor: pointer;
}

.form__select option {
    background: #16161C;
    color: #fff;
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__error {
    font-size: 0.75rem;
    color: var(--color-error);
    display: none;
    margin-top: 4px;
}

.form__group.has-error .form__error {
    display: block;
}

.form__group.has-error .form__input {
    border-color: var(--color-error);
}

.form__feedback {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
}

.form__feedback--success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid var(--color-success);
    color: #2ECC71;
}

.form__feedback--error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid var(--color-error);
    color: #E74C3C;
}

/* --------------------------------------------------------------------------
   16. CONTACT COMPONENT
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   16. CONTACT COMPONENT (PREMIUM REDESIGN)
   -------------------------------------------------------------------------- */
.contact {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                var(--color-bg);
    position: relative;
    padding: 100px 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: stretch;
}

.contact__cards-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact__card {
    background: linear-gradient(145deg, rgba(25, 25, 33, 0.75) 0%, rgba(13, 13, 18, 0.9) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.1);
}

.contact__card--hours {
    grid-column: span 2;
}

.contact__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__card-icon--wa {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.contact__card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.contact__card-badge {
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--color-gold-light);
    font-weight: 600;
    display: inline-block;
    margin-top: 3px;
}

.contact__card-badge--green {
    background: rgba(37, 211, 102, 0.12);
    color: #4ade80;
}

.contact__card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__card-text {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin: 0;
}

.contact__card-text strong {
    color: #fff;
    font-size: 0.98rem;
}

.contact__transit-hint {
    font-size: 0.8rem;
    color: var(--color-gold-light);
    background: rgba(212, 175, 55, 0.07);
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 2px solid var(--color-gold);
    margin-top: 6px;
    line-height: 1.35;
}

.contact__phone-link {
    font-size: 1.28rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-block;
    transition: color 0.2s;
}

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

.contact__email-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold-light);
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact__email-link:hover {
    opacity: 0.85;
}

.contact__card-subtext {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

.contact__card-footer {
    margin-top: auto;
    padding-top: 6px;
}

.contact__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    transition: all 0.25s ease;
}

.contact__card-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.contact__card-btn--gold {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--color-gold-light);
}

.contact__card-btn--gold:hover {
    background: var(--color-gold);
    color: #0A0A0C;
    border-color: var(--color-gold);
}

.contact__card-btn--wa {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #4ade80;
}

.contact__card-btn--wa:hover {
    background: #25D366;
    color: #0A0A0C;
    border-color: #25D366;
}

/* Live Hours Pill */
.contact__live-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 12px;
    margin-top: 3px;
}

.contact__live-status--open {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact__live-status--closed {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseGreen 1.8s infinite;
}

.pulse-dot.closed {
    background: #ef4444;
    box-shadow: none;
    animation: none;
}

@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.contact__hours-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 18px;
}

.contact__hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 5px 8px;
    border-radius: 6px;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact__hours-item.is-today {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #fff;
    font-weight: 600;
}

.contact__hours-val {
    font-weight: 600;
    color: var(--color-gold-light);
}

.today-tag {
    font-size: 0.65rem;
    padding: 1px 5px;
    border-radius: 4px;
    background: var(--color-gold);
    color: #0A0A0C;
    font-weight: 700;
    margin-left: 6px;
    text-transform: uppercase;
}

/* Social strip */
.contact__social-strip {
    background: linear-gradient(145deg, rgba(25, 25, 33, 0.75) 0%, rgba(13, 13, 18, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.contact__social-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold-light);
}

.contact__social-sub {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: 2px 0 0;
}

.contact__social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.25s;
}

.contact__social-btn:hover {
    background: var(--color-gold);
    color: #0A0A0C;
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.contact__social-btn--wa {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
    color: #4ade80;
}

.contact__social-btn--wa:hover {
    background: #25D366;
    color: #0A0A0C;
    border-color: #25D366;
}

/* Right Map Frame & VIP Overlay */
.contact__map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #0d0d12;
}

.contact__map-embed {
    width: 100%;
    height: 100%;
    min-height: 540px;
    border: 0;
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(115%);
    transition: filter 0.3s;
}

.contact__map-vip-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(12, 12, 17, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vip-badge-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vip-badge-crest {
    font-size: 1.6rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vip-badge-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.vip-badge-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    margin-top: 2px;
}

.vip-badge-rating .stars {
    color: #fbbf24;
    letter-spacing: 1px;
}

.vip-badge-rating .score {
    font-weight: 700;
    color: #fff;
}

.vip-badge-rating .reviews {
    color: var(--color-text-muted);
}

.vip-badge-location {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vip-badge-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.vip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    text-align: center;
}

.vip-btn--primary {
    background: var(--gold-gradient);
    color: #0A0A0C;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.vip-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.vip-btn--outline {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.vip-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

/* Responsive */
@media (max-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .contact__map-frame {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .contact__cards-grid {
        grid-template-columns: 1fr;
    }
    .contact__card--hours {
        grid-column: span 1;
    }
    .contact__hours-list {
        grid-template-columns: 1fr;
    }
    .vip-badge-actions {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   17. FOOTER COMPONENT
   -------------------------------------------------------------------------- */
.footer {
    background: #070709;
    border-top: 1px solid var(--color-border);
    padding: 90px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer__brand .navbar__logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #0A0A0C;
    transform: translateY(-2px);
}

.footer__title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-gold-light);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer__newsletter p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer__newsletter-form {
    display: flex;
    gap: 10px;
}

.footer__newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 12px 20px;
    font-size: 0.88rem;
    color: var(--color-text-primary);
}

.footer__newsletter-form input:focus {
    border-color: var(--color-gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

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

/* --------------------------------------------------------------------------
   18. MOBILE FLOATING CTA & QUICK CONTACT
   -------------------------------------------------------------------------- */
.mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 990;
    display: none;
}

.mobile-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--gold-gradient);
    color: #0A0A0C;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold-lg);
}

.quick-contact {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 989;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact__btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.quick-contact__btn--phone {
    background: var(--color-gold);
    color: #0A0A0C;
}

.quick-contact__btn--whatsapp {
    background: #25D366;
    color: #FFF;
}

.quick-contact__btn:hover {
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   19. ANIMATIONS & TRANSITIONS
   -------------------------------------------------------------------------- */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.is-visible,
.anim-reveal-left.is-visible,
.anim-reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
}

.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.3s; }
.anim-delay-3 { transition-delay: 0.45s; }
.anim-delay-4 { transition-delay: 0.6s; }

/* --------------------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .navbar__menu {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .about__grid,
    .chef__grid,
    .reservation__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__features,
    .experiences__grid,
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu__grid,
    .events__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-bar__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .info-bar__divider {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .menu__grid,
    .events__grid,
    .about__features,
    .experiences__grid,
    .gallery__grid,
    .contact__info {
        grid-template-columns: 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .reservation__form-wrapper {
        padding: 28px 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .navbar__reserve-btn {
        display: none;
    }
}

/* ==========================================================================
   10. ONLINE ORDERING & CART DRAWER SYSTEM
   ========================================================================== */

/* Menu Card Action (Add to Cart button) */
.menu__card-action {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.btn-add-cart {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--color-gold-light);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-add-cart:hover {
    background: var(--color-gold);
    color: #0A0A0C;
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.modal__footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-modal-add-cart {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border: none;
    color: #0A0A0C;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-modal-add-cart:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ─── ADD TO CART TOAST NOTIFICATION (POPUP) ─────────────── */
.cart-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-140px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    z-index: 10005;
    width: calc(100% - 28px);
    max-width: 450px;
    background: rgba(18, 20, 28, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(212, 175, 55, 0.55);
    border-radius: 18px;
    padding: 12px 14px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
    overflow: hidden;
}

.cart-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.cart-toast__content-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.cart-toast__thumb-wrap {
    position: relative;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.cart-toast__thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    background: #14161d;
    display: block;
}

.cart-toast__badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #12141b;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.5);
}

.cart-toast__details {
    flex: 1;
    min-width: 0;
}

.cart-toast__title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.cart-toast__status {
    font-size: 0.78rem;
    font-weight: 800;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-toast__name {
    font-size: 0.94rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.cart-toast__meta {
    font-size: 0.78rem;
    color: var(--color-gold-light, #f3e5ab);
    font-weight: 600;
    margin-top: 1px;
}

.cart-toast__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cart-toast__btn-view {
    background: linear-gradient(135deg, #d4af37, #aa8c2c);
    color: #0b0c10;
    border: none;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
    white-space: nowrap;
}

.cart-toast__btn-view:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

.cart-toast__btn-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    line-height: 1;
    transition: all 0.2s;
}

.cart-toast__btn-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Floating cart button pulse animation */
@keyframes cartBtnPulse {
    0% { transform: scale(1); }
    30% { transform: scale(1.22); box-shadow: 0 0 35px rgba(212, 175, 55, 0.95); }
    60% { transform: scale(0.96); }
    100% { transform: scale(1); }
}

.cart-btn-pulse {
    animation: cartBtnPulse 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Floating Cart Button */
.cart-floating-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 990;
    background: linear-gradient(135deg, #1f232d, #14161d);
    border: 1.5px solid var(--color-gold);
    border-radius: 40px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-floating-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8), 0 0 28px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .cart-floating-btn {
        bottom: 84px;
        right: 16px;
        padding: 8px 14px;
    }
}

.cart-floating-icon {
    position: relative;
    color: var(--color-gold);
    display: flex;
    align-items: center;
}

.cart-badge {
    background: var(--color-gold);
    color: #0A0A0C;
    font-size: 0.72rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -4px;
}

.cart-floating-total {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold-light);
    letter-spacing: 0.5px;
}

/* Cart Drawer Overlay */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 92vw;
    background: #111319;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer__header {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-drawer__title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer__icon {
    font-size: 1.3rem;
}

.cart-drawer__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-gold-light);
    margin: 0;
}

.cart-drawer__close {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
}

.cart-drawer__close:hover {
    color: #FFF;
    background: rgba(255, 255, 255, 0.08);
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70%;
    text-align: center;
    color: #9CA3AF;
}

.cart-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

.cart-empty-hint {
    font-size: 0.82rem;
    color: var(--color-gold-light);
    margin-top: 8px;
}

/* Cart Item */
.cart-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #FFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--color-gold-light);
    margin-top: 3px;
}

.cart-item-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-qty-btn {
    background: none;
    border: none;
    color: #FFF;
    font-size: 1rem;
    cursor: pointer;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.cart-qty-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
}

.cart-qty-val {
    font-size: 0.88rem;
    font-weight: 700;
    min-width: 16px;
    text-align: center;
}

/* Cart Footer */
.cart-drawer__footer {
    padding: 20px 24px;
    background: #0d0e14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary {
    margin-bottom: 16px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-bottom: 6px;
}

.cart-summary__total {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-gold-light);
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    margin-top: 8px;
}

.cart-checkout-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border: none;
    border-radius: 10px;
    color: #0A0A0C;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cart-checkout-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Checkout Form Slide-In */
.checkout-form-wrap {
    margin-top: 10px;
}

.checkout-header {
    margin-bottom: 16px;
}

.checkout-back-btn {
    background: none;
    border: none;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 0;
}

.checkout-back-btn:hover {
    text-decoration: underline;
}

.checkout-header h4 {
    font-size: 1.05rem;
    color: #FFF;
    margin: 0;
}

.order-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.order-type-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #D1D5DB;
    transition: all 0.2s ease;
}

.order-type-option input {
    display: none;
}

.order-type-option.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    font-weight: 600;
}

.cart-form-group {
    margin-bottom: 12px;
}

.cart-form-group label {
    display: block;
    font-size: 0.78rem;
    color: #9CA3AF;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-form-group input,
.cart-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #FFF;
    font-size: 0.88rem;
    outline: none;
    transition: border 0.2s ease;
}

.cart-form-group input:focus,
.cart-form-group textarea:focus {
    border-color: var(--color-gold);
}

.btn-submit-order {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 10px;
    color: #FFF;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 10px;
}

.btn-submit-order:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.order-submit-status {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

/* Success Modal */
.modal__content--success {
    text-align: center;
    padding: 36px 28px;
    max-width: 440px;
}

.order-success-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.btn-wa-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #FFF;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
    width: 100%;
    transition: all 0.25s ease;
}

.btn-wa-order:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-close-success {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFF;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.88rem;
    width: 100%;
}

.btn-close-success:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   22. MENU ITEM CUSTOMIZATION (SAUCE & SALAD SELECTOR)
   -------------------------------------------------------------------------- */
.modal__customizer {
    margin-top: 18px;
    margin-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.customizer-section {
    margin-bottom: 18px;
}

.customizer-section:last-child {
    margin-bottom: 0;
}

.customizer-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.customizer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.customizer-hint {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.customizer-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.customizer-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.customizer-chip:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
    color: #fff;
    transform: translateY(-1px);
}

.customizer-chip.selected {
    background: var(--color-gold);
    color: #0b0c10;
    border-color: var(--color-gold);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.customizer-chip.selected-none {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.5);
    font-weight: 600;
}

.customizer-quick-actions {
    display: flex;
    gap: 6px;
}

.btn-chip-quick {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-gold);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-chip-quick:hover {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

.customizer-note-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.86rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.customizer-note-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.customizer-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}

.cart-item-customizations {
    font-size: 0.76rem;
    color: var(--color-gold);
    margin-top: 4px;
    line-height: 1.35;
    background: rgba(212, 175, 55, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 2px solid var(--color-gold);
}

