/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #1a1a2e;
    color: #e0e0e0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 1.25rem 1.5rem;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.cookie-consent-icon {
    font-size: 2rem;
    color: #4fc3f7;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.cookie-consent-text h6 {
    color: #ffffff;
}

.cookie-consent-text p {
    color: #b0b0b0;
    line-height: 1.5;
}

.cookie-consent-link {
    color: #4fc3f7 !important;
    text-decoration: underline !important;
    font-weight: 600;
}

.cookie-consent-link:hover {
    color: #81d4fa !important;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    align-items: center;
}

.cookie-consent-actions .btn-success {
    background-color: #2e7d32;
    border-color: #2e7d32;
}

.cookie-consent-actions .btn-success:hover {
    background-color: #388e3c;
    border-color: #388e3c;
}

.cookie-consent-actions .btn-outline-secondary {
    color: #b0b0b0;
    border-color: #555;
}

.cookie-consent-actions .btn-outline-secondary:hover {
    color: #fff;
    background-color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: center;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}