/* ============================================
   PREMIUM QR MENU - ENTREPRENEURIAL DESIGN SYSTEM
   Girişimcilik Politikasına Uygun Modern Tasarım
   ============================================ */

/* CSS Variables - Entrepreneurial Color Palette */
:root {
    /* Primary Colors - Kırmızı (Enerjik ve Dikkat Çekici) */
    --primary-gradient: linear-gradient(135deg, #ff4444 0%, #cc0000 50%, #990000 100%);
    --primary-gradient-reverse: linear-gradient(135deg, #990000 0%, #cc0000 50%, #ff4444 100%);
    --primary-gradient-vibrant: linear-gradient(135deg, #ff6666 0%, #ff3333 50%, #cc0000 100%);
    
    /* Accent Colors - Turuncu/Coral (Enerji, Eylem, Motivasyon) */
    --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 50%, #ffa500 100%);
    --accent-gradient-warm: linear-gradient(135deg, #ff8c42 0%, #ff6b6b 50%, #ff4757 100%);
    
    /* Success/Gold - Altın (Başarı, Optimizm, Büyüme) */
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffa500 100%);
    --success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 50%, #00d4ff 100%);
    
    /* Rich Color Palette - Girişimci Renkleri */
    --color-primary: #cc0000;
    --color-primary-dark: #990000;
    --color-primary-light: #ff4444;
    --color-secondary: #ff8c42;
    --color-accent: #ff6b6b;
    --color-gold: #ffd700;
    --color-warning: #ffa500;
    --color-success: #28a745;
    --color-danger: #ff4757;
    --color-info: #ff4444;
    
    /* Background Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #1a1f3a;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-glass-strong: rgba(255, 255, 255, 0.25);
    
    /* Text Colors */
    --text-primary: #1a1f3a;
    --text-secondary: #6c757d;
    --text-light: #ffffff;
    --text-muted: #adb5bd;
    
    /* Shadows - Enerjik Glow Efektleri */
    --shadow-sm: 0 2px 8px rgba(204, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(204, 0, 0, 0.2);
    --shadow-lg: 0 16px 48px rgba(204, 0, 0, 0.25);
    --shadow-xl: 0 24px 64px rgba(204, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(255, 68, 68, 0.5);
    --shadow-glow-orange: 0 0 30px rgba(255, 140, 66, 0.6);
    --shadow-gold: 0 0 25px rgba(255, 215, 0, 0.6);
    --shadow-vibrant: 0 0 50px rgba(255, 68, 68, 0.4), 0 0 100px rgba(255, 140, 66, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) transparent;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--primary-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

    /* Animated Background Pattern - Enerjik ve Dinamik */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(204, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(153, 0, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 25s ease-in-out infinite;
    z-index: -2;
}

/* Animated Particles Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 68, 68, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 140, 66, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(204, 0, 0, 0.3), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(255, 107, 107, 0.3), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(255, 68, 68, 0.2), transparent),
        radial-gradient(1px 1px at 10% 50%, rgba(255, 140, 66, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 90% 90%, 33% 66%, 10% 40%;
    animation: particleMove 30s ease infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(30px, -30px) scale(1.1) rotate(2deg); }
    50% { transform: translate(-20px, 20px) scale(0.95) rotate(-1deg); }
    75% { transform: translate(20px, 30px) scale(1.05) rotate(1deg); }
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 90% 90%, 33% 66%, 10% 40%; }
    25% { background-position: 100% 100%, 0% 0%, 25% 75%, 20% 80%, 10% 10%, 66% 33%, 90% 60%; }
    50% { background-position: 50% 50%, 50% 50%, 75% 25%, 60% 40%, 50% 50%, 40% 80%, 70% 30%; }
    75% { background-position: 25% 75%, 75% 25%, 80% 80%, 40% 60%, 30% 70%, 80% 40%, 30% 70%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff4444 0%, #cc0000 50%, #990000 100%);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6b6b 0%, #ff8c42 50%, #ffa500 100%);
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.6);
}

/* ============================================
   TOP MENU - PREMIUM GLASSMORPHISM
   ============================================ */

.top-menu {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 20px 0;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.top-menu:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.top-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.top-menu-link {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    transition: all var(--transition-bounce);
    font-weight: 600;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.top-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left var(--transition-slow);
    z-index: -1;
}

.top-menu-link:hover::before {
    left: 0;
}

.top-menu-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow-orange), var(--shadow-md);
    border-color: rgba(255, 140, 66, 0.5);
    color: var(--text-primary);
}

.top-menu-link.active {
    background: var(--gold-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold), var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.8);
    font-weight: 700;
}

.top-menu-link.active::before {
    display: none;
}

.top-menu-icon {
    font-size: 16px;
    transition: all var(--transition-bounce);
}

.top-menu-link:hover .top-menu-icon {
    transform: rotate(360deg) scale(1.2);
}

.top-menu-link.waiter-call-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: var(--text-primary);
    font-weight: 700;
    animation: pulse-glow 2s ease-in-out infinite;
}

.top-menu-link.waiter-call-btn:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
    }
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* ============================================
   SLIDER - PREMIUM HERO SECTION
   ============================================ */

.slider-container {
    position: relative;
    height: 450px;
    border-radius: var(--radius-xl);
    margin-bottom: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), inset 0 0 100px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.6) 0%, rgba(255, 68, 68, 0.5) 50%, rgba(255, 140, 66, 0.4) 100%);
    z-index: 1;
    animation: slideGradient 5s ease infinite;
}

@keyframes slideGradient {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.6; }
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 30px;
    text-align: center;
}

.slide-content h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.2s both;
    font-weight: 300;
}

.slide-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--gold-gradient);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-bounce);
    animation: slideInUp 1s ease-out 0.4s both;
    box-shadow: var(--shadow-gold), var(--shadow-lg);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.slide-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold), var(--shadow-xl);
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all var(--transition-bounce);
    pointer-events: all;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-btn:hover {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-glow-orange);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-bounce);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-gold);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* ============================================
   CATEGORIES - PREMIUM CARDS
   ============================================ */

.category-section {
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 50%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 68, 68, 0.3);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 68, 68, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 68, 68, 0.8)) drop-shadow(0 0 25px rgba(255, 140, 66, 0.5));
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(255, 140, 66, 0.6);
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 150px;
        opacity: 0.8;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient-vibrant);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 0 15px rgba(247, 245, 245, 0.925);
}

.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.category-card:hover::before,
.category-card.active::before {
    transform: scaleX(1);
}

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

.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(255, 68, 68, 0.6);
    animation: cardPulse 2s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% { box-shadow: var(--shadow-xl), var(--shadow-glow); }
    50% { box-shadow: var(--shadow-xl), 0 0 30px rgba(255, 68, 68, 0.7), 0 0 60px rgba(255, 140, 66, 0.4); }
}

.category-card.active {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(204, 0, 0, 0.1) 100%);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
    color: white;
    background: var(--primary-gradient);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 68, 68, 0.4);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.category-card.active .category-icon {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-glow-orange);
    animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

.category-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.category-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ============================================
   PRODUCTS - LUXURY GRID
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient-vibrant);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(255, 68, 68, 0.6);
    animation: productGlow 3s ease-in-out infinite;
}

@keyframes productGlow {
    0%, 100% { box-shadow: var(--shadow-xl), var(--shadow-glow); }
    50% { box-shadow: var(--shadow-xl), 0 0 40px rgba(255, 68, 68, 0.6), 0 0 80px rgba(255, 140, 66, 0.3); }
}

.product-image {
    width: 100%;
    height: 280px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
    z-index: 2;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 28px;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-order {
    background: var(--gold-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-order:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-gold), var(--shadow-lg);
}

/* ============================================
   MODAL - PREMIUM OVERLAY
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn var(--transition-normal);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    padding: 0;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 550px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    animation: modalSlideIn var(--transition-bounce);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: headerShine 4s infinite;
}

@keyframes headerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.modal-header h3 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-bounce);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 35px;
}

.product-info-modal {
    background: var(--primary-gradient);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.product-info-modal::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: modalPulse 3s ease-in-out infinite;
}

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

.product-info-modal h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-info-modal p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Garson Çağrısı Modal Stilleri */
.waiter-info-modal {
    background: var(--accent-gradient);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow-orange);
}

.waiter-info-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.waiter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    animation: bell-ring 1s ease-in-out infinite;
}

@keyframes bell-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(0deg);
    }
}

.waiter-info-modal h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.waiter-info-modal p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 68, 68, 0.1);
    background: white;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.note-counter {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 8px;
    display: block;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding: 25px 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-secondary {
    background: rgba(108, 117, 125, 0.1);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   LOADING & UTILITIES
   ============================================ */

.loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.spinner {
    border: 5px solid rgba(255, 68, 68, 0.1);
    border-top: 5px solid #ff4444;
    border-right: 5px solid #ff8c42;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spinEnhanced 1s linear infinite, spinnerGlow 2s ease-in-out infinite;
    margin: 0 auto 25px;
    position: relative;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top-color: #ffd700;
    border-radius: 50%;
    animation: spinReverse 0.8s linear infinite;
}

@keyframes spinEnhanced {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes spinnerGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 68, 68, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 68, 68, 0.8), 0 0 50px rgba(255, 140, 66, 0.4); }
}

/* ============================================
   NOTIFICATIONS
   ============================================ */

.notification-badge {
    position: fixed;
    top: 25px;
    right: 25px;
    background: var(--color-danger);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10001;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
    border: 3px solid white;
}

.notification-badge.hidden {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.notifications-panel {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 380px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transform: translateX(calc(100% + 50px));
    transition: transform var(--transition-bounce);
    max-height: 70vh;
    overflow-y: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.notifications-panel.open {
    transform: translateX(0);
}

.notifications-content {
    padding: 0;
}

.notification-item {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background var(--transition-fast);
}

.notification-item:hover {
    background: rgba(255, 68, 68, 0.08);
    transform: translateX(5px);
    transition: all var(--transition-normal);
}

.notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.notification-icon.order {
    background: var(--success-gradient);
}

.notification-icon.waiter {
    background: var(--accent-gradient);
}

.notification-icon.contact {
    background: var(--primary-gradient);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.notification-message {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 4px;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   MOBILE WAITER BUTTON
   ============================================ */

.mobile-waiter-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--gold-gradient);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-full);
    padding: 18px 24px;
    box-shadow: var(--shadow-gold), var(--shadow-xl);
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    z-index: 10001;
    transition: all var(--transition-bounce);
}

.mobile-waiter-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-gold), var(--shadow-xl);
}

.mobile-waiter-btn i {
    font-size: 20px;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--success-gradient);
    color: white;
    padding: 18px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    z-index: 10002;
    opacity: 0;
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: toastSlideIn 0.5s ease-out;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.error {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b6b 100%);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(-50%) translateY(-100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }
}

.toast i {
    font-size: 1.2rem;
}

/* ============================================
   SCROLL BUTTONS
   ============================================ */

.scroll-buttons {
    display: none;
    justify-content: space-between;
    margin: 15px 20px 0 20px;
}

@media (max-width: 768px) {
    .scroll-buttons {
        display: flex;
    }
}

.scroll-btn {
    background: var(--gold-gradient);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md);
    font-size: 1rem;
    font-weight: 700;
}

.scroll-btn:hover:not(:disabled) {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow-orange), var(--shadow-lg);
}

.scroll-btn:disabled {
    background: rgba(108, 117, 125, 0.2);
    color: rgba(108, 117, 125, 0.5);
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 350px;
        border-radius: var(--radius-lg);
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .categories-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 0 20px 15px 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    
    .categories-grid::-webkit-scrollbar {
        display: none;
    }
    
    .category-card {
        flex: 0 0 180px;
        scroll-snap-align: start;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .top-menu-link {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .mobile-waiter-btn {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .slider-container {
        height: 280px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .category-card {
        flex: 0 0 160px;
        padding: 20px 15px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}
