#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #c41440;
    color: #fff;
    padding: 20px 0;
}
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.cookie-banner__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}
.cookie-banner__text a {
    color: #fff;
    text-decoration: underline;
}
.cookie-banner__text a:hover {
    text-decoration: none;
}
.cookie-banner__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid #fff;
    transition: background 0.2s, color 0.2s;
}
.cookie-banner__btn--decline {
    background: transparent;
    color: #fff;
}
.cookie-banner__btn--decline:hover {
    background: rgba(255, 255, 255, 0.15);
}
.cookie-banner__btn--accept {
    background: #fff;
    color: #c41440;
}
.cookie-banner__btn--accept:hover {
    background: #f9e0e0;
}
@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        gap: 16px;
    }
    .cookie-banner__buttons {
        width: 100%;
    }
    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
}
