/* ===========================
   CSS VARIABLES / DESIGN TOKENS
   =========================== */
:root {
    /* Ocean Color Palette */
    --bg-primary: #0a1628;
    --bg-secondary: #0f1f3a;
    --bg-card: rgba(15, 31, 58, 0.65);
    --bg-card-hover: rgba(20, 40, 75, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);

    --accent-primary: #00b4d8;
    --accent-secondary: #0077b6;
    --accent-gold: #e6b325;
    --accent-gold-light: #f0d060;
    --accent-coral: #ff6b6b;
    --accent-teal: #00cec9;
    --accent-gradient: linear-gradient(135deg, #00b4d8, #0077b6);
    --accent-gold-gradient: linear-gradient(135deg, #e6b325, #f0d060);

    --text-primary: #f0f4f8;
    --text-secondary: rgba(240, 244, 248, 0.7);
    --text-tertiary: rgba(240, 244, 248, 0.45);
    --text-accent: #00b4d8;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.15);
    --shadow-gold-glow: 0 0 20px rgba(230, 179, 37, 0.2);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Dancing Script', cursive;

    --header-height: 60px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ===========================
   UTILITIES
   =========================== */
.icon-xs {
    width: 14px;
    height: 14px;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.icon-md {
    width: 22px;
    height: 22px;
}

/* ===========================
   PARTICLES BACKGROUND
   =========================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.3), transparent 70%);
    animation: floatParticle linear infinite;
    will-change: transform;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    transition: var(--transition-base);
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.header-cta:hover,
.header-cta:active {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 22, 40, 0.3) 0%,
            rgba(10, 22, 40, 0.5) 40%,
            rgba(10, 22, 40, 0.85) 75%,
            var(--bg-primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px 40px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--accent-primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 12px;
}

.hero-title-script {
    display: block;
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 2px;
}

.hero-title-main {
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 0.68rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border-glass);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ===========================
   SEARCH
   =========================== */
.search-section {
    position: relative;
    z-index: 10;
    padding: 0 20px;
    margin-top: -10px;
    margin-bottom: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.search-box:focus-within {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.search-box:focus-within .search-icon {
    color: var(--accent-primary);
}

.search-input {
    flex: 1;
    font-size: 0.92rem;
    color: var(--text-primary);
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-tertiary);
}

.search-clear {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* ===========================
   CATEGORIES NAVIGATION
   =========================== */
.categories-nav {
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    padding: 12px 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

.categories-scroll {
    display: flex;
    gap: 8px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 600px;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition-base);
    cursor: pointer;
    scroll-snap-align: start;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.category-chip:hover {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
}

.category-chip:active {
    transform: scale(0.96);
}

.category-chip.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

.category-chip-icon {
    font-size: 1rem;
    line-height: 1;
}

/* ===========================
   MENU SECTION
   =========================== */
.menu-section {
    position: relative;
    z-index: 5;
    padding: 20px 20px 40px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 60vh;
}

.menu-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Category Group */
.menu-category-group {
    animation: fadeInUp 0.5s ease-out both;
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.menu-category-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.menu-category-info h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.menu-category-info p {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* Category Image Banner */
.category-banner {
    width: 100%;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.category-banner-placeholder {
    width: 100%;
    aspect-ratio: 21 / 9;
    background: var(--bg-card);
    border: 2px dashed var(--border-glass);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.category-banner-icon {
    width: 32px;
    height: 32px;
    opacity: 0.5;
}

/* Menu Items List */
.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Menu Item Row (text-based layout) */
.menu-item-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition-base);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out both;
}

.menu-item-row::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.04), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.menu-item-row:hover,
.menu-item-row:active {
    background: var(--bg-card);
    border-color: var(--border-subtle);
}

.menu-item-row:hover::before {
    opacity: 1;
}

/* Subtle separator between items */
.menu-item-row+.menu-item-row {
    border-top: 1px solid var(--border-subtle);
}

.menu-item-row:hover+.menu-item-row,
.menu-item-row+.menu-item-row:hover {
    border-top-color: transparent;
}

.menu-item-row-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.menu-item-row-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.menu-item-badge {
    position: relative;
    top: auto;
    left: auto;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    flex-shrink: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.menu-item-badge.popular {
    background: var(--accent-gold-gradient);
    color: #1a1a1a;
}

.menu-item-badge.new {
    background: linear-gradient(135deg, var(--accent-coral), #ff8a80);
    color: white;
}

.menu-item-badge.spicy {
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: white;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.menu-item-desc {
    font-size: 0.76rem;
    color: var(--text-tertiary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-row-price {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}

/* Empty State */
.menu-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.menu-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--text-tertiary);
}

.menu-empty h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.menu-empty p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ===========================
   PROMO BANNER
   =========================== */
.promo-banner {
    padding: 0 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promo-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(230, 179, 37, 0.12), rgba(0, 180, 216, 0.08));
    border: 1px solid rgba(230, 179, 37, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-inner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 179, 37, 0.1), transparent 70%);
}

.promo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--accent-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold-glow);
}

.promo-icon-svg {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
}

.promo-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 2px;
}

.promo-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

.modal-card {
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-bottom: none;
    overflow: hidden;
    transform: translateY(100%);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.modal-close i {
    width: 20px;
    height: 20px;
}

.modal-img-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.modal-badge-container {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

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

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.modal-meta-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.modal-meta-tag i {
    width: 14px;
    height: 14px;
    color: var(--accent-primary);
}

.modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.modal-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 40px 20px 30px;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-logo-tagline {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--accent-primary);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-info-item i {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.social-btn i {
    width: 20px;
    height: 20px;
}

.social-btn:hover,
.social-btn:active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.social-btn-wa:hover,
.social-btn-wa:active {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.footer-powered {
    margin-top: 4px;
    font-size: 0.7rem !important;
}

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    animation: fabPulse 3s ease-in-out infinite;
}

.fab-whatsapp i {
    width: 22px;
    height: 22px;
}

.fab-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes fabPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 20px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.back-to-top i {
    width: 22px;
    height: 22px;
}

/* ===========================
   ANIMATIONS
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger delay for children */
.menu-item-card:nth-child(1) {
    animation-delay: 0s;
}

.menu-item-card:nth-child(2) {
    animation-delay: 0.05s;
}

.menu-item-card:nth-child(3) {
    animation-delay: 0.1s;
}

.menu-item-card:nth-child(4) {
    animation-delay: 0.15s;
}

.menu-item-card:nth-child(5) {
    animation-delay: 0.2s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item-card {
    animation: slideIn 0.4s ease-out both;
}

/* ===========================
   SKELETON LOADING
   =========================== */
.skeleton {
    position: relative;
    overflow: hidden;
    background: var(--bg-glass) !important;
    border-color: transparent !important;
    pointer-events: none;
}

.skeleton * {
    visibility: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.04) 50%,
            transparent 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ===========================
   RESPONSIVE - TABLET+
   =========================== */
@media (min-width: 480px) {
    .hero {
        min-height: 480px;
    }

    .hero-title-main {
        font-size: 3rem;
    }

    .menu-item-img-container {
        width: 100px;
        height: 100px;
    }

    .modal-card {
        border-radius: var(--radius-xl);
        margin: auto 20px 20px;
        border-bottom: 1px solid var(--border-subtle);
        max-height: 90vh;
    }
}

@media (min-width: 768px) {
    .hero {
        min-height: 520px;
    }

    .hero-title-main {
        font-size: 3.4rem;
    }

    .modal-overlay {
        align-items: center;
    }

    .modal-card {
        margin: auto;
        border-radius: var(--radius-xl);
        border-bottom: 1px solid var(--border-subtle);
    }

    .modal-img-container {
        height: 300px;
    }
}