/* Q-Bab Burger - Modern Enhanced Stylesheet */
/* Inspired by EasyEat - With Animations & Modern Design */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e85a2a;
    --primary-light: #ff8659;
    --secondary-color: #2d3142;
    --accent-color: #ffc857;
    --text-color: #4a4a4a;
    --text-light: #8a8a8a;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --black: #0f0f0f;
    --border-color: #e8e8e8;
    --success: #4caf50;
    --danger: #f44336;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* ================================
   HEADER ICONS & SIDEBAR STYLES
   ================================ */

/* Header Icons Container */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.header-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-icon:hover {
    background: rgba(225, 0, 0, 0.4);
    border-color: #e10000;
    color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(225, 0, 0, 0.5);
}

.header-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff !important;
    fill: none;
    color: #ffffff !important;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e10000;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    /* Hidden by default, shown by JS when items added */
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(225, 0, 0, 0.4);
}

/* Cart Dropdown/Popup */
.cart-dropdown-wrapper {
    position: relative;
}

.cart-popup {
    position: fixed !important;
    top: 80px !important;
    right: 20px !important;
    width: 400px;
    background: #1a1a1a;
    max-height: 500px;
    display: none;
    /* Hidden by default */
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999999 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.cart-popup.active {
    display: flex;
    /* Show when active */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-popup::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #1a1a1a;
}

.cart-popup-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
}

.cart-popup-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.cart-popup-empty svg {
    stroke: #444;
    margin-bottom: 15px;
}

.cart-popup-empty p {
    margin: 0;
    color: #999;
}

.cart-popup-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.cart-popup-item:last-child {
    border-bottom: none;
}

.cart-popup-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-popup-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-popup-item-details {
    flex: 1;
}

.cart-popup-item-name {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-popup-item-quantity {
    color: #999;
    font-size: 0.85rem;
}

.cart-popup-item-price {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1rem;
}

.cart-popup-footer {
    background: #0f0f0f;
    padding: 20px;
    border-top: 1px solid #333;
}

.cart-popup-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: white;
    font-size: 1.1rem;
}

.cart-popup-subtotal span:first-child {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.cart-popup-total {
    font-weight: 700;
    color: white;
}

.cart-popup-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cart-popup-btn {
    padding: 12px 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-cart-btn {
    background: #e10000;
    color: white;
}

.view-cart-btn:hover {
    background: #c20000;
}

.checkout-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.checkout-btn:hover {
    background: white;
    color: #1a1a1a;
}

/* Scrollbar for cart popup */
.cart-popup-items::-webkit-scrollbar {
    width: 6px;
}

.cart-popup-items::-webkit-scrollbar-track {
    background: #222;
}

.cart-popup-items::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.cart-popup-items::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cart-popup {
        width: 320px;
        right: -20px;
    }

    .cart-popup::before {
        right: 30px;
    }
}

/* 3x3 Dots Grid Menu */
.dots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    width: 20px;
    height: 20px;
}

.dot {
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.menu-dots-btn:hover .dot {
    background: var(--white);
    transform: scale(1.2);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
    /* Safari */
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f0f 100%);
    z-index: 1000;
    padding: 30px;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.sidebar-menu.active {
    left: 0;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
}

.sidebar-logo h2 {
    color: var(--white);
    font-size: 28px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.sidebar-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--white);
}

.sidebar-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.sidebar-close svg {
    width: 20px;
    height: 20px;
}

/* Sidebar Content */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Social Media Links */
.sidebar-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 16px;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateX(10px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Info */
.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 14px;
}

.contact-item svg {
    color: var(--primary-color);
}

/* Scrollbar Styling for Sidebar */
.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
    line-height: 1.3;
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: 100px 0;
    position: relative;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    /* Safari */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1320px;
    margin: 0 auto;
    transition: var(--transition);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: 25px;
}

.lang-btn {
    padding: 6px 14px;
    background: transparent;
    border: none;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 8px;
    transition: var(--transition-fast);
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    opacity: 0.95;
}

.hero .btn {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Slider */
.slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slide {
    display: none;
    animation: fadeIn 0.8s ease-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.menu-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

.menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.menu-item:nth-child(5) {
    animation-delay: 0.5s;
}

.menu-item:nth-child(6) {
    animation-delay: 0.6s;
}

.menu-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.menu-item-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.15) rotate(2deg);
}

.menu-item-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.menu-item-content {
    padding: 24px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.menu-item-title {
    font-size: 1.375rem;
    color: var(--secondary-color);
    font-weight: 700;
    flex: 1;
}

.menu-item-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.menu-item-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.menu-item-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tag.vegan {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag.vegetarian {
    background: #fff3e0;
    color: #e65100;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.add-to-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 24px;
    font-size: 6rem;
    color: var(--primary-light);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--secondary-color);
}

.rating {
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

/* Footer */
.footer {
    background-image: url('../images/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-4px) rotate(5deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    animation: spin 1s linear infinite;
}

/* Footer Section - Updated */
.footer {
    background-image: url('../images/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left h2 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
}

.footer-middle h3,
.footer-right h3 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-middle p,
.footer-right p {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-right a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.social-icon:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    text-align: center;
    flex: 1;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-scroll-top {
    width: 50px;
    height: 50px;
    background: #e10000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-scroll-top:hover {
    background: #c20000;
    transform: translateY(-5px);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}


/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    animation: none;
}

.fade-in-up.animate {
    animation: fadeInUpScroll 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUpScroll {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Fade In Animation for Cards */
.fade-in {
    opacity: 0;
    transform: scale(0.95);
}

.fade-in.animate {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s ease-out;
}


/* Burgers Section */
.burgers-section {
    padding: 30px 0 80px;
    background: #fff;
}

.burgers-section h2 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2d3142;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.burgers-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}


/* Menu List Section */
.menu-list-section {
    background-image: url('../images/menu/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
    padding: 100px 0;
    position: relative;
}

.menu-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.menu-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.menu-list-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-list-header h2 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-list-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.menu-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    margin-bottom: 60px;
}

.menu-list-category h3 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.8rem;
    color: #f89628;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #f89628;
    padding-bottom: 10px;
}

.menu-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.menu-items-list li:hover {
    padding-left: 10px;
    background: rgba(248, 150, 40, 0.1);
}

.item-name {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.item-price {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.3rem;
    color: #f89628;
    font-weight: 600;
}

.menu-list-cta {
    text-align: center;
}

.menu-full-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #f89628;
    color: #ffffff;
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #f89628;
    transition: all 0.3s ease;
    text-decoration: none;
}

.menu-full-btn:hover {
    background: transparent;
    color: #f89628;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 150, 40, 0.3);
}

/* Menu Parallax Icons */
.menu-parallax-icon {
    position: absolute;
    width: 220px;
    height: 220px;
    opacity: 0.5;
    pointer-events: none;
    transition: transform 0.3s ease-out;
    z-index: 10;
}

.menu-parallax-icon svg,
.menu-parallax-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.menu-icon-top-left {
    top: 100px;
    left: 200px;
}

.menu-icon-top-right {
    top: 100px;
    right: 280px;
}

.menu-icon-bottom-left {
    bottom: 120px;
    left: 200px;
}

.menu-icon-bottom-right {
    bottom: 100px;
    right: 280px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-list-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-list-header h2 {
        font-size: 2rem;
    }

    .menu-parallax-icon {
        width: 80px;
        height: 80px;
        opacity: 0.1;
    }

    .menu-icon-top-left {
        top: 20px;
        left: 20px;
    }

    .menu-icon-top-right {
        top: 20px;
        right: 20px;
    }

    .menu-icon-bottom-left {
        bottom: 20px;
        left: 20px;
    }

    .menu-icon-bottom-right {
        bottom: 20px;
        right: 20px;
    }
}



/* ================================
   BACKDROP BLUR UTILITIES (Safari Compatible)
   ================================ */

/* Backdrop Blur - Standard */
.backdrop-blur {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

/* Backdrop Blur - 10px */
.backdrop-blur-\[10px\] {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

/* Backdrop Blur - 15px */
.backdrop-blur-\[15px\] {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}


/* ================================
   WIDTH STRETCH UTILITY (Edge Compatible)
   ================================ */

/* Width Stretch for Edge 79+ */
.w-stretch {
    width: -webkit-fill-available;
    /* Chrome/Safari */
    width: -moz-available;
    /* Firefox */
    width: stretch;
    /* Standard */
}

/* ================================
   CART EXTRAS STYLES
   ================================ */

/* Cart Page Extras */
.cart-item-extras {
    margin-top: 8px;
    padding-left: 12px;
    border-left: 2px solid var(--primary-color);
}

.cart-extra {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 4px 0;
    display: flex;
    align-items: center;
}

.cart-extra:before {
    content: '•';
    margin-right: 6px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Cart Popup Extras */
.cart-popup-extra {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 2px 0;
    padding-left: 8px;
}

.cart-popup-extra:before {
    content: '+';
    margin-right: 4px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Cart Item Total Column */
.cart-item-total {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    white-space: nowrap;
}