.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 340px;
    background: #fff;
    color: #39404b;
    font-size: 13px;
    line-height: 1.4;
    font-family: IBM-Plex, Roboto, Segoe UI, Helvetica, Arial, sans-serif;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
    flex-direction: column;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__text a {
    color: #27aae1;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner__btn {
    flex-shrink: 0;
    background: #27aae1;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cookie-banner__btn:hover {
    background: #1d9cd1;
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
        max-width: none;
    }
}