/*
Theme Name: Crave Smash
Theme URI: https://cravesmash.it
Author: Crave Smash
Author URI: https://cravesmash.it
Description: Tema WordPress personalizzato per Crave Smash - Smash Burger Catanzaro Lido. Design moderno ispirato a Five Guys e Shake Shack con palette colori giallo, rosso, bianco e nero.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crave-smash
Tags: restaurant, food, custom-menu, custom-logo, featured-images

Crave Smash WordPress Theme - Smash Burger Catanzaro Lido
*/

/* ========================================
   CSS Variables & Base Styles
   ======================================== */
   :root {
    --brand-yellow: #FFD700;
    --brand-red: #E31837;
    --brand-black: #0A0A0A;
    --brand-white: #FFFFFF;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Bebas Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--brand-white);
    color: var(--brand-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */
.font-heading {
    font-family: var(--font-heading);
}

.font-accent {
    font-family: var(--font-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

.section-padding {
    padding: 64px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 96px 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 128px 0;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
}

.btn-primary:hover {
    background-color: var(--brand-red);
    color: var(--brand-white);
}

.btn-secondary {
    background-color: var(--brand-black);
    color: var(--brand-white);
}

.btn-secondary:hover {
    background-color: #333333;
}

.btn-white {
    background-color: var(--brand-white);
    color: var(--brand-black);
}

.btn-white:hover {
    background-color: var(--brand-yellow);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--brand-white);
}

.btn-whatsapp:hover {
    background-color: #20BD5A;
}

.btn-glovo {
    background-color: #FFC244;
    color: var(--brand-black);
}

.btn-glovo:hover {
    background-color: #FFD366;
}

.btn-deliveroo {
    background-color: #00CCBC;
    color: var(--brand-white);
}

.btn-deliveroo:hover {
    background-color: #00B3A6;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 17px;
}

@media (min-width: 768px) {
    .btn-lg {
        padding: 24px 40px;
        font-size: 18px;
    }

    .btn-xl {
        padding: 32px 48px;
        font-size: 20px;
    }
}

/* ========================================
   Navigation
   ======================================== */
.site-header {
    position: fixed;
    /* top: 0; */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: var(--brand-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

.site-logo img {
    height: 72px;
    width: auto;
    background: transparent;
}

@media (min-width: 768px) {
    .nav-container {
        height: 120px;
    }

    .site-logo img {
        height: 104px;
    }
}

.footer-brand img {
    height: 180px;
    width: auto;
    margin-bottom: 16px;
    background: transparent;
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    color: var(--brand-white);
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-link {
    color: var(--brand-black);
}

.nav-link:hover {
    color: var(--brand-yellow);
}

.site-header.scrolled .nav-link:hover {
    color: var(--brand-red);
}

.nav-link.active {
    color: var(--brand-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}

.nav-social {
    color: var(--brand-white);
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-social {
    color: var(--brand-black);
}

.nav-social:hover {
    color: var(--brand-yellow);
}

.site-header.scrolled .nav-social:hover {
    color: var(--brand-red);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--brand-white);
}

.site-header.scrolled .mobile-menu-toggle {
    color: var(--brand-black);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--brand-black);
    padding: 32px;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--brand-white);
    cursor: pointer;
}

.mobile-nav-links {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 24px;
    text-transform: uppercase;
    color: var(--brand-white);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--brand-yellow);
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 32px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-overlay.active {
    display: block;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Bottone posizionato nello spazio vuoto dell'immagine (in basso a sinistra) */
.hero-content {
    position: absolute;
    left: 4%;
    top: 85%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: left;
}

/* Su mobile il testo dentro l'immagine è illeggibile: hero più alta
   ancorata sul burger + messaggio come testo HTML sopra un gradiente */
@media (max-width: 767px) {
    .hero-section {
        aspect-ratio: auto;
        min-height: 78vh;
        background-position: 68% center;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.1) 100%);
    }

    .hero-content {
        left: 0;
        right: 0;
        top: auto;
        bottom: 96px;
        transform: none;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 0 0 24px;
    }
}

/* Su desktop il messaggio è già dentro l'immagine */
@media (min-width: 768px) {
    .hero-section .hero-title,
    .hero-section .hero-subtitle {
        display: none;
    }
}

.hero-title {
    font-size: 48px;
    color: var(--brand-white);
    margin-bottom: 24px;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--brand-yellow);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 60px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 96px;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: #e5e5e5;
    max-width: 640px;
    margin: 0 auto 40px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 24px;
    height: 40px;
    border: 2px solid var(--brand-white);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
}

.scroll-indicator-dot {
    width: 6px;
    height: 12px;
    background-color: var(--brand-white);
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================================
   Marquee Strip
   ======================================== */
.marquee-strip {
    background-color: var(--brand-yellow);
    padding: 12px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-black);
    margin-right: 16px;
}

@media (min-width: 768px) {
    .marquee-text {
        font-size: 20px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 64px;
    }
}

.section-label {
    font-family: var(--font-accent);
    font-size: 18px;
    letter-spacing: 0.2em;
    color: var(--brand-red);
}

.section-title {
    font-size: 36px;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 60px;
    }
}

/* ========================================
   Menu Cards
   ======================================== */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    background-color: var(--brand-white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-yellow);
}

.menu-card.featured {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .menu-card.featured {
        grid-column: span 2;
    }
}

.menu-card-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .menu-card-image {
        height: 224px;
    }
}

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

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

.menu-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--brand-red);
    color: var(--brand-white);
    padding: 4px 16px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.menu-card-content {
    padding: 24px;
}

.menu-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.menu-card-title {
    font-size: 20px;
}

@media (min-width: 768px) {
    .menu-card-title {
        font-size: 24px;
    }
}

.menu-card-price {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--brand-red);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .menu-card-price {
        font-size: 24px;
    }
}

.menu-card-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .menu-card-description {
        font-size: 16px;
    }
}

/* ========================================
   Why Choose Us
   ======================================== */
.why-section {
    background-color: var(--brand-black);
    color: var(--brand-white);
}

.why-section .section-label {
    color: var(--brand-yellow);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

.why-card {
    text-align: center;
    padding: 32px;
    border: 1px solid #333333;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.why-card:hover {
    border-color: var(--brand-yellow);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1);
}

.why-card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--brand-black);
}

.why-card-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.why-card-description {
    color: #999999;
    line-height: 1.6;
}

/* ========================================
   Category Cards
   ======================================== */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.category-card {
    position: relative;
    height: 256px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

@media (min-width: 768px) {
    .category-card {
        height: 320px;
    }
}

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

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.category-card-title {
    font-size: 24px;
    color: var(--brand-white);
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .category-card-title {
        font-size: 30px;
    }
}

.category-card-count {
    color: var(--brand-yellow);
    font-weight: 500;
}

/* ========================================
   Instagram Section
   ======================================== */
.instagram-section {
    text-align: center;
}

.instagram-handle {
    font-size: 36px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .instagram-handle {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .instagram-handle {
        font-size: 60px;
    }
}

.instagram-description {
    color: #666666;
    max-width: 576px;
    margin: 0 auto 32px;
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--brand-white);
}

.btn-instagram:hover {
    opacity: 0.9;
}

/* ========================================
   Location Section
   ======================================== */
.location-section {
    background-color: var(--brand-black);
    color: var(--brand-white);
}

.location-section .section-label {
    color: var(--brand-yellow);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.location-info p {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.location-item:hover {
    color: var(--brand-yellow);
}

.location-item-icon {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--brand-yellow);
}

.location-item-title {
    font-weight: 600;
    color: var(--brand-white);
    font-size: 18px;
}

.location-item .text-red {
    color: var(--brand-red);
}

.location-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--brand-yellow);
}

@media (min-width: 768px) {
    .location-map {
        height: 500px;
    }
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background-color: var(--brand-black);
    color: var(--brand-white);
    padding: 64px 0;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 96px 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand img {
    height: 180px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 24px;
    color: var(--brand-yellow);
    letter-spacing: 0.1em;
}

.footer-title {
    font-size: 20px;
    color: var(--brand-yellow);
    margin-bottom: 24px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--brand-yellow);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--brand-yellow);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-hours .text-red {
    color: var(--brand-red);
    font-weight: 600;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--brand-white);
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: var(--brand-yellow);
}

.footer-bottom {
    border-top: 1px solid #333333;
    margin-top: 48px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #999999;
    font-size: 14px;
}

/* ========================================
   Page Hero (Internal Pages)
   ======================================== */
.page-hero {
    position: relative;
    width: 100%;
    /* stesse proporzioni delle illustrazioni: così il cartoon si vede
       per intero a tutta larghezza, come la hero della home */
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-black);
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    /* niente più padding gigante: l'altezza la detta l'aspect-ratio della hero */
    padding: 32px 16px;
}

.page-hero-label {
    font-family: var(--font-accent);
    font-size: 18px;
    letter-spacing: 0.2em;
    color: var(--brand-yellow);
}

.page-hero-title {
    font-size: 48px;
    color: var(--brand-white);
    margin-top: 8px;
}

@media (min-width: 640px) {
    .page-hero-title {
        font-size: 60px;
    }
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 72px;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 96px;
    }
}

.page-hero-subtitle {
    color: #cccccc;
    font-size: 18px;
    max-width: 576px;
    margin: 16px auto 0;
}

.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* cover: l'illustrazione orizzontale riempie tutta la larghezza della hero;
       l'eventuale eccedenza viene tagliata sopra e sotto, mai ai lati */
    object-fit: cover;
}

/* ========================================
   Menu Page
   ======================================== */
.delivery-banner {
    background-color: #FFC244;
    padding: 16px 0;
}

.delivery-banner a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 16px;
    color: var(--brand-black);
    transition: opacity 0.3s ease;
}

.delivery-banner a svg {
    flex-shrink: 0;
}

.delivery-banner a:hover {
    opacity: 0.8;
}

.delivery-banner--deliveroo {
    background-color: #00CCBC;
}

.delivery-banner--deliveroo .delivery-banner-text {
    color: var(--brand-white);
}

.delivery-banner-text {
    font-weight: 700;
    font-size: 18px;
}

.delivery-banner-badge {
    background-color: var(--brand-black);
    color: var(--brand-white);
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .delivery-banner-text {
        font-size: 15px;
    }
}

.order-instructions {
    background-color: var(--brand-black);
    color: var(--brand-white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 48px;
}

.order-instructions h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .order-instructions h2 {
        font-size: 30px;
    }
}

.order-instructions p {
    color: #cccccc;
}

.order-instructions .highlight {
    color: var(--brand-yellow);
}

.menu-section {
    margin-bottom: 48px;
}

.menu-section-card {
    background-color: var(--brand-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .menu-section-card {
        padding: 32px;
    }
}

.menu-section-card.highlight {
    background-color: rgba(255, 215, 0, 0.1);
}

.menu-section-card.red-highlight {
    background-color: rgba(227, 24, 55, 0.05);
}

.menu-section-title {
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 4px solid var(--brand-yellow);
}

@media (min-width: 768px) {
    .menu-section-title {
        font-size: 30px;
    }
}

.menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #fafafa;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 8px;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--brand-black);
    transition: color 0.3s ease;
}

.menu-item:hover .menu-item-name {
    color: var(--brand-red);
}

.menu-item-description {
    color: #666666;
    font-size: 14px;
    margin-top: 4px;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--brand-red);
    white-space: nowrap;
}

.menu-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .menu-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-cta {
    background-color: var(--brand-black);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .menu-cta {
        padding: 48px;
    }
}

.menu-cta h3 {
    font-size: 30px;
    color: var(--brand-white);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .menu-cta h3 {
        font-size: 36px;
    }
}

.menu-cta p {
    color: #cccccc;
    margin-bottom: 24px;
}

.menu-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .menu-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   Menu — Varianti burger (Singolo/Doppio/Triplo)
   ======================================== */
.menu-item--variants {
    flex-direction: column;
    align-items: stretch;
}

@media (min-width: 640px) {
    .menu-item--variants {
        flex-direction: row;
        align-items: center;
    }
}

.menu-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}

.variant-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 78px;
    padding: 8px 12px;
    border: 2px solid var(--brand-yellow);
    border-radius: 10px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.1;
}

.variant-btn:hover {
    background-color: var(--brand-yellow);
    transform: translateY(-2px);
}

.variant-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #666666;
}

.variant-price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--brand-red);
}

.variant-btn:hover .variant-label,
.variant-btn:hover .variant-price {
    color: var(--brand-black);
}

/* ========================================
   Menu — New Special card
   ======================================== */
.special-card,
.combo-card {
    position: relative;
}

.special-badge,
.combo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--brand-red);
    color: var(--brand-white);
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

.combo-badge {
    background-color: var(--brand-black);
    color: var(--brand-yellow);
}

/* ========================================
   Menu — Combo (+4)
   ======================================== */
.combo-desc {
    color: #555555;
    margin-bottom: 16px;
}

.combo-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
}

.combo-list li {
    background-color: var(--brand-white);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 14px;
    color: var(--brand-black);
}

.combo-extra {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}

.combo-extra-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--brand-black);
    margin-right: 4px;
}

/* ========================================
   Menu — Loaded Fries (3 colonne)
   ======================================== */
.menu-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .menu-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.loaded-col .menu-item {
    padding: 12px 0;
}

/* ========================================
   About Page
   ======================================== */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-image-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    padding: 24px;
    border-radius: 12px;
    display: none;
}

@media (min-width: 768px) {
    .about-image-badge {
        display: block;
    }
}

.about-image-badge .year {
    font-family: var(--font-heading);
    font-size: 36px;
}

.about-image-badge .location {
    font-family: var(--font-accent);
    font-size: 18px;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--brand-black);
}

.about-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-black);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 24px;
    border: 1px solid #333333;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: var(--brand-yellow);
}

.value-card-icon {
    width: 64px;
    height: 64px;
    background-color: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-card-icon {
    transform: scale(1.1);
}

.value-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brand-black);
}

.value-card-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.value-card-description {
    color: #999999;
    font-size: 14px;
}

.technique-section {
    background-color: #f5f5f5;
}

.technique-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.technique-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.technique-card {
    background-color: var(--brand-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .technique-card {
        padding: 48px;
    }
}

.technique-card p {
    color: #555555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.technique-card p strong {
    color: var(--brand-black);
}

.technique-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-black);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-cta {
    text-align: center;
    margin-bottom: 64px;
}

.contact-cta h2 {
    font-size: 30px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .contact-cta h2 {
        font-size: 36px;
    }
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .contact-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background-color: #f5f5f5;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 32px;
    }
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-yellow);
}

.contact-card.whatsapp {
    background-color: #25D366;
}

.contact-card.instagram {
    background-color: var(--brand-black);
}

.contact-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background-color: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card.whatsapp .contact-card-icon,
.contact-card.instagram .contact-card-icon {
    background-color: var(--brand-white);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--brand-black);
}

.contact-card.whatsapp .contact-card-icon svg {
    color: #25D366;
}

.contact-card-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-card.whatsapp .contact-card-title,
.contact-card.instagram .contact-card-title {
    color: var(--brand-white);
}

.contact-card-text {
    color: #555555;
}

.contact-card.whatsapp .contact-card-text {
    color: rgba(255, 255, 255, 0.8);
}

.contact-card.instagram .contact-card-text {
    color: #999999;
}

.contact-card-link {
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card-link:hover {
    color: var(--brand-red);
}

.contact-card.whatsapp .contact-card-link {
    color: var(--brand-white);
}

.contact-card.whatsapp .contact-card-link:hover {
    color: #f0f0f0;
}

.contact-card.instagram .contact-card-link {
    color: var(--brand-yellow);
}

.contact-card.instagram .contact-card-link:hover {
    color: var(--brand-white);
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.contact-hours-day {
    color: #555555;
    font-weight: 500;
}

.contact-hours-time {
    color: var(--brand-black);
    font-weight: 600;
}

.contact-hours-time.closed {
    color: var(--brand-red);
}

.contact-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--brand-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .contact-map {
        height: 100%;
        min-height: 500px;
    }
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-bottom-cta {
    background-color: var(--brand-red);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .contact-bottom-cta {
        padding: 48px;
    }
}

.contact-bottom-cta h3 {
    font-size: 30px;
    color: var(--brand-white);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .contact-bottom-cta h3 {
        font-size: 36px;
    }
}

.contact-bottom-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 24px;
}

.contact-bottom-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .contact-bottom-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.floating-whatsapp-btn {
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.floating-whatsapp-btn:hover {
    background-color: #20BD5A;
    transform: scale(1.1);
}

.floating-whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: var(--brand-white);
}

.floating-whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background-color: var(--brand-white);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-black);
}

.floating-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background-color: var(--brand-white);
    transform: rotate(45deg);
}

/* ========================================
   Utilities
   ======================================== */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 32px;
}

.mt-12 {
    margin-top: 48px;
}

.mb-0 {
    margin-bottom: 0;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md-block {
        display: block;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-red);
}

/* ========================================
   Gallery Grid (About Page)
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .gallery-item img {
        height: 400px;
    }
}

/* ========================================
   Menu Item Actions (Add to Cart)
   ======================================== */
.menu-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Su mobile le righe con bottone Personalizza/Componi non ci stanno
   affiancate: info a tutta larghezza, prezzo e bottone su riga sotto */
@media (max-width: 639px) {
    .menu-item--configurable {
        flex-direction: column;
        gap: 12px;
    }

    .menu-item--configurable .menu-item-actions {
        width: 100%;
        justify-content: space-between;
    }
}

.add-to-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--brand-yellow);
    background-color: var(--brand-yellow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.add-to-cart-btn:hover {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
}

.add-to-cart-btn svg {
    color: var(--brand-white);
    transition: color 0.3s ease;
}

.add-to-cart-btn:hover svg {
    color: var(--brand-black);
}

/* ========================================
   Cart Button (Header)
   ======================================== */
.cart-button {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--brand-white);
    transition: color 0.3s ease;
}

.site-header.scrolled .cart-button {
    color: var(--brand-black);
}

.cart-button:hover {
    color: var(--brand-yellow);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: var(--brand-red);
    color: var(--brand-white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .mobile-nav-buttons {
        display: none;
    }
}

/* ========================================
   Page Content (default page template)
   ======================================== */
.page-content {
    max-width: 768px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content h2, .page-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--brand-black);
}

/* Selection */
::selection {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
}
