.cookie-banner {
    align-items: center;
    background: rgba(15, 23, 42, 0.96);
    bottom: 0;
    color: #fff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    left: 0;
    padding: 16px max(20px, calc((100vw - 1180px) / 2));
    position: fixed;
    right: 0;
    transform: translateY(110%);
    transition: transform 0.25s ease;
    z-index: 10000;
}

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

.cookie-banner p {
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
}

.cookie-banner a {
    color: #facc15;
    white-space: nowrap;
}

.cookie-banner button {
    background: #14b8a6;
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    padding: 10px 18px;
}

@media (max-width: 680px) {
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .cookie-banner-actions {
        justify-content: space-between;
    }
}
