/* ============================================================
ROOT & RESET — Premium Dark Theme
============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================================
FIX: Horizontal overflow (zoom-out issue) — MINIMAL & SAFE
============================================================ */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ============================================================
COLOR VARIABLES
============================================================ */
:root {
    --orange: #E87A2D;
    --orange-light: #F39C12;
    --orange-dark: #D35400;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --green: #27AE60;
    --green-light: #2ECC71;

    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --bg-card: #181818;
    --bg-card-hover: #202020;
    --bg-nav: rgba(10, 10, 10, 0.6);
    --bg-nav-scrolled: rgba(10, 10, 10, 0.96);

    --text-primary: #FFFFFF;
    --text-secondary: #F0E6D3;
    --text-muted: rgba(240, 230, 211, 0.5);
    --text-muted-light: rgba(240, 230, 211, 0.3);

    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(232, 122, 45, 0.15);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px rgba(232, 122, 45, 0.06);
}

/* Light Mode */
body.light-mode {
    --bg-primary: #F7F5F0;
    --bg-secondary: #EFECE5;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F5F2EB;
    --bg-nav: rgba(255, 255, 255, 0.7);
    --bg-nav-scrolled: rgba(255, 255, 255, 0.96);

    --text-primary: #1A1A1A;
    --text-secondary: #2D2D2D;
    --text-muted: rgba(0, 0, 0, 0.5);
    --text-muted-light: rgba(0, 0, 0, 0.25);

    --border-color: rgba(0, 0, 0, 0.06);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    --shadow-glow: 0 0 40px rgba(232, 122, 45, 0.05);
}

/* Hero text always white */
.hero-title,
.hero-sub,
.hero-badge,
.scroll-indicator {
    color: #FFFFFF !important;
}
.hero-title .highlight {
    color: var(--orange) !important;
}
.hero-sub {
    color: rgba(255, 255, 255, 0.7) !important;
}
.hero-badge {
    color: var(--orange) !important;
}
.scroll-indicator {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* FIX: Hero badge visible in light mode */
body.light-mode .hero-badge {
    background: rgba(232, 122, 45, 0.18);
    border-color: rgba(232, 122, 45, 0.3);
    color: #D35400 !important;
    box-shadow: 0 0 20px rgba(232, 122, 45, 0.08);
}
body.light-mode .hero-badge i {
    color: #D35400;
}

/* ============================================================
GLOBAL STYLES
============================================================ */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    transition: background 0.5s ease, color 0.5s ease;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
CUSTOM SCROLLBAR
============================================================ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange-light);
}

/* ============================================================
UTILITY
============================================================ */
.section-padding {
    padding: 100px 0;
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.section-title .highlight {
    color: var(--orange);
}
.section-title .highlight-green {
    color: var(--green-light);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.8;
    font-weight: 300;
}

.text-center {
    text-align: center;
}
.text-center .section-sub {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--orange);
    color: #FFFFFF;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(232, 122, 45, 0.3);
}

.btn-outline {
    background: var(--bg-card-hover);
    color: var(--text-secondary);
    border: 1.5px solid rgba(232, 122, 45, 0.4);
}
.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
    background: rgba(232, 122, 45, 0.05);
}

body.light-mode .btn-outline {
    border-color: rgba(232, 122, 45, 0.6);
    color: var(--text-primary);
}
body.light-mode .btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-green {
    background: var(--green);
    color: #FFFFFF;
}
.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(39, 174, 96, 0.3);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.7rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
    background: var(--bg-nav);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: var(--bg-nav-scrolled);
    backdrop-filter: blur(24px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 80px;
    flex-shrink: 0;
}

.nav-logo img.logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
    color: var(--text-primary);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn-nav {
    padding: 10px 28px;
    font-size: 0.65rem;
    letter-spacing: 1.8px;
    background: var(--orange);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
}
.nav-links .btn-nav:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(232, 122, 45, 0.25);
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    transition: transform 0.3s ease;
    margin-left: 8px;
}
.theme-toggle:hover {
    transform: rotate(20deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-secondary);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('./assets/hero.JPG') center/cover no-repeat;
    filter: brightness(0.25) saturate(0.6);
    transform: scale(1.05);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-robot {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    bottom: 8%;
    right: 6%;
    width: 280px;
    height: 280px;
    animation: floatRobot 10s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 60px rgba(232, 122, 45, 0.08));
}
.hero-robot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatRobot {
    0% {
        transform: translateY(0) rotate(-2deg) scale(1);
    }
    100% {
        transform: translateY(-25px) rotate(3deg) scale(1.04);
    }
}

.hero-robot-small {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    top: 12%;
    left: 5%;
    width: 140px;
    height: 140px;
    animation: floatRobotSmall 14s ease-in-out infinite alternate;
}
.hero-robot-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatRobotSmall {
    0% {
        transform: translateY(0) rotate(3deg) scale(1);
    }
    100% {
        transform: translateY(-18px) rotate(-4deg) scale(1.06);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    padding: 0 24px;
    animation: heroFade 1.4s ease forwards;
}

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 122, 45, 0.12);
    border: 1px solid rgba(232, 122, 45, 0.15);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'DM Sans', sans-serif;
}
.hero-badge i {
    font-size: 0.7rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 7.2rem);
    font-weight: 700;
    line-height: 0.95;
    color: #FFFFFF;
    margin-bottom: 18px;
}
.hero-title .highlight {
    color: var(--orange);
    font-style: italic;
}

.hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.9;
    letter-spacing: 0.3px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-float {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    font-size: 3.6rem;
    color: var(--orange);
    animation: floatAnim 9s ease-in-out infinite alternate;
}
.hero-float:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.hero-float:nth-child(2) {
    bottom: 15%;
    right: 4%;
    animation-delay: 2.5s;
    font-size: 2.8rem;
}
.hero-float:nth-child(3) {
    top: 30%;
    right: 10%;
    animation-delay: 4.5s;
    font-size: 2.2rem;
}
.hero-float:nth-child(4) {
    bottom: 28%;
    left: 6%;
    animation-delay: 1.5s;
    font-size: 3rem;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    100% {
        transform: translateY(-35px) rotate(12deg) scale(1.05);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: bounceDown 2.6s ease-in-out infinite;
    font-family: 'DM Sans', sans-serif;
}
.scroll-indicator .line {
    width: 1.5px;
    height: 50px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    border-radius: 2px;
}

@keyframes bounceDown {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================================
ABOUT
============================================================ */
.about {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.about-image .img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image .img-wrap:hover img {
    transform: scale(1.03);
}

.about-image .border-deco {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    border: 1.5px solid rgba(232, 122, 45, 0.08);
    border-radius: 16px;
    pointer-events: none;
}

.about-image .floating-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--orange);
    color: #FFFFFF;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(232, 122, 45, 0.25);
    font-family: 'DM Sans', sans-serif;
}
.about-image .floating-badge i {
    font-size: 1.4rem;
}

.about-text .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 400;
    font-style: italic;
}

.about-text p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.about-stat {
    background: var(--bg-card);
    padding: 20px 14px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}
.about-stat:hover {
    border-color: rgba(232, 122, 45, 0.15);
}
.about-stat h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--orange);
    font-weight: 700;
}
.about-stat span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 4px;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================================
WHY CHOOSE US (EXPERIENCE)
============================================================ */
.why-us {
    background: var(--bg-secondary);
}

.experience-content {
    max-width: 820px;
    margin: 0 auto 20px;
    padding: 0 10px;
}
.experience-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 300;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.why-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 122, 45, 0.12);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.why-card .icon {
    font-size: 2.6rem;
    color: var(--orange);
    margin-bottom: 14px;
    display: block;
}

.why-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================================
MENU — PREMIUM CARD DESIGN
============================================================ */
.menu-section {
    background: var(--bg-primary);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 36px 0 44px;
}

.menu-tabs button {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-tabs button i {
    font-size: 0.75rem;
}

.menu-tabs button:hover {
    border-color: var(--orange);
    color: var(--text-secondary);
}
.menu-tabs button.active {
    background: var(--orange);
    color: #FFFFFF;
    border-color: var(--orange);
}

.menu-grid-container {
    display: none;
    animation: fadeUp 0.6s ease forwards;
}
.menu-grid-container.active {
    display: block;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* ─── Premium Menu Card ─── */
.menu-item {
    background: var(--bg-card);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-color);
    cursor: default;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 24px;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 122, 45, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    background: var(--bg-card-hover);
}

.menu-item .item-icon-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.menu-item .item-icon-wrap .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232, 122, 45, 0.1);
    border: 1px solid rgba(232, 122, 45, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--orange);
    transition: 0.3s ease;
    flex-shrink: 0;
}

.menu-item:hover .item-icon-wrap .icon-circle {
    background: rgba(232, 122, 45, 0.18);
    border-color: rgba(232, 122, 45, 0.15);
    transform: scale(1.05);
}

.menu-item .item-icon-wrap .cat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted-light);
    font-weight: 500;
}

.menu-item .dish-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.menu-item .dish-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 14px;
    font-family: 'DM Sans', sans-serif;
}

.menu-item .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.menu-item .price-row .price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.5px;
}

.menu-item .price-row .order-hint {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    color: var(--text-muted-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.menu-item:hover .price-row .order-hint {
    color: var(--orange);
}

body.light-mode .menu-item .item-icon-wrap .icon-circle {
    background: rgba(232, 122, 45, 0.06);
}
body.light-mode .menu-item:hover .item-icon-wrap .icon-circle {
    background: rgba(232, 122, 45, 0.12);
}
body.light-mode .menu-item .price-row {
    border-top-color: rgba(0, 0, 0, 0.06);
}

/* ============================================================
FEATURED
============================================================ */
.featured {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232, 122, 45, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.featured-image .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: #FFFFFF;
    padding: 8px 20px;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
}

.featured-image .popular-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.65rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(232, 122, 45, 0.12);
    font-family: 'DM Sans', sans-serif;
}
.featured-image .popular-badge i {
    color: var(--orange);
}

body.light-mode .featured-image .popular-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border-color: rgba(0, 0, 0, 0.1);
}
body.light-mode .featured-image .popular-badge i {
    color: var(--orange);
}

.featured-text {
    padding: 10px 0;
}

.featured-text .dish-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.featured-text .dish-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 14px;
    display: block;
}

.featured-text .dish-desc {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.featured-text .ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 28px;
}

.featured-text .ingredients span {
    background: rgba(232, 122, 45, 0.05);
    border: 1px solid rgba(232, 122, 45, 0.06);
    padding: 6px 18px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-radius: 50px;
    letter-spacing: 0.3px;
    font-family: 'DM Sans', sans-serif;
}

.featured-text .featured-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.featured-text .featured-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
}

.featured-text .featured-stats .stat-item i {
    color: var(--orange);
}

.featured-text .featured-stats .stat-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================================
GALLERY
============================================================ */
.gallery {
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
    margin-top: 50px;
}

.gallery-grid .g-item {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
}

.gallery-grid .g-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-grid .g-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}
.gallery-grid .g-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}
.gallery-grid .g-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}
.gallery-grid .g-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}
.gallery-grid .g-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
}
.gallery-grid .g-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
}
.gallery-grid .g-item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-grid .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-grid .g-item:hover img {
    transform: scale(1.08);
}

.gallery-grid .g-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border-radius: 14px;
}

.gallery-grid .g-item:hover .overlay {
    opacity: 1;
}

.gallery-grid .g-item .overlay span {
    color: #FFFFFF;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 28px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================================
TESTIMONIALS
============================================================ */
.testimonials {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 50px;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.testimonial-card .inner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 44px 48px 40px;
    max-width: 720px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow);
    transition: border-color 0.3s ease;
}
.testimonial-card .inner:hover {
    border-color: rgba(232, 122, 45, 0.08);
}

.testimonial-card .inner .avatar-letter {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    background: var(--orange);
    border: 2px solid rgba(232, 122, 45, 0.15);
    text-transform: uppercase;
}

.testimonial-card .inner .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.testimonial-card .inner .role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
}

.testimonial-card .inner .stars {
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.testimonial-card .inner blockquote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-dots button.active {
    background: var(--orange);
    width: 34px;
    border-radius: 10px;
}

/* ============================================================
RESERVATION
============================================================ */
.reservation {
    background: var(--bg-primary);
    position: relative;
}

.reservation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
    opacity: 0.02;
    pointer-events: none;
}

.reservation .container {
    position: relative;
    z-index: 1;
}

.res-form {
    max-width: 720px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 40px 44px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.res-form .full {
    grid-column: 1 / -1;
}

.res-form .form-group {
    position: relative;
}

.res-form label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.res-form label i {
    color: var(--orange);
    margin-right: 6px;
}

.res-form input,
.res-form select,
.res-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    outline: none;
}

.res-form input:focus,
.res-form select:focus,
.res-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(232, 122, 45, 0.05);
}

.res-form input::placeholder,
.res-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.4;
}

.res-form textarea {
    min-height: 110px;
    resize: vertical;
}

.res-form select option {
    background: var(--bg-primary);
    color: var(--text-secondary);
}

.res-form .btn-submit {
    grid-column: 1 / -1;
    padding: 18px;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    background: var(--orange);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'DM Sans', sans-serif;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.res-form .btn-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(232, 122, 45, 0.2);
}

.res-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
CONTACT
============================================================ */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info .detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info .detail i {
    color: var(--orange);
    font-size: 1.2rem;
    width: 28px;
    margin-top: 2px;
}

.contact-info .detail h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-info .detail p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
}

.contact-info .detail .hours-highlight {
    color: var(--green-light);
}

.contact-phone-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-phone-row i {
    color: var(--orange);
    font-size: 1rem;
}
.contact-phone-row a {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}
.contact-phone-row a:hover {
    color: var(--orange);
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-card);
    min-height: 340px;
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: none;
    filter: grayscale(0.5) invert(0.85) contrast(1.1);
}

/* ============================================================
FOOTER
============================================================ */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-brand .logo img {
    height: 75px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    transition: height 0.3s ease;
}

.footer-brand p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.8;
    font-family: 'DM Sans', sans-serif;
}

.footer-links h4 {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
}

.footer-social a:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.4;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================================
WHATSAPP FLOATING BUTTON
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    animation: pulseWA 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 2rem;
    color: #FFFFFF;
}

@keyframes pulseWA {
    0%,
    100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 6px 50px rgba(37, 211, 102, 0.55);
    }
}

.whatsapp-tooltip {
    position: absolute;
    left: 72px;
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'DM Sans', sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================================
TOAST
============================================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 26px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transform: translateY(100px);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 420px;
    font-family: 'DM Sans', sans-serif;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast i {
    color: var(--green-light);
    font-size: 1.3rem;
}
.toast.error i {
    color: #E74C3C;
}
.toast .close-toast {
    margin-left: auto;
    cursor: pointer;
    color: var(--text-muted);
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 0 4px;
}
.toast .close-toast:hover {
    color: var(--text-secondary);
}

/* ============================================================
RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .about-grid,
    .featured-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image .img-wrap img {
        height: 380px;
    }
    .featured-image img {
        height: 380px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-grid .g-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-grid .g-item:nth-child(6) {
        grid-column: span 2;
    }
    .gallery-grid .g-item:nth-child(7) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-grid .g-item:nth-child(8) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .res-form {
        padding: 30px 28px;
    }

    .hero-robot {
        width: 200px;
        height: 200px;
        right: 3%;
        bottom: 5%;
    }
    .hero-robot-small {
        width: 100px;
        height: 100px;
        top: 8%;
        left: 3%;
    }

    .nav-logo img.logo,
    .footer-brand .logo img {
        height: 62px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .navbar {
        padding: 0 16px !important;
        width: 100% !important;
    }

    .hero-content {
        padding: 0 16px !important;
        max-width: 100% !important;
    }

    .hero-badge {
        font-size: 0.55rem !important;
        padding: 6px 16px !important;
        white-space: nowrap;
    }

    .section-padding {
        padding: 70px 0;
    }

    .navbar {
        padding: 0 20px;
        height: 72px;
    }
    .nav-logo {
        height: 72px;
    }

    .nav-links {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.92);
        width: 82%;
        max-width: 340px;
        height: auto;
        background: var(--bg-nav-scrolled);
        backdrop-filter: blur(28px);
        flex-direction: column;
        justify-content: center;
        padding: 32px 28px;
        gap: 14px;
        transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0;
        pointer-events: none;
        border-radius: 14px;
        border: 1px solid var(--border-color);
        box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: all;
        transform: translate(-50%, -10%) scale(1);
    }
    .nav-links a {
        font-size: 0.9rem;
        text-align: center;
        padding: 8px 0;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-links .btn-nav {
        margin-top: 8px;
        padding: 12px 28px;
        font-size: 0.7rem;
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
        backdrop-filter: blur(4px);
    }
    .nav-overlay.active {
        display: block;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.8rem);
    }
    .hero-sub {
        font-size: 0.95rem;
    }
    .hero-float {
        display: none;
    }

    .hero-robot {
        width: 140px;
        height: 140px;
        right: 2%;
        bottom: 10%;
        opacity: 0.1;
    }
    .hero-robot-small {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-tabs {
        gap: 6px;
    }
    .menu-tabs button {
        padding: 8px 14px;
        font-size: 0.6rem;
    }
    .menu-tabs button i {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 10px;
    }
    .gallery-grid .g-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-grid .g-item:nth-child(6) {
        grid-column: span 2;
    }
    .gallery-grid .g-item:nth-child(7) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-grid .g-item:nth-child(8) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .res-form {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 18px;
    }
    .res-form .full {
        grid-column: 1;
    }
    .res-form .btn-submit {
        grid-column: 1;
    }

    .contact-grid {
        gap: 40px;
    }
    .contact-map iframe {
        min-height: 240px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .testimonial-card .inner {
        padding: 28px 20px;
    }

    .about-image .floating-badge {
        right: 0;
        padding: 12px 18px;
        font-size: 0.7rem;
    }
    .about-image .floating-badge i {
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-float i {
        font-size: 1.6rem;
    }
    .whatsapp-tooltip {
        display: none;
    }

    .toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        padding: 14px 20px;
        font-size: 0.82rem;
    }

    .featured-text .featured-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .contact-phone-row {
        flex-wrap: wrap;
    }

    .theme-toggle {
        margin-left: 4px;
        font-size: 1rem;
    }

    .nav-logo img.logo,
    .footer-brand .logo img {
        height: 52px !important;
    }

    .menu-item {
        padding: 22px 20px 18px;
    }
    .menu-item .dish-name {
        font-size: 1.2rem;
    }
    .menu-item .item-icon-wrap .icon-circle {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .menu-item .price-row .price {
        font-size: 1.1rem;
    }

    .experience-content {
        max-width: 100%;
        padding: 0 5px;
    }
    .experience-content p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }

    .navbar {
        padding: 0 12px !important;
    }

    .hero-content {
        padding: 0 12px !important;
    }

    .hero-badge {
        font-size: 0.5rem !important;
        padding: 4px 12px !important;
        letter-spacing: 2px;
        white-space: normal;
    }
    .hero-badge i {
        font-size: 0.55rem !important;
    }

    .section-title {
        font-size: 1.8rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-btns .btn {
        padding: 12px 22px;
        font-size: 0.65rem;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .about-stat h4 {
        font-size: 1.6rem;
    }
    .gallery-grid {
        grid-auto-rows: 110px;
    }
    .featured-image img {
        height: 240px;
    }
    .contact-map iframe {
        min-height: 200px;
    }
    .about-image .img-wrap img {
        height: 260px;
    }
    .res-form {
        padding: 16px 14px;
    }
    .res-form input,
    .res-form select,
    .res-form textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .nav-links {
        width: 90%;
        max-width: 300px;
        padding: 24px 18px;
    }

    .hero-robot {
        width: 100px;
        height: 100px;
        right: 1%;
        bottom: 12%;
        opacity: 0.08;
    }

    .navbar {
        height: 68px;
    }
    .nav-logo {
        height: 68px;
    }
    .nav-logo img.logo,
    .footer-brand .logo img {
        height: 44px !important;
    }

    .menu-item {
        padding: 18px 16px 14px;
    }
    .menu-item .dish-name {
        font-size: 1.05rem;
    }
    .menu-item .item-icon-wrap .icon-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .menu-item .price-row .price {
        font-size: 1rem;
    }
    .menu-item .dish-desc {
        font-size: 0.8rem;
    }
    .menu-item .item-icon-wrap .cat-label {
        font-size: 0.5rem;
    }

    .experience-content p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .hero-badge {
        display: inline-block;
        padding: 4px 12px;
        font-size: 0.5rem;
        line-height: 1.4;
        text-align: center;
    }
}