/* SL Cookie Consent Styles */

.sl-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 24px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.sl-cookie-banner.position-bottom {
    bottom: 0;
}

.sl-cookie-banner.position-top {
    bottom: auto;
    top: 0;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sl-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sl-cookie-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.sl-cookie-buttons {
    display: flex;
    gap: 10px;
}

.sl-cookie-btn {
    padding: 11px 22px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    white-space: nowrap !important;
}

.sl-cookie-accept,
.sl-cookie-accept-all {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 
        0 4px 15px rgba(37, 99, 235, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.sl-cookie-accept:hover,
.sl-cookie-accept-all:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 6px 20px rgba(37, 99, 235, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.sl-cookie-accept:active,
.sl-cookie-accept-all:active {
    transform: translateY(0) !important;
}

.sl-cookie-decline {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.sl-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.sl-cookie-save {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.sl-cookie-save:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Modal */
.sl-cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sl-cookie-modal-content {
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 28px;
    max-width: 420px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.sl-cookie-modal-content h3 {
    color: white;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
}

.sl-cookie-option {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-cookie-option:last-of-type {
    border-bottom: none;
}

.sl-cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.sl-cookie-option label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
    cursor: pointer;
}

.sl-cookie-option label input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sl-cookie-option p {
    margin: 6px 0 0 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.4;
}

.sl-cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 600px) {
    .sl-cookie-banner {
        padding: 16px 18px;
    }
    
    .sl-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    
    .sl-cookie-buttons {
        width: 100%;
    }
    
    .sl-cookie-btn {
        flex: 1 !important;
        padding: 11px 16px !important;
    }
    
    .sl-cookie-modal-content {
        padding: 22px;
    }
    
    .sl-cookie-modal-buttons {
        flex-direction: column;
    }
    
    .sl-cookie-modal-buttons .sl-cookie-btn {
        width: 100% !important;
    }
}
