/* Cookie Consent — Slim bottom bar */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1B3A5C;
    color: #fff;
    padding: 12px 20px;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease,
                visibility 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-banner__content {
    flex: 1;
    min-width: 0;
}

.cookie-banner__title {
    display: none;
}

.cookie-banner__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__link {
    color: #A8956E;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__link:hover {
    color: #fff;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
    line-height: 1.4;
}

.cookie-banner__btn--accept {
    background: #fff;
    color: #1B3A5C;
    border: 1px solid #fff;
}

.cookie-banner__btn--accept:hover {
    background: #EDE8DD;
}

.cookie-banner__btn--essential {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--essential:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .cookie-banner__actions {
        flex-direction: row;
        gap: 8px;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
}
