/* ===== INDEX.PHP - CSS DEDICATO ===== */
/* Tutte le regole specifiche per la homepage di XO */

/* ===== HERO SECTION ===== */
/* Regole ereditate da hero.css - già gestite */
/* Linee decorative */
.hero-bottom-line,
.club-top-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-cuoio, #AC7E51) 20%, 
        var(--color-grafite, #433D37) 50%, 
        var(--color-cuoio, #AC7E51) 80%, 
        transparent 100%
    );
    margin: 0;
    position: relative;
    z-index: 2;
}

.hero-bottom-line {
    margin-top: -1px; /* Sovrappone leggermente con la sezione hero */
}

.club-top-line {
    margin-bottom: 0;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .hero-bottom-line,
    .club-top-line {
        height: 2px;
    }
}

@media (max-width: 480px) {
    .hero-bottom-line,
    .club-top-line {
        height: 1px;
    }
}

/* ===== RESTAURANT EXTENSION SECTION ===== */
.restaurant-extension {
    background-color: #333333;
    padding: 0rem 0;
    min-height: 600px;
    margin-top: 0px;
    background-image: url('../img/sect-bkg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* ===== RESTAURANT VIDEO SECTION ===== */
.restaurant-video-section {
    padding: 0;
    position: relative;
}

.restaurant-video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.restaurant-video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.restaurant-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.restaurant-video-content {
    color: #FFFFFF;
    padding-left: 2rem;
}

.restaurant-video-title {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: var(--font-family-headings);
}

.restaurant-video-text {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-family: var(--font-family-body);
    opacity: 0.9;
}

.restaurant-video-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.restaurant-video-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-cuoio);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-family-headings);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.restaurant-video-link:hover {
    background: transparent;
    border-color: var(--color-cuoio);
    color: var(--color-cuoio);
    transform: translateY(-2px);
}

.restaurant-extension-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    min-height: 600px;
}

.restaurant-extension-content {
    text-align: left;
    position: relative;
    margin-top: 100px;
    margin-left: 25px;
    padding-right: 0px;
    max-width: 600px;
}

.restaurant-extension-title {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: var(--font-family-headings);
}

.restaurant-extension-text {
    font-size: 17px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 3rem;
    font-family: var(--font-family-body);
}

.restaurant-extension-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.gnocchi-image {
    max-width: 80%;
    height: auto;
    margin-top: 170px;
}

.gnocchi-caption {
    color: #FFFFFF !important;
    text-align: center;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ===== ICONS SECTION ===== */
.icons-section {
    height: 350px;
    background-color: #231914;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ===== CLUB SECTION ===== */
.club-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
    position: relative;
}

.club-top-line {
    width: 100%;
    height: 5px;
    background-color: #153731;
    position: absolute;
    top: 0;
    left: 0;
}

.club-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.club-logo {
    margin-bottom: 2rem;
}

.club-logo-image {
    max-width: 300px;
    height: auto;
}

.club-description {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: var(--font-family-body);
}

.club-cta {
    margin-top: 1rem;
}

.club-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-cuoio);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-family-headings);
    font-weight: 600;
    transition: all 0.3s ease;
}

.club-btn:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

/* ===== COCKTAIL SECTION ===== */
.cocktail-section {
    background-color: #000000;
    position: relative;
}

.cocktail-container {
    display: flex;
    flex-direction: column;
}

.cocktail-hero {
    background-image: url('../img/cocktail-bkg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cocktail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.cocktail-hero-content {
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
    position: relative;
    max-width: 600px;
    padding: 0 2rem;
}

.cocktail-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-family-headings);
}

.cocktail-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cocktail-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.cocktail-dark {
    background-color: #000000;
    padding: 4rem 0;
}

.cocktail-dark-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cocktail-text {
    color: #FFFFFF;
}

.cocktail-dark-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-headings);
}

.cocktail-dark-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== REGOLE COCKTAIL-IMAGE RACCOLTE DA VARI CSS ===== */

/* Regole base per cocktail-image */
.cocktail-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Regole per cocktail-photo */
.cocktail-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-cuoio);
}

.spritz-image {
    width: 400px!important;
    height: 500px; /* 9:16 aspect ratio */
}

.cocktail-distillati {
    background-color: #111111;
    padding: 4rem 0;
}

.cocktail-distillati-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cocktail-distillati-video {
    position: relative;
}

.distillati-video {
    width: 100%!important;
    height: 100%!important;
    border-radius: 10px;
}

.cocktail-distillati-text {
    color: #FFFFFF;
}

.distillati-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-headings);
}

.distillati-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== APERITIVO PROMO SECTION ===== */
.aperitivo-promo-section {
    background-image: url('../img/aperi_sect_home.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.aperitivo-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.aperitivo-promo-container {
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
    position: relative;
    max-width: 600px;
    padding: 0 2rem;
}

.aperitivo-promo-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-family-headings);
}

.aperitivo-promo-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-cuoio);
}

.aperitivo-promo-schedule {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.aperitivo-promo-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.aperitivo-promo-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-cuoio);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-family-headings);
    font-weight: 600;
    transition: all 0.3s ease;
}

.aperitivo-promo-btn:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

/* ===== PRIVATE EVENTS SECTION ===== */
.private-events-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
    position: relative;
}

.private-events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.private-events-image {
    margin-bottom: 2rem;
}

.private-events-photo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.private-events-content {
    margin-bottom: 3rem;
}

.private-events-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-headings);
}

.private-events-description {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.private-events-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.private-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.private-badge:hover {
    transform: translateY(-5px);
    background: rgba(172, 126, 81, 0.2);
}

.badge-title {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-family: var(--font-family-headings);
}

.badge-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    color: var(--color-cuoio);
}

.private-events-cta {
    margin-top: 2rem;
}

.richiedi-info-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-cuoio);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-family-headings);
    font-weight: 600;
    transition: all 0.3s ease;
}

.richiedi-info-btn:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop - Layout in riga per private-events-badges */
@media (min-width: 1025px) {
    .private-events-section .private-events-badges {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
}

/* Tablet e Desktop Grandi */
@media (max-width: 1200px) {
    /* Regole per altre sezioni - about-restaurant rimossa */
    
    .restaurant-video-wrapper {
        gap: 3rem;
    }
    
    .restaurant-video-title {
        font-size: 2.5rem;
    }
    
    .restaurant-video-text {
        font-size: 1rem;
    }
    
    .restaurant-extension-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
    
    .restaurant-extension-content {
        margin-top: 0;
        margin-left: 0;
    }
    
    .gnocchi-image {
        margin-top: 0;
    }
    
    /* Regole distillati spostate in cocktail.css per evitare conflitti */
}

/* 1024px - Stesso layout desktop */
@media (max-width: 1024px) {
    /* Regole per altre sezioni - about-restaurant rimossa */
    
    .private-events-section .private-events-badges {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
}

/* Tablet Portrait - Basato su 360px con adattamento dimensioni (Fattore 2.13) */
@media (max-width: 768px) {
    /* Regole per altre sezioni - about-restaurant rimossa */
    
    .restaurant-video-wrapper {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
        padding: 3rem 2rem !important;
    }
    
    .restaurant-video-container {
        order: 1 !important;
    }
    
    .restaurant-video-content {
        order: 2 !important;
        padding-left: 0 !important;
        text-align: center !important;
    }
    
    .restaurant-video-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .restaurant-video-text {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .restaurant-video-links {
        justify-content: center !important;
        gap: 1.5rem !important;
    }
    
    .restaurant-video-link {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .restaurant-extension {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: auto !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .restaurant-extension-wrapper {
        gap: 4.3rem !important; /* 2rem * 2.13 */
        padding: 0 1.1rem !important; /* 0.5rem * 2.13 */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 1.1rem !important; /* 0.5rem * 2.13 */
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-title {
        font-size: 3.8rem !important; /* 1.8rem * 2.13 */
        margin-bottom: 2.1rem !important; /* 1rem * 2.13 */
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .restaurant-extension-text {
        font-size: 1.9rem !important; /* 0.9rem * 2.13 */
        line-height: 1.5 !important;
        margin-bottom: 3.2rem !important; /* 1.5rem * 2.13 */
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .restaurant-extension-image {
        max-width: 747px !important; /* 350px * 2.13 */
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .gnocchi-image {
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        margin-top: 0 !important;
    }
    
    .icons-section {
        height: 683px; /* 320px * 2.13 */
        padding: 3.2rem 0; /* 1.5rem * 2.13 */
        overflow: visible;
    }
    
    .icons-container {
        gap: 2.1rem; /* 1rem * 2.13 */
        padding: 0 1.1rem; /* 0.5rem * 2.13 */
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
        height: auto;
        min-height: 470px; /* 220px * 2.13 */
    }
    
    .icon-item {
        flex: 0 0 auto;
        min-width: 149px; /* 70px * 2.13 */
        max-width: 171px; /* 80px * 2.13 */
        margin: 0 0.53rem; /* 0.25rem * 2.13 */
        height: auto;
    }
    
    .icon-wrapper {
        width: 96px; /* 45px * 2.13 */
        height: 96px; /* 45px * 2.13 */
        margin-bottom: 0.6rem; /* 0.3rem * 2.13 */
    }
    
    .icon-image {
        width: 96px; /* 45px * 2.13 */
        height: 96px; /* 45px * 2.13 */
    }
    
    .icon-link {
        font-size: 1.3rem; /* 0.6rem * 2.13 */
        margin-top: 0.6rem; /* 0.3rem * 2.13 */
        display: block;
        text-align: center;
    }
    
    .cocktail-title,
    .aperitivo-promo-title {
        font-size: 3.8rem; /* 1.8rem * 2.13 */
    }
    
    .private-events-section .private-events-badges {
        grid-template-columns: 1fr !important;
        gap: 2.1rem !important; /* 1rem * 2.13 */
    }
    
    .private-badge {
        padding: 2.1rem 1.1rem; /* 1rem * 2.13, 0.5rem * 2.13 */
    }
    
    .badge-title {
        font-size: 1.9rem; /* 0.9rem * 2.13 */
    }
    
    .badge-icon {
        width: 60px; /* 28px * 2.13 */
        height: 60px; /* 28px * 2.13 */
    }
    
    .gnocchi-image {
        max-width: 427px !important; /* 200px * 2.13 */
        width: 427px !important; /* 200px * 2.13 */
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .cocktail-image {
        order: 1;
        width: 100%;
        max-width: 640px; /* 300px * 2.13 */
        margin: 0 auto;
    }
    
    /* Ridimensiona distillati-video per 768px */
    .distillati-video {
        width: 200px !important;
        height: 355px !important; /* Proporzione 9:16 mantenuta */
        max-width: 100%;
        object-fit: cover;
    }
}
    .about-restaurant {
        padding: 4rem 0;
        background-attachment: scroll;
    }
    
    /* Regole about-bottom rimosse per evitare conflitti con desktop e 1024px */
    
    .about-content {
        width: 100%;
        max-width: 600px;
        text-align: center;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .about-links {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        margin-top: 0;
    }
    
    .chi-siamo-link {
        width: auto;
        max-width: none;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
    
    .about-video {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-left: 0;
    }
    
    .restaurant-extension {
        background-attachment: scroll;
    }
    
    .restaurant-extension-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .restaurant-extension-content {
        width: 100%;
        max-width: 600px;
        text-align: center;
        margin-top: 0;
        margin-left: 0;
    }
    
    .restaurant-extension-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .restaurant-extension-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .restaurant-extension-image {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gnocchi-image {
        max-width: 100%;
        height: auto;
        margin-top: 0;
    }
    
    .icons-section {
        height: 250px;
        padding: 2rem 0;
    }
    
    .icons-container {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .icon-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    

    
    .icon-link {
        font-size: 0.9rem;
    }
    
    .cocktail-title,
    .aperitivo-promo-title {
        font-size: 2.5rem;
    }
    
    .private-events-section .private-events-badges {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }


/* Smartphone Medi - Basato su 360px con adattamento dimensioni (Fattore 1.33) */
@media (max-width: 480px) {
    /* Copia esatta delle regole 360px con dimensioni adattate */
    
    .restaurant-video-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 2rem 1rem !important;
    }
    
    .restaurant-video-container {
        order: 1 !important;
    }
    
    .restaurant-video-content {
        order: 2 !important;
        padding-left: 0 !important;
        text-align: center !important;
    }
    
    .restaurant-video-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .restaurant-video-text {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .restaurant-video-links {
        justify-content: center !important;
        gap: 1rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .restaurant-video-link {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.8rem !important;
        width: 200px !important;
        text-align: center !important;
    }
    
    .about-restaurant {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: auto !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Regole about-bottom rimosse per evitare conflitti con desktop e 1024px */
    
    .about-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0.7rem !important; /* 0.5rem * 1.33 */
        box-sizing: border-box !important;
    }
    
    .about-title {
        font-size: 2.4rem !important; /* 1.8rem * 1.33 */
        margin-bottom: 1.3rem !important; /* 1rem * 1.33 */
        text-align: center !important;
    }
    
    .about-text {
        font-size: 1.2rem !important; /* 0.9rem * 1.33 */
        line-height: 1.5 !important;
        margin-bottom: 2rem !important; /* 1.5rem * 1.33 */
        text-align: center !important;
        margin-right: 0 !important;
    }
    
    .about-links {
        flex-direction: row !important;
        gap: 1.3rem !important; /* 1rem * 1.33 */
        align-items: center !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        flex-wrap: wrap !important;
    }
    
    .chi-siamo-link {
        width: auto !important;
        max-width: 267px !important; /* 200px * 1.33 */
        text-align: center !important;
        padding: 0.9rem 1.3rem !important; /* 0.7rem * 1.33, 1rem * 1.33 */
        font-size: 0.9rem !important; /* 0.7rem * 1.33 */
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 5px !important;
        transition: all 0.3s ease !important;
    }
    
    .about-video {
        width: 100% !important;
        max-width: 853px !important; /* 640px * 1.33 */
        justify-content: center !important;
        margin: 0 auto !important;
        display: flex !important;
        padding-left: 0 !important;
    }
    
    .restaurant-extension {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: auto !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .restaurant-extension-wrapper {
        gap: 2.7rem !important; /* 2rem * 1.33 */
        padding: 0 0.7rem !important; /* 0.5rem * 1.33 */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0.7rem !important; /* 0.5rem * 1.33 */
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-title {
        font-size: 2.4rem !important; /* 1.8rem * 1.33 */
        margin-bottom: 1.3rem !important; /* 1rem * 1.33 */
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .restaurant-extension-text {
        font-size: 1.2rem !important; /* 0.9rem * 1.33 */
        line-height: 1.5 !important;
        margin-bottom: 2rem !important; /* 1.5rem * 1.33 */
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .restaurant-extension-image {
        max-width: 467px !important; /* 350px * 1.33 */
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .gnocchi-image {
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        margin-top: 0 !important;
    }
    
    .icons-section {
        height: 427px; /* 320px * 1.33 */
        padding: 2rem 0; /* 1.5rem * 1.33 */
        overflow: visible;
    }
    
    .icons-container {
        gap: 1.3rem !important; /* 1rem * 1.33 */
        padding: 0 0.7rem; /* 0.5rem * 1.33 */
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
        height: auto;
        min-height: 293px; /* 220px * 1.33 */
    }
    
    .icon-item {
        flex: 0 0 auto;
        min-width: 93px; /* 70px * 1.33 */
        max-width: 107px; /* 80px * 1.33 */
        margin: 0 0.33rem; /* 0.25rem * 1.33 */
        height: auto;
    }
    
    .icon-wrapper {
        width: 60px; /* 45px * 1.33 */
        height: 60px; /* 45px * 1.33 */
        margin-bottom: 0.4rem; /* 0.3rem * 1.33 */
    }
    
    .icon-image {
        width: 60px; /* 45px * 1.33 */
        height: 60px; /* 45px * 1.33 */
    }
    
    .icon-link {
        font-size: 0.8rem; /* 0.6rem * 1.33 */
        margin-top: 0.4rem; /* 0.3rem * 1.33 */
        display: block;
        text-align: center;
    }
    
    .cocktail-title,
    .aperitivo-promo-title {
        font-size: 2.4rem; /* 1.8rem * 1.33 */
    }
    
    .private-events-section .private-events-badges {
        grid-template-columns: 1fr !important;
        gap: 1.3rem !important; /* 1rem * 1.33 */
    }
    
    .private-badge {
        padding: 1.3rem 0.7rem; /* 1rem * 1.33, 0.5rem * 1.33 */
    }
    
    .badge-title {
        font-size: 1.2rem; /* 0.9rem * 1.33 */
    }
    
    .badge-icon {
        width: 37px; /* 28px * 1.33 */
        height: 37px; /* 28px * 1.33 */
    }
    
    .gnocchi-image {
        max-width: 267px !important; /* 200px * 1.33 */
        width: 267px !important; /* 200px * 1.33 */
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .cocktail-image {
        order: 1;
        width: 100%;
        max-width: 400px; /* 300px * 1.33 */
        margin: 0 auto;
    }
}
    .about-restaurant {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .about-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .about-content {
        order: 1 !important;
        width: 100% !important;
        max-width: 600px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
    }
    
    .about-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        text-align: center !important;
    }
    
    .about-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .about-links {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.5rem !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        flex-wrap: wrap !important;
    }
    
    .chi-siamo-link {
        width: auto !important;
        max-width: 200px !important;
        text-align: center !important;
        padding: 0.7rem 1.2rem !important;
        font-size: 0.5rem !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 5px !important;
        transition: all 0.3s ease !important;
    }
    
    .about-video {
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
    }
    
    .restaurant-extension {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .restaurant-extension-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-content {
        width: 100% !important;
        max-width: 600px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        text-align: center !important;
    }
    
    .restaurant-extension-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        text-align: center !important;
    }
    
    .restaurant-extension-image {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .gnocchi-image {
        max-width: 100% !important;
        height: auto !important;
        margin-top: 0 !important;
    }
    
    .icons-section {
        height: 300px;
        padding: 2rem 0;
        overflow: visible;
    }
    
    .icons-container {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        overflow: visible;
        height: auto;
        min-height: 280px;
    }
    
    .icon-item {
        flex: 0 0 auto;
        min-width: 80px;
        max-width: 100px;
        margin: 0 0.5rem;
        height: auto;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    
    .icon-link {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
    
    .cocktail-title,
    .aperitivo-promo-title {
        font-size: 2rem;
    }
    
    .private-events-section .private-events-badges {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .private-badge {
        padding: 1.5rem 1rem;
    }
    
    .badge-title {
        font-size: 1rem;
    }
    
    .badge-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Regole responsive per cocktail-image - 768px */
    .cocktail-image {
        max-width: 300px;
        height: auto;
    }



/* Smartphone Medi - Basato su 360px con adattamento dimensioni (Fattore 1.33) */
@media (max-width: 479px) {
    /* Copia esatta delle regole 360px con dimensioni adattate */
    .about-restaurant {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: auto !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Regole about-bottom rimosse per evitare conflitti con desktop e 1024px */
    
    .about-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0.7rem !important; /* 0.5rem * 1.33 */
        box-sizing: border-box !important;
    }
    
    .about-title {
        font-size: 2.4rem !important; /* 1.8rem * 1.33 */
        margin-bottom: 1.3rem !important; /* 1rem * 1.33 */
        text-align: center !important;
    }
    
    .about-text {
        font-size: 1.2rem !important; /* 0.9rem * 1.33 */
        line-height: 1.5 !important;
        margin-bottom: 2rem !important; /* 1.5rem * 1.33 */
        text-align: center !important;
        margin-right: 0 !important;
    }
    
    .about-links {
        flex-direction: row !important;
        gap: 1.3rem !important; /* 1rem * 1.33 */
        align-items: center !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        flex-wrap: wrap !important;
    }
    
    .chi-siamo-link {
        width: auto !important;
        max-width: 267px !important; /* 200px * 1.33 */
        text-align: center !important;
        padding: 0.9rem 1.3rem !important; /* 0.7rem * 1.33, 1rem * 1.33 */
        font-size: 0.9rem !important; /* 0.7rem * 1.33 */
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 5px !important;
        transition: all 0.3s ease !important;
    }
    
    .about-video {
        width: 100% !important;
        max-width: 853px !important; /* 640px * 1.33 */
        justify-content: center !important;
        margin: 0 auto !important;
        display: flex !important;
        padding-left: 0 !important;
    }
    
    .restaurant-extension {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: auto !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .restaurant-extension-wrapper {
        gap: 2.7rem !important; /* 2rem * 1.33 */
        padding: 0 0.7rem !important; /* 0.5rem * 1.33 */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0.7rem !important; /* 0.5rem * 1.33 */
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-title {
        font-size: 2.4rem !important; /* 1.8rem * 1.33 */
        margin-bottom: 1.3rem !important; /* 1rem * 1.33 */
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .restaurant-extension-text {
        font-size: 1.2rem !important; /* 0.9rem * 1.33 */
        line-height: 1.5 !important;
        margin-bottom: 2rem !important; /* 1.5rem * 1.33 */
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .restaurant-extension-image {
        max-width: 467px !important; /* 350px * 1.33 */
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .gnocchi-image {
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        margin-top: 0 !important;
    }
    
    .icons-section {
        height: 427px; /* 320px * 1.33 */
        padding: 2rem 0; /* 1.5rem * 1.33 */
        overflow: visible;
    }
    
    .icons-container {
        gap: 1.3rem !important; /* 1rem * 1.33 */
        padding: 0 0.7rem; /* 0.5rem * 1.33 */
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
        height: auto;
        min-height: 293px; /* 220px * 1.33 */
    }
    
    .icon-item {
        flex: 0 0 auto;
        min-width: 93px; /* 70px * 1.33 */
        max-width: 107px; /* 80px * 1.33 */
        margin: 0 0.33rem; /* 0.25rem * 1.33 */
        height: auto;
    }
    
    .icon-wrapper {
        width: 60px; /* 45px * 1.33 */
        height: 60px; /* 45px * 1.33 */
        margin-bottom: 0.4rem; /* 0.3rem * 1.33 */
    }
    
    .icon-image {
        width: 60px; /* 45px * 1.33 */
        height: 60px; /* 45px * 1.33 */
    }
    
    .icon-link {
        font-size: 0.8rem; /* 0.6rem * 1.33 */
        margin-top: 0.4rem; /* 0.3rem * 1.33 */
        display: block;
        text-align: center;
    }
    
    .cocktail-title,
    .aperitivo-promo-title {
        font-size: 2.4rem; /* 1.8rem * 1.33 */
    }
    
    .private-events-section .private-events-badges {
        grid-template-columns: 1fr !important;
        gap: 1.3rem !important; /* 1rem * 1.33 */
    }
    
    .private-badge {
        padding: 1.3rem 0.7rem; /* 1rem * 1.33, 0.5rem * 1.33 */
    }
    
    .badge-title {
        font-size: 1.2rem; /* 0.9rem * 1.33 */
    }
    
    .badge-icon {
        width: 37px; /* 28px * 1.33 */
        height: 37px; /* 28px * 1.33 */
    }
    
    .gnocchi-image {
        max-width: 267px !important; /* 200px * 1.33 */
        width: 267px !important; /* 200px * 1.33 */
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .cocktail-image {
        order: 1;
        width: 100%;
        max-width: 400px; /* 300px * 1.33 */
        margin: 0 auto;
    }
}

/* Vecchia versione rimossa - ora usa la versione basata su 360px sopra */
    .about-restaurant {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: auto !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Regole about-bottom rimosse per evitare conflitti con desktop e 1024px */
    
    .about-content {
        order: 1 !important;
        width: 100% !important;
        max-width: 600px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
    }
    
    .about-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        text-align: center !important;
    }
    
    .about-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .about-links {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.5rem !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        flex-wrap: wrap !important;
    }
    
    .chi-siamo-link {
        width: auto !important;
        max-width: 200px !important;
        text-align: center !important;
        padding: 0.7rem 1.2rem !important;
        font-size: 0.8rem !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 5px !important;
        transition: all 0.3s ease !important;
    }
    
    .about-video {
        order: 2 !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
    }
    
    .restaurant-extension {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .restaurant-extension-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-content {
        width: 100% !important;
        max-width: 600px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        text-align: center !important;
    }
    
    .restaurant-extension-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        text-align: center !important;
    }
    
    .restaurant-extension-image {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .gnocchi-image {
        max-width: 100% !important;
        height: auto !important;
        margin-top: 0 !important;
    }
    
    .icons-container {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        overflow: visible;
        height: auto;
        min-height: 280px;
    }
    
    .icon-item {
        flex: 0 0 auto;
        min-width: 80px;
        max-width: 100px;
        margin: 0 0.5rem;
        height: auto;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    

    
    .icon-link {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
    
    .cocktail-title,
    .aperitivo-promo-title {
        font-size: 2rem;
    }
    
    .private-events-section .private-events-badges {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .private-badge {
        padding: 1.5rem 1rem;
    }
    
    .badge-title {
        font-size: 1rem;
    }
    
    .badge-icon {
        width: 32px;
        height: 32px;
    }

/* Smartphone Piccoli */
@media (max-width: 360px) {
    .restaurant-video-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 1rem 0.5rem !important;
    }
    
    .restaurant-video-container {
        order: 1 !important;
    }
    
    .restaurant-video-content {
        order: 2 !important;
        padding-left: 0 !important;
        text-align: center !important;
    }
    
    .restaurant-video-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .restaurant-video-text {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .restaurant-video-links {
        justify-content: center !important;
        gap: 0.8rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .restaurant-video-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.7rem !important;
        width: 180px !important;
        text-align: center !important;
    }
    
    .restaurant-extension {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        padding: 0 !important;
        min-height: 100vh !important;
    }
    
    .restaurant-extension-wrapper {
        padding: 2rem 0.5rem !important;
    }
    
    .about-restaurant {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: auto !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Regole about-bottom rimosse per evitare conflitti con desktop e 1024px */
    
    .about-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    .about-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .about-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        margin-right: 0 !important;
    }
    
    .about-links {
        flex-direction: row !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        flex-wrap: wrap !important;
    }
    
    .chi-siamo-link {
        width: auto !important;
        max-width: 200px !important;
        text-align: center !important;
        padding: 0.7rem 1rem !important;
        font-size: 0.7rem !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 5px !important;
        transition: all 0.3s ease !important;
    }
    
    .about-video {
        width: 100% !important;
        max-width: 640px !important;
        justify-content: center !important;
        margin: 0 auto !important;
        display: flex !important;
        padding-left: 0 !important;
    }
    
    .restaurant-extension {
        background-attachment: scroll !important;
        background-image: url('../img/sect-bkg-mobile.png') !important;
        background-size: auto !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .restaurant-extension-wrapper {
        gap: 2rem !important;
        padding: 0 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    .restaurant-extension-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .restaurant-extension-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        margin-left: 0 !important;
    }
    
    .restaurant-extension-image {
        max-width: 350px !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .gnocchi-image {
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        margin-top: 0 !important;
    }
    
    .icons-section {
        height: 320px;
        padding: 1.5rem 0;
        overflow: visible;
    }
    
    .icons-container {
        gap: 1rem !important;
        padding: 0 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
        height: auto;
        min-height: 220px;
    }
    
    .icon-item {
        flex: 0 0 auto;
        min-width: 70px;
        max-width: 80px;
        margin: 0 0.25rem;
        height: auto;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 0.3rem;
    }
    
    .icon-image {
        width: 45px;
        height: 45px;
    }
    
    .icon-link {
        font-size: 0.6rem;
        margin-top: 0.3rem;
        display: block;
        text-align: center;
    }
    
    .cocktail-title,
    .aperitivo-promo-title {
        font-size: 1.8rem;
    }
    
    .private-events-section .private-events-badges {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .private-badge {
        padding: 1rem 0.5rem;
    }
    
    .badge-title {
        font-size: 0.9rem;
    }
    
    .badge-icon {
        width: 28px;
        height: 28px;
    }
    
    .gnocchi-image {
        max-width: 200px !important;
        width: 200px !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    /* Regole responsive per cocktail-image - 360px */
    .cocktail-image {
        order: 1;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
}
