/* =========================================================================
   1. VARIABILI E IMPOSTAZIONI GLOBALI
   Qui definiamo i colori principali, i font e i reset di base del sito.
   Le variabili css (--nome-variabile) rendono facile cambiare i colori ovunque.
========================================================================= */
:root {
    --bg-color: #f4f7fa; 
    --surface-color: #ffffff; 
    --surface-hover: #f0f4f8;
    --primary-color: #275d9c; 
    --primary-dark: #1d4575;
    --secondary-color: #275d9c; 
    --text-color: #2c3e50; 
    --text-light: #607d8b; 
    --white: #ffffff;
    --border-color: #dce4ec;
    --action-color: #0b7285; /* Un blu più scuro contrastante se necessario */
    --shadow: 0 8px 25px rgba(39, 93, 156, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { 
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

.hidden { display: none !important; }

/* =========================================================================
   2. NAVBAR E HEADER (Menu Superiore)
   Stili per la barra di navigazione che rimane fissa in alto (sticky).
   Gestisce anche l'icona "hamburger" e l'animazione quando l'utente scorre.
========================================================================= */
.top-nav {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 10px 0;
}

.top-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand-logo-white {
    width: 90px;
    height: 90px;
    display: block;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.nav-brand-logo-blue {
    width: 90px;
    height: 90px;
    display: none;
    object-fit: contain;
    transition: var(--transition);
}

.top-nav.scrolled .nav-brand-logo-white {
    display: none;
}

.top-nav.scrolled .nav-brand-logo-blue {
    display: block;
}

.hero-logo {
    width: 240px;
    height: 240px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1) drop-shadow(2px 4px 10px rgba(0,0,0,0.5));
}

.hamburger {
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.top-nav.scrolled .hamburger {
    color: var(--primary-color);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.top-nav.scrolled .nav-links a {
    color: var(--primary-color);
    text-shadow: none;
}

.top-nav.scrolled .nav-links a:hover {
    color: var(--secondary-color);
}

.nav-left {
    flex: 1;
    justify-content: space-evenly;
    padding-right: 20px;
}

.nav-right {
    flex: 1;
    justify-content: space-evenly;
    padding-left: 20px;
}

.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block;
    }
    .nav-brand {
        flex: 1;
        justify-content: flex-start;
    }
}

/* =========================================================================
   3. SIDEBAR (MENU MOBILE) E OVERLAY
   Stili per il menu a comparsa che entra da destra quando si clicca sull'hamburger.
   Include l'overlay scuro che copre il resto del sito.
========================================================================= */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.sidebar a {
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    display: block;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sidebar a:hover {
    color: var(--white);
    background-color: rgba(255,255,255,0.1);
}

.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 40px;
    margin-left: 50px;
    padding: 0;
    background: transparent;
}

.sidebar .closebtn:hover { background: transparent; }

.overlay {
    position: fixed;
    background: rgba(0,0,0,0.5);
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1050;
    display: none;
    opacity: 0;
    transition: 0.4s;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* =========================================================================
   4. SEZIONE HERO E SLIDER (Home Page)
   La sezione introduttiva a schermo intero. Contiene lo slider automatico
   delle immagini di sfondo e il titolo principale.
========================================================================= */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    scroll-snap-align: start;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #111;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
}

/*.hero-title */
.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.2rem, 8vw, 5rem);
    color: var(--white);
    text-shadow: 3px 3px 15px rgba(0,0,0,0.6);
    margin: 0;
}

/* ActionBar sul fondo */
.hero-action-bar.minimal {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: auto;
    width: auto;
}

.action-btn.minimal-btn {
    flex: none;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(39, 93, 156, 0.4);
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    user-select: none;
    -webkit-user-select: none;
}

.action-btn.minimal-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 93, 156, 0.6);
}

.minimal-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

/* =========================================================================
   5. SEZIONI DEI CONTENUTI (Forlì, Mare, Chi Siamo)
   Layout generale per i grandi blocchi della Home Page.
   Usa il flexbox per centrare i contenuti e definisce i colori di sfondo alternati.
========================================================================= */
.content-section {
    padding: 100px 0 60px 0;
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    overflow: visible;
}

.light-section {
    background-color: var(--surface-color);
}

.gray-section {
    background-color: var(--bg-color);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title-script {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1.8rem, 5vw, 4rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.section-divider {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto 50px auto;
    border-radius: 5px;
}

/* =========================================================================
   6. CAROSELLO ORIZZONTALE (Card Pizzerie e Speciali)
   Gestisce lo scorrimento orizzontale (swipe) delle schede delle pizzerie.
   Include gli stili completi per le card (immagini, testi, bottoni, badge).
========================================================================= */
.relative-carousel-wrap {
    position: relative;
    width: 100%;
}

.scrolling-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 20px 40px 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--surface-hover);
    justify-content: safe center;
}

.scrolling-carousel::-webkit-scrollbar {
    height: 8px;
}

.scrolling-carousel::-webkit-scrollbar-track {
    background: var(--surface-hover);
    border-radius: 10px;
}

.scrolling-carousel::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.card-pizza-style {
    flex: 0 0 320px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    scroll-snap-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    /* max-height rimosso: le card devono mostrare tutto il contenuto */
}


.card-pizza-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(39, 93, 156, 0.2);
    border-color: var(--primary-color);
}

.card-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-details {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.card-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    user-select: none;
    -webkit-user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-btn:hover { background: var(--primary-dark); }

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e63946;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(230,57,70,0.4);
}

/* =========================================================================
   7. VISTA MENU COMPLETO E AGGIUNTE
   Tutti gli stili dedicati alla pagina che si apre quando si clicca su una pizzeria.
   Include i bottoni delle categorie (tabs), la griglia delle pizze, prezzi, banner promo.
========================================================================= */
.menu-navbar {
    background-color: var(--primary-color);
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}



.menu-navbar .brand-font {
    font-family: 'Pacifico', cursive;
    margin: 0; font-size: 2rem; color: white;
    font-weight: 400;
}

.btn-back-menu {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.btn-back-menu:hover {
    background: white;
    color: var(--primary-color);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

#menu-view .container {
    padding-bottom: 80px;
}

#menu-completo-container {
    min-height: 60vh;
}

.promo-banner {
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
    text-align: center; padding: 20px; border-radius: 12px;
    margin-bottom: 40px; font-size: 1.2rem;
    border: 1px solid #e63946;
}

.menu-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.menu-tab-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab-btn:hover, .menu-tab-btn.active-tab {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(39,93,156,0.3);
}

/* Layout lista menu (senza immagini) */
.category-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.pizza-card-rich {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
    gap: 16px;
}

.pizza-card-rich:last-child {
    border-bottom: none;
}

.pizza-card-rich:hover {
    background: var(--bg-color);
    transform: none;
}

/* Classe no-img non necessaria, ma la lasciamo per compatibilità */
.pizza-card-rich.no-img {
    flex-direction: row;
}

.pizza-rich-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
}

.pizza-nome {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.pizza-ingredienti {
    font-size: 0.88rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.4;
}

.pizza-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
    padding-top: 0;
    border-top: none;
    min-width: 90px;
    text-align: right;
}

.price { font-size: 1.1rem; font-weight: 700; color: var(--primary-color); white-space: nowrap; }
.price.strikethrough { text-decoration: line-through; color: var(--text-light); font-size: 0.95rem; }
.price.promo { color: #e63946; font-size: 1.2rem; }
.price.maxi { font-size: 0.85rem; font-weight: 600; color: var(--text-light); background: var(--bg-color); padding: 3px 8px; border-radius: 20px; }

/* Aggiunte Section */
.aggiunte-section {
    margin-top: 80px;
    margin-bottom: 60px;
    background: var(--bg-color);
    padding: 50px;
    border-radius: 15px;
}

.aggiunte-title { text-align: center; font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; font-family: 'Pacifico', cursive; }
.aggiunte-subtitle { text-align: center; color: var(--text-light); margin-bottom: 40px; font-size: 1.1rem; }

.aggiunte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.aggiunta-item { text-align: center; background: var(--white); padding: 30px; border-radius: 12px; box-shadow: var(--shadow); }
.aggiunta-prezzo { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }
.aggiunta-ingredienti { font-size: 1rem; color: var(--text-color); line-height: 1.6; }

/* =========================================================================
   8. FOOTER
========================================================================= */
.main-footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px 20px 10px 20px;
}

.footer-brand {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.footer-copy {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

/* =========================================================================
   9. FINESTRE MODALI (Pop-up Chiamata)
========================================================================= */
.modal {
    display: flex;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.hidden { opacity: 0; pointer-events: none; }

.modal-content {
    background-color: var(--white);
    padding: 50px;
    width: 95%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.hidden .modal-content { transform: scale(0.8); }

.close-modal {
    position: absolute; top: 15px; right: 25px;
    font-size: 40px; color: #aaa; cursor: pointer; transition: 0.3s;
}
.close-modal:hover { color: #000; }

.modal-buttons { display: flex; flex-direction: column; gap: 15px; }

.btn-modal {
    padding: 18px; font-size: 1.2rem; font-weight: 700;
    background-color: var(--bg-color); color: var(--text-color);
    border: 2px solid var(--border-color); border-radius: 10px;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
    display: block;
}

.btn-modal:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* =========================================================================
   10. DECORAZIONI POLAROID
========================================================================= */
.polaroid {
    position: absolute;
    background: #fcfcfc;
    padding: 15px 15px 60px 15px;
    box-shadow: 2px 8px 20px rgba(0,0,0,0.15);
    z-index: 1 !important;
    opacity: 1;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s, z-index 0s;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.polaroid img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: sepia(0.2) contrast(1.1);
}

@media (max-width: 900px) {
    .polaroid { display: none !important; }
}

/* =========================================================================
   11. ANIMAZIONI (Freccia e Swipe)
========================================================================= */
.swipe-hint {
    text-align: center;
    margin-top: -15px;
    margin-bottom: 25px;
    display: none;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 992px) {
    .swipe-hint {
        display: flex !important;
    }
}

.swipe-icon {
    color: var(--primary-color);
    animation: swipe-anim 2s infinite;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}

@keyframes swipe-anim {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(15px); }
    60% { transform: translateX(7px); }
}

.arrow-to-mare {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.arrow-to-mare:hover { transform: translateY(5px); }

.arrow-text {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.arrow-icon {
    color: var(--primary-color);
    animation: bounce 2s infinite;
    filter: drop-shadow(2px 4px 2px rgba(0,0,0,0.1));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* =========================================================================
   12. LAYOUT SEZIONE MARE (desktop)
========================================================================= */
.mare-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.mare-foto-col {
    flex: 1 1 280px;
    max-width: 380px;
}

.mare-foto {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
}

.mare-carousel-col {
    flex: 2 1 350px;
    min-width: 0;
}

/* Centra la card nel carosello del mare (c'è solo 1 pizzeria) */
.mare-carousel-col .scrolling-carousel {
    justify-content: center;
}


/* =========================================================================
   13. LAYOUT SEZIONE CHI SIAMO (desktop)
========================================================================= */
.chi-siamo-section {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    justify-content: flex-start;
    padding-bottom: 0;
}

.chi-siamo-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.chi-siamo-img-col {
    flex: 1 1 300px;
}

.chi-siamo-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
}

.chi-siamo-testo-col {
    flex: 1 1 400px;
}

.chi-siamo-titolo {
    text-align: center;
    font-size: 3.5rem;
}

.chi-siamo-divider {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.chi-siamo-testo {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.fuori-menu-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 10px;
    text-align: center;
}

/* =========================================================================
   14. MEDIA QUERIES MOBILE - RESPONSIVE COMPLETO
   Target: schermo <= 768px (smartphone)
========================================================================= */
@media (max-width: 768px) {

    /* ── Blocca overflow orizzontale ── */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* ── Disabilita scroll-snap (blocca i tap su iOS) ── */
    html {
        scroll-snap-type: none;
    }
    .content-section, .hero-section {
        scroll-snap-align: none;
    }

    /* ── Touch: elimina ritardo 300ms e area tocco ── */
    button, a, [onclick] {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(39, 93, 156, 0.15);
    }

    /* ── NAVBAR ── */
    .hamburger {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }

    /* ── HERO ── */
    .hero-title { font-size: 2.8rem; }

    .hero-action-bar.minimal {
        bottom: 28px;
        gap: 12px;
        width: calc(100% - 32px);
        left: 16px;
        transform: none;
    }

    .action-btn.minimal-btn {
        flex: 1;
        padding: 14px 20px;
        min-height: 50px;
        font-size: 0.95rem;
        max-width: 50%;
    }

    /* ── SEZIONI: altezza auto, no overflow ── */
    .content-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px 0;
        overflow: visible;
    }

    .section-container {
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .section-title-script {
        font-size: 2.2rem;
        word-break: break-word;
    }

    .section-divider { margin-bottom: 24px; }

    /* ── CAROSELLO: scorrevole orizzontalmente, card grandi ── */
    .scrolling-carousel {
        gap: 16px;
        padding: 16px 16px 30px 16px;
        /* Assicura scorrimento touch */
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
    }

    /* Card pizzerie: larghezza quasi tutta lo schermo */
    .card-pizza-style {
        flex: 0 0 82vw;
        max-width: 320px;
        max-height: none;
    }

    .card-title { font-size: 1.15rem; }

    .card-btn {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* ── SEZIONE MARE: solo carosello, foto nascoste ── */
    .mare-layout {
        flex-direction: column;
        gap: 0;
    }

    .mare-foto-col {
        display: none; /* nascondi le foto laterali su mobile */
    }

    .mare-carousel-col {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }

    .mare-foto { height: 220px; }

    /* ── SEZIONE CHI SIAMO: colonna verticale ── */
    .chi-siamo-layout {
        flex-direction: column;
        gap: 20px;
    }

    .chi-siamo-img-col,
    .chi-siamo-testo-col {
        flex: 1 1 100%;
        width: 100%;
    }

    .chi-siamo-img {
        max-height: 220px;
        width: 100%;
    }

    .chi-siamo-titolo {
        text-align: center;
        font-size: 2.2rem;
    }

    .chi-siamo-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .chi-siamo-testo {
        text-align: center;
        font-size: 1rem;
    }

    .fuori-menu-title {
        font-size: 1.8rem;
        margin-top: 30px;
    }

    /* ── FRECCIA ── */
    .arrow-text { font-size: 1.4rem; }

    /* ── MENU VIEW ── */
    .menu-navbar { padding: 10px 16px; }

    .menu-navbar .nav-brand-logo-white {
        width: 55px;
        height: 55px;
    }

    .btn-back-menu {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    #menu-vista-titolo { font-size: 1.8rem !important; }

    .menu-tabs-container {
        gap: 8px;
        margin-bottom: 20px;
    }

    .menu-tab-btn {
        padding: 9px 14px;
        min-height: 42px;
        font-size: 0.8rem;
    }

    .pizza-card-rich {
        padding: 12px 14px;
        gap: 10px;
    }

    .pizza-nome { font-size: 0.93rem; }
    .pizza-ingredienti { font-size: 0.8rem; }
    .price { font-size: 0.95rem; }

    /* ── AGGIUNTE ── */
    .aggiunte-section {
        padding: 24px 16px;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .aggiunte-title { font-size: 1.6rem; }

    .aggiunte-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .aggiunta-item { padding: 18px 14px; }

    /* ── MODAL ── */
    .modal-content { padding: 28px 18px; }
    .btn-modal { padding: 14px; font-size: 1rem; }

    /* ── FOOTER ── */
    .footer-brand { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.3rem; }

    .action-btn.minimal-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .card-pizza-style { flex: 0 0 88vw; }

    .section-title-script { font-size: 1.9rem; }

    .chi-siamo-titolo { font-size: 1.9rem; }
    .fuori-menu-title { font-size: 1.6rem; }
}

/* =========================================================================
   15. EFFETTO DI PRESENTAZIONE E SCROLL-SNAP PER SCHERMI GRANDI
   Abilitato solo su schermi desktop che hanno una larghezza minima di 1025px
   e un'altezza minima di 800px per evitare il taglio dei contenuti.
   ========================================================================= */
@media (min-width: 1025px) and (min-height: 800px) {
    html {
        scroll-snap-type: y mandatory;
    }
    .hero-section {
        scroll-snap-align: start;
        height: 100vh;
    }
    .content-section:not(.chi-siamo-section) {
        scroll-snap-align: start;
        height: 100vh;
        padding: 80px 0 0 0;
        overflow: hidden;
    }
    .chi-siamo-section {
        scroll-snap-align: start;
    }
}

/* =========================================================================
   16. OTTIMIZZAZIONE INTERMEDIA PER SCHERMI MEDI E FINESTRE RESIZED (PC METÀ SCHERMO - da 769px a 1400px)
   ========================================================================= */
@media (min-width: 769px) and (max-width: 1400px) {
    /* Nasconde le foto laterali ingombranti al mare su schermi medi per centrare il carosello */
    .mare-foto-col {
        display: none !important;
    }
    .mare-carousel-col {
        flex: 1 1 100%;
        width: 100%;
    }
    /* Ridimensiona le card dei caroselli per adattarsi meglio a schermi medi/stretti ed evitare tagli */
    .card-pizza-style {
        flex: 0 0 280px !important;
    }
    .card-img {
        height: 160px !important;
    }
    /* Imposta il layout verticale per "Chi Siamo" su tablet e finestre strette centrandolo perfettamente */
    .chi-siamo-layout {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    .chi-siamo-img-col,
    .chi-siamo-testo-col {
        flex: 1 1 100%;
        width: 100%;
        text-align: center;
    }
    .chi-siamo-img {
        width: 100% !important;
        max-height: 350px !important;
        object-fit: cover !important;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        display: block;
        margin: 0 auto;
    }
    .chi-siamo-titolo {
        text-align: center !important;
    }
    .chi-siamo-divider {
        margin: 0 auto 20px auto !important;
    }
    .chi-siamo-testo {
        text-align: center !important;
        max-width: 700px;
        margin: 0 auto !important;
    }
    .fuori-menu-title {
        text-align: center !important;
    }

    /* Disposizione pizzerie di Forlì a Piramide Rovesciata */
    #forli-pizzerie-container {
        flex-wrap: wrap;
        max-width: 710px; /* 320px * 2 (card) + 30px (gap) + 40px (padding) */
        margin: 0 auto;
        justify-content: center;
        overflow-x: visible;
    }

    /* Griglia centrata per le pizze fuori menù su mezza pagina per non tagliarle */
    #speciali-container {
        flex-wrap: wrap;
        max-width: 960px; /* 280px * 3 (card) + 30px * 2 (gap) + 40px (padding) */
        margin: 0 auto;
        justify-content: center;
        overflow-x: visible;
    }
}

/* =========================================================================
   17. CONFIGURAZIONE PER SCHERMI GRANDI (OLTRE 1400px)
   ========================================================================= */
/* Centrate tutte e 3 le pizzerie parallele sulla stessa riga su schermo intero */
@media (min-width: 1401px) {
    #forli-pizzerie-container {
        flex-wrap: nowrap;
        max-width: 100%;
        justify-content: center;
        overflow-x: visible;
    }
}

/* =========================================================================
   18. STILI DEL CARRELLO, MODALI E PROCESSO DI ORDINAZIONE
   ========================================================================= */

/* Pulsante fluttuante */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1900;
    width: 65px;
    height: 65px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(39, 93, 156, 0.4);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-cart-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--primary-dark);
    box-shadow: 0 15px 35px rgba(39, 93, 156, 0.6);
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-icon {
    width: 28px;
    height: 28px;
}

.cart-badge-count {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #e63946;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
    animation: cart-bounce 0.3s ease-out;
}

@keyframes cart-bounce {
    0% { transform: scale(0.3); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Drawer Carrello */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: var(--white);
    z-index: 2500;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(0);
}

.cart-drawer.hidden {
    transform: translateX(100%);
    display: flex !important;
    pointer-events: none;
}

.cart-drawer-header {
    padding: 24px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
}

.close-drawer {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-drawer:hover {
    color: #e63946;
}

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.cart-pizzeria-info {
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(39, 93, 156, 0.08);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(39, 93, 156, 0.15);
}

.cart-items-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-weight: 600;
}

/* Cart Item Stile */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    gap: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text-color);
}

.cart-item-options {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
    line-height: 1.4;
}

.cart-item-option-badge {
    display: inline-block;
    background: var(--bg-color);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 5px;
    margin-top: 4px;
    font-weight: 500;
}

.cart-item-option-badge.extra {
    background: rgba(11, 114, 133, 0.08);
    color: var(--action-color);
    border: 1px solid rgba(11, 114, 133, 0.15);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.cart-item-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-color);
    padding: 2px;
}

.cart-item-qty-btn {
    border: none;
    background: transparent;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    transition: var(--transition);
}

.cart-item-qty-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.cart-item-qty-num {
    width: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Modulo Checkout Form */
.cart-checkout-section {
    margin-top: 30px;
}

.checkout-divider {
    height: 2px;
    background: var(--border-color);
    margin: 25px 0;
}

.cart-checkout-section h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 93, 156, 0.15);
}

.radio-group {
    display: flex;
    gap: 15px;
}

.radio-label {
    flex: 1;
    cursor: pointer;
    display: block;
    margin-bottom: 0 !important;
}

.radio-label input {
    display: none;
}

.radio-label span {
    display: block;
    text-align: center;
    padding: 12px 10px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-light);
}

.radio-label input:checked + span {
    border-color: var(--primary-color);
    background: rgba(39, 93, 156, 0.05);
    color: var(--primary-color);
}

/* Footer Drawer */
.cart-drawer-footer {
    padding: 24px 30px;
    border-top: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.03);
}

.price-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 500;
}

.summary-line.promo-row {
    color: #e63946;
    font-weight: 600;
}

.summary-line.total-row {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 800;
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
    margin-top: 4px;
}

.summary-line.total-row span:last-child {
    color: var(--primary-color);
}

.btn-submit-order {
    width: 100%;
    background-color: #25d366; /* WhatsApp Green */
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit-order:hover:not(:disabled) {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-submit-order:disabled {
    background-color: var(--border-color);
    color: var(--text-light);
    cursor: not-allowed;
    box-shadow: none;
}

/* Modale Personalizzazione Pizza */
.customize-content {
    max-width: 600px;
    width: 95%;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    padding: 30px !important;
}

.pizza-ingredients-sub {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.customize-options-container {
    flex: 1;
    overflow-y: auto;
    padding: 10px 5px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.customize-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.customize-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.custom-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.custom-option-card {
    cursor: pointer;
}

.custom-option-card input {
    display: none;
}

.custom-option-card .option-details {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: var(--transition);
}

.custom-option-card input:checked + .option-details {
    border-color: var(--primary-color);
    background: rgba(39, 93, 156, 0.05);
}

.option-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
}

.option-price-diff {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

.custom-option-card input:checked + .option-details .option-name {
    color: var(--primary-color);
}

/* Extra Addons checkboxes */
.custom-addons-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.custom-addon-checkbox {
    cursor: pointer;
    user-select: none;
}

.custom-addon-checkbox input {
    display: none;
}

.custom-addon-checkbox .addon-details {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 70px;
    transition: var(--transition);
    font-size: 0.82rem;
    background: var(--white);
}

.custom-addon-checkbox input:checked + .addon-details {
    border-color: var(--action-color);
    background: rgba(11, 114, 133, 0.05);
    box-shadow: 0 4px 10px rgba(11, 114, 133, 0.1);
}

.addon-name {
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.addon-price {
    font-weight: 700;
    color: var(--action-color);
    margin-top: 4px;
}

.custom-addon-checkbox input:checked + .addon-details .addon-name {
    color: var(--action-color);
}

/* Footer Customizzazione */
.modal-footer-customize {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    gap: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    padding: 4px;
    background: var(--bg-color);
}

.qty-btn {
    border: none;
    background: transparent;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    color: var(--text-color);
}

.qty-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.qty-number {
    width: 35px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-add-to-cart-custom {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(39, 93, 156, 0.3);
    text-align: center;
}

.btn-add-to-cart-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 93, 156, 0.4);
}

/* Modifiche ai pulsanti ordina della pizza-card-rich */
.pizza-order-action {
    display: flex;
    align-items: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.btn-pizza-order {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-pizza-order:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-pizza-order svg {
    transition: var(--transition);
}

.btn-pizza-order:hover svg {
    transform: translateX(2px);
}

/* Adattabilità mobile per drawer e customize */
@media (max-width: 576px) {
    .cart-drawer {
        max-width: 100%;
    }
    
    .cart-drawer-content {
        padding: 20px;
    }
    
    .cart-drawer-footer {
        padding: 15px 20px;
    }
    
    .customize-content {
        padding: 20px !important;
        max-height: 90vh;
    }
    
    .custom-options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .custom-option-card .option-details {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }
    
    .custom-addons-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-footer-customize {
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: space-between;
        padding: 2px 10px;
    }
    
    .btn-add-to-cart-custom {
        width: 100%;
    }
    
    .pizza-card-rich {
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .pizza-price-container {
        align-items: flex-start;
        text-align: left;
        min-width: unset;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pizza-order-action {
        margin-left: 0;
        margin-top: 5px;
        justify-content: flex-end;
    }
    
    .floating-cart-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}


