/**
 * ============================================
 * QARA QABUK - ULTRA PREMIUM DIGITAL MENU
 * Designed by Alex | Lead Frontend Developer
 *
 * A masterpiece of modern web design combining:
 * - Glassmorphism & Neumorphism
 * - Advanced CSS animations
 * - Premium typography (Playfair, Cormorant, Montserrat)
 * - Sophisticated color theory
 * - Micro-interactions at scale
 * ============================================
 */

/* ============================================
   CSS CUSTOM PROPERTIES - PREMIUM DESIGN TOKENS
   ============================================ */
:root {
    /* Premium Color Palette - Inspired by luxury dining */
    --color-dark: #0a0a0a;
    --color-dark-secondary: #1a1a1a;
    --color-dark-tertiary: #2a2a2a;

    /* Golden Accent Gradient */
    --color-gold-dark: #8B6E3F;
    --color-gold: #C9A961;
    --color-gold-light: #E8C88C;
    --color-gold-bright: #F4E5C3;

    /* Background Layers */
    --color-bg-primary: #0f0f0f;
    --color-bg-secondary: #1a1a1a;
    --color-bg-tertiary: #252525;
    --color-bg-surface: #1e1e1e;

    /* Premium Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.5);

    /* Text Colors */
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #b8b8b8;
    --color-text-muted: #7a7a7a;
    --color-text-gold: #C9A961;

    /* Semantic Badge Colors */
    --color-hot: #FF6B6B;
    --color-hot-glow: rgba(255, 107, 107, 0.3);
    --color-spicy: #FF4757;
    --color-spicy-glow: rgba(255, 71, 87, 0.3);
    --color-exotic: #9B59B6;
    --color-exotic-glow: rgba(155, 89, 182, 0.3);
    --color-seasonal: #3498DB;
    --color-seasonal-glow: rgba(52, 152, 219, 0.3);
    --color-regional: #2ECC71;
    --color-regional-glow: rgba(46, 204, 113, 0.3);
    --color-premium: #E67E22;
    --color-premium-glow: rgba(230, 126, 34, 0.3);

    /* Premium Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Type Scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.15vw, 0.8rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.2vw, 0.95rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-md: clamp(1.125rem, 1.05rem + 0.35vw, 1.35rem);
    --text-lg: clamp(1.25rem, 1.15rem + 0.5vw, 1.65rem);
    --text-xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
    --text-2xl: clamp(1.875rem, 1.65rem + 1.1vw, 2.65rem);
    --text-3xl: clamp(2.25rem, 1.95rem + 1.5vw, 3.35rem);
    --text-4xl: clamp(3rem, 2.5rem + 2.5vw, 4.5rem);

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 5rem;
    --space-16: 6rem;

    /* Premium Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(201, 169, 97, 0.3), 0 0 40px rgba(201, 169, 97, 0.15);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index Layers */
    --z-base: 1;
    --z-elevated: 10;
    --z-sticky: 100;
    --z-fixed: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-preloader: 1000;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: var(--color-gold);
    color: var(--color-dark);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* ============================================
   PREMIUM PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.preloader__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.preloader__icon {
    width: 100px;
    height: 75px;
    color: var(--color-gold);
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px var(--color-gold-glow));
}

.preloader__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.preloader__brand {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    text-transform: uppercase;
}

.preloader__tagline {
    font-family: var(--font-elegant);
    font-size: var(--text-md);
    letter-spacing: 0.15em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.preloader__progress {
    margin-top: var(--space-6);
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader__progress::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        var(--color-gold-dark) 0%,
        var(--color-gold) 50%,
        var(--color-gold-light) 100%
    );
    animation: progressBar 2s ease-in-out infinite;
}

/* ============================================
   ANIMATED BACKGROUND PARTICLES
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, rgba(201, 169, 97, 0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(201, 169, 97, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px;
    background-position: 0 0, 25px 25px;
    animation: particlesFloat 60s linear infinite;
}

.particles::after {
    animation-direction: reverse;
    animation-duration: 80s;
}

/* ============================================
   HERO SECTION - ULTRA PREMIUM
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: var(--z-base);
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    animation: gradientShift 15s ease-in-out infinite;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
}

.hero__content {
    position: relative;
    z-index: var(--z-elevated);
    text-align: center;
    padding: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.hero__logo-container {
    margin-bottom: var(--space-8);
    animation: fadeInDown 1s ease-out 0.2s both;
}

.hero__logo-icon {
    width: 120px;
    height: 90px;
    color: var(--color-gold);
    filter: drop-shadow(0 8px 32px rgba(201, 169, 97, 0.4));
    animation: float 4s ease-in-out infinite;
    margin: 0 auto;
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.hero__title-main {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        var(--color-gold-light) 0%,
        var(--color-gold) 50%,
        var(--color-gold-dark) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.4s both, shimmer 3s ease-in-out infinite;
    position: relative;
}

.hero__title-main::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--color-gold-bright) 0%,
        transparent 30%
    );
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0;
    animation: textShine 4s ease-in-out infinite;
}

.hero__title-separator {
    width: 60px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-gold),
        transparent
    );
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero__title-sub {
    font-family: var(--font-elegant);
    font-size: var(--text-xl);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero__description {
    font-family: var(--font-elegant);
    font-size: var(--text-md);
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    animation: fadeInUp 1s ease-out 1s both;
}

.hero__cta {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero__scroll-btn {
    position: relative;
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(
        135deg,
        var(--color-gold-light),
        var(--color-gold),
        var(--color-gold-dark)
    );
    background-size: 200% 200%;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow:
        0 4px 16px rgba(201, 169, 97, 0.3),
        0 0 40px rgba(201, 169, 97, 0.15);
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
}

.hero__scroll-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero__scroll-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(201, 169, 97, 0.4),
        0 0 60px rgba(201, 169, 97, 0.2);
    background-position: 100% 100%;
}

.hero__scroll-btn:hover::before {
    transform: translateX(100%);
}

.hero__scroll-btn:active {
    transform: translateY(0);
}

.hero__scroll-icon {
    width: 20px;
    height: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.hero__ornament {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 169, 97, 0.1) 0%,
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
}

.hero__ornament--left {
    top: 10%;
    left: -10%;
    animation: floatLeft 20s ease-in-out infinite;
}

.hero__ornament--right {
    bottom: 10%;
    right: -10%;
    animation: floatRight 25s ease-in-out infinite;
}

/* ============================================
   NAVIGATION - GLASSMORPHISM
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-4) var(--space-2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    overflow-x: auto;
    scrollbar-width: none;
}

.nav__container::-webkit-scrollbar {
    display: none;
}

.nav__item {
    position: relative;
    flex-shrink: 0;
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
}

.nav__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--color-gold-dark),
        var(--color-gold),
        var(--color-gold-light)
    );
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav__item-text {
    position: relative;
    z-index: 1;
}

.nav__item-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        var(--color-gold),
        var(--color-gold-light)
    );
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity var(--transition-base);
}

.nav__item:hover {
    color: var(--color-text-primary);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.nav__item:hover .nav__item-glow {
    opacity: 0.3;
}

.nav__item--active {
    color: var(--color-dark);
    border-color: var(--color-gold);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
}

.nav__item--active::before {
    opacity: 1;
}

.nav__item--active .nav__item-glow {
    opacity: 0.5;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.main {
    position: relative;
    z-index: var(--z-base);
    padding: var(--space-16) var(--space-4);
    min-height: 100vh;
}

.main__container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   MENU SECTIONS
   ============================================ */
.menu-section {
    margin-bottom: var(--space-16);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.2s; }
.menu-section:nth-child(3) { animation-delay: 0.3s; }
.menu-section:nth-child(4) { animation-delay: 0.4s; }
.menu-section:nth-child(5) { animation-delay: 0.5s; }

.menu-section.is-hidden {
    display: none;
}

.menu-section__header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.menu-section__title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-4);
}

.menu-section__title-text {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.menu-section__title-decoration {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-gold),
        transparent
    );
}

.menu-section__title-decoration::before,
.menu-section__title-decoration::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.menu-section__title-decoration::before {
    left: -12px;
}

.menu-section__title-decoration::after {
    right: -12px;
}

.menu-section__subtitle {
    font-family: var(--font-elegant);
    font-size: var(--text-md);
    font-style: italic;
    color: var(--color-text-secondary);
}

/* ============================================
   MENU GRID - SOPHISTICATED LAYOUT
   ============================================ */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.menu-grid--featured {
    grid-template-columns: 1fr;
}

/* ============================================
   MENU CARDS - GLASSMORPHISM & PREMIUM EFFECTS
   ============================================ */
.menu-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 97, 0.05),
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
}

.menu-card__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.8s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(201, 169, 97, 0.15);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card:hover .menu-card__shine {
    left: 100%;
}

.menu-card--highlight {
    background: linear-gradient(
        135deg,
        rgba(201, 169, 97, 0.08),
        rgba(201, 169, 97, 0.03)
    );
    border-color: rgba(201, 169, 97, 0.2);
}

.menu-card--highlight .menu-card__glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle,
        rgba(201, 169, 97, 0.15) 0%,
        transparent 70%
    );
    filter: blur(30px);
    z-index: -1;
    opacity: 0.5;
}

.menu-card__content {
    position: relative;
    z-index: 1;
}

.menu-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.menu-card__name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.menu-card__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    animation: rotate 20s linear infinite;
}

.menu-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.menu-card__description {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

/* ============================================
   PREMIUM BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    border: 1px solid;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.badge--hot {
    color: var(--color-hot);
    background: rgba(255, 107, 107, 0.15);
    border-color: var(--color-hot);
    box-shadow: 0 0 20px var(--color-hot-glow);
}

.badge--spicy {
    color: var(--color-spicy);
    background: rgba(255, 71, 87, 0.15);
    border-color: var(--color-spicy);
    box-shadow: 0 0 20px var(--color-spicy-glow);
}

.badge--exotic {
    color: var(--color-exotic);
    background: rgba(155, 89, 182, 0.15);
    border-color: var(--color-exotic);
    box-shadow: 0 0 20px var(--color-exotic-glow);
}

.badge--seasonal {
    color: var(--color-seasonal);
    background: rgba(52, 152, 219, 0.15);
    border-color: var(--color-seasonal);
    box-shadow: 0 0 20px var(--color-seasonal-glow);
}

.badge--regional,
.badge--regional-istanbul,
.badge--regional-ankara {
    color: var(--color-regional);
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--color-regional);
    box-shadow: 0 0 20px var(--color-regional-glow);
}

.badge--premium {
    color: var(--color-premium);
    background: rgba(230, 126, 34, 0.15);
    border-color: var(--color-premium);
    box-shadow: 0 0 20px var(--color-premium-glow);
}

.badge--versatile,
.badge--special {
    color: var(--color-gold);
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
}

/* ============================================
   PRICING - SOPHISTICATED DISPLAY
   ============================================ */
.menu-card__pricing {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.menu-card__pricing--multi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-3);
}

.price-tag {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

.price-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 97, 0.1),
        transparent
    );
    opacity: 0;
    transition: opacity var(--transition-base);
}

.price-tag:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-2px);
}

.price-tag:hover::before {
    opacity: 1;
}

.price-tag--featured {
    background: linear-gradient(
        135deg,
        rgba(201, 169, 97, 0.1),
        rgba(201, 169, 97, 0.05)
    );
    border-color: rgba(201, 169, 97, 0.3);
}

.price-tag--popular {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.2);
}

.price-tag--popular::after {
    content: '★';
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 12px;
    color: var(--color-gold);
    animation: pulse 2s ease-in-out infinite;
}

.price-tag--size {
    text-align: center;
}

.price-tag--unavailable {
    opacity: 0.4;
    pointer-events: none;
}

.price-tag__label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    position: relative;
    z-index: 1;
}

.price-tag__label small {
    font-size: 10px;
    opacity: 0.7;
}

.price-tag__value {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}

.price-tag__currency {
    font-size: var(--text-xs);
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.8;
}

/* ============================================
   DRINKS SECTION - SPECIAL GRID
   ============================================ */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.drink-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.drink-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 97, 0.05),
        transparent
    );
    opacity: 0;
    transition: opacity var(--transition-base);
}

.drink-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.drink-card:hover::before {
    opacity: 1;
}

.drink-card__icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin: 0 auto var(--space-4);
    animation: float 4s ease-in-out infinite;
}

.drink-card__name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-5);
}

.drink-card__name small {
    font-family: var(--font-elegant);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-text-secondary);
}

.drink-card__options {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.drink-option {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.drink-option--single .drink-option__price {
    font-size: var(--text-xl);
}

.drink-option__size {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

.drink-option__price {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-gold);
}

.drink-option__price span {
    font-size: var(--text-xs);
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.8;
}

/* ============================================
   FOOTER - PREMIUM FINISH
   ============================================ */
.footer {
    position: relative;
    margin-top: var(--space-16);
    padding: var(--space-12) var(--space-4) var(--space-8);
    overflow: hidden;
}

.footer__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(26, 26, 26, 0.8) 30%,
        #1a1a1a 100%
    );
}

.footer__container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer__content {
    margin-bottom: var(--space-8);
}

.footer__brand {
    margin-bottom: var(--space-5);
}

.footer__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        var(--color-gold-light),
        var(--color-gold),
        var(--color-gold-dark)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-2);
}

.footer__tagline {
    font-family: var(--font-elegant);
    font-size: var(--text-md);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.footer__text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.footer__credits {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.footer__credits strong {
    color: var(--color-gold);
    font-weight: 600;
}

.footer__year {
    margin-top: var(--space-2);
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid--featured {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero__content {
        padding: var(--space-10);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }

    .drinks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .menu-card {
        padding: var(--space-8);
    }
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -30px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes textShine {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 4px 20px rgba(201, 169, 97, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 30px rgba(201, 169, 97, 0.6));
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes progressBar {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes particlesFloat {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-50px, -50px);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .menu-card,
    .drink-card {
        border-width: 2px;
    }

    .badge {
        border-width: 2px;
    }
}

/* Print Styles */
@media print {
    .preloader,
    .particles,
    .nav,
    .hero,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .menu-card,
    .drink-card {
        border: 1px solid black;
        box-shadow: none;
        page-break-inside: avoid;
    }
}
