* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fdf8f0;
            overflow-x: hidden;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ff8c42;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo i {
            margin-right: 0.5rem;
            font-size: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: #ff8c42;
        }

        .nav-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-icons i {
            color: #666;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-icons i:hover {
            color: #ff8c42;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ff8c42;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .login-btn {
            background: #ff8c42;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .login-btn:hover {
            background: #e6793a;
        }

        .menu-toggle {
            display: none;
            color: #333;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: block;
            opacity: 1;
        }

        .modal-content {
            background: linear-gradient(135deg, #ffffff, #f9f9f9);
            margin: 10% auto;
            padding: 2rem;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            color: #aaa;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #333;
        }

        .modal h2 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 1.2rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            background: #f9f9f9;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff8c42;
            box-shadow: 0 0 8px rgba(255, 140, 66, 0.2);
        }

        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:not(:placeholder-shown) + label,
        .form-group select:not(:placeholder-shown) + label {
            transform: translateY(-1.5rem);
            font-size: 0.8rem;
            color: #ff8c42;
        }

        .form-group button {
            width: 100%;
            background: linear-gradient(135deg, #ff8c42, #e6793a);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .form-group button:hover {
            background: linear-gradient(135deg, #e6793a, #d66a2f);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .form-group button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
        }

        .form-group button:hover::after {
            width: 200px;
            height: 200px;
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            right: -400px;
            top: 0;
            width: 400px;
            height: 100vh;
            background: white;
            z-index: 1500;
            transition: right 0.3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            padding: 2rem;
            overflow-y: auto;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 1rem;
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: #f9f9f9;
            border-radius: 10px;
        }

        .cart-item img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.2rem;
        }

        .cart-item-price {
            color: #ff8c42;
            font-weight: bold;
        }

        .cart-total {
            border-top: 2px solid #f0f0f0;
            padding-top: 1rem;
            margin-top: 2rem;
        }

        .checkout-btn {
            width: 100%;
            background: #ff8c42;
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .checkout-btn:hover {
            background: #e6793a;
        }

        /* Hero Section */
        .hero {
            padding: 120px 5% 60px;
            background: #fdf8f0;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            position: relative;
        }

        .welcome-text {
            color: #ff8c42;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .hero-title .highlight {
            color: #ff8c42;
            position: relative;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #ff8c42;
            border-radius: 2px;
        }

        .hero-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn-primary {
            background: #ff8c42;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #e6793a;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: #333;
            padding: 1rem 2rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #333;
            color: white;
        }

        .opening-hours {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 0.9rem;
        }

        .opening-hours i {
            color: #ff8c42;
            margin-right: 0.5rem;
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .main-dish-container {
            position: relative;
            display: inline-block;
        }

        .main-dish {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
            border: 8px dashed #ff8c42;
            padding: 20px;
            background: white;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .floating-tomato {
            position: absolute;
            top: 20%;
            right: 10%;
            width: 60px;
            height: 60px;
            animation: float 3s ease-in-out infinite;
        }

        .floating-herb {
            position: absolute;
            top: 30%;
            left: 5%;
            width: 40px;
            height: 40px;
            animation: float 4s ease-in-out infinite reverse;
        }

        .best-food-badge {
            position: absolute;
            top: 10%;
            right: -10%;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            font-weight: 600;
            color: #333;
            animation: bounce 2s ease-in-out infinite;
        }

        .dish-info-card {
            position: absolute;
            bottom: 10%;
            left: -20%;
            background: white;
            padding: 1rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: slideIn 2s ease-out;
        }

        .dish-info-card img {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
        }

        .dish-info h4 {
            color: #333;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .dish-info .stars {
            color: #ff8c42;
            font-size: 0.8rem;
            margin-bottom: 0.2rem;
        }

        .dish-info .price {
            color: #ff8c42;
            font-weight: bold;
        }

        .dish-info p {
            color: #666;
            font-size: 0.8rem;
        }

        /* Popular Dishes Section */
        .popular-dishes {
            padding: 80px 5%;
            background: #fdf8f0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title {
            font-size: 2.5rem;
            color: #2c3e50;
            font-weight: bold;
            position: relative;
        }

        .section-title .highlight {
            color: #ff8c42;
        }

        .section-nav {
            display: flex;
            gap: 1rem;
        }

        .nav-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
        }

        .nav-arrow:hover {
            background: #ff8c42;
            border-color: #ff8c42;
            color: white;
        }

        .dishes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }

        .dish-card {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dish-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .dish-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: #ff8c42;
        }

        .dish-rating {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #333;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .dish-rating i {
            color: #ff8c42;
            margin-left: 0.3rem;
        }

        .dish-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 1rem auto 1.5rem;
            border: 5px solid #f8f9fa;
        }

        .dish-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .dish-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff8c42;
            margin-bottom: 0.5rem;
        }

        .dish-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .add-to-cart-btn {
            background: #ff8c42;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .add-to-cart-btn:hover {
            background: #e6793a;
            transform: scale(1.05);
        }

        .add-to-cart-btn.added {
            background: #27ae60;
            animation: pulse 0.5s ease;
        }

        .favorite-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.2rem;
            color: #666;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .favorite-btn.favorited {
            color: red;
        }

        .favorite-btn:hover {
            color: #ff8c42;
        }

        /* About Section */
        .about {
            padding: 100px 5%;
            background: #fff;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .about-text .highlight {
            color: #ff8c42;
        }

        .about-text p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* Services Section */
        .services {
            padding: 100px 5%;
            background: #fdf8f0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

        .service-card {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #ffffff, #f9f9f9);
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff8c42, #e6793a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-icon i {
            font-size: 2rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Reservation and Contact Sections */
        .contact, .reservation {
            padding: 100px 5%;
            background: #fff;
            text-align: center;
        }

        .reservation-container, .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .reservation-info h3, .contact-info h3 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            justify-content: center;
            background: linear-gradient(135deg, #ffffff, #f9f9f9);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-item i {
            width: 60px;
            height: 60px;
            background: #ff8c42;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1.5rem;
            font-size: 1.5rem;
        }

        .contact-item h4 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .contact-item p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
        }

        .reservation .btn-primary,
        .contact .btn-primary {
            margin-top: 2rem;
            padding: 1.2rem 2.5rem;
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 50px 5% 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            color: #ff8c42;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p,
        .footer-section li {
            color: #bbb;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #ff8c42;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: #ff8c42;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background 0.3s ease;
        }

        .social-icons a:hover {
            background: #e6793a;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #bbb;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes slideIn {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: rgba(253, 248, 240, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .hero-container,
            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .main-dish {
                width: 300px;
                height: 300px;
            }

            .section-header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .modal-content {
                margin: 20% auto;
                width: 95%;
            }

            .contact-item {
                max-width: 100%;
                padding: 1rem;
            }

            .contact-item i {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .contact-item h4 {
                font-size: 1.2rem;
            }

            .contact-item p {
                font-size: 1rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .floating-tomato, .floating-herb, .best-food-badge, .dish-info-card {
                animation: none;
            }
            .modal-content, .service-card, .contact-item {
                transition: none;
            }
        }