/* ============================================
   COOKIE CONSENT STYLES
   ============================================ */
#cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 900px;
    z-index: 10000;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 1.5rem 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
}

#cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

#cookie-consent-banner.animate-slide-up {
    animation: slideUpFloat 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFloat {
    from {
        transform: translateX(-50%) translateY(150%);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

#cookie-consent-banner.d-none {
    display: none !important;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-consent-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-consent-text {
    flex: 1;
    color: #4b5563;
    line-height: 1.6;
}

.cookie-consent-text .fw-medium {
    color: #1f2937;
    font-size: 1.1rem;
}

.cookie-consent-text i.fa-cookie-bite {
    color: #0052cc;
    /* Blue cookie icon like in the screenshot */
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-consent-button {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-button-accept {
    background-color: #006633;
    color: white;
    border: none;
}

.cookie-consent-button-accept:hover {
    background-color: #004d26;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 102, 51, 0.2);
}

.cookie-consent-button-settings {
    background-color: transparent;
    color: #006633;
    border: 1px solid #006633;
}

.cookie-consent-button-settings:hover {
    background-color: #f0fdf4;
}

.cookie-consent-text a.text-primary {
    color: #0052cc !important;
    /* Blue link color */
}