/* B2Vape Events - Stili principali */

:root {
    --primary-color: #c0af6e;
    --secondary-color: #8a7c4a;
    --accent-color: #d4c788;
    --dark-color: #e3e3e3;
    --light-color: #f8f9fa;
    --white: #ffffff;
	--rinos: #1a1a1a;
	--footer: #121212;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--rinos);

}

.container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.main-header {
    background: var(--footer);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #bdb888;
    text-decoration: none;
    /* font-weight: 500; */
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 17px;
}

.main-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* HERO SECTION */
.hero {
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
	background:#121212;
}



.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.25rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* FEATURES SECTION */
.features {
    padding: 5rem 0;
    
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}



.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* UPCOMING EVENTS */
.upcoming-events {
    padding: 5rem 0;
}

.upcoming-events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.events-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-preview-card {
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.event-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}



.event-preview-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.event-preview-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-location {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}


.footer-titles{
border-right: solid 2px #ccc;
margin-right: 15px;
}

/* FOOTER */
.main-footer {
    background: var(--footer);
    color: var(--white);
    padding: 3rem 0 1rem;
	
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
	max-width:310px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content {
        gap: 1rem;
    }
.footer-titles{border-right:none}
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features h2,
    .upcoming-events h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .events-preview {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* UTILITY CLASSES */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-gray { color: var(--gray); }

.bg-primary { background-color: var(--primary-color); }
.bg-light { background-color: var(--light-color); }
.bg-white { background-color: var(--white); }

/* ADMIN LAYOUT */
.admin-layout {
    display: flex;
    min-height: calc(100vh - 80px);
}

.admin-sidebar {
    width: 260px;
    background: #121212;
    color: white;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: var(--primary-color);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.admin-nav ul {
    list-style: none;
    padding: 1rem 0;
}

.admin-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-nav li.separator {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0.5rem 0;
}
.nav-item{text-align:left;}
.admin-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.admin-nav a:hover,
.admin-nav li.active a {
    background: rgba(255,255,255,0.1);
}

.admin-content {
    flex: 1;
    background: var(--light-color);
    padding: 2rem;
}

.admin-header {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    margin: 0;
    color: var(--primary-color);
}

.breadcrumb {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

.user-info {
    color: var(--gray);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(192, 175, 110, 0.1);
}

select.form-control {
    cursor: pointer;
}

/* ALERTS */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}
/* Eventi con copertina */
.event-preview-card {
    display: flex;
    gap: 2rem;
    background: #121212;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Contenuto testuale - 35% */
.event-content {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-content .event-date {
    background: linear-gradient(135deg, #82814f 0%, #353534 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.event-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a1a1a1;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.event-content .event-location {
    color: #726e4a;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

/* Copertina evento - 65% */
.event-cover {
    flex: 0 0 58%;
    position: relative;
    overflow: hidden;
}

.event-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.event-preview-card:hover .event-cover-image {
    transform: scale(1.05);
}

.event-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Overlay con badge */
.event-cover-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.event-featured-badge,
.event-price-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.event-featured-badge {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

.event-price-badge {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.event-price-badge.free {
    background: rgba(23, 162, 184, 0.9);
}

/* No events migliorato */
.no-events {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.no-events-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-events-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-events h3 {
    color: #495057;
    margin-bottom: 1rem;
}

.no-events p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .event-preview-card {
        flex-direction: column;
        gap: 0;
    }
    
    .event-content,
    .event-cover {
        flex: 1 1 auto;
    }
    
    .event-cover {
        min-height: 200px;
        order: -1; /* Immagine sopra su mobile */
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-cover-overlay {
        top: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .event-content h3 {
        font-size: 1.3rem;
    }
    
    .event-cover {
        min-height: 180px;
    }
    
    .event-featured-badge,
    .event-price-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

        .features {
            padding: 60px 0;
        }


        .container {
            max-width: 1680px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
               color: #9f9755;
    font-weight: 700;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
	max-width: 450px;
    margin-left: auto;
    margin-right: auto;
	    background: #e5da7975;
	
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            background: rgba(255, 255, 255, 1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            padding: 20px;
            width: 80px;
            height: 80px;
            line-height: 40px;
            transition: transform 0.3s ease;
			padding-left: 7.5px;
    padding-top: 15px;
	
        }


        .feature-card h3 {
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .features h2 {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-card {
                padding: 25px 20px;
            }
        }

.tour-description{
	width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    font-size: 20px;
	text-align: justify;
}
.pt100{
	padding-top: 100px;
}
/* Badge Espositori */

.exhibitors-badge {
    position: absolute;
    top: 4rem;
    right: 16px;
    background: #ffffff29;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}


.exhibitors-label {
font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1;
    margin-top: 3px;
}

.exhibitors-count {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color, #667eea);
    line-height: 1;
    margin-top: 1px;
}

/* Responsive per mobile */
@media (max-width: 768px) {
.exhibitors-badge {
        position: absolute;
        top: 3rem;
        right: 12px;
        background: #ffffff29;
        color: #ffffff;
        padding: 4px 8px;
        border-radius: 6px;
        text-align: center;
        font-size: 10px;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.5rem 0.6rem;
        border-radius: 20px;
    }
    
    .exhibitors-label {
        font-size: 7px;
    }
    
    .exhibitors-count {
        font-size: 12px;
    }
}
.terminated-exhibitors {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    font-weight: 500;
}
/* =================================
   SISTEMA MENU MOBILE B2VAPE
   ================================= */

/* Mobile Breakpoint */
@media (max-width: 768px) {
    
    /* Nascondi menu desktop */
    .main-nav {
        display: none;
    }
    
    /* Header mobile */
    .main-header {
        position: relative;
        padding: 15px 20px;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .logo h1 {
        font-size: 1.5em !important;
        margin: 0;
    }
    
    .logo h1 a {
        color: #c0af6e;
        text-decoration: none;
    }
    
    /* Hamburger Button */
    .mobile-menu-trigger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        /* padding: 10px; <- RIMOSSO come hai fatto tu */
        z-index: 1001;
        position: relative;
        background: none;
        border: none;
        width: 30px;
        height: 25px;
        justify-content: space-between;
        /* Aggiunte per centratura */
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .hamburger-line {
        width: 100%;
        height: 3px;
        background: #c0af6e;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    /* Animazione hamburger → X */
    .mobile-menu-trigger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-trigger.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .mobile-menu-trigger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Overlay scuro */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Menu mobile slide da destra */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -350px;
        width: 320px;
        max-width: 90vw;
        height: 100vh;
        background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        border-left: 3px solid #c0af6e;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    /* Header del menu mobile */
    .mobile-menu-header {
        background: linear-gradient(135deg, #c0af6e 0%, #8a7c4a 100%);
        padding: 25px 20px;
        text-align: center;
        color: #2c2c2c;
        position: relative;
    }
    
    .mobile-menu-header h3 {
        margin: 0;
        font-size: 1.4em;
        font-weight: bold;
    }
    
    .mobile-menu-header p {
        margin: 5px 0 0 0;
        font-size: 0.9em;
        opacity: 0.9;
    }
    
    /* Close button nel menu */
    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        color: #2c2c2c;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        border-radius: 3px;
        transition: background 0.2s;
    }
    
    .mobile-menu-close:hover {
        background: rgba(44, 44, 44, 0.2);
    }
    
    /* Lista navigation mobile */
    .mobile-menu-nav {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .mobile-menu-nav li {
        border-bottom: 1px solid #404040;
    }
    
    .mobile-menu-nav li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-nav a {
        display: flex;
        align-items: center;
        padding: 18px 20px;
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        gap: 12px;
        font-size: 16px;
    }
    
    .mobile-menu-nav a:hover {
        background: linear-gradient(90deg, #c0af6e 0%, transparent 100%);
        color: #2c2c2c;
        padding-left: 30px;
    }
    
    /* Icone menu */
    .menu-icon {
        font-size: 20px;
        width: 24px;
        text-align: center;
    }
    
    /* Sezione speciale per chat AI */
    .mobile-chat-section {
        margin: 20px;
        padding: 20px;
        background: linear-gradient(135deg, #404040 0%, #2c2c2c 100%);
        border-radius: 15px;
        border: 2px solid #c0af6e;
        text-align: center;
    }
    
    .mobile-chat-section h4 {
        color: #c0af6e;
        margin: 0 0 10px 0;
        font-size: 1.1em;
    }
    
    .mobile-chat-section p {
        color: #cccccc;
        margin: 0 0 15px 0;
        font-size: 0.9em;
        line-height: 1.4;
    }
    
    .mobile-chat-btn {
        background: linear-gradient(135deg, #c0af6e 0%, #8a7c4a 100%);
        color: #2c2c2c;
        border: none;
        padding: 12px 25px;
        border-radius: 25px;
        font-weight: bold;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 auto;
        min-width: 150px;
    }
    
    .mobile-chat-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(192, 175, 110, 0.4);
    }
    
    /* Footer menu mobile */
    .mobile-menu-footer {
        margin-top: auto;
        padding: 20px;
        background: #1a1a1a;
        border-top: 1px solid #404040;
        text-align: center;
    }
    
    .mobile-menu-footer p {
        color: #888;
        margin: 0;
        font-size: 0.8em;
        line-height: 1.4;
    }
    
    /* Widget chat mobile - riposizionato */
    .b2vape-chat-widget {
        right: 20px;
        bottom: 20px;
        top: auto;
        transform: none;
    }
    
    .chat-trigger-btn {
        min-width: 60px;
        padding: 15px;
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(192, 175, 110, 0.5);
    }
    
    .chat-trigger-btn .btn-content {
        flex-direction: column;
        gap: 2px;
    }
    
    .chat-trigger-btn .chat-text {
        font-size: 11px;
        font-weight: bold;
    }
    
    .chat-trigger-btn .chat-subtext {
        font-size: 9px;
        opacity: 0.8;
    }
    
    /* Chat window mobile full screen */
    .chat-window {
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        border: none;
    }
    
    /* Animazioni smooth */
    .mobile-menu-nav li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }
    
    .mobile-menu.active .mobile-menu-nav li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .mobile-menu.active .mobile-menu-nav li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .mobile-menu-nav li:nth-child(2) { transition-delay: 0.15s; }
    .mobile-menu.active .mobile-menu-nav li:nth-child(3) { transition-delay: 0.2s; }
    .mobile-menu.active .mobile-menu-nav li:nth-child(4) { transition-delay: 0.25s; }
    .mobile-menu.active .mobile-menu-nav li:nth-child(5) { transition-delay: 0.3s; }
    .mobile-menu.active .mobile-menu-nav li:nth-child(6) { transition-delay: 0.35s; }
    .mobile-menu.active .mobile-menu-nav li:nth-child(7) { transition-delay: 0.4s; }
}

/* Desktop - nascondi elementi mobile */
@media (min-width: 769px) {
    .mobile-menu-trigger,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Desktop - nascondi hamburger */
@media (min-width: 769px) {
    .mobile-menu-trigger,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    /* Assicurati che il menu desktop sia visibile */
    .main-nav {
        display: block !important;
    }
}