/* ==========================
COOKIE CONSENT BANNER
========================== */
.sv-cookie-banner{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: #192E59;
    color: #fff;
    padding: 16px 24px;
    padding-right: 110px; /* clears the fixed chat bubble in the bottom-right corner */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    animation: svCookieSlideUp 0.4s ease;
}

@keyframes svCookieSlideUp{
    from{ transform: translateY(100%); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
}

.sv-cookie-text strong{
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.sv-cookie-text p{
    font-size: 12.5px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    max-width: 560px;
    line-height: 1.5;
}

.sv-cookie-actions{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.sv-cookie-link{
    color: #fff;
    font-size: 12.5px;
    text-decoration: underline;
    white-space: nowrap;
}

.sv-cookie-link:hover{
    color: #cbd5e1;
}

.sv-cookie-later{
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.sv-cookie-later:hover{
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.sv-cookie-accept{
    background: #fff;
    color: #192E59;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.sv-cookie-accept:hover{
    opacity: 0.9;
}

@media(max-width: 600px){
    .sv-cookie-banner{
        padding: 14px 16px;
        padding-bottom: 90px; /* stacks actions above the chat bubble instead of beside it on mobile */
    }

    .sv-cookie-actions{
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}