.hello-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    box-sizing: border-box;
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.hello-cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.hello-cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
}

.hello-cookie-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 auto;
}

.hello-cookie-banner__text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hello-cookie-banner__text a:hover {
    color: #f0f0f0;
}

.hello-cookie-banner__accept {
    flex: 0 0 auto;
    border: 0;
    border-radius: 15px;
    padding: 0.75rem 1.5rem;
    background: #9b1919;
    color: #fff;
    font: inherit;
    font-size: 15px!important;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.hello-cookie-banner__accept:hover {
    background: #7f1414;
}

@media (max-width: 767px) {
    .hello-cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .hello-cookie-banner__accept {
        width: 100%;
    }
}
