.cookie-consent-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    font-family: 'Manrope';
    color: #202020;
    padding: 16px 24px;
    box-sizing: border-box;
}

.cookie-consent-banner_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-banner_text {
    flex: 1 1 320px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-banner_text a {
    color: inherit;
    text-decoration: underline;
}

.cookie-consent-banner_actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    font-weight: 700;
}

.cookie-consent-banner_actions button {
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid #202020;
    background: transparent;
    color: #202020;
    font: inherit;
}

#cookie-consent-accept {
    background: #ba282d;
    border-color: #ba282d;
    color: #f8f8f8;
}
