/*--------------------------------------------------------------
4. Header
--------------------------------------------------------------*/
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.85));
    backdrop-filter: blur(10px);
}

.header-topbar {
    background: #000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,0,0,0.1);
}

.header-topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.3) 50%,
        rgba(255,0,0,0) 100%);
}

.contact-info {
    display: flex;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.info-item i {
    color: #ff0000;
}

.info-item a {
    color: #ffffff;
    text-decoration: none;
}

.info-item a:hover {
    color: #ff0000;
}

/* Social Icons - Header e Footer */
.social-links a, .footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a i, .footer-social a i {
    position: relative;
    z-index: 2;
}

.social-links .facebook, .footer-social .facebook {
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid #3b5998;
}

.social-links .facebook:hover, .footer-social .facebook:hover {
    background: #3b5998;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}

.social-links .instagram, .footer-social .instagram {
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid #e1306c;
}

.social-links .instagram:hover, .footer-social .instagram:hover {
    background: #e1306c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-links .youtube, .footer-social .youtube {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
}

.social-links .youtube:hover, .footer-social .youtube:hover {
    background: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Top Bar */  
.header-topbar {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,0,0,0.1);
    background: rgba(0, 0, 0, 0.9);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.info-item i {
    color: var(--primary);
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary);
}

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

.social-links a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Main Header */
.header-main {
    padding: 15px 0;
    background: transparent;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-branding {
    flex-shrink: 0;
}

.custom-logo {
    height: 45px;
    width: auto;
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 110px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-content h1 span {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Feature Boxes */
.feature-boxes {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
    animation-fill-mode: forwards;
    opacity: 0;
}

.feature-box:nth-child(1) { animation-delay: 0.3s; }
.feature-box:nth-child(2) { animation-delay: 0.5s; }
.feature-box:nth-child(3) { animation-delay: 0.7s; }

.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255,0,0,0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #cccccc;
}

/* Hero CTA */
.hero-cta {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1s ease 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.price-box {
    background: rgba(255, 0, 0, 0.1);
    padding: 20px 40px;
    border-radius: 50px;
    border: 2px solid #ff0000;
    animation: pulse 2s infinite;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.price-label {
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

/* Network Section */
.network {
    padding: 100px 0;
    background: #ffffff;
}

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

.section-logo {
    width: 150px;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: #ff0000;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

/* Centers Grid */
.centers-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.centers-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.center-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Aggiungi frecce di navigazione */
.centers-nav {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

.center-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,0,0,0.1);
}

.center-logo {
    width: 60px;
    margin-bottom: 15px;
}

.center-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.center-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.center-card i {
    color: #ff0000;
}

/* Contact Form Styling */
.contact {
    position: relative;
    overflow: hidden;
}

.contact .section-header {
    margin-bottom: 50px;
}

.contact .wpcf7 {
    position: relative;
    z-index: 2;
}

.contact .wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px; 
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    animation: formFloat 3s ease-in-out infinite;
}

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

/* Contact Form Styling */
.contact {
    position: relative;
    overflow: hidden;
    background: #111;
    padding: 100px 0;
}

.contact .section-header {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.contact .wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact .wpcf7-form label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
}

.contact .wpcf7-form input[type="text"],
.contact .wpcf7-form input[type="email"],
.contact .wpcf7-form input[type="tel"],
.contact .wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact .wpcf7-form input:focus,
.contact .wpcf7-form textarea:focus {
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.contact .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

/* Form validation messages */
.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid !important;
    color: #fff;
}

.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Loading Animation */
.wpcf7 .ajax-loader {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.master-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 110px;
}

.master-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.master-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

/* Feature Boxes */
.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255,0,0,0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #cccccc;
}

/* Hero CTA */
.hero-cta {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.master-price-tag {
    background: rgba(255, 0, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid #ff0000;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.price-label {
    color: #cccccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.slide-in {
    animation: slideIn 1s ease forwards;
}

.slide-in-delayed {
    animation: slideIn 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Particles Effect */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .master-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}


/*--------------------------------------------------------------
2. Base & Typography
--------------------------------------------------------------*/
html {
    margin-top: 0 !important; /* Rimuove la admin bar di WordPress */
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.site {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.site-content {
    flex: 1;
    padding-top: 110px; /* Altezza dell'header */
    background: #fff;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Typography base */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

.section-sm {
    padding: 40px 0;
}

.section-lg {
    padding: 120px 0;
}

/* Background Utilities */
.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: var(--dark);
    color: var(--light);
}

.bg-primary {
    background-color: var(--primary);
    color: var(--light);
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.py-0 { padding-top: 0; padding-bottom: 0; }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Responsive Typography */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }

    .section {
        padding: 60px 0;
    }

    .section-lg {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: 40px 0;
    }

    .section-lg {
        padding: 60px 0;
    }
}

/*--------------------------------------------------------------
5. Navigation
--------------------------------------------------------------*/
.main-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-menu {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.primary-menu a:hover::after {
    width: 100%;
}

.header-cta {
    white-space: nowrap;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    border-radius: 25px;
    color: #fff !important;
    font-size: 14px;
    border: none;
}

.header-cta:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .main-navigation .primary-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-cta {
        font-size: 13px;
        padding: 8px 15px;
    }
}

/* Mobile Top Bar */
@media (max-width: 768px) {
    .header-topbar {
        background: #ffffff;
        padding: 8px 0;
    }

    .header-main {
        padding: 10px 0;
    }

    .custom-logo {
        height: 40px;
    }

    .header-flex {
        gap: 15px;
    }

    .contact-info {
        width: 100%;
        justify-content: center;
    }

    .info-item {
        color: #000000;
    }

    .info-item a {
        color: #000000;
    }
    
    .info-item a:hover {
        color: #ff0000;
    }
    
    .info-item i {
        color: #ff0000;
    }

    .social-links a {
        background: rgba(255,0,0,0.1);
        color: #000000 !important;
    }

    .social-links a:hover {
        background: #ff0000;
        color: #ffffff !important;
    }
}

.mobile-menu-toggle span {
   display: block;
   width: 100%;
   height: 2px;
   background: var(--light);
   position: absolute;
   left: 0;
   transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }

.mobile-menu-toggle.active span:nth-child(1) {
   transform: rotate(45deg);
   top: 10px;
}

.mobile-menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
   transform: rotate(-45deg);
   top: 10px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000;
    padding: 60px 25px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.mobile-menu-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-items li {
    margin-bottom: 10px;
}

.mobile-menu-items a {
    display: block;
    padding: 10px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact-info {
    margin-top: 30px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #b0b0b0;
}

.mobile-contact-item {
   display: flex;
   align-items: center;
   gap: 10px;
   color: var(--light);
   margin-bottom: 15px;
}

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

/* Overlay per mobile menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

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

/*--------------------------------------------------------------
7. Footer
--------------------------------------------------------------*/
/* Footer Styles Updated */
.site-footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.footer-widgets {
    padding: 80px 0 60px;
    position: relative;
}

/* Effetto bordo superiore */
.footer-widgets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.8) 50%,
        rgba(255,0,0,0) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Footer Info Section */
.footer-info {
    position: relative;
    padding-right: 30px;
}

.footer-info::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, 
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.3) 50%,
        rgba(255,0,0,0) 100%);
}

.footer-info .footer-logo {
    margin-bottom: 25px;
}

.footer-info .custom-logo {
    height: 60px;
    transition: transform 0.3s ease;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Footer Contact Info */
.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.footer-contact-info i {
    color: #ff0000;
    font-size: 1.2rem;
}

.footer-contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

/* Footer Social Icons - Stile identico all'header */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,0,0,0.1);
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,0,0,0.3);
}

.footer-social a i {
    position: relative;
    z-index: 2;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.footer-social .facebook {
    background: rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
}
.footer-social .facebook:hover {
    background: #3b5998;
}

.footer-social .instagram {
    background: rgba(225, 48, 108, 0.1);
    border-color: #e1306c;
}
.footer-social .instagram:hover {
    background: #e1306c;
}

.footer-social .youtube {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}
.footer-social .youtube:hover {
    background: #ff0000;
}

/* Widget Titles */
.widget-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, rgba(255,0,0,0.3));
    transition: width 0.3s ease;
}

.footer-widget:hover .widget-title::after {
    width: 60px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.footer-menu a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    margin-right: 10px;
    color: #ff0000;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Form */
.newsletter-content {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,0,0,0.1), transparent);
    z-index: 0;
}

.newsletter-content > * {
    position: relative;
    z-index: 1;
}

.newsletter-content p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 1px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-newsletter input[type="email"]:focus {
    border-color: #ff0000;
    background: rgba(255,255,255,0.08);
    outline: none;
    box-shadow: 0 0 15px rgba(255,0,0,0.1);
}

.footer-newsletter input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.8);
    padding: 25px 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,0,0,0) 0%,
        rgba(255,0,0,0.3) 50%,
        rgba(255,0,0,0) 100%);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #808080;
    font-size: 0.9rem;
}

.footer-bottom-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-menu a {
    color: #808080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-menu a:hover {
    color: #ff0000;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-widgets {
        padding: 60px 0 40px;
    }
}
/* ============================================================
   Elementi Laravel (form contatti/newsletter, flash) — porta
   dello stile CF7 con classi native. Accent #ff0000.
   ============================================================ */

/* Form contatti */
.contact .partner-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.partner-form .form-row { margin-bottom: 20px; }
.partner-form .form-row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.partner-form input[type="text"],
.partner-form input[type="email"],
.partner-form input[type="tel"],
.partner-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
}
.partner-form input::placeholder,
.partner-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.partner-form input:focus,
.partner-form textarea:focus {
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}
.partner-form .form-row--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}
.partner-form .form-row--checkbox input { margin-top: 3px; flex-shrink: 0; }
.partner-form button[type="submit"] { width: 100%; border: none; cursor: pointer; }

/* Errori del form */
.form-errors {
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 15px 20px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.5);
    border-radius: 12px;
    color: #ffdada;
}
.form-errors ul { margin: 0; padding-left: 20px; }
.form-error { color: #ff6b6b; font-size: 14px; margin-top: 6px; }

/* Form newsletter (footer) */
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.newsletter-form input[type="email"] {
    flex: 1 1 160px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 15px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.newsletter-form button:hover { transform: translateY(-2px); }
.newsletter-form .form-error { flex-basis: 100%; }

/* Flash banner globale */
.site-flash {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 90%;
    padding: 14px 22px;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: flashIn 0.4s ease;
}
.site-flash--success { background: linear-gradient(45deg, #16a34a, #22c55e); }
.site-flash--error { background: linear-gradient(45deg, #dc2626, #ef4444); }
.site-flash__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
}
.site-flash__close:hover { opacity: 1; }
@keyframes flashIn { from { opacity: 0; transform: translate(-50%, -20px); } to { opacity: 1; transform: translate(-50%, 0); } }

@media (max-width: 600px) {
    .partner-form .form-row--two { grid-template-columns: 1fr; }
    .contact .partner-form { padding: 28px 20px; }
}

/* ============================================================
   FIX & rifiniture (2026-07-24)
   ============================================================ */

/* Fix overlap: i controlli form devono includere padding+bordo nella larghezza */
.partner-form input,
.partner-form textarea,
.partner-form select,
.newsletter-form input,
.newsletter-form button {
    box-sizing: border-box;
    max-width: 100%;
}

/* Form contatti: spaziatura più arieggiata e coerente */
.contact .partner-form { padding: 44px; }
.partner-form .form-row { margin-bottom: 18px; }
.partner-form .form-row--two { gap: 18px; }
.partner-form textarea { min-height: 120px; }

/* Newsletter footer: non deve mai sforare la colonna */
.footer-newsletter .newsletter-content { min-width: 0; }
.newsletter-form { align-items: stretch; }

/* Piccole rifiniture di respiro tipografico */
.section-header h2 { margin-bottom: 12px; }
.section-header p { opacity: 0.85; }

/* Riduci il padding esagerato delle sezioni su schermi piccoli */
@media (max-width: 768px) {
    .hero { padding-top: 70px; }
    .network, .contact { padding: 60px 0; }
    .contact .partner-form { padding: 26px 18px; }
    .partner-form .form-row--two { grid-template-columns: 1fr; }
}

/* ============================================================
   Revisione spazi (2026-07-24) — vertical rhythm coerente
   NB: appeso in fondo → vince sulla cascata sui valori sopra.
   ============================================================ */

/* DESKTOP */
/* Sezioni con ritmo coerente; taglia lo spazio morto contatti→footer */
.network { padding: 90px 0; }
.contact { padding: 90px 0 64px; }
.footer-widgets { padding: 64px 0 48px; }
/* Titoli footer un filo più compatti (sopra l'underline) */
.widget-title { margin-bottom: 24px; }
/* Card contatti: respiro interno equilibrato */
.contact .partner-form { padding: 40px; }

/* MOBILE */
@media (max-width: 768px) {
    .section-header { margin-bottom: 32px; }
    .section-header p { font-size: 15px; }
    .hero { padding-top: 60px; }
    .network, .contact { padding: 52px 0; }
    .footer-widgets { padding: 44px 0 28px; }
    .footer-grid { gap: 30px; }
    .widget-title { margin-bottom: 18px; }
    .contact .partner-form { padding: 24px 18px; }
}

/* ============================================================
   Hero & regolata generale (2026-07-24 v3)
   Doppio offset risolto: .site-content compensa l'header fisso,
   quindi la hero usa un padding PICCOLO (solo respiro visivo).
   Niente min-height:100vh → nessuno spazio morto sotto la CTA.
   ============================================================ */

/* .site-content offsetta l'header fisso: lo allineo alla sua altezza reale */
.site-content { padding-top: 124px; }

.hero {
    min-height: 0;              /* la hero è alta quanto il suo contenuto */
    align-items: flex-start;
    padding-top: 40px;          /* solo respiro sotto l'header (già compensato) */
    padding-bottom: 64px;
}

/* Riduce il "vuoto bianco" tra la CTA e la sezione network */
.network { padding-top: 64px; }

@media (max-width: 768px) {
    /* La topbar (orari/tel/email/social) andava a capo → header alto 184px
       che copriva il titolo. Le info restano nel menu hamburger. */
    .header-topbar { display: none; }

    /* Header mobile snello (~60px): riduco l'offset del wrapper... */
    .site-content { padding-top: 64px; }
    /* ...e do alla hero solo un piccolo respiro. */
    .hero { padding-top: 28px; padding-bottom: 40px; }
    .network { padding-top: 40px; }
}

/* ============================================================
   Hamburger: tap target adeguato (era 16x6px, non toccabile)
   ============================================================ */
.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    padding: 11px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .mobile-menu-toggle { display: flex; }
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transition: all .3s ease;
}

/* Su telefono: header pulito Logo + CTA (no hamburger: menu ridondante,
   contatti già nel footer). L'hamburger resta su tablet (769–1024px). */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: none; }
    .header-main { padding: 12px 0; }
    .header-flex { gap: 12px; }
    .custom-logo { height: 38px; }
    .header-cta { font-size: 13px; padding: 9px 16px; white-space: nowrap; }
}

/* Fix fascia bianca contatti→footer: il margin-top del footer lasciava
   passare il body bianco. Il footer ha già il suo padding-top interno. */
.site-footer { margin-top: 0; }

/* Rimuove la sottile linea sotto la topbar (border + pseudo-elemento) */
.header-topbar { border-bottom: none; }
.header-topbar::after { display: none; }

/* ============================================================
   Pagine CMS (contenuto testuale)
   ============================================================ */
.page-section { background: #fff; padding: 64px 0 80px; min-height: 60vh; }
.page-article { max-width: 820px; margin: 0 auto; }
.page-article__title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 28px;
    line-height: 1.15;
}
.page-article__body { color: #333; font-size: 1.08rem; line-height: 1.75; }
.page-article__body h2 { font-size: 1.7rem; color: #111; margin: 40px 0 14px; font-weight: 700; }
.page-article__body h3 { font-size: 1.3rem; color: #111; margin: 30px 0 12px; font-weight: 700; }
.page-article__body p { margin: 0 0 18px; }
.page-article__body ul, .page-article__body ol { margin: 0 0 18px; padding-left: 24px; }
.page-article__body li { margin-bottom: 8px; }
.page-article__body a { color: #cc0000; text-decoration: underline; }
.page-article__body a:hover { color: #ff0000; }
.page-article__body img { max-width: 100%; height: auto; border-radius: 10px; margin: 12px 0; }
.page-article__body blockquote {
    border-left: 4px solid #ff0000;
    margin: 20px 0; padding: 8px 20px;
    background: #faf6f6; color: #444; font-style: italic;
}
.page-article__body table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.page-article__body th, .page-article__body td { border: 1px solid #e3e6ea; padding: 10px 12px; text-align: left; }

@media (max-width: 768px) {
    .page-section { padding: 40px 0 56px; }
    .page-article__title { font-size: 1.9rem; }
    .page-article__body { font-size: 1rem; }
}

/* Elimina il gradino di sfondo topbar→main (era la "linea"): la topbar
   aveva un bg nero opaco più scuro del resto dell'header. Ora trasparente
   così l'header è un blocco uniforme senza stacchi. */
.header-topbar { background: transparent; }

/* ============================================================
   Mappa centri (Leaflet)
   ============================================================ */
.centers-map-wrap { margin-top: 50px; }
#centers-map {
    height: 460px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid #e3e6ea;
    z-index: 1;
}
#centers-map .leaflet-popup-content { font-size: 14px; line-height: 1.5; }
#centers-map .leaflet-popup-content strong { color: #111; }
#centers-map .leaflet-popup-content a { color: #cc0000; }
@media (max-width: 768px) {
    .centers-map-wrap { margin-top: 32px; }
    #centers-map { height: 360px; }
}

/* ============================================================
   Marker con logo MasterTuning (mappa chiara Positron)
   ============================================================ */
/* Marker: logo tondo, piccolo, con anello bianco e ombra netta
   così risalta sul grigio chiaro della mappa. */
.mt-marker img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
    display: block;
}
/* Popup: titolo scuro, link rosso brand */
#centers-map .leaflet-popup-content { font-size: 14px; line-height: 1.5; }
#centers-map .leaflet-popup-content strong { color: #111; }
#centers-map .leaflet-popup-content a { color: #cc0000; }
#centers-map .leaflet-popup-content a[href^="tel:"] { color: #111; }

/* ============================================================
   FAQ (accordion) + rich snippet
   ============================================================ */
.faq-section { background: #f6f7f8; padding: 90px 0; }
.faq-section .section-header { text-align: center; margin-bottom: 44px; }
.faq-section .section-header h2 { color: #111; font-size: 2.4rem; }
.faq-section .section-header h2 span { color: #ff0000; }
.faq-section .section-header p { color: #666; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: 0 6px 20px rgba(0,0,0,0.06); border-color: #f3c2c2; }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    color: #ff0000;
    font-size: 0.9rem;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin: 0; color: #555; line-height: 1.7; }
@media (max-width: 768px) {
    .faq-section { padding: 56px 0; }
    .faq-section .section-header h2 { font-size: 1.8rem; }
    .faq-item summary { padding: 16px 18px; font-size: 1rem; }
    .faq-answer { padding: 0 18px 18px; }
}

/* Breadcrumb pagine CMS */
.breadcrumb { max-width: 820px; margin: 0 auto 20px; font-size: 14px; color: #888; }
.breadcrumb a { color: #cc0000; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { margin: 0 8px; color: #bbb; }

/* ============================================================
   Banner consenso cookie (GDPR / Consent Mode v2)
   ============================================================ */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 10000;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 24px;
    background: #15181d;
    color: #e8eaed;
    border: 1px solid rgba(255,0,0,0.25);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.45);
    animation: cookieUp 0.4s ease;
}
@keyframes cookieUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__text strong { display: block; font-size: 15px; margin-bottom: 4px; color: #fff; }
.cookie-banner__text p { margin: 0; font-size: 13.5px; line-height: 1.55; color: #b9bdc4; }
.cookie-banner__text a { color: #ff6b6b; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-cookie--accept { background: linear-gradient(45deg, #ff0000, #ff3333); color: #fff; }
.btn-cookie--accept:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,0,0,0.35); }
.btn-cookie--reject { background: transparent; color: #cfd3d8; border-color: rgba(255,255,255,0.25); }
.btn-cookie--reject:hover { background: rgba(255,255,255,0.06); }

/* Link legali nel footer bottom */
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-links a { color: #9aa0a6; font-size: 13px; text-decoration: none; }
.footer-legal-links a:hover { color: #fff; }

@media (max-width: 680px) {
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; padding: 18px; gap: 14px; }
    .cookie-banner__actions { justify-content: stretch; }
    .btn-cookie { flex: 1; text-align: center; }
}
