     /* © nextforge.fr 1.1.0 cookies */  
        
        
        .cookie-modal {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 380px;
            max-width: calc(100vw - 40px);
            background: #1a1a1a;
            border-left: 4px solid #e23636;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            z-index: 9999;
            transform: translateX(-120%);
            transition: transform 0.4s ease;
        }
        
        .cookie-modal.active {
            transform: translateX(0);
        }
        
        .toggle-switch {
            position: relative;
            width: 44px;
            height: 24px;
            background: #333;
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .toggle-switch.active {
            background: #e23636;
        }
        
        .toggle-switch.disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .toggle-switch.active::after {
            transform: translateX(20px);
        }
        
        .custom-select {
            appearance: none;
            background: #262626;
            border: 1px solid #333;
            color: white;
            padding: 8px 32px 8px 12px;
            font-family: 'Open Sans', sans-serif;
            font-size: 13px;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center;
            background-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .custom-select:focus {
            outline: none;
            border-color: #e23636;
        }
        
        .btn-accept {
            padding: 12px 24px;
            background: #e23636;
            color: white;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-accept:hover {
            background: #c42d2d;
        }
        
        .btn-save {
            padding: 12px 24px;
            background: transparent;
            border: 1px solid #444;
            color: #999;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-save:hover {
            border-color: #666;
            color: white;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.open {
            max-height: 300px;
        }
        
        .accordion-arrow {
            transition: transform 0.3s ease;
        }
        
        .accordion-arrow.open {
            transform: rotate(180deg);
        }