        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --vanilla: #FFF9F3;
            --tomato: #E5533D;
            --leaf: #6BA368;
            --charcoal: #2B2B2B;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--vanilla);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        .font-playfair {
            font-family: 'Playfair Display', serif;
        }

        .font-poppins {
            font-family: 'Poppins', sans-serif;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Header Animations */
        .header-shadow {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        /* Hero Slider */
        .hero-slide {
            transition: opacity 1s ease-in-out;
        }

        /* Card Hover Effects */
        .food-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .food-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(229, 83, 61, 0.15);
        }

        .food-card img {
            transition: transform 0.5s ease;
        }

        .food-card:hover img {
            transform: scale(1.1);
        }

        /* Button Animations */
        .btn-primary {
            background-color: var(--tomato);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary:hover {
            background-color: #d43d2a;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(229, 83, 61, 0.3);
        }

        .btn-secondary {
            background-color: var(--leaf);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-secondary:hover {
            background-color: #5a9357;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(107, 163, 104, 0.3);
        }

        /* Category Tiles */
        .category-tile {
            transition: all 0.3s ease;
        }

        .category-tile:hover {
            box-shadow: 0 0 30px rgba(229, 83, 61, 0.2);
            transform: scale(1.05);
        }

        /* Scroll Fade Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Recipe Grid */
        .recipe-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Cart Styles */
        .cart-sidebar {
            position: fixed;
            right: -400px;
            top: 0;
            width: 400px;
            height: 100%;
            background: white;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 10000;
            transition: right 0.4s ease;
            overflow-y: auto;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }

        .cart-overlay.active {
            display: block;
        }

        /* Filter Styles */
        .filter-btn {
            padding: 10px 20px;
            border: 2px solid var(--tomato);
            background: white;
            color: var(--tomato);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn.active {
            background: var(--tomato);
            color: white;
        }

        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(229, 83, 61, 0.2);
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--leaf);
            color: white;
            padding: 16px 24px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 10001;
            animation: slideInRight 0.4s ease;
            display: none;
        }

        .toast.show {
            display: block;
        }

        @keyframes slideInRight {
            from { transform: translateX(400px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .recipe-grid {
                grid-template-columns: 1fr;
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Image Overlay */
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .food-card:hover .image-overlay {
            opacity: 1;
        }

        /* Newsletter */
        .newsletter-input {
            padding: 14px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 15px;
            width: 100%;
            transition: border 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--tomato);
        }

        /* Quick View Modal */
        .quick-view-content {
            max-width: 900px;
            max-height: 90%;
            overflow-y: auto;
        }

        /* Horizontal Scroll */
        .horizontal-scroll {
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--tomato) var(--vanilla);
        }

        .horizontal-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .horizontal-scroll::-webkit-scrollbar-track {
            background: var(--vanilla);
        }

        .horizontal-scroll::-webkit-scrollbar-thumb {
            background: var(--tomato);
            border-radius: 10px;
        }
.nav-link {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #ef4444;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #374151;
}
.mobile-link:hover {
  color: #ef4444;
}
