/* Base / Resets */
body { 
    font-family: 'Inter', sans-serif; 
    background-color: #111111; 
    color: #ffffff; 
    overflow-x: hidden; 
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF6200; }

.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #444; border-radius: 3px; }

/* Utilities */
.text-gradient {
    background: linear-gradient(to right, #FF6200, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass { 
    background: rgba(26, 26, 26, 0.7); 
    backdrop-filter: blur(12px); 
    border: 1px solid rgba(255,255,255,0.05); 
}

/* Animations & Interactions */
.hover-scale { transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.hover-scale:hover { transform: scale(1.03); }

.nav-link { position: relative; }
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: #FF6200;
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* View Transitions (SPA Logic) */
.view { display: none; opacity: 0; transition: opacity 0.4s ease-in-out; }
.view.active { display: block; opacity: 1; }

/* Hero Image Overlay */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1606755962773-d324e0a13086?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    background: linear-gradient(180deg, rgba(17,17,17,0.3) 0%, rgba(17,17,17,0.7) 60%, rgba(17,17,17,1) 100%);
}

.chef-bg {
    background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Carousel Hide Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Add to cart flying animation */
.fly-item {
    position: fixed;
    z-index: 9999;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(255,98,0,0.6);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

/* Categories Scroller */
.cat-btn.active {
    background-color: #FF6200;
    color: white;
    border-color: #FF6200;
    box-shadow: 0 0 15px rgba(255,98,0,0.4);
}

/* Modal Overlay Animation */
.modal-overlay {
    backdrop-filter: blur(8px);
}

.modal-content {
    transition: all 0.3s ease-out;
}

/* Checkbox styling */
.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.custom-checkbox:checked {
    background-color: #FF6200;
    border-color: #FF6200;
}

.custom-checkbox:checked::after {
    content: '✔';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
