/* Fast Food Pro - Premium Stylesheet */

:root {
    --primary: #FF6B00;
    --primary-hover: #E05E00;
    --bg-light: #FFFFFF;
    --text-dark: #000000;
    --text-muted: #6B7280;
    --premium-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08), 0 0 50px -10px rgba(255, 107, 0, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

/* Base Adjustments */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #F9FAFB;
}
::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Premium Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.glass-navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Premium Hover & Action Animations */
.hover-premium {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--premium-shadow);
}

/* Accent Gradients */
.gradient-accent {
    background: linear-gradient(135deg, #FF6B00 0%, #FF9E00 100%);
}
.gradient-accent-hover:hover {
    background: linear-gradient(135deg, #E05E00 0%, #E08A00 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #000000 0%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated Floating Cart */
.floating-cart-badge {
    animation: cartPulse 2s infinite ease-in-out;
}
@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Loading skeleton pulse */
.skeleton {
    background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Custom Checkbox Orange Styles */
.checkbox-orange {
    accent-color: var(--primary);
}

/* AOS & Custom transitions overrides */
[data-aos] {
    pointer-events: none;
}
.aos-animate [data-aos] {
    pointer-events: auto;
}

/* Custom interactive active states */
.active-nav-link {
    color: var(--primary);
    position: relative;
}
.active-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
}
.active-nav-link::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(1px);
}

/* Swiper Slider styling customized */
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 24px !important;
    border-radius: 8px !important;
}

/* Video hero overlay */
.hero-video-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.95) 100%);
}

/* PWA App Shell adjustments */
.safe-bottom-bar {
    padding-bottom: env(safe-area-inset-bottom);
}
