/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border-top: 2px solid var(--accent-blue);
    backdrop-filter: blur(20px);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    padding: 1.5rem 0;
}

.cookie-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-actions {
    gap: 0.75rem;
}

.cookie-actions .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-actions .btn:hover {
    transform: translateY(-2px);
}

.cookie-actions .btn-primary {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cookie-actions .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cookie-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.cookie-actions .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.cookie-actions .btn-secondary {
    background-color: var(--tertiary-dark);
    border-color: var(--tertiary-dark);
}

/* Cookie Settings Modal */
.cookie-category {
    padding: 1rem;
    border: 1px solid var(--tertiary-dark);
    border-radius: 10px;
    background: rgba(51, 65, 85, 0.3);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(51, 65, 85, 0.5);
    border-color: var(--accent-blue);
}

.form-check-input:checked {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.form-check-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 1rem 0;
    }
    
    .cookie-actions {
        margin-top: 1rem;
    }
    
    .cookie-actions .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cookie-text {
        font-size: 0.85rem;
    }
}

/* Animation for modal */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal.fade .modal-dialog {
    animation: slideIn 0.3s ease-out;
}

/* Privacy notice floating button */
.privacy-notice-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.privacy-notice-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Cookie notice in footer */
.cookie-notice-footer {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(20, 184, 166, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.cookie-notice-footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-notice-footer .btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
}
