.cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1085;
    color: var(--bs-white);
    background: rgba(23, 39, 63, 0.96);
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.22);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.cookie-consent__text {
    max-width: 980px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.45;
}

.cookie-consent__link {
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent__link:hover {
    color: var(--bs-primary-active, var(--bs-primary));
}

.cookie-consent__button {
    flex: 0 0 auto;
    min-width: 150px;
}

.cookie-consent.is-hiding {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 767.98px) {
    .cookie-consent__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .cookie-consent__text {
        font-size: 13px;
    }

    .cookie-consent__button {
        width: 100%;
    }

    .cookie-consent {
        bottom: 80px;
        margin: 10px;
        border-radius: 10px;
    }
}
