* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #d4af37;
            --dark-bg: #0a0a0a;
            --light-text: #ffffff;
            --gray-text: #a0a0a0;
            --card-bg: #0f0f0f;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-gold);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-gold);
        }

        .cart-icon {
            position: relative;
            cursor: pointer;
            font-size: 1.5rem;
            padding: 0.5rem;
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -10px;
            background: var(--primary-gold);
            color: var(--dark-bg);
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-gold);
            margin: 3px 0;
            transition: 0.3s;
        }

        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8cmVzdGF1cmFudHxlbnwwfHwwfHx8MA%3D%3D&fm=jpg&q=60&w=3000");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            color: var(--primary-gold);
            font-size: 1rem;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-description {
            color: var(--gray-text);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary-gold);
            color: var(--dark-bg);
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            border-radius: 4px;
        }

        .btn:hover {
            background: var(--light-text);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
        }

        .menu-section {
            padding: 6rem 5%;
            background: var(--dark-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: var(--primary-gold);
            font-size: 0.9rem;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .menu-filter {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid var(--gray-text);
            color: var(--gray-text);
            padding: 0.7rem 1.8rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            border-radius: 4px;
        }

        .filter-btn.active,
        .filter-btn:hover {
            border-color: var(--primary-gold);
            color: var(--primary-gold);
            background: rgba(212, 175, 55, 0.1);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .menu-card {
            background: var(--card-bg);
            border: 1px solid #1a1a1a;
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
            border-radius: 12px;
        }

        .menu-card:hover {
            border-color: var(--primary-gold);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .menu-card-image {
            width: 100%;
            height: 180px;
            background: #1a1a1a;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .menu-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }

        .menu-card-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--primary-gold);
            color: var(--dark-bg);
            padding: 0.4rem 0.8rem;
            font-size: 0.7rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 3;
            border-radius: 4px;
        }

        .menu-card-content {
            padding: 1.3rem;
        }

        .menu-card-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 0.7rem;
            gap: 0.8rem;
        }

        .menu-card-title {
            font-size: 1rem;
            margin-bottom: 0.3rem;
            line-height: 1.3;
            font-weight: 600;
        }

        .menu-card-category {
            color: var(--primary-gold);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .menu-card-price {
            font-size: 1rem;
            color: var(--primary-gold);
            font-weight: bold;
            white-space: nowrap;
        }

        .menu-card-description {
            color: var(--gray-text);
            line-height: 1.5;
            margin-bottom: 1rem;
            font-size: 0.85rem;
        }

        .menu-card-footer {
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #1a1a1a;
            padding: 0.35rem 0.7rem;
            border-radius: 4px;
            border: 1px solid #2a2a2a;
        }

        .quantity-btn {
            background: none;
            border: none;
            color: var(--primary-gold);
            font-size: 1.1rem;
            cursor: pointer;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .quantity-btn:hover {
            transform: scale(1.2);
        }

        .quantity-value {
            min-width: 24px;
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .add-to-cart-btn {
            border-radius: 4px;
            flex: 1;
            background: var(--primary-gold);
            color: var(--dark-bg);
            border: none;
            padding: 0.55rem 1rem;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            font-size: 0.75rem;
        }

        .add-to-cart-btn:hover {
            background: var(--light-text);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .testimonials {
            padding: 6rem 5%;
            background: #050505;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 3rem auto 0;
        }

        .testimonial-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-left: 4px solid var(--primary-gold);
            transition: all 0.3s;
            border-radius: 8px;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .testimonial-rating {
            color: var(--primary-gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.8rem;
            font-style: italic;
            color: var(--gray-text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 55px;
            height: 55px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--dark-bg);
        }

        .testimonial-info h4 {
            margin-bottom: 0.3rem;
            font-size: 1rem;
        }

        .testimonial-info p {
            color: var(--gray-text);
            font-size: 0.85rem;
        }

        .cart-sidebar {
            position: fixed;
            right: -500px;
            top: 0;
            width: 450px;
            height: 100vh;
            background: var(--card-bg);
            box-shadow: -5px 0 20px rgba(0,0,0,0.5);
            z-index: 2000;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            padding: 1.8rem;
            border-bottom: 1px solid #2a2a2a;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h2 {
            font-size: 1.6rem;
        }

        .close-cart {
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-cart:hover {
            color: var(--primary-gold);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: #0a0a0a;
            margin-bottom: 0.8rem;
            border: 1px solid #1a1a1a;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .cart-item:hover {
            border-color: #2a2a2a;
            background: #0f0f0f;
        }

        .cart-item-image {
            width: 65px;
            height: 65px;
            background: #1a1a1a;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
        }

        .cart-item-details {
            flex: 1;
            min-width: 0;
        }

        .cart-item-name {
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .cart-item-price {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 0.6rem;
            font-size: 0.8rem;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #1a1a1a;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            border: 1px solid #2a2a2a;
        }

        .cart-item-qty button {
            background: none;
            border: none;
            color: var(--primary-gold);
            cursor: pointer;
            font-size: 0.95rem;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .cart-item-qty button:hover {
            transform: scale(1.2);
        }

        .cart-item-qty span {
            min-width: 22px;
            text-align: center;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .remove-item {
            background: transparent;
            border: 1px solid #3a3a3a;
            color: var(--gray-text);
            padding: 0.35rem 0.7rem;
            cursor: pointer;
            font-size: 0.7rem;
            text-transform: uppercase;
            transition: all 0.3s;
            border-radius: 4px;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .remove-item:hover {
            background: #8b0000;
            border-color: #8b0000;
            color: white;
        }

        .cart-empty {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--gray-text);
        }

        .cart-empty-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .cart-footer {
            padding: 1.8rem;
            border-top: 1px solid #2a2a2a;
            background: #0a0a0a;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.4rem;
            margin-bottom: 1.3rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary-gold);
        }

        .cart-total-amount {
            color: var(--primary-gold);
            font-weight: bold;
        }

        .cart-footer-buttons {
            display: flex;
            gap: 0.8rem;
        }

        .checkout-btn {
            flex: 1.5;
            padding: 0.95rem;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
        }

        .checkout-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .clear-cart-btn {
            flex: 1;
            padding: 0.95rem;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            color: var(--gray-text);
            border: 2px solid #3a3a3a;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 6px;
        }

        .clear-cart-btn:hover {
            background: linear-gradient(135deg, #8b0000 0%, #a00000 100%);
            color: white;
            border-color: #8b0000;
            transform: translateY(-2px);
        }

        .clear-cart-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .menu-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .cart-footer-buttons {
                flex-direction: column;
            }
        }

        footer {
            background: #050505;
            padding: 4rem 5% 2rem;
            border-top: 1px solid #1a1a1a;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--primary-gold);
            font-size: 1.2rem;
        }

        .footer-section p {
            color: var(--gray-text);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: var(--gray-text);
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            font-size: 0.9rem;
        }

        .footer-section a:hover {
            color: var(--primary-gold);
            transform: translateX(5px);
        }

        .footer-logo {
            font-size: 2.3rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: var(--primary-gold);
            color: var(--dark-bg);
            transform: translateY(-5px);
        }

        .contact-info-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        .contact-icon {
            font-size: 1.2rem;
            color: var(--primary-gold);
            margin-top: 0.2rem;
        }

        .opening-hours {
            background: #0a0a0a;
            padding: 1.3rem;
            border-left: 3px solid var(--primary-gold);
            border-radius: 4px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            border-bottom: 1px solid #1a1a1a;
            font-size: 0.9rem;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-day {
            font-weight: bold;
        }

        .hours-time {
            color: var(--gray-text);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #1a1a1a;
            color: var(--gray-text);
            font-size: 0.85rem;
        }

        .footer-bottom p {
            margin-bottom: 0.5rem;
        }

        .footer-bottom a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom a:hover {
            color: var(--light-text);
        }