:root {
    --primary: #1a3a4c;
    --secondary: #c19a6b;
    --accent: #8a6552;
    --light: #f8f5f2;
    --dark: #2a2a2a;
    --gray: #6c757d;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--light) url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 120px; /* header + barra bianca (override per landing sotto) */
}

/* Rimuove offset globale del body nelle pagine che non lo necessitano (es. landing) */
.landing-no-offset {
    padding-top: 0 !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(248, 245, 242, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid var(--secondary);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

.btn:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* HEADER MODERNA */
.modern-header {
    background: #fff !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: white;
    z-index: 99999;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, background 0.2s;
}

.modern-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: fixed;
    flex-wrap: nowrap;
    min-height: 60px;
}

.modern-header .container {
background-color: white !important;
} 
.modern-logo img {
    height: 48px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modern-logo img:hover {
    transform: scale(1.08) rotate(-3deg);
}
.modern-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    list-style: none;
    flex: 1;
    margin: 0 32px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 10;
}
.modern-nav-links li {
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}
.modern-nav-links a {
    color: var(--primary);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}
.modern-nav-links a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(.77,0,.18,1);
    position: absolute;
    left: 0;
    bottom: -2px;
}
.modern-nav-links li a:hover {
    /* color invariato */
    color: var(--primary);
    /* puoi aggiungere animazioni tipo scale, ombra, ecc. */
    transform: scale(1.06);
}
.modern-nav-links li a:hover::after {
    width: 100%;
}

.modern-cta-btn {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow);
    border: none;
    transition: var(--transition);
    margin-left: 18px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}
.modern-cta-btn::after {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 0; height: 100%;
    background: var(--primary);
    z-index: -1;
    transition: var(--transition);
}
.modern-cta-btn:hover::after {
    width: 100%;
}
.modern-cta-btn:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: var(--shadow-hover);
}
.modern-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: var(--primary);
    cursor: pointer;
    margin-left: 18px;
    z-index: 1101;
}
.modern-mobile-menu {
    display: none;
}
.modern-cta-btn-mobile {
    display: none;
}
@media (max-width: 1024px) {
    .modern-nav-links {
        gap: 22px;
        margin: 0 10px;
    }
    .modern-cta-btn {
        padding: 10px 18px;
        font-size: 0.98rem;
    }
}
@media (max-width: 1000px) {
    .modern-navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .modern-nav-links {
        gap: 18px;
        margin: 0 8px;
        font-size: 0.96rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: center;
    }
    .modern-nav-links li {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .modern-nav-links a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-cta-btn {
        padding: 9px 16px;
        font-size: 0.94rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-logo img {
        height: 44px;
    }
}
@media (max-width: 917px) {
    .modern-navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .modern-nav-links {
        gap: 16px;
        margin: 0 8px;
        font-size: 0.95rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: center;
    }
    .modern-nav-links li {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .modern-nav-links a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-cta-btn {
        padding: 8px 16px;
        font-size: 0.92rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-logo img {
        height: 42px;
    }
}
@media (max-width: 900px) {
    .modern-navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .modern-nav-links {
        gap: 14px;
        margin: 0 6px;
        font-size: 0.93rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: center;
    }
    .modern-nav-links li {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .modern-nav-links a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-cta-btn {
        padding: 7px 14px;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-logo img {
        height: 41px;
    }
}
@media (max-width: 850px) {
    .modern-navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .modern-nav-links {
        gap: 12px;
        margin: 0 6px;
        font-size: 0.9rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: center;
    }
    .modern-nav-links li {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .modern-nav-links a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-cta-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-logo img {
        height: 40px;
    }
}
@media (max-width: 800px) {
    .modern-navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .modern-nav-links {
        gap: 10px;
        margin: 0 4px;
        font-size: 0.88rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: center;
    }
    .modern-nav-links li {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .modern-nav-links a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-cta-btn {
        padding: 6px 10px;
        font-size: 0.82rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-logo img {
        height: 39px;
    }
}
@media (max-width: 750px) {
    .modern-navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .modern-nav-links {
        gap: 8px;
        margin: 0 2px;
        font-size: 0.85rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: center;
    }
    .modern-nav-links li {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .modern-nav-links a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-cta-btn {
        padding: 5px 8px;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-logo img {
        height: 38px;
    }
}
@media (max-width: 700px) {
    .modern-navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .modern-nav-links {
        gap: 6px;
        margin: 0 2px;
        font-size: 0.82rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: center;
    }
    .modern-nav-links li:nth-child(4),
    .modern-nav-links li:nth-child(5) {
        display: none;
    }
    .modern-nav-links li {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .modern-nav-links a {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-cta-btn {
        padding: 5px 8px;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .modern-logo img {
        height: 37px;
    }
}
@media (max-width: 768px) {
    .modern-navbar {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .modern-nav-links {
        display: none;
    }
    .modern-cta-btn {
        display: none;
    }
    .modern-mobile-toggle {
        display: block;
    }
    .modern-mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; width: 100vw; height: 100vh;
        background: linear-gradient(120deg, var(--primary) 80%, var(--secondary) 100%);
        z-index: 2000;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transform: translateY(-100vh);
        transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    }
    .modern-mobile-menu.open {
        transform: translateY(0);
    }
    .modern-mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
        display: flex;
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }
    .modern-mobile-menu ul li a {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 1px;
        transition: color 0.2s;
    }
    .modern-mobile-menu ul li a:hover {
        color: var(--secondary);
    }
    .modern-cta-btn-mobile {
        display: block;
        background: linear-gradient(90deg, var(--secondary), var(--accent));
        color: #fff;
        padding: 14px 32px;
        border-radius: var(--radius);
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        box-shadow: var(--shadow);
        border: none;
        letter-spacing: 1px;
        margin-top: 18px;
        text-align: center;
        transition: var(--transition);
    }
    .modern-cta-btn-mobile:hover {
        background: var(--primary);
        color: #fff;
    }
    
    /* Pulsante di chiusura menu mobile */
    .modern-mobile-menu .close-mobile-menu,
    .super-mobile-menu .close-mobile-menu {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 2001;
    }
    
    .modern-mobile-menu .close-mobile-menu:hover,
    .super-mobile-menu .close-mobile-menu:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
}
@media (max-width: 480px) {
    .modern-logo img {
        height: 38px;
    }
    .modern-cta-btn {
        font-size: 0.92rem;
        padding: 8px 10px;
    }
}
/* Animazione fade-in header */
.fade-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.fade-in.appear {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hero-bg-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.hero-bg-slide {
    flex: 1 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.2s cubic-bezier(.77,0,.18,1);
    opacity: 0;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1 !important;
    transition: none !important;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background: linear-gradient(90deg, rgba(26, 58, 76, 0.85) 0%, rgba(26, 58, 76, 0.6) 100%), url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') center/cover no-repeat;
}

.slide-2 {
    background: linear-gradient(90deg, rgba(26, 58, 76, 0.85) 0%, rgba(26, 58, 76, 0.6) 100%), url('https://images.unsplash.com/photo-1615529162924-f8605384963c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') center/cover no-repeat;
}

.slide-3 {
    background: linear-gradient(90deg, rgba(26, 58, 76, 0.85) 0%, rgba(26, 58, 76, 0.6) 100%), url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(26, 58, 76, 0.7);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards 0.3s;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards 0.5s;
}

.hero-btns {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards 0.7s;
}

.hero-btns .btn {
    margin-right: 20px;
    margin-bottom: 20px;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4d63 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* Quick Overview (Homepage) */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.overview-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.overview-card p {
    margin-bottom: 25px;
    color: var(--gray);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.category-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 500px;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.category-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f5f2;
    border-radius: 18px 18px 0 0;
}
@media (max-width: 700px) {
  .category-img {
    height: 120px;
  }
}
@media (max-width: 480px) {
  .category-img {
    height: 90px;
  }
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
}

.category-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.category-desc {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* About Section */
.about {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 600px;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img:hover::after {
    top: 15px;
    left: 15px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    background-color: var(--light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Promotions Section */
.promotions {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4d63 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotions::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.promo-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 25px;
    border-radius: var(--radius);
    min-width: 120px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--light) 50%, white 50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-info {
    padding: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4d63 100%);
    color: white;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    background-color: var(--secondary);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 20px;
}

.contact-text h4 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.contact-form {
    padding: 60px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: #f9f9f9;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.2);
    background: white;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Gallery Section */
.gallery {
    background-color: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 76, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Map Section */
.map {
    background-color: white;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    width: 25px;
    color: var(--secondary);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-link:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}



/* Floating AI Chatbot Button */
.floating-chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(193, 154, 107, 0.4);
    animation: pulse 2s infinite;
}

.floating-chatbot:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(193, 154, 107, 0.6);
}

.floating-chatbot i {
    font-size: 24px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(193, 154, 107, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(193, 154, 107, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(193, 154, 107, 0.4);
    }
}

/* Product Detail Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 900px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4d63 100%);
    color: white;
    padding: 30px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--secondary);
}

.modal-body {
    padding: 40px;
}

.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.modal-product-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.modal-product-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-product-specs {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.modal-product-specs h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.8rem;
    }

    .section {
        padding: 100px 0;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px;
    }

    .contact-form {
        padding: 40px;
    }

    .modal-product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 0;
        clip-path: circle(0px at 90% -10%);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.active {
        clip-path: circle(1500px at 90% -10%);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        color: white;
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 450px;
    }
}

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-btns .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-card {
        margin-bottom: 30px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }
}

.madeinitaly-section {
    padding: 120px 0 !important;
    background: url('attached_assets/torino-1000x1409.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}
.madeinitaly-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.9);
    z-index: 0;
    pointer-events: none;
    display: block !important;
}
.madeinitaly-section > * {
    position: relative;
    z-index: 1;
}
.madeinitaly-section .carousel-item img {
    height: 380px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    background: #fff;
}
@media (max-width: 900px) {
    .madeinitaly-section {
        padding: 40px 0;
    }
    
    .madeinitaly-section .container > div {
        flex-direction: column;
        gap: 40px;
    }
    
    .madeinitaly-section .container > div > div:first-child {
        flex: none;
        min-width: auto;
        text-align: center;
    }
    
    .madeinitaly-section .container > div > div:first-child h2 {
        font-size: 2.8rem;
    }
    
    .madeinitaly-section .container > div > div:first-child p {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .madeinitaly-carousel {
        min-height: 280px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .madeinitaly-track {
        gap: 20px;
        padding: 20px 0;
        scroll-snap-type: x mandatory;
    }
    
    .madeinitaly-item {
        scroll-snap-align: start;
        min-width: 240px;
        max-width: 280px;
        flex: 0 0 240px;
    }
    
    .madeinitaly-item img {
        height: 140px;
    }
    
    .madeinitaly-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 700px) {
    .madeinitaly-section {
        padding: 40px 0;
    }
    
    .madeinitaly-section .container {
        padding: 0 15px;
    }
    
    .madeinitaly-section .container > div > div:first-child h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .madeinitaly-section .container > div > div:first-child p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .madeinitaly-carousel {
        min-height: 240px;
    }
    
    .madeinitaly-track {
        gap: 15px;
        padding: 15px 0;
    }
    
    .madeinitaly-item {
        min-width: 200px;
        max-width: 240px;
        flex: 0 0 200px;
    }
    
    .madeinitaly-item img {
        height: 120px;
    }
    
    .madeinitaly-item .carousel-label {
        font-size: 1rem;
        height: 40px;
        letter-spacing: 1px;
    }
    
    .madeinitaly-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        left: 8px;
    }
    
    .madeinitaly-btn.next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .madeinitaly-section {
        padding: 20px 0;
    }
    
    .madeinitaly-content-wrapper {
        gap: 20px;
    }
    
    .madeinitaly-text-content {
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 5px;
    }
    
    .madeinitaly-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .madeinitaly-description {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .madeinitaly-carousel {
        min-height: 200px;
    }
    
    .madeinitaly-track {
        gap: 10px;
        padding: 10px 0;
    }
    
    .madeinitaly-item {
        min-width: 180px;
        max-width: 200px;
    }
    
    .madeinitaly-item img {
        height: 100px;
    }
    
    .madeinitaly-item .carousel-label {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    .madeinitaly-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        left: 5px;
    }
    
    .madeinitaly-btn.next {
        right: 5px;
    }
}

@media (max-width: 320px) {
    .madeinitaly-text-content {
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 2px;
    }
    
    .madeinitaly-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .madeinitaly-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .madeinitaly-carousel {
        min-height: 180px;
    }
    
    .madeinitaly-item {
        min-width: 160px;
        max-width: 180px;
    }
    
    .madeinitaly-item img {
        height: 80px;
    }
    
    .madeinitaly-item .carousel-label {
        font-size: 0.8rem;
        padding: 6px;
    }
    
    .madeinitaly-btn {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
        left: 2px;
    }
    
    .madeinitaly-btn.next {
        right: 2px;
    }
}

/* Miglioramenti touch per lo slider */
.madeinitaly-track {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
}

.madeinitaly-item {
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Nascondi scrollbar su tutti i browser */
.madeinitaly-track::-webkit-scrollbar {
    display: none;
}

.madeinitaly-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.madeinitaly-section .carousel-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 32px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.madeinitaly-section .carousel-item {
    min-width: 30%;
    max-width: 33%;
    flex: 0 0 30%;
    box-sizing: border-box;
    transition: transform 0.18s, box-shadow 0.18s;
}
.madeinitaly-section .carousel-item img {
    height: 320px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    background: #fff;
}
@media (max-width: 900px) {
    .madeinitaly-section .carousel-item {
        min-width: 48%;
        max-width: 50%;
        flex: 0 0 48%;
    }
    .madeinitaly-section .carousel-item img {
        height: 180px;
    }
}
@media (max-width: 700px) {
    .madeinitaly-section .carousel-item {
        min-width: 90vw;
        max-width: 98vw;
        flex: 0 0 90vw;
    }
    .madeinitaly-section .carousel-item img {
        height: 140px;
    }
}

.madeinitaly-section .carousel-btn {
    background: #fff;
    border: 1px solid #222;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
}
.madeinitaly-section .carousel-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    cursor: pointer;
}
.madeinitaly-section .carousel-item:hover img {
    transform: scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
}
.madeinitaly-section .carousel-item:hover .carousel-label {
    transform: scale(1.07);
    background: rgba(20, 20, 20, 0.92);
    box-shadow: 0 -4px 32px 0 rgba(0,0,0,0.22);
}
.madeinitaly-section .carousel-item .carousel-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 54px;
    background: rgba(20, 20, 20, 0.78);
    color: #fff;
    font-family: 'Montserrat', 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.32rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
    box-shadow: 0 -2px 18px 0 rgba(0,0,0,0.13);
    border-radius: 0;
    border: none;
    padding: 0;
    transition: background 0.18s, box-shadow 0.18s;
    pointer-events: none;
}
@media (max-width: 900px) {
    .madeinitaly-section .carousel-item img {
        width: 140px;
        height: 180px;
    }
    .madeinitaly-section .carousel-item .carousel-label {
        font-size: 1rem;
        height: 36px;
        letter-spacing: 1.2px;
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    animation: pulse-whatsapp 2s infinite;
    font-size: 2rem;
    text-decoration: none;
}
.floating-whatsapp:hover {
    background: #128c7e;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25); }
}

@media (max-width: 700px) {
    .hero-slider-section {
        height: 220px;
    }
}

.hero-muzi-bg-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.hero-muzi-bg-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    transition: opacity 1.2s cubic-bezier(.77,0,.18,1);
    z-index: 0;
}
.hero-muzi-bg-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-muzi-content-blur {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 28px;
    background: rgba(26, 58, 76, 0.38);
    border-radius: 32px;
    box-shadow: 0 8px 48px 0 rgba(0,0,0,0.18), 0 1.5px 16px 0 rgba(0,0,0,0.10);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    border: 1.5px solid rgba(255,255,255,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 700px) {
    .hero-muzi-content-blur {
        padding: 22px 8px;
        border-radius: 18px;
    }
}

.hero-muzi-cta {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}
.btn-cta-nero {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1.13rem;
    padding: 16px 38px;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    border: none;
    letter-spacing: 1px;
    display: inline-block;
}
.btn-cta-nero:hover {
    background: var(--secondary);
    color: #fff;
}
.btn-cta-bianco {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.13rem;
    padding: 16px 38px;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    border: 2px solid var(--secondary);
    letter-spacing: 1px;
    display: inline-block;
}
.btn-cta-bianco:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.testimonials-section, .motivational-section {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding-top: 0;
    padding-bottom: 0;
}

.testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    gap: 0;
}
.testimonials-arrow {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    aspect-ratio: 1/1;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    z-index: 3;
    margin: 0 18px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
}
.testimonials-arrow:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}
.testimonials-slider {
    display: flex;
    overflow: hidden !important;
    width: 100%;
    max-width: 680px;
    position: relative;
    min-height: 180px;
    border-radius: 32px !important;
    background: none;
}
.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.7s, transform 0.7s;
    position: absolute;
    left: 0; top: 0;
    background: rgba(193, 154, 107, 0.22);
    border-radius: 32px !important;
    box-shadow: 0 6px 32px rgba(26,58,76,0.08), 0 1.5px 16px 0 rgba(0,0,0,0.07);
    padding: 38px 24px 28px 24px;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.testimonial-slide.active {
    opacity: 1;
    position: relative;
    z-index: 2;
    transform: scale(1.02);
}
.testimonial-quote {
    font-size: 1.18rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 18px;
}
.testimonial-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px #fff;
}
.testimonial-author {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.08rem;
}
.testimonials-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}
.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.2s;
}
.testimonials-dot.active {
    background: var(--secondary);
}
@media (max-width: 700px) {
    .testimonials-section {
        padding: 28px 0 18px 0;
    }
    .testimonials-slider-wrapper {
        max-width: 98vw;
    }
    .testimonials-slider {
        max-width: 98vw;
        min-height: 160px;
    }
    .testimonial-slide {
        padding: 18px 4vw 14px 4vw;
        font-size: 1rem;
        border-radius: 32px !important;
    }
    .testimonials-arrow {
        width: 38px;
        height: 38px;
        aspect-ratio: 1/1;
        min-width: 38px;
        min-height: 38px;
        max-width: 38px;
        max-height: 38px;
        font-size: 1.2rem;
        margin: 0 8px;
    }
}

.testimonials-motivational-wrap {
    margin: 38px auto 0 auto;
    max-width: 900px;
    padding: 0 12px 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
@media (max-width: 700px) {
    .testimonials-motivational-wrap {
        max-width: 100vw;
        gap: 18px;
        padding: 0 2vw;
        margin-top: 22px;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }
}

.motivational-section {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.motivational-phrase, .motivational-cta {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.motivational-phrase {
  font-size: 2rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
  vertical-align: middle;
}
.motivational-deco {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, rgba(193,154,107,0.32) 0%, rgba(193,154,107,0.12) 100%);
  border-radius: 2px;
  margin: 0 18px 8px 18px;
}
@media (max-width: 700px) {
  .motivational-phrase {
    font-size: 1.3rem;
  }
  .motivational-deco {
    width: 22px;
    height: 2px;
    margin: 0 6px 6px 6px;
  }
}

.service-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 36px 24px 28px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  word-break: break-word;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.testimonials-motivational-wrap-bg {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 0;
}
.motivational-bg-left, .motivational-bg-right {
  position: absolute;
  top: -120px;
  width: 320px;
  height: 900px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.motivational-bg-left {
  left: -120px;
}
.motivational-bg-right {
  right: -120px;
}
@media (max-width: 1200px) {
  .motivational-bg-left, .motivational-bg-right {
    width: 180px;
    height: 500px;
    top: -60px;
  }
  .motivational-bg-left { left: -60px; }
  .motivational-bg-right { right: -60px; }
}
@media (max-width: 700px) {
  .motivational-bg-left, .motivational-bg-right {
    display: none;
  }
}

/* Regole generali per garantire visibilità del testo */
.madeinitaly-section .container > div > div:first-child {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: auto !important;
    overflow: visible !important;
}

.madeinitaly-section .container > div > div:first-child h2,
.madeinitaly-section .container > div > div:first-child p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Forza il layout verticale su schermi molto piccoli */
@media (max-width: 600px) {
    .madeinitaly-section .container > div {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }
    
    .madeinitaly-section .container > div > div:first-child,
    .madeinitaly-section .container > div > div:last-child {
        flex: none !important;
        width: 100% !important;
        min-width: 100% !important;
    }
}

/* Stili per la sezione Made in Italy */
.madeinitaly-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.madeinitaly-text-content {
    flex: 1;
    min-width: 300px;
    color: #000;
}

.madeinitaly-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.madeinitaly-badge-line {
    width: 4px;
    height: 40px;
    background: #c19a6b;
}

.madeinitaly-badge-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c19a6b;
    font-weight: 700;
}

.madeinitaly-title {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.1;
    color: #000000;
    font-family: 'Playfair Display', serif;
}

.madeinitaly-title-accent {
    color: #c19a6b;
}

.madeinitaly-description {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #000000;
    font-weight: 400;
    max-width: 500px;
}

.madeinitaly-cta-wrapper {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.madeinitaly-carousel-wrapper {
    flex: 2;
    min-width: 0;
    display: flex;
    align-items: center;
}

.madeinitaly-carousel {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    min-height: 380px;
}

.madeinitaly-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 32px;
    width: 100%;
    padding: 32px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.madeinitaly-track::-webkit-scrollbar {
    display: none;
}

.madeinitaly-item {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #fff;
    min-width: 200px;
    max-width: 280px;
    flex: 0 0 auto;
}

.madeinitaly-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.madeinitaly-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.madeinitaly-item:hover img {
    transform: scale(1.1);
}

.madeinitaly-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.92);
    border: 2.5px solid #c19a6b;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    font-size: 2.1rem;
    color: #c19a6b;
    box-shadow: 0 4px 24px 0 rgba(193,154,107,0.13), 0 1.5px 8px 0 rgba(0,0,0,0.10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
    outline: none;
}
.madeinitaly-btn:active {
    box-shadow: 0 2px 8px 0 rgba(193,154,107,0.18);
}
.madeinitaly-btn:hover {
    background: linear-gradient(90deg, #c19a6b 60%, #d4af7a 100%);
    color: #fff;
    border-color: #d4af7a;
    transform: translateY(-50%) scale(1.13);
    box-shadow: 0 8px 32px 0 rgba(193,154,107,0.22), 0 2px 12px 0 rgba(0,0,0,0.13);
}
.madeinitaly-btn.prev {
    left: 0;
}
.madeinitaly-btn.next {
    right: 0;
}
@media (max-width: 900px) {
    .madeinitaly-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    .madeinitaly-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

/* Regole di emergenza per garantire visibilità del testo Made in Italy */
.madeinitaly-text-content,
.madeinitaly-text-content * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: none !important;
    min-width: auto !important;
}

/* Forza layout verticale su schermi piccoli */
@media (max-width: 600px) {
    .madeinitaly-content-wrapper {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }
    
    .madeinitaly-text-content,
    .madeinitaly-carousel-wrapper {
        flex: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .madeinitaly-text-content {
        order: 1 !important;
    }
    
    .madeinitaly-carousel-wrapper {
        order: 2 !important;
    }
}

/* Regole per schermi estremamente piccoli (sotto 320px) */
@media (max-width: 280px) {
    .madeinitaly-section {
        padding: 10px 0;
    }
    
    .madeinitaly-section .container {
        padding: 0 5px;
    }
    
    .madeinitaly-content-wrapper {
        gap: 15px;
    }
    
    .madeinitaly-text-content {
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
    }
    
    .madeinitaly-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .madeinitaly-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .madeinitaly-cta-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .madeinitaly-cta-wrapper .btn-cta-nero,
    .madeinitaly-cta-wrapper .btn-cta-bianco {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .madeinitaly-carousel {
        min-height: 150px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .madeinitaly-track {
        gap: 8px;
        padding: 8px 0;
        scroll-snap-type: x mandatory;
    }
    
    .madeinitaly-item {
        min-width: 140px;
        max-width: 160px;
        flex: 0 0 140px;
        scroll-snap-align: start;
    }
    
    .madeinitaly-item img {
        height: 70px;
    }
    
    .madeinitaly-item .carousel-label {
        font-size: 0.75rem;
        padding: 4px;
        height: auto;
        min-height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .madeinitaly-btn {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
        left: 1px;
    }
    
    .madeinitaly-btn.next {
        right: 1px;
    }
}

/* Regole per schermi ultra-piccoli (sotto 240px) */
@media (max-width: 240px) {
    .madeinitaly-section {
        padding: 5px 0;
    }
    
    .madeinitaly-section .container {
        padding: 0 2px;
    }
    
    .madeinitaly-content-wrapper {
        gap: 10px;
    }
    
    .madeinitaly-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .madeinitaly-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .madeinitaly-carousel {
        min-height: 120px;
    }
    
    .madeinitaly-track {
        gap: 5px;
        padding: 5px 0;
    }
    
    .madeinitaly-item {
        min-width: 120px;
        max-width: 140px;
        flex: 0 0 120px;
    }
    
    .madeinitaly-item img {
        height: 60px;
    }
    
    .madeinitaly-item .carousel-label {
        font-size: 0.7rem;
        padding: 3px;
        min-height: 20px;
    }
    
    .madeinitaly-btn {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        left: 0;
    }
    
    .madeinitaly-btn.next {
        right: 0;
    }
}

/* Miglioramenti per lo slider su schermi piccoli */
@media (max-width: 400px) {
    .madeinitaly-track {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .madeinitaly-track::-webkit-scrollbar {
        display: none;
    }
    
    .madeinitaly-item {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    /* Nascondi pulsanti su schermi molto piccoli se necessario */
    @media (max-width: 280px) {
        .madeinitaly-btn {
            display: none;
        }
        
        .madeinitaly-track {
            padding: 5px 10px;
        }
    }
}

/* Prevenzione bug slider su schermi molto piccoli */
@media (max-width: 300px) {
    .madeinitaly-carousel {
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .madeinitaly-track {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 8px;
        padding: 8px 5px;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .madeinitaly-track::-webkit-scrollbar {
        display: none;
    }
    
    .madeinitaly-item {
        flex: 0 0 auto;
        scroll-snap-align: start;
        min-width: 140px;
        max-width: 160px;
        width: 140px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        background: #fff;
        text-decoration: none;
        cursor: pointer;
    }
    
    .madeinitaly-item img {
        width: 100%;
        height: 70px;
        object-fit: cover;
        display: block;
    }
    
    .madeinitaly-item .carousel-label {
        padding: 6px;
        background: #fff;
        color: #333;
        font-weight: 600;
        font-size: 0.75rem;
        text-align: center;
        border-top: 1px solid #f0f0f0;
        line-height: 1.2;
        min-height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Nascondi pulsanti su schermi molto piccoli */
    .madeinitaly-btn {
        display: none !important;
    }
}

/* Regole di emergenza per schermi ultra-piccoli */
@media (max-width: 200px) {
    .madeinitaly-section {
        padding: 5px 0;
    }
    
    .madeinitaly-section .container {
        padding: 0;
    }
    
    .madeinitaly-content-wrapper {
        gap: 8px;
    }
    
    .madeinitaly-text-content {
        padding: 0 2px;
    }
    
    .madeinitaly-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .madeinitaly-description {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .madeinitaly-carousel {
        min-height: 100px;
    }
    
    .madeinitaly-track {
        gap: 4px;
        padding: 4px 2px;
    }
    
    .madeinitaly-item {
        min-width: 100px;
        max-width: 120px;
        width: 100px;
    }
    
    .madeinitaly-item img {
        height: 50px;
    }
    
    .madeinitaly-item .carousel-label {
        font-size: 0.65rem;
        padding: 3px;
        min-height: 18px;
    }
}

/* Regole specifiche per la transizione problematica (661px - 700px) */
@media (max-width: 700px) and (min-width: 661px) {
    .madeinitaly-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .madeinitaly-text-content {
        flex: none !important;
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: 0 10px;
    }
    
    .madeinitaly-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .madeinitaly-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .madeinitaly-carousel-wrapper {
        flex: none;
        width: 100%;
        min-width: 100%;
    }
    
    .madeinitaly-carousel {
        min-height: 240px;
        width: 100%;
    }
    
    .madeinitaly-track {
        gap: 15px;
        padding: 15px 0;
    }
    
    .madeinitaly-item {
        min-width: 200px;
        max-width: 240px;
        flex: 0 0 200px;
    }
    
    .madeinitaly-item img {
        height: 120px;
    }
    
    .madeinitaly-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        left: 8px;
    }
    
    .madeinitaly-btn.next {
        right: 8px;
    }
}

/* Regole per schermi sotto 661px */
@media (max-width: 660px) {
    .madeinitaly-content-wrapper {
        flex-direction: column !important;
        gap: 25px;
    }
    
    .madeinitaly-text-content {
        flex: none !important;
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: 0 8px;
    }
    
    .madeinitaly-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .madeinitaly-description {
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .madeinitaly-carousel-wrapper {
        flex: none;
        width: 100%;
        min-width: 100%;
    }
    
    .madeinitaly-carousel {
        min-height: 220px;
        width: 100%;
    }
    
    .madeinitaly-track {
        gap: 12px;
        padding: 12px 0;
    }
    
    .madeinitaly-item {
        min-width: 180px;
        max-width: 220px;
        flex: 0 0 180px;
    }
    
    .madeinitaly-item img {
        height: 110px;
    }
    
    .madeinitaly-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        left: 6px;
    }
    
    .madeinitaly-btn.next {
        right: 6px;
    }
}

/* Regole di transizione per evitare buchi nella responsività */
@media (max-width: 700px) {
    .madeinitaly-content-wrapper {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }
    
    .madeinitaly-text-content,
    .madeinitaly-carousel-wrapper {
        flex: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .madeinitaly-text-content {
        order: 1 !important;
    }
    
    .madeinitaly-carousel-wrapper {
        order: 2 !important;
    }
}

/* Regole specifiche per la zona problematica (650px - 700px) */
@media (max-width: 700px) and (min-width: 650px) {
    .madeinitaly-text-content {
        padding: 0 15px;
    }
    
    .madeinitaly-title {
        font-size: 2.4rem;
    }
    
    .madeinitaly-description {
        font-size: 1.15rem;
    }
    
    .madeinitaly-carousel {
        min-height: 260px;
    }
    
    .madeinitaly-item {
        min-width: 220px;
        max-width: 260px;
    }
    
    .madeinitaly-item img {
        height: 130px;
    }
}

/* Regole per schermi sotto 650px */
@media (max-width: 649px) {
    .madeinitaly-text-content {
        padding: 0 10px;
    }
    
    .madeinitaly-title {
        font-size: 2.1rem;
    }
    
    .madeinitaly-description {
        font-size: 1.05rem;
    }
    
    .madeinitaly-carousel {
        min-height: 230px;
    }
    
    .madeinitaly-item {
        min-width: 190px;
        max-width: 230px;
    }
    
    .madeinitaly-item img {
        height: 115px;
    }
}

@media (max-width: 700px) {
    .madeinitaly-carousel {
        min-height: 140px;
        background: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        position: relative;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .madeinitaly-track {
        display: flex;
        gap: 18px;
        padding: 0 18px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        overflow-x: auto;
    }
    .madeinitaly-track::-webkit-scrollbar {
        display: none;
    }
    .madeinitaly-item {
        min-width: 120px;
        max-width: 120px;
        width: 120px;
        border-radius: 16px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.13);
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        scroll-snap-align: start;
        cursor: pointer;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.2s, transform 0.2s;
    }
    .madeinitaly-item img {
        width: 100%;
        height: 90px;
        object-fit: cover;
        border-radius: 16px 16px 0 0;
        display: block;
    }
    .madeinitaly-item .carousel-label {
        background: #222;
        color: #fff;
        font-weight: 800;
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 0.95rem;
        letter-spacing: 1px;
        border-radius: 0 0 16px 16px;
        width: 100%;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        text-transform: uppercase;
        border-top: none;
    }
    .carousel-btn.madeinitaly-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        background: #fff;
        border: none;
        color: #222;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.13);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, color 0.2s;
        opacity: 0.98;
    }
    .carousel-btn.madeinitaly-btn.prev {
        left: 2px;
    }
    .carousel-btn.madeinitaly-btn.next {
        right: 2px;
    }
    .carousel-btn.madeinitaly-btn:active,
    .carousel-btn.madeinitaly-btn:focus {
        background: #c19a6b;
        color: #fff;
    }
}

@media (max-width: 480px) {
    .madeinitaly-item {
        min-width: 90px;
        max-width: 90px;
        width: 90px;
        border-radius: 10px;
    }
    .madeinitaly-item img {
        height: 55px;
        border-radius: 10px 10px 0 0;
    }
    .madeinitaly-item .carousel-label {
        font-size: 0.7rem;
        min-height: 18px;
        border-radius: 0 0 10px 10px;
    }
    .carousel-btn.madeinitaly-btn {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
        left: 0;
    }
    .carousel-btn.madeinitaly-btn.next {
        right: 0;
    }
}

@media (max-width: 700px) {
  .carousel-wrapper.madeinitaly-carousel {
    min-height: 200px;
    padding-top: 24px;
    padding-bottom: 8px;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
  }
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    display: flex !important;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    background: #fff;
    border: none;
    color: #222;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    opacity: 0.98;
    z-index: 10;
    margin: 0;
    padding: 0;
  }
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn.prev {
    left: 0;
  }
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn.next {
    right: 0;
  }
}
@media (max-width: 480px) {
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}

.carousel-controls {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}
.carousel-controls .carousel-btn.madeinitaly-btn {
  margin: 0 2px;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  background: #fff;
  border: none;
  color: #222;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  opacity: 0.98;
  z-index: 1;
}
.carousel-controls .carousel-btn.madeinitaly-btn:active,
.carousel-controls .carousel-btn.madeinitaly-btn:focus {
  background: #c19a6b;
  color: #fff;
}

@media (max-width: 700px) {
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    position: unset !important;
    margin: 0 2px;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    background: #fff;
    border: none;
    color: #222;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    opacity: 0.98;
    z-index: 1;
  }
}

@media (max-width: 700px) {
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.brands-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.brands-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.brands-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.brands-carousel::-webkit-scrollbar {
    display: none;
}

.brand-logo {
    height: 300px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.brand-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brands-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid var(--secondary);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    z-index: 2;
}

.brands-slider-btn:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.brands-slider-btn.prev {
    left: 0;
}

.brands-slider-btn.next {
    right: 0;
}

.brands-slider-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0;
    }
    
    .brands-carousel-wrapper {
        padding: 0 50px;
    }
    
    .brand-logo {
        height: 200px;
    }
    
    .brands-slider-btn {
        width: 38px;
        height: 38px;
    }
    
    .brands-slider-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brands-carousel-wrapper {
        padding: 0 40px;
    }
    
    .brand-logo {
        height: 150px;
    }
    
    .brands-slider-btn {
        width: 34px;
        height: 34px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(193,154,107,0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: rgba(193,154,107,0.3);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    margin-top: 20px;
}

.service-desc {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
}

/* Brands Section */

/* --- INIZIO NUOVA SEZIONE ECCELLENZA ITALIANA --- */
.eccellenza-title {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #2d1c0b;
    margin-bottom: 18px;
    line-height: 1.1;
}
.eccellenza-desc {
    font-size: 1.25rem;
    color: #5a4632;
    margin-bottom: 36px;
    line-height: 1.7;
}
/* --- FINE NUOVA SEZIONE ECCELLENZA ITALIANA --- */

/* Mantengo solo lo stile per il carousel */
.madeinitaly-carousel-wrapper {
    flex: 2;
    min-width: 0;
    display: flex;
    align-items: center;
}
.madeinitaly-carousel {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    min-height: 380px;
}
.madeinitaly-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 32px;
    width: 100%;
    padding: 32px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.madeinitaly-track::-webkit-scrollbar {
    display: none;
}
.madeinitaly-item {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #fff;
    min-width: 200px;
    max-width: 280px;
    flex: 0 0 auto;
}
.madeinitaly-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.madeinitaly-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.madeinitaly-item:hover img {
    transform: scale(1.1);
}
.madeinitaly-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.92);
    border: 2.5px solid #c19a6b;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    font-size: 2.1rem;
    color: #c19a6b;
    box-shadow: 0 4px 24px 0 rgba(193,154,107,0.13), 0 1.5px 8px 0 rgba(0,0,0,0.10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
    outline: none;
}
.madeinitaly-btn:active {
    box-shadow: 0 2px 8px 0 rgba(193,154,107,0.18);
}
.madeinitaly-btn:hover {
    background: linear-gradient(90deg, #c19a6b 60%, #d4af7a 100%);
    color: #fff;
    border-color: #d4af7a;
    transform: translateY(-50%) scale(1.13);
    box-shadow: 0 8px 32px 0 rgba(193,154,107,0.22), 0 2px 12px 0 rgba(0,0,0,0.13);
}
.madeinitaly-btn.prev {
    left: 0;
}
.madeinitaly-btn.next {
    right: 0;
}
@media (max-width: 900px) {
    .madeinitaly-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    .madeinitaly-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

/* --- INIZIO NUOVA SEZIONE PRODOTTI IN EVIDENZA --- */
.madeinitaly-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.prodotti-title {
    font-size: 3.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.prodotti-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c19a6b, #d4af7a);
    border-radius: 2px;
    opacity: 0.8;
}

.prodotti-title:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.prodotti-desc {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 0;
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.prodotti-desc:hover {
    color: #2d2d2d;
    transform: translateY(-1px);
}

.madeinitaly-carousel-wrapper.centered {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

/* Animazioni di entrata */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prodotti-title {
    animation: fadeInUp 0.8s ease-out;
}

.prodotti-desc {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.madeinitaly-carousel-wrapper.centered {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Responsive migliorato */
@media (max-width: 900px) {
    .madeinitaly-centered-content {
        gap: 32px;
    }
    
    .prodotti-title {
        font-size: 2.4rem;
        letter-spacing: -0.3px;
    }
    
    .prodotti-title::after {
        width: 60px;
        height: 2px;
        bottom: -10px;
    }
    
    .prodotti-desc {
        font-size: 1.15rem;
        max-width: 600px;
        line-height: 1.7;
    }
}

@media (max-width: 600px) {
    .madeinitaly-centered-content {
        gap: 24px;
    }
    
    .prodotti-title {
        font-size: 1.8rem;
        letter-spacing: -0.2px;
    }
    
    .prodotti-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
    
    .prodotti-desc {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .prodotti-title {
        font-size: 1.6rem;
    }
    
    .prodotti-desc {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}
/* --- FINE NUOVA SEZIONE PRODOTTI IN EVIDENZA --- */

/* --- UNIFORMITÀ SLIDER PRODOTTI: IMMAGINE COMPLETA --- */
.madeinitaly-item img {
    width: 100%;
    height: 180px !important;
    object-fit: contain !important;
    background: #fff;
    border-radius: 16px 16px 0 0;
    display: block;
    padding: 12px 0;
    transition: transform 0.3s;
}
@media (max-width: 700px) {
    .madeinitaly-item img {
        height: 120px !important;
        padding: 8px 0;
    }
}
@media (max-width: 480px) {
    .madeinitaly-item img {
        height: 90px !important;
        padding: 4px 0;
    }
}
/* --- FINE UNIFORMITÀ SLIDER PRODOTTI: IMMAGINE COMPLETA --- */

/* --- UNIFORMITÀ SLIDER PRODOTTI: IMMAGINE COVER --- */
.madeinitaly-item {
    min-width: 260px !important;
    max-width: 260px !important;
    width: 260px !important;
    height: 340px !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    background-color: #fff;
    margin: 0;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    position: relative;
}
.madeinitaly-item .carousel-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(34,34,34,0.92) 80%, rgba(34,34,34,0.0) 100%);
    color: #fff;
    font-weight: 800;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 0 0 16px 16px;
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 8px;
    margin: 0;
    text-transform: uppercase;
    border-top: none;
    z-index: 2;
    text-align: center;
}
@media (max-width: 700px) {
    .madeinitaly-item {
        min-width: 70vw !important;
        max-width: 70vw !important;
        width: 70vw !important;
        height: 240px !important;
    }
    .madeinitaly-item .carousel-label {
        min-height: 36px;
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .madeinitaly-item {
        min-width: 92vw !important;
        max-width: 92vw !important;
        width: 92vw !important;
        height: 180px !important;
    }
    .madeinitaly-item .carousel-label {
        min-height: 24px;
        font-size: 0.85rem;
    }
}
/* --- FINE SLIDER PRODOTTI: IMMAGINE BACKGROUND E LABEL OVERLAY --- */

@media (max-width: 700px) {
  .carousel-wrapper.madeinitaly-carousel {
    /* ...già presente... */
    flex-direction: column;
  }
  .carousel-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
  }
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    display: flex !important;
    position: relative !important;
    margin: 0 8px;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    background: #fff;
    border: none;
    color: #222;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    opacity: 0.98;
    z-index: 2;
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    margin: 0 4px;
  }
}

@media (max-width: 700px) {
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    background: rgba(255,255,255,0.85);
    border: 2px solid #c19a6b;
    color: #c19a6b;
    box-shadow: 0 4px 18px rgba(193,154,107,0.18);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    font-size: 1.45rem;
    transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
    outline: none;
    padding: 0;
  }
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn:active {
    transform: scale(0.93);
    box-shadow: 0 2px 8px rgba(193,154,107,0.22);
  }
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn:hover,
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn:focus {
    background: #c19a6b;
    color: #fff;
    box-shadow: 0 6px 24px rgba(193,154,107,0.22);
  }
}
@media (max-width: 480px) {
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    font-size: 1.15rem;
    border-width: 1.5px;
  }
}

@media (max-width: 700px) {
  h1, .section-title, .prodotti-title {
    font-size: 2.4rem !important;
    line-height: 1.15;
  }
  h2, .prodotti-desc, .section-subtitle {
    font-size: 1.35rem !important;
    line-height: 1.5;
  }
}

@media (max-width: 700px) {
  .carousel-wrapper.madeinitaly-carousel .carousel-btn.madeinitaly-btn {
    display: none !important;
  }
}

html, body {
  overflow-x: hidden !important;
}
@media (max-width: 700px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

/* --- Dropdown menu Gallery (animazione slide down/up) --- */
.dropdown-menu.custom-dropdown {
    display: block;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-16px) scaleY(0.98);
    transition: opacity 0.32s cubic-bezier(0.4,0,0.2,1), transform 0.32s cubic-bezier(0.4,0,0.2,1), visibility 0.32s;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    background: rgba(26, 58, 76, 0.98);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
    padding: 0;
    min-width: 200px;
    overflow: hidden;
    z-index: 2000;
}
.dropdown:hover > .dropdown-menu.custom-dropdown,
.dropdown:focus-within > .dropdown-menu.custom-dropdown,
.dropdown-menu.custom-dropdown:hover {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scaleY(1);
}

.dropdown {
    position: relative;
}
.dropdown-menu.custom-dropdown li {
    margin: 0;
    list-style: none;
}
.dropdown-menu.custom-dropdown li a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 1.05em;
    font-weight: 600;
    color: #fff;
    background: none;
    border: none;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    text-decoration: none;
}
.dropdown-menu.custom-dropdown li:not(.highlight) a {
    color: #fff;
    font-weight: 500;
    background: var(--primary);
}
.dropdown-menu.custom-dropdown li.highlight a {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 700;
}
.dropdown-menu.custom-dropdown li a:hover,
.dropdown-menu.custom-dropdown li.highlight a:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: scale(1.04);
    text-decoration: underline;
}
.dropdown-menu.custom-dropdown li a i {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Fix dropdown menu: elimina spazio morto tra link e menu */
.dropdown {
    position: relative;
}
.dropdown-menu.custom-dropdown {
    pointer-events: auto;
    margin-top: 0;
    top: 100%;
}
.dropdown > a {
    position: relative;
    z-index: 2;
}

/* Dropdown menu: highlight oro, altre voci blu */
.dropdown-menu.custom-dropdown li a {
    background: var(--primary) !important;
    color: #fff !important;
    transition: background 0.18s, color 0.18s, transform 0.18s;
    text-decoration: none;
}
.dropdown-menu.custom-dropdown li.highlight a {
    background: var(--secondary) !important;
    color: #fff !important;
    font-weight: 700;
}
.dropdown-menu.custom-dropdown li a:hover,
.dropdown-menu.custom-dropdown li.highlight a:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: scale(1.04);
    text-decoration: underline;
}

/* Dropdown menu: animazione sfondo su hover (fade/slide) */
.dropdown-menu.custom-dropdown li a {
    position: relative;
    overflow: hidden;
}
.dropdown-menu.custom-dropdown li a::before {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transform: translateX(-30%);
    transition: opacity 0.25s, transform 0.25s;
    z-index: 0;
}
.dropdown-menu.custom-dropdown li a:hover::before,
.dropdown-menu.custom-dropdown li.highlight a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.dropdown-menu.custom-dropdown li a,
.dropdown-menu.custom-dropdown li.highlight a {
    position: relative;
    z-index: 1;
    background: transparent !important;
}
.dropdown-menu.custom-dropdown li a span,
.dropdown-menu.custom-dropdown li.highlight a span {
    position: relative;
    z-index: 2;
    background: transparent;
}
.dropdown-menu.custom-dropdown li a:hover,
.dropdown-menu.custom-dropdown li.highlight a:hover {
    background: none !important;
    color: #fff !important;
    transform: scale(1.04);
    text-decoration: none;
}

/* Lightbox overlay per immagini quasi full screen */
#lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.2s;
}
#lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    object-fit: contain;
}
#lightbox-close {
    position: absolute;
    top: 100px;
    right: 48px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    text-shadow: 0 2px 8px #000;
    transition: color 0.2s;
}
#lightbox-close:hover {
    color: #ff5252;
}

/* Gallery zoom icon */
.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.gallery-zoom i {
    font-size: 1.2rem;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.barra-bianca-fissa {
    position: fixed;
    top: 72px; /* o l'altezza effettiva della tua header */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9998;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 48px; /* o l'altezza che preferisci */
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 700px) {
    .barra-bianca-fissa { top: 64px; }
    body { padding-top: 112px; }
}

/* HEADER MODERNA UI/UX - AGGIORNAMENTO DESIGN TIPO PREZIOSO CASA */
.main-header {
  position: fixed;
  top: 0; left: 0; width: 100%; z-index: 10000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-bottom: 1px solid #ececec;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
}
.header-logo img {
  height: 48px;
  display: block;
}
.header-nav {
  flex: 1;
  margin-left: 36px;
  margin-right: 36px;
}
.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.nav-list li {
  position: relative;
}
.nav-list a,
.nav-list .dropdown-toggle,
.nav-list .dropdown-toggle:focus {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 8px 0;
  background: none;
  border: none;
  transition: color 0.18s;
  outline: none;
  cursor: pointer;
}
.nav-list a.active {
  color: #c19a6b;
  font-weight: 600;
}
.nav-list a:hover,
.nav-list .dropdown-toggle:hover {
  color: #c19a6b;
}
.gallery-dropdown > .dropdown-toggle {
  cursor: pointer;
  font-weight: 500;
  color: #222;
  background: none;
  border: none;
  padding: 8px 0;
  pointer-events: auto;
}
.gallery-dropdown > .dropdown-toggle:focus {
  outline: 2px solid #c19a6b;
}
.gallery-dropdown > .dropdown-toggle {
  user-select: none;
}
.gallery-dropdown > .dropdown-toggle[aria-expanded="true"] {
  color: #c19a6b;
}
.gallery-dropdown > .dropdown-toggle {
  pointer-events: auto;
}
.gallery-dropdown > .dropdown-toggle:active {
  color: #c19a6b;
}
.gallery-dropdown > .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gallery-dropdown > .dropdown-toggle span[aria-hidden] {
  font-size: 0.9em;
  margin-left: 2px;
}
.gallery-dropdown > a {
  pointer-events: none;
}
.has-dropdown > .dropdown-toggle:after { display: none; }
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0; top: 100%;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  border-radius: 0 0 12px 12px;
  padding: 12px 0;
  z-index: 10001;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: #1a3a4c;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: #f8f5f2;
  color: #c19a6b;
}
.header-cta {
  background: #fff;
  color: #222;
  padding: 8px 28px;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid #222;
  margin-left: 32px;
  letter-spacing: 1px;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
  white-space: nowrap;
  box-shadow: none;
}
.header-cta:hover {
  background: #c19a6b;
  color: #fff;
  border-color: #c19a6b;
}
.header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 11001;
  margin-left: 18px;
}
.header-burger span {
  display: block;
  width: 28px; height: 3px;
  background: #1a3a4c;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #fff;
  z-index: 12000;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 90px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  transition: opacity 0.25s;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.mobile-menu li {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}
.mobile-menu a, .mobile-menu .dropdown-toggle {
  display: block;
  padding: 16px 0;
  color: #1a3a4c;
  font-size: 1.18rem;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a.header-cta {
  background: #fff;
  color: #222;
  border: 2px solid #222;
  border-radius: 0;
  margin: 18px auto 0 auto;
  width: 80%;
  font-size: 1.1rem;
  box-shadow: none;
}
.mobile-menu a.header-cta:hover {
  background: #c19a6b;
  color: #fff;
  border-color: #c19a6b;
}
.mobile-menu .has-dropdown .dropdown-menu {
  position: static;
  box-shadow: none;
  border-radius: 0;
  background: #f8f5f2;
  padding: 0;
}
.mobile-menu .has-dropdown .dropdown-menu a {
  padding: 12px 0 12px 32px;
  font-size: 1.05rem;
}
.mobile-menu .dropdown-menu {
  display: none;
}
.mobile-menu .has-dropdown.open .dropdown-menu {
  display: block;
}
@media (max-width: 1100px) {
  .header-container { padding: 0 12px; }
  .nav-list { gap: 18px; }
}
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .header-burger { display: flex; }
}
@media (max-width: 1024px) {
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

.gallery-dropdown.open > .dropdown-menu {
  display: block;
}

/* BLOG PAGE UI/UX MODERNA */
.blog-main {
  padding-top: 96px;
  min-height: 100vh;
  background: linear-gradient(120deg, #f7fafc 0%, #eaf3f8 100%);
}
.blog-hero {
  text-align: center;
  padding: 48px 16px 24px 16px;
  background: linear-gradient(90deg, #eaf3f8 60%, #f7fafc 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 32px;
}
.blog-hero h1 {
  font-size: 2.6rem;
  color: #1a3a4c;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -1px;
}
.blog-hero p {
  color: #4a6a7c;
  font-size: 1.18rem;
  max-width: 600px;
  margin: 0 auto;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 64px auto;
  padding: 0 16px;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(26,58,76,0.08), 0 1.5px 6px rgba(26,58,76,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: 1px solid #eaf3f8;
}
.blog-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 40px rgba(26,58,76,0.13), 0 2px 8px rgba(26,58,76,0.07);
}
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid #eaf3f8;
}
.blog-card-content {
  padding: 24px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card-content h2 {
  font-size: 1.35rem;
  color: #1a3a4c;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.blog-card-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.blog-card-content h2 a:hover {
  color: #2e7bbf;
}
.blog-card-content p {
  color: #4a6a7c;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.blog-date {
  font-size: 0.98rem;
  color: #7a8fa3;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: auto;
}
@media (max-width: 700px) {
  .blog-hero {
    padding: 32px 8px 16px 8px;
    border-radius: 0 0 18px 18px;
  }
  .blog-list {
    gap: 18px;
    padding: 0 4px;
  }
  .blog-card img {
    height: 140px;
  }
  .blog-card-content {
    padding: 14px 10px 12px 10px;
  }
}

/* OVERLAY BLOG POST */
.blog-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 40, 60, 0.32);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px) saturate(1.2);
  animation: blogOverlayFadeIn 0.35s cubic-bezier(.4,1.4,.6,1) both;
}

.blog-overlay-content {
  background: #fff;
  border-radius: 22px;
  max-width: 720px;
  width: 96vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 64px 0 rgba(26,58,76,0.22), 0 1.5px 8px 0 rgba(26,58,76,0.08);
  border: 1.5px solid rgba(26,58,76,0.08);
  padding: 48px 38px 38px 38px;
  position: relative;
  margin: 72px auto 48px auto;
  animation: blogOverlayContentIn 0.45s cubic-bezier(.4,1.4,.6,1);
  transition: box-shadow 0.2s, border 0.2s;
}

.blog-overlay-content:hover {
  box-shadow: 0 16px 80px 0 rgba(26,58,76,0.28), 0 2px 12px 0 rgba(26,58,76,0.10);
  border: 1.5px solid rgba(26,58,76,0.13);
}

.blog-overlay-close {
  position: absolute;
  top: 22px; right: 22px;
  background: none;
  border: none;
  font-size: 2.8rem;
  color: #1a3a4c;
  cursor: pointer;
  z-index: 2;
  transition: color 0.18s, transform 0.18s;
  line-height: 1;
  padding: 0 8px;
}
.blog-overlay-close:hover {
  color: #e74c3c;
  transform: scale(1.18) rotate(8deg);
}

.blog-overlay-content h2 {
  font-size: 2.3rem;
  margin-bottom: 22px;
  color: #1a3a4c;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(26,58,76,0.06);
}

.blog-overlay-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  margin-bottom: 22px;
}
.blog-overlay-gallery img {
  height: 130px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(26,58,76,0.10);
  cursor: pointer;
  border: 2.5px solid rgba(193,154,107,0.10);
  transition: transform 0.18s, border 0.18s;
}
.blog-overlay-gallery img:hover {
  transform: scale(1.12) rotate(-2deg);
  border: 2.5px solid var(--secondary, #c19a6b);
}

.blog-overlay-text {
  color: #3a4a5c;
  font-size: 1.13rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .blog-overlay-content {
    padding: 18px 4px 16px 4px;
    max-width: 99vw;
    margin: 32px auto 12px auto;
  }
  .blog-overlay-gallery img {
    height: 70px;
  }
  .blog-overlay-content h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}

.blog-readmore {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 32px;
  background: var(--secondary);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(193,154,107,0.10);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
  outline: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
.blog-readmore:hover, .blog-readmore:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(26,58,76,0.18);
  transform: translateY(-2px) scale(1.04);
}
.blog-readmore:active {
  transform: scale(0.98);
}
.blog-readmore:focus {
  box-shadow: 0 0 0 3px #c19a6b44, 0 4px 24px rgba(26,58,76,0.18);
}

/* SERVIZIO CLIENTI - UI/UX MODERNA */
.clienti-main {
  padding-top: 24px;
  background: linear-gradient(120deg, #f7fafc 0%, #eaf3f8 100%);
  min-height: 100vh;
}
.clienti-hero {
  text-align: center;
  padding: 56px 16px 32px 16px;
  background: linear-gradient(90deg, #eaf3f8 60%, #f7fafc 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 32px;
}
.clienti-hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -1px;
}
.clienti-hero p {
  color: #4a6a7c;
  font-size: 1.18rem;
  max-width: 600px;
  margin: 0 auto;
}
.clienti-form-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 400px;
  margin-bottom: 64px;
}
.clienti-form {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(26,58,76,0.10), 0 2px 8px rgba(26,58,76,0.04);
  padding: 44px 38px 32px 38px;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #eaf3f8;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.form-row-2 {
  flex-direction: row;
  gap: 18px;
}
.form-row-2 > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.clienti-form label {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.clienti-form input,
.clienti-form select,
.clienti-form textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid #eaf3f8;
  font-size: 1.08rem;
  font-family: inherit;
  background: #f7fafc;
  transition: border 0.18s, box-shadow 0.18s;
  color: #222;
  outline: none;
}
.clienti-form input:focus,
.clienti-form select:focus,
.clienti-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px #c19a6b33;
  background: #fff;
}
.clienti-form textarea {
  min-height: 120px;
  resize: vertical;
}
.clienti-form select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%236c757d" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 16px center/18px 18px, #f7fafc;
}
.file-label {
  font-weight: 500;
  color: var(--primary);
  font-size: 1.01rem;
  margin-bottom: 2px;
}
.file-input {
  background: #f7fafc;
  border: 1.5px solid #eaf3f8;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1.01rem;
  color: #4a6a7c;
  transition: border 0.18s;
}
.file-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px #c19a6b33;
  background: #fff;
}
.clienti-submit-btn {
  margin-top: 18px;
  padding: 16px 0;
  background: var(--secondary);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  border: 2px solid var(--secondary);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(193,154,107,0.10);
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition);
  outline: none;
  width: 100%;
  text-transform: uppercase;
}
.clienti-submit-btn:hover, .clienti-submit-btn:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(26,58,76,0.18);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 700px) {
  .clienti-hero {
    padding: 32px 8px 16px 8px;
    border-radius: 0 0 18px 18px;
  }
  .clienti-form-section {
    margin-bottom: 32px;
  }
  .clienti-form {
    padding: 18px 6px 16px 6px;
    max-width: 99vw;
  }
  .form-row-2 {
    flex-direction: column;
    gap: 8px;
  }
}

/* PUNTI DI FORZA ASSISTENZA CLIENTI */
.clienti-strengths {
  margin: 0 auto 36px auto;
  max-width: 1100px;
  padding: 0 16px;
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  justify-items: center;
}
.strength-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,58,76,0.08), 0 1.5px 6px rgba(26,58,76,0.04);
  padding: 36px 24px 28px 24px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #eaf3f8;
}
.strength-card:hover {
  box-shadow: 0 8px 40px rgba(26,58,76,0.13), 0 2px 8px rgba(26,58,76,0.07);
  transform: translateY(-6px) scale(1.025);
}
.strength-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  color: var(--secondary);
}
.strength-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.strength-card p {
  color: #4a6a7c;
  font-size: 1.05rem;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .strengths-grid {
    gap: 16px;
  }
  .strength-card {
    padding: 22px 8px 16px 8px;
  }
  .strength-icon {
    font-size: 2rem;
  }
}

/* TABELLA ASSISTENZA ELETTRODOMESTICI */
.tabella-assistenza {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 18px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,58,76,0.08);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-size: 1.05rem;
}
.tabella-assistenza th, .tabella-assistenza td {
  padding: 14px 18px;
  text-align: left;
}
.tabella-assistenza th {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
}
.tabella-assistenza tr:nth-child(even) td {
  background: #f7fafc;
}
.tabella-assistenza tr td {
  border-bottom: 1px solid #eaf3f8;
}
.tabella-assistenza tr:last-child td {
  border-bottom: none;
}
@media (max-width: 700px) {
  .tabella-assistenza {
    font-size: 0.98rem;
    max-width: 99vw;
  }
  .tabella-assistenza th, .tabella-assistenza td {
    padding: 10px 8px;
  }
}

@media (max-width: 900px) {
    .carousel-btn.prev.madeinitaly-btn,
    .carousel-btn.next.madeinitaly-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 10 !important;
    }
}
@media (max-width: 700px) {
    .brands-carousel {
      display: flex !important;
      flex-direction: column !important;
      gap: 24px !important;
      overflow-x: visible !important;
      scroll-behavior: unset !important;
      padding: 0 !important;
      scrollbar-width: none !important;
      -ms-overflow-style: none !important;
      -webkit-overflow-scrolling: auto !important;
    }
    .brands-carousel::-webkit-scrollbar {
      display: none !important;
    }
    .brand-logo {
      height: 90px !important;
      width: 100% !important;
      max-width: 320px !important;
      margin: 0 auto !important;
      object-fit: contain !important;
      filter: grayscale(100%) !important;
      transition: all 0.3s ease !important;
      flex-shrink: 0 !important;
      display: block !important;
    }
    .brands-slider-btn {
      display: none !important;
    }
  }
  /* Box CTA mobile nascosta di default */
.mobile-cta-box { display: none; }
@media (max-width: 700px) {
  .mobile-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 16px 18px 16px;
    margin: 18px auto 0 auto;
    max-width: 96vw;
    width: 98vw;
    z-index: 100;
  }
  .mobile-cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #c19a6b 60%, #b88b4a 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 14px 38px;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(193,154,107,0.10);
    transition: background 0.2s, color 0.2s;
    border: none;
    letter-spacing: 1px;
    margin-top: 8px;
    text-align: center;
  }
  .mobile-cta-btn:hover {
    background: #1a3a4c;
    color: #fff;
  }
}

/* HAMBURGER CSS-ONLY LEGGERO (AUTO) START */
.muzi-nav-toggle { position: absolute; left: -9999px; }
.muzi-hamburger { display: none; cursor: pointer; padding: 8px; margin-left: auto; }
.muzi-hamburger span { display: block; width: 26px; height: 2px; background: #1a3a4c; margin: 6px 0; }

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .muzi-hamburger { display: block; }
  .muzi-nav-toggle:checked ~ nav.header-nav {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 9999;
  }
  .header-nav .nav-list { display: flex; flex-direction: column; gap: 0; margin: 0; padding: 8px 12px; }
  .header-nav .nav-list li a { display: block; padding: 14px 10px; color: #1a3a4c; text-decoration: none; border-radius: 8px; }
  .header-nav .nav-list li a:hover { background: #f3f4f6; }
  .header-container { position: relative; }
}

@media (min-width: 1025px) {
  .muzi-hamburger { display: none; }
  .header-nav { display: block; }
}
/* HAMBURGER CSS-ONLY LEGGERO (AUTO) END */
