/* ===== COOKIE CONSENT STYLES ===== */
.cookie-consent-banner {
    position: fixed;
    inset: 0;
    z-index: 999999;
    animation: fadeIn 0.3s ease;
}

.cookie-consent-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.cookie-consent-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .cookie-consent-modal {
        bottom: 20px;
        left: 20px;
        right: auto;
        max-width: 480px;
        border-radius: 24px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
}

.cookie-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #a3a3a3;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.cookie-content {
    padding: 40px;
    position: relative;
}

.cookie-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.cookie-title {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
    text-align: center;
    color: #fff;
}

.cookie-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #d4d4d4;
    margin-bottom: 28px;
    text-align: center;
}

.cookie-description-small {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #a3a3a3;
    margin-bottom: 24px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cookie-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background: #fff;
    color: #0a0a0a;
}

.cookie-btn-accept:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.cookie-btn-customize, .cookie-btn-secondary {
    background: transparent;
    color: #a3a3a3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-customize:hover, .cookie-btn-secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #737373;
}

.cookie-link {
    color: #a3a3a3;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: #fff;
}

.cookie-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #a3a3a3;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.cookie-back-btn:hover {
    color: #fff;
}

.cookie-toggles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.cookie-toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.cookie-toggle-info {
    flex: 1;
}

.cookie-toggle-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.cookie-badge {
    padding: 3px 8px;
    border-radius: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-badge-required {
    background: rgba(255, 255, 255, 0.1);
    color: #a3a3a3;
}

.cookie-toggle-description {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #737373;
}

.cookie-toggle-switch {
    position: relative;
    flex-shrink: 0;
}

.cookie-toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-switch label {
    display: block;
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle-switch label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #737373;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle-switch input[type="checkbox"]:checked + label {
    background: #fff;
}

.cookie-toggle-switch input[type="checkbox"]:checked + label:after {
    left: 25px;
    background: #0a0a0a;
}

.cookie-toggle-switch input[type="checkbox"]:disabled + label {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-settings-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cookie-settings-floating-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 767px) {
    .cookie-content {
        padding: 28px 20px;
    }
    
    .cookie-title {
        font-size: 1.4rem;
    }
    
    .cookie-settings-floating-btn {
        bottom: 80px;
    }
}
