/* ===== Cookie consent bar (bottom) ===== */

.dsp-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: #ffffff;
    border-top: 1px solid rgba(10, 31, 61, 0.1);
    box-shadow: 0 -4px 24px rgba(10, 31, 61, 0.12);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.dsp-cookie-bar.dsp-cookie-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dsp-cookie-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.dsp-cookie-bar-inner p {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #1e293b;
    flex: 1;
}

.dsp-cookie-accept {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: #0077C2;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 119, 194, 0.3);
}

.dsp-cookie-accept:hover {
    background: #0066a8;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .dsp-cookie-bar-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 14px 0;
        gap: 14px;
    }

    .dsp-cookie-bar-inner p {
        font-size: 13px;
    }

    .dsp-cookie-accept {
        width: 100%;
    }
}
