* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        :root {
            --primary: #FDB931;
            --secondary: #9F7928;
            --accent: #FFD700;
            --dark: #121212;
            --light: #1e1e1e;
            --gray: #121212;
            --text: #e0e0e0;
            --text-light: #b0b0b0;
            --success: #00b894;
            --danger: #d63031;
            --shadow: 0 4px 20px rgba(0,0,0,0.5);
            --shadow-hover: 0 8px 30px rgba(0,0,0,0.6);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #eee;
            color: var(--text);
            padding-top: 165px;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }
        
        @media (max-width: 480px) {
            body {
                padding-top: 120px;
            }
        }
        
        /* Header - Sadece Logo */
        .restaurant-header {
            background: var(--light);
            padding: 20px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        @media (max-width: 480px) {
            .restaurant-header {
                padding: 20px 15px;
            }
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .restaurant-logo {
            width: 230px;
            height: 50px;
            object-fit: contain;
            border: 3px solid #f0f0f0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            background: #eee;
            padding: 0px 9px;
        }
        
        @media (max-width: 480px) {
            .restaurant-logo {
                width: 180px;
                height: 30px;
            }
        }
        
        /* Category Menu - Modern Sticky */
        .category-menu {
            position: fixed;
            top: 120px;
            left: 0;
            right: 0;
            background: var(--light);
            z-index: 999;
            box-shadow: 0 2px 15px rgba(0,0,0,0.06);
            padding: 50px 0 15px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        @media (max-width: 480px) {
            .category-menu {
                top: 40px;
            }
        }
        
        .category-menu-scroll {
            display: flex;
            gap: 12px;
            padding: 0 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .category-menu-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .category-menu-item {
            flex-shrink: 0;
            padding: 12px 24px;
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            border-radius: 30px;
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
        }
        
        .category-menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .category-menu-item:hover,
        .category-menu-item.active {
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }
        
        .category-menu-item.active::before,
        .category-menu-item:hover::before {
            left: 0;
        }
        
        /* Quick Info */
        .quick-info {
            display: flex;
            justify-content: center;
            gap: 12px;
            padding: 20px;
            margin-top: 30px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .quick-info::-webkit-scrollbar {
            display: none;
        }
        
        .info-chip {
            flex-shrink: 0;
            background: var(--light);
            padding: 12px 20px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            box-shadow: var(--shadow);
            white-space: nowrap;
            transition: all 0.3s;
        }
        
        .info-chip:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .info-chip i {
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        /* Category Section */
        .category-section {
            margin-bottom: 50px;
            padding: 0 20px;
            scroll-margin-top: 200px;
        }
        
        .category-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 25px 0 20px;
        }
        
        .category-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        
        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            margin: 0;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }
        
        /* Product Grid - Modern */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .product-card {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            touch-action: manipulation;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .product-card:active {
            transform: translateY(-2px) scale(0.98);
        }
        
        .product-image-wrapper {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .product-card:hover .product-image {
            transform: scale(1.08);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--danger);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(214, 48, 49, 0.4);
            z-index: 2;
        }
        
        .product-info {
            padding: 18px;
        }
        
        .product-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.8em;
        }
        
        .product-description {
            font-size: 0.88rem;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.8em;
        }
        
        .product-price {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: baseline;
            gap: 3px;
            letter-spacing: -0.5px;
        }
        
        .product-price-currency {
            font-size: 1rem;
            font-weight: 700;
        }
        
        .out-of-stock {
            opacity: 0.7;
        }
        
        .out-of-stock .product-image {
            filter: grayscale(100%) brightness(0.85);
        }
        
        /* Modal - Modern */
        .modal-content {
            border-radius: 25px;
            border: none;
            background-color: var(--light);
            color: var(--text);
            margin: 20px;
            max-height: 90vh;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 25px;
            border-radius: 25px 25px 0 0;
        }
        
        .modal-title {
            font-weight: 700;
            font-size: 1.4rem;
        }
        
        .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }
        
        .modal-body {
            padding: 22px 30px;
            max-height: calc(90vh - 100px);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .product-detail-image {
            width: 100%;
            border-radius: 20px;
            max-height: 350px;
            object-fit: cover;
            box-shadow: var(--shadow);
        }
        
        .product-detail-price {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 12px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        }
        
        .product-detail-price .label {
            font-size: 1rem;
            opacity: 0.95;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-detail-price .amount {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -1px;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            color: var(--text-light);
        }
        
        .empty-state i {
            font-size: 5rem;
            margin-bottom: 20px;
            opacity: 0.2;
        }
        
        .empty-state h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--text);
        }
        
        /* Animations */
        .category-section {
            animation: fadeInUp 0.6s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            body {
                padding-top: 175px;
            }
            
            .category-menu {
                top: 60px;
            }
        }

        @media (min-width: 468px) and (max-width: 767px) {
            .category-menu {
                top: 50px !important;
            }
        }
        
        @media (min-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .category-menu-item {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            
            .category-title {
                font-size: 1.5rem;
            }
            
            .products-grid {
                gap: 15px;
            }
        }