.mbl-cookie {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 9998;
    width: calc(100% - 40px);
    max-width: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 11px 18px;
    border-radius: 11px;
    color: #fff;
    font-size: 12.5px;
    line-height: 1.45;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, 20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.mbl-cookie.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.mbl-cookie__text {
    flex: 1 1 auto;
    color: rgba(255, 255, 255, 0.9);
}

.mbl-cookie__text a {
    color: #fff;
    text-decoration: underline;
}

.mbl-cookie__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mbl-cookie__link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    text-decoration: underline;
    white-space: nowrap;
}

.mbl-cookie__link:hover {
    color: #fff;
}

.mbl-cookie__btn {
    border: 0;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    padding: 7px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.mbl-cookie__btn:hover {
    filter: brightness(1.08);
}

@media (max-width: 767.98px) {
    .mbl-cookie {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 16px 18px;
    }

    .mbl-cookie__actions {
        justify-content: space-between;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mbl-cookie {
        transition: none;
    }
}
