/* =========================================================================
   VARIABLES & GLOBALS
   ========================================================================= */
:root {
    --bg-dark: #1A120B;
    /* Deep earth/coffee bean */
    --bg-darker: #120A05;
    --bg-light: #2A1F16;
    --text-primary: #F0E5D8;
    /* Warm off-white */
    --text-secondary: #C4B5A5;
    --accent-gold: #D2691E;
    /* Rich terracotta / ochre */
    --accent-gold-hover: #A0522D;
    /* Deep sienna */
    --glass-bg: rgba(42, 31, 22, 0.7);
    --glass-border: rgba(210, 105, 30, 0.2);

    --font-heading: 'Cinzel', serif;
    /* Keep Cinzel for the premium feel */
    --font-body: 'Outfit', sans-serif;

    --nav-height: 90px;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* =========================================================================
   UTILITIES
   ========================================================================= */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.dark-bg {
    background-color: var(--bg-darker);
    background-image: linear-gradient(rgba(18, 10, 5, 0.85), rgba(18, 10, 5, 0.85)), url('assets/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.mt-xl {
    margin-top: 50px;
}

.section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-med);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: var(--glass-border);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-darker);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    padding: 0;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border-bottom: 1px solid transparent;
}

.btn-link:hover {
    gap: 15px;
    border-bottom-color: var(--accent-gold);
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 18, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    height: 70px;
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px;
    transition: var(--transition-med);
}

.navbar.scrolled .logo-img {
    height: 55px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition-med);
}

.nav-links li a:not(.btn):hover::after,
.nav-links li a:not(.btn).active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/bg1.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 10, 5, 0.6) 0%, rgba(26, 18, 11, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero .subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.hero .title {
    font-size: clamp(4rem, 8vw, 7rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero .description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-indicator a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition-med);
}

.scroll-indicator a:hover {
    color: var(--accent-gold);
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* =========================================================================
   DUAL COLUMN / ABOUT
   ========================================================================= */
.dual-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.image-wrapper img {
    border-radius: 4px;
    transition: transform var(--transition-slow);
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent-gold);
    color: var(--bg-darker);
    padding: 30px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--bg-dark);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 5px;
}

/* =========================================================================
   CARDS / MENU HIGHLIGHTS
   ========================================================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-img-container {
    height: 300px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 30px;
    position: relative;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--bg-darker);
    padding: 8px 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* =========================================================================
   CTA / RESERVATIONS
   ========================================================================= */
.cta {
    background: linear-gradient(rgba(18, 10, 5, 0.8), rgba(18, 10, 5, 0.8)), url('assets/bg3.png') center/cover fixed;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.reservation-form input,
.reservation-form select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: var(--transition-med);
}

.reservation-form input:focus,
.reservation-form select:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.reservation-form .submit-btn {
    min-width: 200px;
    padding: 16px 32px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--bg-darker);
    border-color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =========================================================================
   ORDER / MENU TABLE
   ========================================================================= */
.menu-table-container {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2px;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-body);
}

.menu-table th {
    background: var(--bg-darker);
    color: var(--accent-gold);
    padding: 18px 20px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.menu-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.menu-table tbody tr:hover td {
    background: rgba(210, 105, 30, 0.05);
    color: var(--text-primary);
}

.menu-table .category-row td {
    background: rgba(0, 0, 0, 0.3);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    padding: 12px 20px;
    text-align: center;
    border-bottom: none;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 30px;
    background-color: #25D366;
    color: #fff !important;
    border: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

/* =========================================================================
   ANIMATIONS (Intersection Observer)
   ========================================================================= */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-up {
    transform: translateY(50px);
}

.fade-right {
    transform: translateX(-50px);
}

.fade-left {
    transform: translateX(50px);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* =========================================================================
   IPHONE FRAME 3D
   ========================================================================= */
.iphone-container-3d {
    perspective: 1200px;
    margin: 40px auto;
    width: 340px;
    display: flex;
    justify-content: center;
}

.iphone-frame {
    position: relative;
    width: 320px;
    height: 650px;
    background-color: #121212;
    /* Darker edge */
    border-radius: 40px;
    box-shadow:
        inset 0 0 0 2px #444,
        /* Inner dark thin border */
        inset 0 0 0 6px #222,
        /* Inner thick border */
        -20px 20px 40px rgba(0, 0, 0, 0.7),
        /* Deep shadow */
        -2px 2px 2px rgba(255, 255, 255, 0.1);
    /* Subtle edge highlight */
    padding: 12px;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-20deg) rotateZ(5deg);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.iphone-frame:hover {
    transform: rotateX(5deg) rotateY(-10deg) rotateZ(2deg) translateY(-10px);
    box-shadow:
        inset 0 0 0 2px #444,
        inset 0 0 0 6px #222,
        -30px 30px 50px rgba(0, 0, 0, 0.8),
        -2px 2px 2px rgba(255, 255, 255, 0.1);
}

/* Simulate the side casing of the phone giving it thickness */
.iphone-frame::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 100%;
    width: 25px;
    /* phone thickness */
    height: calc(100% - 10px);
    background: linear-gradient(to right, #2a2a2a, #111, #050505);
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
    transform-origin: left center;
    transform: rotateY(90deg);
}

.iphone-frame::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 5px;
    width: calc(100% - 10px);
    height: 25px;
    /* phone thickness */
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a, #000);
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    transform-origin: top center;
    transform: rotateX(-90deg);
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(1px);
    /* Slight lift */
    width: 140px;
    height: 25px;
    background-color: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.iphone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    background-color: #1a1a1a;
    border-radius: 5px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transform: translateZ(1px);
    /* Lift screen slightly above base */
}

.iphone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
}

/* =========================================================================
   MEDIA QUERIES
   ========================================================================= */
@media (max-width: 992px) {
    .dual-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: 20px;
        left: 20px;
    }

    .experience-badge .number {
        font-size: 1.5rem;
    }

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(7, 7, 7, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-slow);
    }

    .navbar.scrolled .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    .cards-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .reservation-form {
        flex-direction: column;
    }

    .reservation-form .form-group,
    .reservation-form .submit-btn {
        width: 100%;
    }
}

/* =========================================================================
   CART SYSTEM
   ========================================================================= */
.add-to-cart-btn {
    background: rgba(210, 105, 30, 0.1);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-med);
}

.add-to-cart-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-darker);
    transform: scale(1.1);
}

.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: var(--transition-med);
}

.cart-fab:hover {
    transform: scale(1.1) translateY(-5px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-darker);
    animation: pop 0.3s ease-out;
}

@keyframes pop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: rgba(26, 18, 11, 0.95);
    backdrop-filter: blur(15px);
    border-left: 1px solid var(--glass-border);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-header h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin: 0;
}

.close-cart-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-med);
}

.close-cart-btn:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.empty-cart-msg {
    color: var(--text-secondary);
    text-align: center;
    margin-top: 50px;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    display: block;
}

.cart-item-price {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-primary);
    width: 25px;
    height: 25px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-med);
}

.qty-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-darker);
}

.cart-footer {
    padding: 25px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--accent-gold);
}

/* =========================================================================
   MENU TABS & DYNAMIC LAYOUT
   ========================================================================= */
.menu-tabs-container {
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
    min-width: max-content;
    width: 100%;
}

.menu-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: var(--transition-med);
    text-transform: uppercase;
}

.menu-tab-btn i {
    font-size: 1.1rem;
    color: var(--accent-gold);
    transition: var(--transition-med);
}

.menu-tab-btn:hover {
    color: var(--text-primary);
    background: rgba(210, 105, 30, 0.08);
    border-color: rgba(210, 105, 30, 0.3);
}

.menu-tab-btn.active {
    color: var(--bg-darker);
    background: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
    border-color: var(--accent-gold);
}

.menu-tab-btn.active i {
    color: var(--bg-darker);
}

/* Local Foods Highlights */
.menu-tab-btn.local-food-btn {
    position: relative;
    border-color: rgba(255, 71, 87, 0.3);
}
.menu-tab-btn.local-food-btn:hover {
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.5);
    color: #ff4757;
}
.menu-tab-btn.local-food-btn i {
    color: #ff4757;
}
.menu-tab-btn.local-food-btn.active {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}
.menu-tab-btn.local-food-btn.active i {
    color: #ffffff;
}

.local-food-badge {
    background: #ff4757;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.5px;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.5);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.menu-group {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-group-title {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    border-bottom: 1px dashed var(--glass-border);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-med);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item:hover {
    transform: translateX(5px);
    border-bottom-color: rgba(210, 105, 30, 0.3);
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.menu-item-price-action {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.menu-item-price {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.highlighted-item {
    border: 1px solid var(--accent-gold);
    background: rgba(210, 105, 30, 0.05);
    padding: 18px;
    border-radius: 6px;
    margin-inline: -5px;
}

/* =========================================================================
   EVENTS & LOUNGE
   ========================================================================= */
.events-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.events-img-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    height: 320px;
}

.events-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.events-img-card:hover img {
    transform: scale(1.08);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(18, 10, 5, 0.95), transparent);
    color: var(--text-primary);
    padding: 25px 15px 15px 15px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

/* =========================================================================
   NATIVE OPTIONS DIALOG
   ========================================================================= */
.options-modal-dialog {
    border: none;
    background: transparent;
    padding: 0;
    margin: auto;
    outline: none;
    z-index: 1200;
}

.options-modal-dialog::backdrop {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.options-modal-dialog[open] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.options-modal-dialog .options-modal-content {
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 90vw;
    max-width: 400px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    opacity: 0;
    animation: dialogScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes dialogScaleIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.options-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.options-modal-header h3 {
    margin: 0;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.close-modal-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal-btn:hover {
    color: #ff4757;
}

.options-modal-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-radio-label {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-radio-label:hover {
    background: rgba(210, 105, 30, 0.05);
    border-color: rgba(210, 105, 30, 0.3);
}

.option-radio-label input[type="radio"] {
    margin-right: 15px;
    accent-color: var(--accent-gold);
    transform: scale(1.2);
}

.option-radio-label.selected {
    border-color: var(--accent-gold);
    background: rgba(210, 105, 30, 0.15);
}

/* =========================================================================
   RESPONSIVE OVERRIDES FOR NEW ELEMENTS
   ========================================================================= */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .events-img-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .menu-tabs {
        justify-content: flex-start;
        padding-left: 10px;
    }

    .menu-group {
        padding: 20px;
    }

    .highlighted-item {
        margin-inline: -2px;
        padding: 12px;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-item-desc {
        font-size: 0.85rem;
    }
}