/* ═══════════════════════════════════════════════════════════
   TIDES FISH BAR — Premium QR Menu
   Ocean-inspired glassmorphism design
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* ── Dark Theme ────────────────────────────────────────── */
[data-theme="dark"] {
    --bg-deep: #020b18;
    --bg-ocean-1: #041225;
    --bg-ocean-2: #071a33;
    --bg-ocean-3: #0a2240;

    --glass-bg: rgba(8, 25, 52, 0.55);
    --glass-border: rgba(100, 180, 255, 0.1);
    --glass-hover: rgba(12, 35, 68, 0.7);
    --glass-shine: linear-gradient(135deg, rgba(100, 200, 255, 0.08) 0%, transparent 50%);

    --text-primary: #e4edf8;
    --text-secondary: #8aa4c4;
    --text-muted: #4d6a8a;

    --accent: #00e0b0;
    --accent-2: #00b4d8;
    --accent-glow: rgba(0, 224, 176, 0.25);
    --accent-soft: rgba(0, 224, 176, 0.08);

    --gold: #f0c850;
    --gold-soft: rgba(240, 200, 80, 0.1);

    --gradient-ocean: linear-gradient(180deg, #020b18 0%, #041830 30%, #062040 60%, #041225 100%);
    --gradient-card: linear-gradient(145deg, rgba(10, 30, 60, 0.6), rgba(5, 18, 40, 0.4));
    --gradient-accent: linear-gradient(135deg, #00e0b0, #00b4d8);
    --gradient-hero: radial-gradient(ellipse at 50% 120%, rgba(0, 180, 216, 0.15) 0%, transparent 60%);

    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(100, 180, 255, 0.05);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 224, 176, 0.08), inset 0 1px 0 rgba(100, 180, 255, 0.08);
    --shadow-glow: 0 0 60px rgba(0, 224, 176, 0.15);

    --header-bg: rgba(2, 11, 24, 0.8);
    --price-bg: rgba(0, 224, 176, 0.1);
    --price-border: rgba(0, 224, 176, 0.2);
    --price-text: #00f0c0;
}

/* ── Light Theme ───────────────────────────────────────── */
[data-theme="light"] {
    --bg-deep: #c8e0ec;
    --bg-ocean-1: #b0d4e4;
    --bg-ocean-2: #a0cade;
    --bg-ocean-3: #90c0d6;

    --glass-bg: rgba(160, 210, 235, 0.45);
    --glass-border: rgba(0, 80, 140, 0.12);
    --glass-hover: rgba(170, 218, 242, 0.6);
    --glass-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);

    --text-primary: #0a1e3a;
    --text-secondary: #1e4060;
    --text-muted: #4a7090;

    --accent: #00937a;
    --accent-2: #0084b0;
    --accent-glow: rgba(0, 147, 122, 0.2);
    --accent-soft: rgba(0, 147, 122, 0.06);

    --gold: #b08a20;
    --gold-soft: rgba(176, 138, 32, 0.08);

    --gradient-ocean: linear-gradient(180deg, #c0dce8 0%, #a8d0e0 30%, #90c4d8 60%, #b0d4e4 100%);
    --gradient-card: linear-gradient(145deg, rgba(160, 210, 235, 0.6), rgba(140, 200, 230, 0.4));
    --gradient-accent: linear-gradient(135deg, #00937a, #0084b0);
    --gradient-hero: radial-gradient(ellipse at 50% 120%, rgba(0, 132, 176, 0.1) 0%, transparent 60%);

    --shadow-card: 0 8px 32px rgba(0, 40, 80, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    --shadow-card-hover: 0 16px 48px rgba(0, 40, 80, 0.12), 0 0 40px rgba(0, 147, 122, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --shadow-glow: 0 0 60px rgba(0, 147, 122, 0.1);

    --header-bg: rgba(176, 216, 236, 0.85);
    --price-bg: rgba(0, 147, 122, 0.08);
    --price-border: rgba(0, 147, 122, 0.18);
    --price-text: #007a66;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg-deep);
    transition: color 0.6s;
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ── Background with seafood image ─────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('/static/images/bg-fc-2.jpg') center/cover no-repeat fixed;
    z-index: -3;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    transition: background 0.8s;
}

[data-theme="dark"] body::after {
    background: rgba(2, 11, 24, 0.90);
}

[data-theme="light"] body::after {
    background: rgba(160, 210, 235, 0.92);
}

/* Ocean light rays */
.ocean-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.ocean-bg .ray {
    position: absolute;
    top: -20%;
    width: 2px;
    height: 120%;
    background: linear-gradient(180deg, transparent, var(--accent-glow), transparent);
    opacity: 0.3;
    animation: rayShimmer 8s ease-in-out infinite;
}

.ocean-bg .ray:nth-child(1) { left: 15%; animation-delay: 0s; width: 1px; }
.ocean-bg .ray:nth-child(2) { left: 35%; animation-delay: 2s; width: 3px; opacity: 0.15; }
.ocean-bg .ray:nth-child(3) { left: 55%; animation-delay: 4s; width: 1.5px; }
.ocean-bg .ray:nth-child(4) { left: 75%; animation-delay: 1s; width: 2px; opacity: 0.2; }
.ocean-bg .ray:nth-child(5) { left: 90%; animation-delay: 3s; width: 1px; opacity: 0.15; }

@keyframes rayShimmer {
    0%, 100% { opacity: 0; transform: scaleY(0.8); }
    50% { opacity: 0.2; transform: scaleY(1); }
}

/* Floating particles */
.ocean-bg .particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
}

.ocean-bg .particle:nth-child(6)  { width: 3px; height: 3px; top: 20%; left: 10%; animation: particleFloat 12s linear infinite; opacity: 0.2; }
.ocean-bg .particle:nth-child(7)  { width: 4px; height: 4px; top: 40%; left: 25%; animation: particleFloat 15s linear infinite 2s; opacity: 0.15; }
.ocean-bg .particle:nth-child(8)  { width: 2px; height: 2px; top: 60%; left: 50%; animation: particleFloat 10s linear infinite 4s; opacity: 0.25; }
.ocean-bg .particle:nth-child(9)  { width: 5px; height: 5px; top: 30%; left: 70%; animation: particleFloat 18s linear infinite 1s; opacity: 0.1; }
.ocean-bg .particle:nth-child(10) { width: 3px; height: 3px; top: 70%; left: 85%; animation: particleFloat 14s linear infinite 3s; opacity: 0.2; }
.ocean-bg .particle:nth-child(11) { width: 2px; height: 2px; top: 80%; left: 40%; animation: particleFloat 16s linear infinite 5s; opacity: 0.15; }

@keyframes particleFloat {
    0%   { transform: translate(0, 0) scale(1); opacity: 0; }
    10%  { opacity: 0.2; }
    90%  { opacity: 0.2; }
    100% { transform: translate(40px, -200px) scale(0.5); opacity: 0; }
}

/* ── Header ────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.6s;
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--accent);
    background: var(--accent-soft);
    border-color: var(--glass-border);
}

/* ── Theme Toggle ──────────────────────────────────────── */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.theme-toggle:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.1) rotate(15deg);
}

.theme-icon {
    position: absolute;
    display: flex;
    transition: all 0.5s var(--ease-spring);
}

[data-theme="dark"] .theme-icon.sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-icon.moon { opacity: 0; transform: rotate(90deg) scale(0.3); }
[data-theme="light"] .theme-icon.sun { opacity: 0; transform: rotate(-90deg) scale(0.3); }
[data-theme="light"] .theme-icon.moon { opacity: 1; transform: rotate(0) scale(1); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animated waves */
.wave {
    position: absolute;
    width: 200%;
    height: 300px;
    left: -50%;
    opacity: 0.06;
}

.wave-1 {
    bottom: -50px;
    background: var(--accent);
    border-radius: 45% 55% 50% 50%;
    animation: waveRoll 10s ease-in-out infinite;
}

.wave-2 {
    bottom: -80px;
    background: var(--accent-2);
    border-radius: 50% 45% 55% 50%;
    animation: waveRoll 8s ease-in-out infinite reverse;
    opacity: 0.04;
}

.wave-3 {
    bottom: -110px;
    background: var(--accent);
    border-radius: 55% 50% 45% 55%;
    animation: waveRoll 12s ease-in-out infinite;
    opacity: 0.025;
}

@keyframes waveRoll {
    0%, 100% { transform: translateX(-5%) rotate(-2deg); }
    50% { transform: translateX(5%) rotate(2deg); }
}

/* Bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; }

.bubble {
    position: absolute;
    bottom: -30px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    background: transparent;
    opacity: 0;
    animation: bubbleUp linear infinite;
}

.bubble:nth-child(1) { left: 8%;  width: 10px; height: 10px; animation-duration: 9s;  animation-delay: 0s; }
.bubble:nth-child(2) { left: 22%; width: 16px; height: 16px; animation-duration: 12s; animation-delay: 1.5s; }
.bubble:nth-child(3) { left: 42%; width: 8px;  height: 8px;  animation-duration: 8s;  animation-delay: 3s; }
.bubble:nth-child(4) { left: 60%; width: 12px; height: 12px; animation-duration: 11s; animation-delay: 0.5s; }
.bubble:nth-child(5) { left: 78%; width: 10px; height: 10px; animation-duration: 10s; animation-delay: 2s; }
.bubble:nth-child(6) { left: 92%; width: 6px;  height: 6px;  animation-duration: 7s;  animation-delay: 4s; }

@keyframes bubbleUp {
    0%   { transform: translateY(0) scale(0.5); opacity: 0; }
    15%  { opacity: 0.15; }
    85%  { opacity: 0.05; }
    100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-badge svg {
    animation: heroWave 2s ease-in-out infinite;
}

@keyframes heroWave {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 8px;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 44px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-spring);
    box-shadow: 0 8px 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    border-radius: inherit;
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 50px var(--accent-glow), 0 0 80px rgba(0, 224, 176, 0.1);
}

.hero-btn svg {
    transition: transform 0.4s var(--ease-out);
}

.hero-btn:hover svg {
    transform: translateX(5px);
}

/* ── Main ──────────────────────────────────────────────── */
.main {
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE — Elegant circle icons grid
   ═══════════════════════════════════════════════════════════ */
.landing {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

/* ── Decorative corners ────────────────────────────────── */
.deco {
    position: absolute;
    width: 220px;
    height: 220px;
    pointer-events: none;
    color: var(--accent);
}

.deco-tl { top: 0; left: 0; }
.deco-tr { top: 0; right: 0; }
.deco-bl { bottom: 0; left: 0; }
.deco-br { bottom: 0; right: 0; }

@media (max-width: 600px) {
    .deco { width: 140px; height: 140px; }
}

/* ── Landing topbar (back + badge) ─────────────────────── */
.landing-topbar {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.landing-back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.landing-back:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateX(-3px);
    box-shadow: 0 0 15px var(--accent-glow);
}

.landing-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Landing header ────────────────────────────────────── */
.landing-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeUp 0.8s var(--ease-out);
}

.landing-welcome {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.landing-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.landing-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ── Service Type Cards (Takeaway / Seating) ──────────── */
.service-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 36px 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-lg);
    width: 220px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    box-shadow: var(--shadow-card);
    animation: itemPop 0.5s var(--ease-spring) var(--delay) both;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1.5px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-card-hover);
}

.service-card:hover::after {
    opacity: 0.7;
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    position: relative;
    transition: all 0.5s var(--ease-out);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(200, 210, 220, 0.15);
    background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.05) 0%, transparent 60%);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.04), inset 0 -2px 4px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.5s var(--ease-out);
}

.service-icon svg {
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: all 0.5s var(--ease-spring);
}

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

.service-card:hover .service-icon::before {
    border-color: var(--accent);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.06), 0 0 25px var(--accent-glow);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    max-width: 180px;
}

@media (max-width: 500px) {
    .service-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-card {
        width: 200px;
        padding: 32px 28px 28px;
    }

    .service-icon {
        width: 76px;
        height: 76px;
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }
}

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

/* ── Landing grid ──────────────────────────────────────── */
.landing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px 48px;
    max-width: 800px;
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.landing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    animation: itemPop 0.5s var(--ease-spring) var(--delay) both;
    width: 140px;
}

@keyframes itemPop {
    from { opacity: 0; transform: scale(0.85) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Plate-shaped circle icon ──────────────────────────── */
.landing-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    position: relative;
    transition: all 0.5s var(--ease-out);
    background: transparent;
}

/* Plate outer rim */
.landing-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(200, 210, 220, 0.2);
    background: radial-gradient(circle at 40% 35%,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        transparent 70%);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.05),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s var(--ease-out);
}

/* Plate inner well */
.landing-icon::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 210, 220, 0.12);
    background: radial-gradient(circle at 50% 50%,
        rgba(0, 0, 0, 0.08) 0%,
        transparent 70%);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.5s var(--ease-out);
}

[data-theme="light"] .landing-icon::before {
    border-color: rgba(180, 195, 210, 0.5);
    background: radial-gradient(circle at 40% 35%,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.2) 40%,
        transparent 70%);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.06),
        0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .landing-icon::after {
    border-color: rgba(160, 180, 200, 0.25);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
}

.landing-icon svg {
    width: 38px;
    height: 38px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.5s var(--ease-spring);
}

/* Hover: plate lifts and glows */
.landing-item:hover .landing-icon {
    transform: translateY(-6px) scale(1.05);
}

.landing-item:hover .landing-icon::before {
    border-color: var(--accent);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.08),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 0 30px var(--accent-glow);
}

.landing-item:hover .landing-icon::after {
    border-color: rgba(0, 224, 176, 0.2);
    background: radial-gradient(circle at 50% 50%,
        var(--accent-soft) 0%,
        transparent 70%);
}

.landing-item:hover .landing-icon svg {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

/* ── Item name ─────────────────────────────────────────── */
.landing-item-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* ── View menu link ────────────────────────────────────── */
.landing-item-link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    transition: all 0.3s;
    position: relative;
}

.landing-item-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

.landing-item:hover .landing-item-link::after {
    width: 100%;
}

/* ── Floating theme toggle on landing ──────────────────── */
.landing-theme-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: all 0.4s var(--ease-out);
}

.landing-theme-toggle:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.1);
}

.landing-theme-toggle .theme-icon {
    position: absolute;
    display: flex;
}

/* ── Mobile landing ────────────────────────────────────── */
@media (max-width: 600px) {
    .landing {
        padding: 40px 16px;
    }

    .landing-header {
        margin-bottom: 36px;
    }

    .landing-grid {
        gap: 28px 32px;
    }

    .landing-item {
        width: 110px;
    }

    .landing-icon {
        width: 88px;
        height: 88px;
    }

    .landing-icon svg {
        width: 32px;
        height: 32px;
    }

    .landing-item-name {
        font-size: 0.88rem;
    }

    .landing-title {
        font-size: 1.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE — Welcome + Category Cards (unused, kept for menu.html)
   ═══════════════════════════════════════════════════════════ */
.home-page {
    padding: 80px 0 60px;
}

/* ── Welcome Banner ────────────────────────────────────── */
.welcome-banner {
    position: relative;
    margin: 0 16px 36px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
}

.welcome-bg {
    position: absolute;
    inset: 0;
}

.welcome-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(2, 11, 24, 0.6) 60%, rgba(2, 11, 24, 0.92) 100%),
        linear-gradient(135deg, #0a3d5c 0%, #062a40 30%, #0d4a6b 60%, #041830 100%);
    z-index: 1;
}

[data-theme="light"] .welcome-gradient {
    background:
        linear-gradient(180deg, transparent 0%, rgba(232, 240, 248, 0.5) 60%, rgba(232, 240, 248, 0.9) 100%),
        linear-gradient(135deg, #7ec8e3 0%, #a8d8ea 30%, #5ba4c9 60%, #87ceeb 100%);
}

.welcome-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 20% 50%, var(--accent) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, var(--accent) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, var(--accent-2) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 50px 50px;
    animation: patternDrift 20s linear infinite;
}

@keyframes patternDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, -60px); }
}

.welcome-content {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
    width: 100%;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 224, 176, 0.15);
    border: 1px solid rgba(0, 224, 176, 0.25);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00e080;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 224, 128, 0.5);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.welcome-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 6px;
}

.welcome-tagline {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 18px;
}

.welcome-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ── Section Header ────────────────────────────────────── */
.home-section-header {
    padding: 0 24px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ── Home Category Grid ────────────────────────────────── */
.home-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
}

.home-card {
    display: flex;
    align-items: stretch;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.45s var(--ease-out);
    box-shadow: var(--shadow-card);
    animation: homeCardIn 0.6s var(--ease-out) var(--delay) both;
    min-height: 100px;
}

.home-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    z-index: 2;
}

.home-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 3;
}

.home-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-card-hover);
}

.home-card:hover::after {
    opacity: 0.5;
}

@keyframes homeCardIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Card background pattern area */
.home-card-bg {
    width: 100px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.card-bg-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 224, 176, 0.08), rgba(0, 180, 216, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-bg-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 224, 176, 0.12), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0, 180, 216, 0.08), transparent 60%);
}

/* Card content */
.home-card-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.home-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--accent-glow);
    transition: transform 0.4s var(--ease-spring);
}

.home-card:hover .home-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.home-card-icon svg {
    width: 26px;
    height: 26px;
}

.home-card-text {
    flex: 1;
    min-width: 0;
}

.home-card-title {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.2;
}

.home-card-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.meta-count {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.meta-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.4s var(--ease-out);
}

.home-card:hover .meta-arrow {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
    transform: translateX(3px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

/* Large first card */
.home-card:first-child {
    min-height: 130px;
}

.home-card:first-child .home-card-bg {
    width: 120px;
}

.home-card:first-child .home-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
}

.home-card:first-child .home-card-title {
    font-size: 1.2rem;
}

/* ── Mobile optimizations for home ─────────────────────── */
@media (max-width: 600px) {
    .home-page {
        padding: 70px 0 40px;
    }

    .welcome-banner {
        margin: 0 12px 28px;
        min-height: 190px;
        border-radius: var(--radius-md);
    }

    .welcome-content {
        padding: 24px 20px;
    }

    .welcome-title {
        font-size: 1.6rem;
    }

    .home-section-header {
        padding: 0 18px;
    }

    .home-grid {
        padding: 0 12px;
        gap: 10px;
    }

    .home-card-bg {
        display: none;
    }

    .home-card-content {
        padding: 16px;
    }

    .home-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .home-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .home-card:first-child .home-card-bg {
        display: none;
    }

    .home-card:first-child .home-card-icon {
        width: 48px;
        height: 48px;
    }
}

/* Tablet: 2-column grid */
@media (min-width: 601px) {
    .home-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .home-card:first-child {
        grid-column: 1 / -1;
    }

    .welcome-banner {
        max-width: 900px;
        margin: 0 auto 36px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-section-header {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 24px;
        margin-bottom: 20px;
    }
}

/* ── Menu Page ─────────────────────────────────────────── */
.menu-page {
    padding: 110px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.page-title .accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ── Category Grid ─────────────────────────────────────── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    box-shadow: var(--shadow-card);
    animation: cardReveal 0.7s var(--ease-out) var(--delay) both;
}

/* Glass shine overlay */
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    border-radius: inherit;
    pointer-events: none;
    transition: opacity 0.5s;
}

/* Accent border glow on hover */
.category-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    background: var(--glass-hover);
}

.category-card:hover::after {
    opacity: 0.6;
}

@keyframes cardReveal {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px var(--accent-glow);
    transition: transform 0.4s var(--ease-spring);
}

.category-card:hover .card-icon {
    transform: scale(1.08) rotate(-3deg);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.card-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.4s var(--ease-out);
}

.category-card:hover .card-arrow {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* ── Category Detail Page ──────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   CATEGORY HERO BANNER
   ═══════════════════════════════════════════════════════════ */
.cat-hero {
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Per-category backgrounds — transparent, inherits body bg */
.cat-hero--from-the-fryer,
.cat-hero--gluten-free,
.cat-hero--sides-and-sauces,
.cat-hero--burgers-and-kebabs,
.cat-hero--kids-menu,
.cat-hero--hot-drinks,
.cat-hero--cold-drinks {
    background: transparent;
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

[data-theme="light"] .cat-hero-overlay {
    background: transparent;
}

/* Back button */
.cat-hero-back {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s var(--ease-out);
}

.cat-hero-back:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(-3px);
}

[data-theme="light"] .cat-hero-back {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a2332;
}

/* Hero content */
.cat-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeUp 0.6s var(--ease-out);
}

[data-theme="light"] .cat-hero-content {
    color: #1a2332;
}

.cat-hero-label {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.8;
    margin-bottom: 8px;
}

.cat-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cat-hero-divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 14px auto;
    border-radius: 2px;
}

.cat-hero-count {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.03em;
}

@media (max-width: 600px) {
    .cat-hero {
        height: 180px;
    }
    .cat-hero-back {
        top: 14px;
        left: 14px;
        width: 36px;
        height: 36px;
    }
}

/* ═══════════════════════════════════════════════════════════ */

.category-page {
    padding: 24px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-header {
    margin-bottom: 28px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.back-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.back-link:hover svg {
    transform: translateX(-4px);
}

.back-link svg {
    transition: transform 0.3s var(--ease-out);
}

/* ── Sit In / Takeaway Toggle ──────────────────────────── */
.type-toggle {
    display: flex;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 4px;
    margin-top: 24px;
    width: fit-content;
    box-shadow: var(--shadow-card);
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.toggle-btn.active {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.toggle-btn:not(.active):hover {
    color: var(--text-primary);
}

/* ── Category Quick Nav ────────────────────────────────── */
.category-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 24px;
    margin: 0 -24px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: sticky;
    top: 0;
    z-index: 50;
    background: transparent;
    border-bottom: 1px solid var(--glass-border);
}

.category-nav::-webkit-scrollbar { display: none; }

.cat-pill {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.cat-pill:hover {
    color: var(--text-primary);
    border-color: var(--accent);
}

.cat-pill.active {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* ── Item Cards ────────────────────────────────────────── */
.items-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.item-card {
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-card);
    animation: itemSlide 0.5s var(--ease-out) var(--delay) both;
}

.item-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    pointer-events: none;
    z-index: 1;
}

.item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 224, 176, 0.15);
    box-shadow: var(--shadow-card-hover);
}

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

.item-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--bg-ocean-2), var(--bg-ocean-3));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 224, 176, 0.05), transparent);
}

.item-placeholder { color: var(--text-muted); }

.item-info {
    flex: 1;
    min-width: 0;
    padding: 16px 16px 0;
}

.item-name {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 3px;
}

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

.item-addons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.addon-tag {
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: var(--radius-xl);
    background: var(--gold-soft);
    color: var(--gold);
    font-weight: 600;
    border: 1px solid rgba(240, 200, 80, 0.15);
}

.item-prices {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px 16px;
    margin-top: auto;
}

.price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    background: var(--price-bg);
    border: 1px solid var(--price-border);
    border-radius: var(--radius-md);
    min-width: 75px;
    position: relative;
}

.price-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--price-text);
    letter-spacing: -0.02em;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
    padding: 50px 24px 30px;
    text-align: center;
    position: relative;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.footer-wave {
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.15;
}

.footer-wave svg {
    width: 100%;
    height: 30px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .category-card {
        padding: 24px 22px 22px;
    }

    .items-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .item-image {
        height: 90px;
    }

    .item-info {
        padding: 12px 12px 0;
    }

    .item-name {
        font-size: 0.92rem;
    }

    .item-prices {
        padding: 10px 12px 14px;
    }

    .price-badge {
        min-width: 55px;
        padding: 5px 10px;
    }

    .type-toggle {
        width: 100%;
    }

    .toggle-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ── Page transitions ──────────────────────────────────── */
.menu-page,
.category-page {
    animation: pageIn 0.6s var(--ease-out);
}

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

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Selection ─────────────────────────────────────────── */
::selection {
    background: var(--accent);
    color: #fff;
}
