/* Modern Restaurant Website - Image Focused Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #C62828;
    --dark-orange: #8B1A1A;
    --light-orange: #E53935;
    --accent-gold: #FFC107;
    --cream: #FFF8E1;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f5f5;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/lighting logo.JPG');
    background-repeat: repeat;
    background-size: 200px;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0;
}

.brand-text p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .admin-link {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links .admin-link::after {
    display: none;
}

.nav-links .admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(198, 40, 40, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 90vh;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.88), rgba(139, 26, 26, 0.92)),
                url('/images/food...jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('/images/lighting logo.JPG');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, transparent, rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.95);
    color: #1a1a1a;
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3.5rem;
    background: var(--accent-gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta small {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.3rem;
    opacity: 0.8;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* ============ IMAGE SLIDER SECTION ============ */
.slider-section {
    padding: 6rem 0;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('/images/lighting logo.JPG');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    animation: rotateLogo 60s linear infinite;
}

@keyframes rotateLogo {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 24px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 600px;
    position: relative;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15) translate(20px, -10px);
    }
    100% {
        transform: scale(1);
    }
}

.slide.active img {
    animation: kenBurns 20s ease-in-out infinite;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: var(--white);
}

.slide-overlay h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.slide-overlay p {
    font-size: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    transition: color 0.3s ease;
}

.slider-btn:hover span {
    color: var(--white);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: var(--light-orange);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-orange);
    width: 40px;
    border-radius: 6px;
}

/* ============ BENEFITS SECTION ============ */
.benefits-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/lighting logo.JPG');
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: right top;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Featured Section */
.featured-section {
    padding: 6rem 0;
    background: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    position: relative;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.large {
    grid-column: span 2;
    height: 450px;
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover img {
    transform: scale(1.1);
}

.feature-card:hover .feature-overlay {
    transform: translateY(0);
}

.feature-overlay h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feature-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/lighting logo.JPG');
    background-repeat: no-repeat;
    background-size: 350px;
    background-position: left bottom;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 1rem 2rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
}

.filter-chip:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.filter-chip.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.3);
}

.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.menu-item-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.item-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: shimmer 1.4s infinite linear;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.item-image-wrapper.loaded::before {
    opacity: 0;
    pointer-events: none;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease, opacity 0.3s ease;
    position: relative;
    z-index: 1;
    opacity: 0;
}

.item-image.loaded {
    opacity: 1;
}

.menu-item-card:hover .item-image {
    transform: scale(1.08);
}

.item-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.item-details {
    padding: 1.5rem;
}

.item-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.item-description {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-orange);
}

.add-to-order-btn {
    padding: 0.8rem 1.8rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-order-btn:hover {
    background: var(--accent-gold);
    color: var(--dark);
    transform: scale(1.05);
}

.unavailable-badge {
    background: #e74c3c;
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 4rem;
    grid-column: 1 / -1;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--light-gray);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Order Section */
.order-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.step-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-orange);
    transition: stroke 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.step-card:hover .step-icon svg {
    stroke: var(--accent-gold);
}

.step-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
    line-height: 1.6;
}

.whatsapp-action {
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.wa-icon {
    font-size: 2rem;
}

.wa-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-text small {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('/images/lighting logo.JPG');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background-image: url('/images/lighting logo.JPG');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-brand p,
.footer-info p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-info h4,
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* ============ CART FAB ============ */
.cart-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.45);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: fixed;
}
.cart-fab:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(198, 40, 40, 0.5); }

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #C62828;
    color: var(--white);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    font-weight: 900;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}
.cart-badge.visible { display: flex; }

/* ============ CART PANEL ============ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
    position: fixed;
    top: 0;
    right: -440px;
    width: 420px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: -8px 0 40px rgba(0,0,0,0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.cart-panel.open { right: 0; }

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}
.cart-header h3 { font-size: 1.4rem; font-weight: 900; color: var(--dark); }
.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
}
.cart-close-btn:hover { color: var(--dark); }

.cart-items-list { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.cart-item-name { flex: 1; font-weight: 700; font-size: 0.95rem; }
.cart-item-price { color: var(--primary-orange); font-weight: 900; font-size: 1rem; min-width: 54px; text-align: right; }

.qty-btn {
    background: var(--light-gray);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s;
}
.qty-btn:hover { background: var(--primary-orange); color: var(--white); }
.qty-value { font-weight: 800; min-width: 24px; text-align: center; }

.remove-item-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.2rem;
}

.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--gray); font-size: 1.1rem; }

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid #eee;
    background: var(--white);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--dark);
}
.cart-total span:last-child { color: var(--primary-orange); }

.cart-checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}
.cart-checkout-btn:hover { background: var(--dark-orange); transform: translateY(-2px); }
.cart-checkout-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; }

/* ============ CHECKOUT MODAL ============ */
.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1rem;
}
.checkout-modal-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.checkout-modal-overlay.open .checkout-modal { transform: scale(1); }
.checkout-modal h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 1.5rem; color: var(--dark); }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); font-size: 0.95rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-orange); }

.order-type-label { font-weight: 700; margin-bottom: 0.8rem; color: var(--dark); font-size: 0.95rem; }
.order-type-options { display: flex; gap: 1rem; margin-bottom: 1.2rem; }
.order-type-option {
    flex: 1;
    padding: 1rem 0.8rem;
    border: 2px solid #eee;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    background: var(--white);
}
.order-type-option.selected { border-color: var(--primary-orange); background: var(--cream); }
.order-type-option .ot-icon { font-size: 2rem; margin-bottom: 0.4rem; }
.order-type-option .ot-label { font-weight: 700; font-size: 0.88rem; color: var(--dark); }

.order-summary-box {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    max-height: 140px;
    overflow-y: auto;
}
.order-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid #eee;
}
.order-summary-item:last-child { border-bottom: none; }
.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: var(--dark);
}
.checkout-total span:last-child { color: var(--primary-orange); }

.confirm-order-btn {
    width: 100%;
    padding: 1.1rem;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.confirm-order-btn:hover { background: #1ea855; transform: translateY(-2px); }
.cancel-checkout-btn {
    width: 100%;
    padding: 0.8rem;
    background: none;
    color: var(--gray);
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    margin-top: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}
.cancel-checkout-btn:hover { border-color: #ccc; color: var(--dark); }

/* ============ ADD FEEDBACK ============ */
.added-toast {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    background: var(--dark);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 5000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.added-toast.show { opacity: 1; transform: translateY(0); }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card.large {
        grid-column: span 1;
    }
    
    .menu-gallery {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Slider responsive */
    .slide {
        height: 400px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn span {
        font-size: 1.8rem;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .slide-overlay {
        padding: 2rem;
    }
    
    .slide-overlay h3 {
        font-size: 1.8rem;
    }
    
    .slide-overlay p {
        font-size: 1rem;
    }
}
