/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Firestone Napoli Color Palette */
    --primary-fire: #D4381A;
    --primary-ember: #C62828;
    --accent-flame: #FFA726;
    --stone-dark: #2C2416;
    --stone-medium: #4A3F35;
    --stone-light: #8B7355;
    --cream: #F5E6D3;
    --warm-white: #FFF8F0;
    --shadow: rgba(44, 36, 22, 0.3);
    
    /* Typography */
    --font-display: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Effects */
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--stone-dark);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--stone-dark);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-fire), var(--accent-flame));
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--stone-medium);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-hero,
.btn-submit {
    background: linear-gradient(135deg, var(--primary-fire), var(--primary-ember));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 56, 26, 0.4);
    transition: var(--transition);
}

.btn-primary:hover,
.btn-hero:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 56, 26, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-fire);
}

.btn-add {
    background: var(--stone-dark);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-add:hover {
    background: var(--primary-fire);
}

.btn-nav {
    background: var(--primary-fire);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-ember);
}

/* ==================== COOKIE NOTICE ==================== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--stone-dark);
    color: white;
    padding: var(--spacing-sm);
    z-index: 10000;
    box-shadow: 0 -4px 20px var(--shadow);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.cookie-link {
    color: var(--accent-flame);
    text-decoration: underline;
}

.cookie-link:hover {
    color: white;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 36, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-flame);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(44, 36, 22, 0.6), rgba(44, 36, 22, 0.4)), 
                url('https://images.unsplash.com/photo-1534308983496-4fabb1a015ee?w=1600&q=80') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: var(--spacing-xl) var(--spacing-sm);
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin-bottom: var(--spacing-lg);
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    width: 100%;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    color: var(--stone-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.feature-card p {
    color: var(--stone-medium);
}

/* ==================== MENU SECTION ==================== */
.menu {
    padding: var(--spacing-xl) 0;
    background: var(--warm-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.menu-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--primary-fire);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-item-content {
    padding: var(--spacing-md);
}

.menu-item-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--stone-dark);
    margin-bottom: 0.5rem;
}

.menu-item-content p {
    color: var(--stone-medium);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-sm);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-fire);
    font-family: var(--font-display);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: var(--spacing-md);
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    margin-left: 0;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--stone-medium);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-fire);
    margin-bottom: 0.25rem;
}

.stat p {
    font-size: 0.9rem;
    color: var(--stone-medium);
    margin: 0;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--stone-dark);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-title::after {
    background: linear-gradient(90deg, var(--accent-flame), var(--primary-fire));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-rating {
    color: var(--accent-flame);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--accent-flame);
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==================== ORDER SECTION ==================== */
.order {
    padding: var(--spacing-xl) 0;
    background: var(--warm-white);
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
}

.order-info {
    padding: var(--spacing-md);
}

.order-info .section-title {
    text-align: left;
}

.order-info .section-title::after {
    margin-left: 0;
}

.contact-details {
    margin: var(--spacing-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    background: white;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    color: var(--stone-dark);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--primary-fire);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin: 0;
    color: var(--stone-medium);
}

/* Order Summary */
.order-summary {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: var(--spacing-md);
}

.order-summary h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--stone-dark);
}

#orderItems {
    margin-bottom: var(--spacing-sm);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream);
}

.order-item:last-child {
    border-bottom: none;
}

.order-total {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--primary-fire);
    font-size: 1.3rem;
    text-align: right;
}

/* Order Form */
.order-form-container {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.order-form h3 {
    margin-bottom: var(--spacing-md);
    color: var(--stone-dark);
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--stone-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--cream);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-fire);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group a {
    color: var(--primary-fire);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: var(--spacing-sm);
    font-size: 1.2rem;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--stone-medium);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

.form-message {
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.form-message h3 {
    margin-bottom: var(--spacing-sm);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--stone-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.footer-col h4 {
    color: var(--accent-flame);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-display);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--accent-flame);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--stone-dark);
        flex-direction: column;
        padding: var(--spacing-md);
        align-items: flex-start;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero {
        margin-top: 70px;
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
    }

    .about-grid,
    .order-grid {
        grid-template-columns: 1fr;
    }

    .about-grid > * {
        min-width: unset;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .order-grid,
    .about-grid {
        gap: var(--spacing-sm);
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==================== ACCESSIBILITY ==================== */
:focus-visible {
    outline: 3px solid var(--accent-flame);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.step-card {
    background: var(--warm-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--cream);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-flame);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-fire), var(--primary-ember));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 56, 26, 0.4);
}

.step-icon {
    font-size: 3.5rem;
    margin: var(--spacing-sm) 0;
}

.step-card h3 {
    font-family: var(--font-display);
    color: var(--stone-dark);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.step-card p {
    color: var(--stone-medium);
    line-height: 1.6;
}

/* ==================== SPECIAL OFFERS SECTION ==================== */
.special-offers {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.offer-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.offer-card.featured {
    border: 3px solid var(--primary-fire);
}

.offer-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--primary-fire);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.offer-image {
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: var(--spacing-md);
}

.offer-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--stone-dark);
    margin-bottom: 0.5rem;
}

.offer-description {
    color: var(--stone-medium);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--stone-light);
    font-size: 1.1rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-fire);
    font-family: var(--font-display);
}

.offer-save {
    color: #28a745;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.offer-note {
    background: white;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px dashed var(--accent-flame);
}

.offer-note p {
    margin: 0;
    color: var(--stone-medium);
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--stone-dark);
    color: white;
}

.gallery .section-title {
    color: white;
}

.gallery .section-title::after {
    background: linear-gradient(90deg, var(--accent-flame), var(--primary-fire));
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 300px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 36, 22, 0.95), transparent);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: white;
}

.gallery-overlay p {
    color: var(--accent-flame);
    font-size: 0.95rem;
    margin: 0;
}

/* ==================== DELIVERY ZONES SECTION ==================== */
.delivery-zones {
    padding: var(--spacing-xl) 0;
    background: var(--warm-white);
}

.zones-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    align-items: start;
}

.zones-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.zones-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.delivery-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: rgba(212, 56, 26, 0.95);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.delivery-badge span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.delivery-badge span:last-child {
    font-size: 0.85rem;
    opacity: 0.9;
}

.zones-list h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--stone-dark);
    margin-bottom: var(--spacing-sm);
}

.zones-list > p {
    color: var(--stone-medium);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.zone-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.zone-item {
    display: flex;
    gap: var(--spacing-sm);
    background: white;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.zone-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.zone-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-fire), var(--primary-ember));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.zone-info h4 {
    color: var(--stone-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.zone-info p {
    color: var(--stone-medium);
    font-size: 0.9rem;
    margin: 0;
}

.zone-note {
    background: var(--cream);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-fire);
}

.zone-note p {
    margin: 0;
    color: var(--stone-medium);
    line-height: 1.6;
}

.zone-note a {
    color: var(--primary-fire);
    font-weight: 600;
    text-decoration: underline;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: var(--spacing-xl) 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: 600;
    color: var(--stone-dark);
    font-size: 1.05rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--cream);
    color: var(--primary-fire);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-fire);
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-sm);
}

.faq-answer p {
    color: var(--stone-medium);
    line-height: 1.8;
    margin: 0;
}

.faq-contact {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--cream);
    border-radius: var(--border-radius);
}

.faq-contact p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--stone-dark);
}

.faq-contact a {
    color: var(--primary-fire);
    font-weight: 600;
    text-decoration: underline;
}

.faq-contact a:hover {
    color: var(--primary-ember);
}

/* ==================== ADDITIONAL RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .zones-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .offer-content {
        padding: var(--spacing-sm);
    }
    
    .new-price {
        font-size: 1.6rem;
    }
    
    .gallery-item {
        height: 250px;
    }
}

