/* ========================================== */
/* 1. VARIABILI, RESET E ACCELERAZIONE SEO    */
/* ========================================== */
:root {
    --primary-color: #004080; 
    --primary-hover: #00264d; 
    --accent-color: #25D366;  
    --accent-hover: #1da851;  
    --text-main: #333333;     
    --bg-light: #f4f7f6;      
    --white: #ffffff;         
    
    /* Costanti marketing per profondità visiva */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition-fast: all 0.2s ease-in-out;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


/* Reset Strutturale con ottimizzazione rendering testo */
body, h1, h2, h3, p, ul, li { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    line-height: 1.6; 
    color: var(--text-main); 
    background-color: var(--bg-light); 
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}


/* ACCESSIBILITÀ STRUTTURALE: Skip Link e Focus Indicators */
.skip-link {
    position: absolute;
    top: -40px; 
    left: 0; 
    background: #000; 
    color: #fff; 
    padding: 8px; 
    z-index: 10000; 
    transition: top 0.2s ease;
}
.skip-link:focus { 
    top: 0; 
}

/* Migliorato l'indicatore di focus per renderlo visibile anche su sfondi scuri/primari */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { 
    outline: 3px solid #ff6600; 
    outline-offset: 3px; 
}

/* ========================================== */
/* 2. LAYOUT, NAVIGAZIONE E STRUTTURE         */
/* ========================================== */

/* Header Sticky ottimizzato per non causare Layout Shifts (CLS) */
header { 
    background-color: var(--white); 
    box-shadow: var(--shadow-sm); 
    position: sticky; 
    top: 0; 
    z-index: 50; 
    contain: layout;
}

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

.logo a { 
    text-decoration: none; 
    color: var(--primary-color); 
    font-size: 1.5rem; 
    font-weight: 800;
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 20px; 
    align-items: center; 
}
nav a { 
    text-decoration: none; 
    color: var(--text-main); 
    font-weight: 500; 
    padding: 8px; 
    transition: var(--transition-fast);
}
nav a:hover { 
    color: var(--primary-color); 
}
.btn-nav { 
    background-color: var(--primary-color); 
    color: var(--white); 
    border-radius: 4px; 
    padding: 8px 16px; 
}
.btn-nav:hover { 
    background-color: var(--primary-hover); 
    color: var(--white); 
}

/* --- DROPDOWN MENU ACCATTIVANTE --- */
.dropdown {
    position: relative;
    display: inline-block; 
}
.dropbtn {
    cursor: pointer; 
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 290px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    border-radius: 6px;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 10px 0; 
    border-top: 3px solid var(--primary-color);
    animation: fadeInMenu 0.2s ease-in-out;
}
.dropdown-content li {
    display: block;
    margin: 0; 
}
.dropdown-content a {
    color: var(--text-main);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
    border-bottom: 1px solid #f5f5f5; 
}
.dropdown-content li:last-child a {
    border-bottom: none;
}
.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color); 
    padding-left: 20px; /* Effetto micro-interazione CRO */
}
/* Trigger Dropdown su Desktop */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: block; 
    }
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Area Contenuti */
main { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 40px 20px; 
    min-height: 60vh; 
}
.hero { 
    text-align: center; 
    margin-bottom: 60px; 
    padding: 40px 20px; 
    background: var(--white); 
    border-radius: 8px; 
    box-shadow: var(--shadow-sm);
}
.hero h1 { 
    color: var(--primary-color); 
    margin-bottom: 20px; 
    font-size: 2.4rem; 
    font-weight: 800;
}
.hero h2 { 
    font-weight: 400; 
    font-size: 1.25rem; 
    margin-bottom: 30px; 
    color: #555; 
}

/* ========================================== */
/* 3. COMPONENTI MARKETING (CRO) E FORM       */
/* ========================================== */
.btn-whatsapp, .btn-primary, .btn-secondary { 
    display: inline-block; 
    padding: 14px 28px; 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: bold; 
    border: none; 
    cursor: pointer; 
    text-align: center; 
    font-size: 1rem; 
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
.btn-whatsapp { 
    background-color: var(--accent-color); 
    color: var(--white); 
}
.btn-whatsapp:hover { 
    background-color: var(--accent-hover); 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3); 
}
.btn-primary { 
    background-color: var(--primary-color); 
    color: var(--white); 
}
.btn-primary:hover { 
    background-color: var(--primary-hover); 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,64,128,0.2); 
}
.btn-secondary { 
    background-color: #ddd; 
    color: #333; 
}
.btn-secondary:hover { 
    background-color: #ccc; 
}

/* Griglie UX responsabili del coinvolgimento visivo */
.features, .contact-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}
.card { 
    background: var(--white); 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition-smooth);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.card h3 { 
    color: var(--primary-color); 
    margin-bottom: 15px; 
}
.link-scopri { 
    display: inline-block; 
    margin-top: 15px; 
    color: var(--primary-color); 
    text-decoration: none; 
    font-weight: bold; 
}
.link-scopri:hover {
    text-decoration: underline;
}

/* Form Conversione Privati / Aziende */
.form-group { 
    margin-bottom: 20px; 
    display: flex; 
    flex-direction: column; 
}
.form-group label { 
    margin-bottom: 6px; 
    font-weight: 600; 
}
.form-group input, .form-group textarea { 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    font-family: inherit; 
    font-size: 1rem; 
    transition: var(--transition-fast);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 64, 128, 0.1);
}

/* Footer & Cookie Banner */
footer { 
    background-color: #111a24; 
    color: #eee; 
    padding: 40px 20px; 
    text-align: center; 
}
.footer-legal ul { 
    list-style: none; 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-top: 20px; 
}
.footer-legal a { 
    color: #aaa; 
    text-decoration: none; 
}
.footer-legal a:hover { 
    color: #fff; 
    text-decoration: underline; 
}

.cookie-banner { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background-color: var(--white); 
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15); 
    padding: 25px; 
    display: none; 
    flex-direction: column; 
    gap: 15px; 
    z-index: 1000; 
    align-items: center; 
    text-align: center; 
}
.cookie-banner p { 
    margin: 0; 
    font-size: 0.95rem; 
    max-width: 800px;
}
.cookie-buttons { 
    display: flex; 
    gap: 10px; 
}

/* ========================================== */
/* 4. STRUMENTI FLOTTANTI E ELEMENTI COOCKIE  */
/* ========================================== */
.floating-action-group {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999; 
}

.btn-float {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: #ffffff;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s; 
    will-change: transform;
}
.btn-float:hover { 
    transform: scale(1.1) translateY(-2px); 
}

.btn-scroll-top {
    background-color: #1a252f;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth); 
}
.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
}

.btn-whatsapp-float {
    background-color: #25D366; 
}

.btn-access-trigger {
    background-color: #ff6600; 
}

/* PANNELLO SIDEBAR ACCESSIBILITÀ INTEGRATO */
.accessibility-sidebar {
    position: fixed;
    top: 0;
    left: -320px; 
    width: 300px;
    height: 100vh;
    background-color: #111a24;
    box-shadow: 4px 0 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column; 
    will-change: left;
}
.accessibility-sidebar.open {
    left: 0; 
}
.sidebar-header {
    background-color: #0b1118;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #ff6600; 
}
.sidebar-header h3 {
    color: #ff6600;
    font-size: 1.2rem;
    letter-spacing: 1px; 
}
.sidebar-body {
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.access-btn {
    background-color: #1c2835;
    color: #ffffff;
    border: 1px solid #2c3e50;
    padding: 12px 15px;
    text-align: left;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast); 
}
.access-btn:hover { 
    background-color: #2c3e50; 
    border-color: #ff6600; 
}
.access-btn.btn-reset { 
    border-color: #cc0000; 
    color: #ff3333; 
    margin-top: 15px; 
    text-align: center; 
}
.access-btn.btn-reset:hover { 
    background-color: #330000; 
}
.access-btn.btn-close { 
    background-color: #0b1118; 
    text-align: center; 
}

.reading-guide-line {
    position: fixed;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff6600;
    z-index: 9998;
    pointer-events: none; 
    display: none; 
}
.reading-guide-line.active { 
    display: block; 
}

/* ========================================== */
/* 5. OVERRIDES DINAMICI PER ACCESSIBILITÀ    */
/* ========================================== */

body.access-dark-mode {
    background-color: #000000 !important;
    color: #ffffff !important; 
}
body.access-dark-mode main, body.access-dark-mode .card, body.access-dark-mode .hero {
    background-color: #111111 !important;
    color: #ffffff !important; 
}
body.access-dark-mode h1, body.access-dark-mode h2, body.access-dark-mode h3 {
    color: #4da6ff !important; 
}

body.access-high-contrast {
    background-color: #000000 !important;
    color: #ffff00 !important; 
}
body.access-high-contrast a { 
    color: #00ffff !important; 
    text-decoration: underline !important; 
}
body.access-high-contrast .card, body.access-high-contrast main, body.access-high-contrast header {
    background-color: #000000 !important;
    border: 2px solid #ffff00 !important; 
}

body.access-grayscale {
    filter: grayscale(100%) !important; 
}

body.access-text-spacing p, body.access-text-spacing li, body.access-text-spacing span {
    letter-spacing: 0.12em !important;
    word-spacing: 0.16em !important;
    line-height: 2 !important; 
}

body.access-highlight-links a {
    background-color: #ffff00 !important;
    color: #000000 !important;
    font-weight: bold !important;
    outline: 2px solid #ff6600 !important; 
}

body.zoom-1 { font-size: 1.15rem !important; }
body.zoom-2 { font-size: 1.3rem !important; }
body.zoom-3 { font-size: 1.45rem !important; } 

/* ========================================== */
/* STILE AVANZATO CHAT POPUP WHATSAPP (CRO)   */
/* ========================================== */
.chat-popup {
    display: none; 
    position: fixed;
    bottom: 90px; 
    right: 20px;
    width: 310px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 998;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transform-origin: bottom right;
    animation: popupEntrance 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    will-change: transform, opacity;
}

.chat-popup-header {
    background-color: #075e54; 
    color: var(--white);
    padding: 14px 18px;
    font-weight: bold;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    padding: 0 5px;
}
.close-chat:hover {
    opacity: 1;
}

.chat-popup-body {
    padding: 22px 18px;
    text-align: left;
}

.chat-popup-body p {
    font-size: 0.98rem;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.5;
}

.btn-whatsapp-chat {
    display: block;
    background-color: #25D366;
    color: var(--white) !important;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(37,211,102,0.2);
    transition: background-color 0.2s, transform 0.2s;
}

.btn-whatsapp-chat:hover {
    background-color: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

@keyframes popupEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ========================================== */
/* FIX DI ACCESSIBILITÀ COMPLIANCE (WCAG 2.2) */
/* ========================================== */

body.access-dark-mode *:focus-visible,
body.access-high-contrast *:focus-visible {
    outline: 3px solid #ffff00 !important; 
    outline-offset: 3px !important;
}

body.access-highlight-links a {
    outline: 3px solid #000000 !important; 
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    .chat-popup {
        animation: none !important; 
    }
}

/* ========================================== */
/* 6. RESPONSIVE DESIGN (MOBILE FIRST)        */
/* ========================================== */

/* Pulsante Hamburger nascosto di base su Desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}
.hamburger-box {
    display: inline-block;
    width: 28px;
    height: 20px;
    position: relative;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    border-radius: 4px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ""; top: -8px; left: 0; }
.hamburger-inner::after { content: ""; top: 8px; left: 0; }

.menu-toggle.is-active .hamburger-inner { background-color: transparent; }
.menu-toggle.is-active .hamburger-inner::before { transform: rotate(45deg); top: 0; }
.menu-toggle.is-active .hamburger-inner::after { transform: rotate(-45deg); top: 0; }

/* MEDIA QUERIES UNIFICATE: Tablet e Mobile (max-width: 992px) */
@media (max-width: 992px) {
    /* Typografia Hero */
    .hero h1 { font-size: 2rem; }
    .hero h2 { font-size: 1.15rem; }

    /* Struttura Header */
    .header-container {
        padding: 12px 20px;
    }
    
    .menu-toggle {
        display: block; /* Mostra l'hamburger */
    }

    /* Trasformazione del Menu di Navigazione in un pannello a discesa mobile */
    .nav-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    }
    
    .nav-menu.is-open {
        max-height: 80vh; 
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

    nav a {
        display: block;
        padding: 14px 10px; 
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f4f8;
    }
    
    .btn-nav {
        text-align: center;
        margin-top: 10px;
        background-color: var(--primary-color) !important;
        color: var(--white) !important;
    }

    /* GESTIONE DEI SOTTOMENU (DROPDOWN) SU TOUCH SCREEN */
    .dropdown-content {
        display: none; 
        position: static;
        width: 100%;
        box-shadow: none; 
        background-color: var(--bg-light);
        border-top: none;
        padding: 5px 0;
        border-radius: 4px;
        margin-top: 5px;
    }
    .dropdown-content a {
        padding-left: 25px;
        font-size: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }
    .dropdown-content li:last-child a { border-bottom: none; }

    /* FIX SINTASSI: Apertura del sottomenu al clic */
    .dropdown.show-submenu .dropdown-content {
        display: block;
    }
    .dropdown.show-submenu .dropdown-arrow {
        display: inline-block;
        transform: rotate(180deg); 
    }
}

/* MEDIA QUERIES: Mobile Piccolo (max-width: 480px) */
@media (max-width: 480px) {
    .chat-popup {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 85px;
    }
}

/* 4. File: components/style.css */
/* Inserisci tutto il CSS originario fino al commento "8. MODULO COOKIE BANNER GDPR" */
/* SOSTITUISCI completamente la parte finale del file con queste regole univoche: */

/* ========================================== */
/* 8. MODULO COOKIE BANNER GDPR (MODALE POPUP)*/
/* ========================================== */

/* L'overlay scuro che copre tutto lo schermo */
#ld-cookie-banner { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    background: rgba(0,0,0,0.8); 
    z-index: 999999; 
    display: none; /* Nascosto di default */
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(5px);
}

/* Questa è la classe "magica" che il JS aggiungerà per mostrare il popup */
#ld-cookie-banner.is-visible {
    display: flex !important;
}

/* Il riquadro centrale del popup */
.ld-cookie-content { 
    background: #111a24; 
    width: 90%; 
    max-width: 550px; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border-top: 5px solid var(--primary-color);
    text-align: center; 
}

.ld-cookie-text h3 { color: white; margin: 0 0 10px 0; font-size: 1.4rem; }
.ld-cookie-text p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #ccc; }

.ld-cookie-buttons { 
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap; 
    justify-content: center; 
    margin-top: 15px;
}

.ld-btn-outline { background: transparent; border: 1px solid #666; color: white; padding: 10px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; transition: all 0.2s; font-size: 0.95rem;}
.ld-btn-outline:hover { background: #222; border-color: white; }

/* Stili Modale Preferenze Dettagliate (invariati) */
#ld-cookie-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1000000; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
#ld-cookie-modal.is-visible { display: flex !important; }
.ld-modal-box { background: #fff; width: 90%; max-width: 550px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); overflow: hidden; color: #333; }
.ld-modal-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: #f8f9fa; }
.ld-modal-header h3 { margin: 0; color: var(--primary-color); font-size: 1.3rem; }
.ld-close-btn { background: none; border: none; color: #999; font-size: 28px; cursor: pointer; transition: color 0.2s; line-height: 1; padding: 0 5px; }
.ld-close-btn:hover { color: #333; }
.ld-modal-body { padding: 20px; max-height: 60vh; overflow-y: auto; text-align: left; }
.ld-cookie-category { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.ld-cookie-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ld-cat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.ld-cat-title { color: #333; font-weight: bold; font-size: 1.1rem; }
.ld-cat-desc { color: #666; font-size: 0.9rem; line-height: 1.5; margin:0; }
.ld-modal-footer { padding: 20px; border-top: 1px solid #eee; display: flex; justify-content: flex-end; background: #f8f9fa; }

/* Switcher Toggle */
.ld-toggle { position: relative; display: inline-block; width: 44px; height: 24px; }
.ld-toggle input { opacity: 0; width: 0; height: 0; }
.ld-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 24px; }
.ld-slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
.ld-toggle input:checked + .ld-slider { background-color: var(--accent-color); }
.ld-toggle input:disabled + .ld-slider { opacity: 0.5; cursor: not-allowed; }
.ld-toggle input:checked + .ld-slider:before { transform: translateX(20px); }

/* Widget Flottante Cookie */
#ld-cookie-widget { display: none; position: fixed; bottom: 20px; left: 20px; width: 50px; height: 50px; background: #111a24; border: 2px solid var(--primary-color); border-radius: 50%; color: white; font-size: 22px; cursor: pointer; z-index: 999998; box-shadow: 0 4px 10px rgba(0,0,0,0.3); align-items: center; justify-content: center; transition: all 0.3s ease; }
#ld-cookie-widget.is-visible { display: flex !important; }
#ld-cookie-widget:hover { background: var(--primary-color); transform: scale(1.1); }