/* 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 {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 40, 40, 0.07);
    border-radius: 16px;
    transition: background 0.25s ease;
}

.benefit-icon .icon {
    width: 36px;
    height: 36px;
    color: #1f2937;
    transition: color 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(198, 40, 40, 0.14);
}

.benefit-card:hover .icon {
    color: var(--accent-gold);
    transform: scale(1.12);
}

.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 span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.chip-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: inherit;
    transition: color 0.2s ease;
}

.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 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.wa-icon svg {
    width: 2rem;
    height: 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;
    }
}

/* ─── Nav Brand as link ─────────────────────────────────────────────────── */
a.nav-brand {
    text-decoration: none;
}

/* ─── Active nav link ───────────────────────────────────────────────────── */
.nav-links a.active {
    color: var(--primary-orange);
}
.nav-links a.active::after {
    width: 100%;
}

/* ─── Hamburger button ──────────────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero two-button layout ────────────────────────────────────────────── */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
}

.hero-cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

/* ─── Section eyebrow label ─────────────────────────────────────────────── */
.section-eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
}

/* ─── Footer logo + multi-column ────────────────────────────────────────── */
.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent-gold); }

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.footer-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--primary-orange);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-col p a {
    color: rgba(255,255,255,0.7);
}

/* ─── Page Header (menu.html, about.html) ───────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    padding: 7rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.85;
}

.menu-page {
    padding-top: 3rem;
}

/* ─── Category Showcase (home) ──────────────────────────────────────────── */
.categories-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.categories-section .section-subtitle a {
    color: var(--primary-orange);
    font-weight: 600;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.category-card-icon {
    margin-bottom: 0.6rem;
}
.category-card-icon svg {
    width: 26px;
    height: 26px;
    color: rgba(255,255,255,0.9);
    transition: transform 0.25s ease;
}
.category-card:hover .category-card-icon svg {
    color: var(--accent-gold);
    transform: scale(1.15);
}

.category-overlay h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.category-overlay span {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ─── Featured Deals (home) ─────────────────────────────────────────────── */
.deals-section {
    padding: 5rem 0;
    background: white;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.deal-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.deal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-orange);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.deal-image {
    height: 200px;
    overflow: hidden;
}

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

.deal-card:hover .deal-image img {
    transform: scale(1.06);
}

.deal-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.deal-info h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.deal-info p {
    font-size: 0.88rem;
    color: var(--gray);
    flex: 1;
    margin-bottom: 1rem;
}

.deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

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

.deal-btn {
    background: var(--primary-orange);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.deal-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.deals-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-orange);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(198,40,40,0.35);
}

/* ─── About Teaser (home) ───────────────────────────────────────────────── */
.about-teaser {
    padding: 5rem 0;
    background: var(--light-gray);
}

.about-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-teaser-text .section-eyebrow {
    text-align: left;
}

.about-teaser-text h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-teaser-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-teaser-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.about-teaser-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.about-teaser-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ─── About page ────────────────────────────────────────────────────────── */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text .section-eyebrow {
    text-align: left;
}

.about-story-text h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 450px;
}

/* Values section */
.values-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.values-section .section-eyebrow { text-align: center; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(198, 40, 40, 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}
.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-orange);
    transition: color 0.25s ease, transform 0.25s ease;
}
.value-card:hover .value-icon {
    background: rgba(198, 40, 40, 0.14);
}
.value-card:hover .value-icon svg {
    color: var(--accent-gold);
    transform: scale(1.12);
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

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

/* About gallery */
.about-gallery-section {
    padding: 5rem 0;
    background: white;
}

.about-gallery-section .section-eyebrow { text-align: center; }

.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-top: 2.5rem;
}

.about-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.about-gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: unset;
}

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

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

.about-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-gallery-item:hover .about-gallery-caption {
    opacity: 1;
}

/* Offerings grid */
.about-menu-preview {
    padding: 5rem 0;
    background: var(--cream);
}

.about-menu-preview .section-eyebrow { text-align: center; }

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.offering-item {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.offering-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(198, 40, 40, 0.07);
    border-radius: 14px;
    transition: background 0.25s ease;
}
.offering-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-orange);
    transition: color 0.25s ease, transform 0.25s ease;
}
.offering-item:hover .offering-icon {
    background: rgba(198, 40, 40, 0.14);
}
.offering-item:hover .offering-icon svg {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.offering-item h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.offering-item p {
    font-size: 0.93rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.offering-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.offering-link:hover {
    color: var(--dark-orange);
}

/* Contact section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-section .section-eyebrow { text-align: center; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2.5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
    width: 44px;
    height: 44px;
    background: rgba(198, 40, 40, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-orange);
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.97rem;
}

.contact-wa-btn {
    margin-top: 0.5rem;
}

.map-embed {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.map-open-btn {
    display: inline-block;
    text-align: center;
}

.map-placeholder {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed #ddd;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.map-pin-icon {
    width: 56px;
    height: 56px;
    background: rgba(198, 40, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.map-pin-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-orange);
}

.map-placeholder h3 {
    font-size: 1.4rem;
    font-weight: 800;
}

.map-placeholder p {
    color: var(--gray);
    font-size: 0.97rem;
}

.map-link-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 1.8rem;
    background: var(--primary-orange);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.map-link-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

/* ─── Responsive — hamburger + multi-page ───────────────────────────────── */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        border-top: 2px solid var(--primary-orange);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
        color: var(--dark);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--light-gray);
        color: var(--primary-orange);
    }

    .nav-links a::after {
        display: none;
    }

    /* Shrink logo on mobile so navbar doesn't take up the whole screen */
    .logo-icon {
        width: 56px;
        height: 56px;
    }

    .hero {
        margin-top: 56px;
    }

    .page-header {
        padding-top: 5rem;
    }

    /* Page header */
    .page-header h1 { font-size: 2rem; }

    /* Category grid: 2 cols */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Deals: 2 cols */
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About teaser */
    .about-teaser-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Values grid: 2 cols */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Offerings: 2 cols */
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About story */
    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* About gallery */
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gallery-item.large {
        grid-column: span 2;
    }

    /* Hero actions */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Footer content: 2 cols */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

    /* Category grid: 2 cols */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Deals: 2 cols */
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About teaser */
    .about-teaser-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Values grid: 2 cols */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Offerings: 2 cols */
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About story */
    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* About gallery */
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gallery-item.large {
        grid-column: span 2;
    }

    /* Hero actions */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Footer content: 2 cols */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ===== FLOATING ORDER NOW SIDE BUTTON ===== */
.order-side-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 0.55rem;
    border-radius: 10px 0 0 10px;
    text-decoration: none;
    z-index: 998;
    box-shadow: -3px 0 18px rgba(198, 40, 40, 0.35);
    transition: transform 0.25s ease, background 0.2s;
}
.order-side-btn:hover {
    background: #b71c1c;
    transform: translateY(-50%) translateX(-5px);
}
.order-side-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.order-side-icon svg {
    width: 20px;
    height: 20px;
}
.order-side-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .order-side-btn {
        right: 1rem;
        top: auto;
        bottom: 5rem;
        transform: none;
        border-radius: 50px;
        flex-direction: row;
        padding: 0.8rem 1.2rem;
        gap: 0.45rem;
        box-shadow: 0 4px 18px rgba(198, 40, 40, 0.45);
    }
    .order-side-btn:hover {
        transform: translateY(-3px);
    }
    .order-side-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .page-header { padding: 5rem 0 2rem; }
    .page-header h1 { font-size: 1.7rem; }

    .about-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .about-gallery-item.large {
        grid-column: span 2;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

