.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(46, 40, 34, 0.95);
    color: #f9f3ea;
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.cookie-banner__content {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.4;
}

.cookie-banner__button {
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    background: #d8b07f;
    color: #2f2a25;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }
}
