/* Cookie Notice Styles */

.unb-cookie-banner {
    display: none!important; /* Ensure it's hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 25px;
    z-index: 9999;
    display: none;
    /* Hidden by default, shown by JS */
    animation: slideInUp 0.5s ease-out forwards;
    border: 1px solid #eee;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.unb-cookie-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.unb-cookie-close-btn {
    position: absolute;
    top: -15px;
    right: -10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.unb-cookie-close-btn:hover {
    color: var(--primary-red, #d72e3a);
}

.unb-cookie-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-red, #d72e3a);
    margin: 0;
    text-transform: uppercase;
}

.unb-cookie-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.unb-privacy-link {
    color: var(--primary-red, #d72e3a);
    text-decoration: underline;
    font-weight: 500;
}

.unb-cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.unb-cookie-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 13px;
    white-space: nowrap;
}

/* Decline button styling - black outline style */
.btn-outline {
    background-color: transparent !important;
    color: var(--primary-black, #000000) !important;
    border: 2px solid var(--primary-black, #000000);
    box-shadow: none !important;
}

.btn-outline:hover {
    background-color: var(--primary-black, #000000) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .unb-cookie-banner {
        width: 100%;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
        margin-bottom: 0px;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    }

    .unb-cookie-close-btn {
        top: -10px;
        right: 0;
    }
}