/**
 * ============================================
 * TOMBIK YAPRAK DÖNER - ULTRA LUXURY DIGITAL MENU
 * Advanced JavaScript | Designed by Alex
 *
 * Features:
 * - Premium preloader with ring animation
 * - Canvas-based particle system
 * - 3D tilt effects on cards
 * - Magnetic button interactions
 * - Scroll reveal animations
 * - Smooth category filtering
 * - Performance optimizations
 * ============================================
 */

/* ============================================
   DESIGN TOKENS - ULTRA LUXURY PALETTE
   ============================================ */
:root {
    /* Deep Navy Palette */
    --navy-black: #0d1b2a;
    --navy-dark: #1a2332;
    --navy-medium: #2e4057;
    --navy-light: #415a77;

    /* Copper/Rose Gold Gradient */
    --copper-dark: #B8935F;
    --copper: #C9A961;
    --copper-medium: #D4A574;
    --copper-light: #E8B4A0;
    --copper-bright: #F5D4BC;

    /* Cream/Beige Tones */
    --cream-dark: #E8DCC4;
    --cream: #F5EFE6;
    --cream-light: #FAF7F2;
    --cream-white: #FFFCF7;

    /* Accent Colors */
    --accent-red: #D4696B;
    --accent-purple: #9B7EBD;
    --accent-blue: #6B9BD4;
    --accent-green: #7EBD9B;
    --accent-orange: #D49B6B;

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-serif: 'Crimson Pro', serif;
    --font-sans: 'Inter', sans-serif;

    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
    --text-md: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
    --text-lg: clamp(1.25rem, 1.1rem + 0.7vw, 1.875rem);
    --text-xl: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
    --text-2xl: clamp(2rem, 1.7rem + 1.5vw, 3.5rem);
    --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    --text-4xl: clamp(3rem, 2.5rem + 3vw, 6rem);

    /* Spacing */
    --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: 7rem;
    --space-20: 10rem;

    /* Shadows - Multi-layered */
    --shadow-sm:
        0 1px 2px rgba(13, 27, 42, 0.1),
        0 1px 4px rgba(13, 27, 42, 0.05);
    --shadow-md:
        0 4px 8px rgba(13, 27, 42, 0.12),
        0 2px 4px rgba(13, 27, 42, 0.08);
    --shadow-lg:
        0 10px 20px rgba(13, 27, 42, 0.15),
        0 6px 10px rgba(13, 27, 42, 0.1);
    --shadow-xl:
        0 20px 40px rgba(13, 27, 42, 0.2),
        0 10px 20px rgba(13, 27, 42, 0.15);
    --shadow-copper:
        0 10px 30px rgba(212, 165, 116, 0.3),
        0 5px 15px rgba(212, 165, 116, 0.2);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --duration-fast: 200ms;
    --duration-base: 350ms;
    --duration-slow: 500ms;
    --duration-slower: 700ms;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--cream);
    background: var(--navy-black);
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: var(--copper-medium);
    color: var(--navy-black);
}

:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 4px;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.bg-ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-ambient__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 126, 189, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(107, 155, 212, 0.04) 0%, transparent 70%);
    animation: ambientShift 20s ease-in-out infinite;
}

.bg-ambient__mesh {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 165, 116, 0.02) 2px, rgba(212, 165, 116, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 165, 116, 0.02) 2px, rgba(212, 165, 116, 0.02) 4px);
    opacity: 0.3;
}

.bg-ambient__particles {
    position: absolute;
    inset: 0;
}

/* ============================================
   LUXURY PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(
        ellipse at center,
        var(--navy-dark) 0%,
        var(--navy-black) 70%,
        #000 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
    animation: ambientGlow 8s ease-in-out infinite;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
}

.preloader__ring::before,
.preloader__ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}

.preloader__ring::before {
    border-top-color: var(--copper-light);
    border-right-color: var(--copper-medium);
    animation: elegantSpin 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.4));
}

.preloader__ring::after {
    border-bottom-color: var(--copper-medium);
    border-left-color: rgba(212, 165, 116, 0.3);
    animation: elegantSpin 4s cubic-bezier(0.4, 0, 0.2, 1) infinite reverse;
    filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.3));
}

.preloader__content {
    position: relative;
    text-align: center;
    z-index: 1;
    animation: contentFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader__icon {
    width: 80px;
    height: 60px;
    margin-bottom: var(--space-6);
    animation: elegantFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(212, 165, 116, 0.6));
}

.preloader__brand {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(
        135deg,
        var(--copper-light) 0%,
        var(--cream-light) 50%,
        var(--copper-light) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-3);
    animation: gradientFlow 6s ease-in-out infinite;
}

.preloader__tagline {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    letter-spacing: 0.25em;
    color: var(--copper-medium);
    text-transform: uppercase;
    opacity: 0.9;
    animation: taglinePulse 3s ease-in-out infinite;
}

.preloader__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgba(212, 165, 116, 0.08);
    overflow: hidden;
}

.preloader__bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 165, 116, 0.3) 20%,
        var(--copper-medium) 40%,
        var(--copper) 50%,
        var(--copper-medium) 60%,
        rgba(212, 165, 116, 0.3) 80%,
        transparent 100%
    );
    animation: elegantShimmer 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    overflow: hidden;
}

.hero__decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.hero__decoration--tl {
    top: -10%;
    left: -10%;
    animation: float 15s ease-in-out infinite;
}

.hero__decoration--tr {
    top: -10%;
    right: -10%;
    animation: float 18s ease-in-out infinite reverse;
}

.hero__decoration--bl {
    bottom: -10%;
    left: -10%;
    animation: float 20s ease-in-out infinite;
}

.hero__decoration--br {
    bottom: -10%;
    right: -10%;
    animation: float 22s ease-in-out infinite reverse;
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero__logo {
    width: 140px;
    height: 105px;
    margin: 0 auto var(--space-8);
    filter: drop-shadow(0 10px 40px rgba(212, 165, 116, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
    transition: transform 0.3s var(--ease-out);
}

.hero__logo:hover {
    transform: scale(1.05);
}

/* Hero Brand Label */
.hero__brand {
    margin-bottom: var(--space-6);
}

.hero__brand-label {
    font-family: var(--font-serif);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--copper-light);
    position: relative;
    padding: 0 var(--space-6);
}

.hero__brand-label::before,
.hero__brand-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper-medium));
}

.hero__brand-label::before {
    right: 100%;
    margin-right: var(--space-3);
}

.hero__brand-label::after {
    left: 100%;
    margin-left: var(--space-3);
    background: linear-gradient(90deg, var(--copper-medium), transparent);
}

/* Hero Title */
.hero__title {
    margin-bottom: var(--space-8);
}

.hero__title-line {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-2);
}

.hero__title-line:last-child {
    margin-bottom: 0;
}

.hero__title-word {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        var(--copper-light) 0%,
        var(--copper-medium) 25%,
        var(--cream-light) 50%,
        var(--copper-medium) 75%,
        var(--copper-light) 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 12s ease-in-out infinite;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 80px rgba(212, 165, 116, 0.3);
}

.hero__title-word--elegant {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    letter-spacing: 0.12em;
    font-weight: 700;
}

/* Hero Ornament */
.hero__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin: var(--space-8) auto;
}

.hero__ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--copper-medium) 50%,
        transparent 100%
    );
}

.hero__ornament-dot {
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(212, 165, 116, 0.5),
        0 0 20px rgba(212, 165, 116, 0.3),
        0 0 30px rgba(212, 165, 116, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

/* Hero Tagline */
.hero__tagline {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 400;
    font-style: italic;
    color: var(--copper-light);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

/* Hero Subtitle */
.hero__subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 300;
    color: var(--cream-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-10);
    opacity: 0.9;
}

/* Hero Contact */
.hero__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    padding: var(--space-6) var(--space-8);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-full);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
}

.hero__contact-label {
    font-family: var(--font-sans);
    font-size: var(--text-2xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper-medium);
}

.hero__contact-value {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--cream-light);
    letter-spacing: 0.02em;
}

.hero__contact-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(212, 165, 116, 0.3) 50%,
        transparent 100%
    );
}

.hero__cta {
    margin-bottom: var(--space-12);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scroll-indicator span {
    width: 2px;
    height: 20px;
    background: var(--copper-medium);
    opacity: 0;
    animation: scrollDots 2s ease-in-out infinite;
}

.scroll-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.6s;
}

/* ============================================
   PREMIUM BUTTON
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--copper-medium);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--copper-medium);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

.btn__text {
    position: relative;
    z-index: 2;
    transition: color var(--duration-base) var(--ease-out);
}

.btn__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--copper-medium), var(--copper-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-base) var(--ease-out);
    z-index: 1;
}

.btn:hover {
    border-color: var(--copper);
    box-shadow:
        0 10px 30px rgba(212, 165, 116, 0.3),
        0 0 40px rgba(212, 165, 116, 0.2);
    transform: translateY(-2px);
}

.btn:hover .btn__text {
    color: var(--navy-black);
}

.btn:hover .btn__bg {
    transform: scaleX(1);
}

.btn:active {
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    padding: var(--space-4) var(--space-2);
    box-shadow: var(--shadow-lg);
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0 var(--space-4);
}

.nav__container::-webkit-scrollbar {
    display: none;
}

.nav__item {
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cream-dark);
    background: transparent;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
    overflow: hidden;
}

.nav__item-text {
    position: relative;
    z-index: 2;
}

.nav__item-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
    transform: scaleX(0);
    transition: transform var(--duration-base) var(--ease-out);
}

.nav__item:hover {
    color: var(--copper-light);
    border-color: var(--copper-medium);
    transform: translateY(-2px);
}

.nav__item:hover .nav__item-line {
    transform: scaleX(1);
}

.nav__item--active {
    color: var(--navy-black);
    background: linear-gradient(135deg, var(--copper-medium), var(--copper-light));
    border-color: var(--copper);
    box-shadow: var(--shadow-copper);
}

.nav__item--active .nav__item-line {
    transform: scaleX(1);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
    position: relative;
    z-index: 10;
    padding: var(--space-16) var(--space-4);
    min-height: 100vh;
}

.main__container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   SECTION
   ============================================ */
.section {
    margin-bottom: var(--space-20);
    opacity: 1;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.section.is-hidden {
    display: none;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
}

.section__ornament {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-6);
    background:
        radial-gradient(circle, var(--copper-medium) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
}

.section__ornament::before,
.section__ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.section__ornament::before {
    width: 30px;
    height: 30px;
    border: 2px solid var(--copper);
}

.section__ornament::after {
    width: 10px;
    height: 10px;
    background: var(--copper-light);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.8);
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--copper-light);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
}

.section__subtitle {
    font-family: var(--font-serif);
    font-size: var(--text-md);
    font-style: italic;
    font-weight: 300;
    color: var(--cream-dark);
    margin-bottom: var(--space-6);
}

.section__line {
    width: 120px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--copper-medium), transparent);
    position: relative;
}

.section__line::before,
.section__line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section__line::before {
    left: -10px;
}

.section__line::after {
    right: -10px;
}

/* ============================================
   CARDS GRID
   ============================================ */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

/* ============================================
   CARD - PREMIUM DESIGN
   ============================================ */
.card {
    position: relative;
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--duration-slow) var(--ease-out);
    overflow: hidden;
    transform-style: preserve-3d;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 165, 116, 0.05) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
    pointer-events: none;
}

.card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s var(--ease-out);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow:
        0 20px 50px rgba(13, 27, 42, 0.4),
        0 0 60px rgba(212, 165, 116, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card:hover .card__shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.card--premium {
    background: linear-gradient(
        135deg,
        rgba(212, 165, 116, 0.1) 0%,
        rgba(26, 35, 50, 0.8) 50%
    );
    border-color: rgba(212, 165, 116, 0.3);
}

.card--premium .card__glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle,
        rgba(212, 165, 116, 0.2) 0%,
        transparent 70%
    );
    filter: blur(30px);
    opacity: 0.6;
    z-index: -1;
}

.card__inner {
    position: relative;
    z-index: 2;
}

.card__icon {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-size: var(--text-2xl);
    color: var(--copper);
    animation: sparkle 3s ease-in-out infinite;
}

.card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--cream-light);
    line-height: 1.3;
}

.card__desc {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    color: var(--cream-dark);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

/* ============================================
   BADGE
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid;
    backdrop-filter: blur(10px);
}

.badge--hot {
    color: var(--accent-red);
    background: rgba(212, 105, 107, 0.15);
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(212, 105, 107, 0.3);
}

.badge--spicy {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.15);
    border-color: #FF6B6B;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.badge--exotic {
    color: var(--accent-purple);
    background: rgba(155, 126, 189, 0.15);
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(155, 126, 189, 0.3);
}

.badge--seasonal {
    color: var(--accent-blue);
    background: rgba(107, 155, 212, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(107, 155, 212, 0.3);
}

.badge--regional {
    color: var(--accent-green);
    background: rgba(126, 189, 155, 0.15);
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(126, 189, 155, 0.3);
}

.badge--quality,
.badge--premium,
.badge--special,
.badge--versatile {
    color: var(--copper-light);
    background: rgba(212, 165, 116, 0.15);
    border-color: var(--copper-medium);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

/* ============================================
   PRICING
   ============================================ */
.card__pricing {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.card__pricing--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-3);
}

.price {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-4);
    background: rgba(212, 165, 116, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--duration-base) var(--ease-out);
}

.price::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
    border-radius: var(--radius-md);
}

.price:hover {
    border-color: var(--copper-medium);
    transform: translateY(-3px);
}

.price:hover::before {
    opacity: 1;
}

.price--featured {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.05));
    border-color: var(--copper-medium);
}

.price--popular {
    border-color: var(--copper);
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.25);
}

.price--popular::after {
    content: '★';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--copper);
    border-radius: 50%;
    font-size: 12px;
    color: var(--navy-black);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.5);
}

.price--unavailable {
    opacity: 0.4;
    pointer-events: none;
}

.price__label {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cream-dark);
}

.price__label small {
    font-size: 10px;
    opacity: 0.7;
}

.price__amount {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--copper-light);
}

.price__amount sup {
    font-size: var(--text-xs);
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.8;
}

/* ============================================
   GRAM OPTIONS
   ============================================ */
.card__gram-options {
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.gram-options__title {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--copper-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.gram-options__list {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
}

.gram-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--cream-light);
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--ease-out);
}

.gram-option:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--copper-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.gram-options__extra {
    font-family: var(--font-serif);
    font-size: var(--text-xs);
    font-style: italic;
    color: var(--cream-dark);
    opacity: 0.8;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    z-index: 9998;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    box-shadow:
        0 8px 30px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.6);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatingPulse 3s ease-in-out infinite;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(32, 186, 90, 0.2));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-whatsapp:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.5),
        0 0 0 15px rgba(37, 211, 102, 0.15);
}

.floating-whatsapp:hover::before {
    opacity: 1;
}

.floating-whatsapp:hover .floating-whatsapp__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.floating-whatsapp:active {
    transform: scale(1.05);
}

.floating-whatsapp__ripple {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: rippleEffect 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.floating-whatsapp__icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.floating-whatsapp__tooltip {
    position: absolute;
    right: 85px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    color: var(--cream-light);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-whatsapp__tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent rgba(15, 23, 42, 0.95);
}

/* ============================================
   DRINKS
   ============================================ */
.drinks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.drink {
    position: relative;
    background: rgba(26, 35, 50, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--duration-base) var(--ease-out);
}

.drink:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: var(--shadow-lg);
}

.drink__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    color: var(--copper-medium);
    animation: float 4s ease-in-out infinite;
}

.drink__name {
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--cream-light);
    margin-bottom: var(--space-5);
}

.drink__name small {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--cream-dark);
}

.drink__options {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.drink__option {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.drink__option--single {
    flex-direction: row;
    align-items: center;
}

.drink__size {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cream-dark);
}

.drink__price {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--copper-light);
}

.drink__price sup {
    font-size: var(--text-xs);
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    margin-top: var(--space-20);
    padding: var(--space-16) var(--space-4) var(--space-8);
    background: linear-gradient(180deg, transparent 0%, var(--navy-dark) 30%);
    border-top: 1px solid rgba(212, 165, 116, 0.15);
    text-align: center;
}

.footer__ornament {
    width: 80px;
    height: 2px;
    margin: 0 auto var(--space-8);
    background: linear-gradient(90deg, transparent, var(--copper-medium), transparent);
}

.footer__brand {
    margin-bottom: var(--space-6);
}

.footer__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, var(--copper-light), var(--copper), var(--copper-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-2);
}

.footer__tagline {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    letter-spacing: 0.2em;
    color: var(--copper-medium);
    text-transform: uppercase;
}

.footer__text {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    color: var(--cream-dark);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto var(--space-8);
    font-style: italic;
}

.footer__contact {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.footer__contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
    padding: var(--space-4) var(--space-6);
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--duration-base) var(--ease-out);
}

.footer__contact-item:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-2px);
}

.footer__contact-label {
    font-family: var(--font-sans);
    font-size: var(--text-2xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper-medium);
}

.footer__contact-text {
    font-family: var(--font-serif);
    font-size: var(--text-sm);
    color: var(--cream-light);
}

.footer__credits {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(212, 165, 116, 0.15);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    color: var(--cream-dark);
}

.footer__credits strong {
    color: var(--copper-medium);
    font-weight: 600;
}

.footer__year {
    margin-top: var(--space-2);
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .hero__brand-label {
        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .hero__brand-label::before,
    .hero__brand-label::after {
        width: 20px;
    }

    .hero__contact {
        flex-direction: column;
        gap: var(--space-5);
        padding: var(--space-5) var(--space-6);
    }

    .hero__contact-divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(212, 165, 116, 0.3) 50%,
            transparent 100%
        );
    }

    .hero__ornament-line {
        width: 40px;
    }

    /* Navigation mobile optimization */
    .nav {
        padding: var(--space-3) 0;
    }

    .nav__container {
        justify-content: flex-start;
        gap: var(--space-3);
        padding: 0 var(--space-4);
    }

    .nav__item {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
        letter-spacing: 0.03em;
    }

    /* Floating WhatsApp mobile */
    .floating-whatsapp {
        width: 60px;
        height: 60px;
        bottom: var(--space-6);
        right: var(--space-6);
    }

    .floating-whatsapp__icon svg {
        width: 28px;
        height: 28px;
    }

    .floating-whatsapp__tooltip {
        right: 75px;
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-4);
    }
}

@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .drinks {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }

    .drinks {
        grid-template-columns: repeat(4, 1fr);
    }

    .card {
        padding: var(--space-8);
    }
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

@keyframes scrollDots {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes ambientShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes elegantSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes elegantFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes elegantShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes taglinePulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes ambientGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow:
            0 8px 30px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow:
            0 8px 30px rgba(37, 211, 102, 0.5),
            0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes rippleEffect {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .preloader, .bg-ambient, .nav, .hero, .footer {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
