        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: #f5f0e8;
            color: #2c2c2c;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #f5f0e8;
            z-index: 1000;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #d4c5b0;
        }

        .logo {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .logo-subtitle {
            font-size: 10px;
            letter-spacing: 3px;
        }

        nav {
            display: flex;
            gap: 40px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        nav a {
            text-decoration: none;
            color: #2c2c2c;
            transition: opacity 0.3s;
        }
       /* Burger Menu */
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1100;
        }

        .burger span {
            width: 25px;
            height: 2px;
            background: #2c2c2c;
            transition: all 0.3s ease;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        nav a:hover {
            opacity: 0.6;
        }

        .header-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cart-btn {
            position: relative;
            padding: 10px 25px;
            border: 1px solid #2c2c2c;
            border-radius: 30px;
            background: transparent;
            cursor: pointer;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .cart-btn:hover {
            background: #2c2c2c;
            color: #f5f0e8;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #5a6b4f;
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }

        /* Hero Section */
    .hero {
            margin-top: 80px;
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('side-view-shrimp-caesar-plate-topped-with-potato-shoestrings-min.jpg') no-repeat center center;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            font-size: 72px;
            color: white;
            letter-spacing: 8px;
            font-weight: 300;
            text-transform: uppercase;
        }

        /* Menu Section */
        .menu-section {
            padding: 80px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .menu-intro {
            text-align: center;
            margin-bottom: 80px;
        }

        .menu-intro h2 {
            font-size: 42px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
             color: #7c0603;
        }

        .menu-intro p {
            font-size: 16px;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            color: #4a4a4a;
        }

        .menu-category {
            margin-bottom: 80px;
        }

        .category-title {
            font-size: 36px;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 3px;
            border-bottom: 2px solid #d4c5b0;
            padding-bottom: 20px;
        }

        .dishes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .dish-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .dish-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .dish-image {
            width: 100%;
            height: 250px;
        background-size: cover;
            background-position: center;
            position: relative;
        }

        .dish-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .dish-info {
            padding: 25px;
        }

        .dish-name {
            font-size: 22px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dish-description {
            font-size: 13px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
            min-height: 60px;
        }

        .dish-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dish-price {
            font-size: 24px;
            font-weight: bold;
            color: #970202;
        }

        .add-to-cart-btn {
            padding: 10px 20px;
            border: 1px solid #2c2c2c;
            border-radius: 30px;
            background: transparent;
            cursor: pointer;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .add-to-cart-btn:hover {
            background: #d07a69;
            border-color: #fe6b6b;
            color: white;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: #f5f0e8;
            border-radius: 12px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 32px;
            cursor: pointer;
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: #2c2c2c;
            color: white;
        }

        .modal-image {
            width: 100%;
            height: 400px;
             background-size: cover;
            background-position: center;
        }

        .modal-info {
            padding: 40px;
        }

        .modal-title {
            font-size: 36px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .modal-description {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #4a4a4a;
        }

        .modal-details {
            background: white;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .modal-details h4 {
            font-size: 18px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .modal-details ul {
            list-style: none;
            padding: 0;
        }

        .modal-details li {
            padding: 8px 0;
            border-bottom: 1px solid #f5f0e8;
            font-size: 14px;
        }

        .modal-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid #d4c5b0;
        }

        .modal-price {
            font-size: 36px;
            font-weight: bold;
            color: #5a6b4f;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .qty-btn {
            width: 35px;
            height: 35px;
            border: 1px solid #2c2c2c;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .qty-btn:hover {
            background: #2c2c2c;
            color: white;
        }

        .qty-display {
            font-size: 20px;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }

        .modal-add-btn {
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            background: #5a6b4f;
            color: white;
            cursor: pointer;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .modal-add-btn:hover {
            background: #3d4f39;
            transform: scale(1.05);
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100%;
            background: white;
            z-index: 3000;
            transition: right 0.4s;
            box-shadow: -5px 0 20px rgba(0,0,0,0.2);
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            padding: 30px;
            border-bottom: 2px solid #d4c5b0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f5f0e8;
        }

        .cart-header h2 {
            font-size: 24px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cart-close {
            font-size: 28px;
            cursor: pointer;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .cart-close:hover {
            background: #e5e0d8;
        }

        .cart-items {
            padding: 20px;
            max-height: calc(100vh - 300px);
            overflow-y: auto;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            padding: 20px;
            background: #f5f0e8;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
       background-size: cover;
            background-position: center;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-size: 16px;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cart-item-price {
            font-size: 18px;
            font-weight: bold;
            color: #5a6b4f;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cart-qty-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #2c2c2c;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-remove {
            margin-left: auto;
            color: #d9534f;
            cursor: pointer;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cart-remove:hover {
            text-decoration: underline;
        }

        .cart-footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 30px;
            background: #f5f0e8;
            border-top: 2px solid #d4c5b0;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: bold;
        }

        .cart-total-amount {
            color: #5a6b4f;
        }

        .checkout-btn {
            width: 100%;
            padding: 18px;
            border: none;
            border-radius: 30px;
            background: #5a6b4f;
            color: white;
            cursor: pointer;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .checkout-btn:hover {
            background: #3d4f39;
        }

        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        .empty-cart-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 20px 30px;
            }

                    header {
                padding: 20px 30px;
            }

            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: #f5f0e8;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 40px;
                font-size: 18px;
                z-index: 1000;
                transition: transform 0.3s ease;
                transform: translateX(-100%);
            }

            nav.active {
                display: flex;
                transform: translateX(0);
            }

            .book-btn {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .menu-section {
                padding: 40px 20px;
            }

            .dishes-grid {
                grid-template-columns: 1fr;
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .modal-content {
                width: 95%;
            }
        }