

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    padding: 16px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.cookie-banner.is-visible {
    transform: translateY(0);
}
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.cookie-banner__text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.cookie-banner__link {
    color: #444;
    text-decoration: underline !important;
}
.cookie-banner__link:hover {
    text-decoration: none;
}
.cookie-banner__button {
    flex-shrink: 0;
    background: #FFE006;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.cookie-banner__button:hover {
    opacity: 0.85;
}
@media (max-width: 600px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .cookie-banner__button {
        width: 100%;
        text-align: center;
    }
}