.b-cookie-consent {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1400;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .24s ease, transform .24s ease;
    pointer-events: none;
}

.b-cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.b-cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 22px;
    border: 1px solid rgba(27, 34, 37, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 48px rgba(12, 30, 38, .18);
}

.b-cookie-consent__text {
    color: #394348;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

.b-cookie-consent__text a {
    color: #1b2225;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s ease;
}

.b-cookie-consent__text a:hover {
    color: #66b913;
}

.b-cookie-consent__btn {
    flex: 0 0 auto;
    min-width: 148px;
    height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #66b913;
    color: #1b2225;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: none;
}

.b-cookie-consent__btn:hover {
    background: #79d816;
}

.b-cookie-consent__btn:active {
    transform: translateY(1px);
}

@media (max-width: 767px) {
    .b-cookie-consent {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .b-cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
        border-radius: 16px;
    }

    .b-cookie-consent__text {
        font-size: 13px;
        line-height: 1.45;
    }

    .b-cookie-consent__btn {
        width: 100%;
        min-width: 0;
        height: 44px;
        font-size: 15px;
    }
}
