.bb-cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
}

.bb-cookie-consent__inner {
    max-width: 760px;
    margin-left: auto;
    padding: 24px 28px;
    border-radius: 18px;
    background: rgba(22, 33, 45, 0.96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.bb-cookie-consent__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.bb-cookie-consent__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.bb-cookie-consent__text a {
    color: #7fd0f0;
    text-decoration: underline;
}

.bb-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.bb-cookie-consent__button,
.bb-cookie-settings {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bb-cookie-consent__button:hover,
.bb-cookie-settings:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
}

.bb-cookie-consent__button--primary {
    border-color: #47b0dc;
    background: #47b0dc;
}

.bb-cookie-consent__button--primary:hover {
    border-color: #2f98c5;
    background: #2f98c5;
}

.bb-cookie-settings {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    border-color: rgba(127, 208, 240, 0.38);
    background: rgba(22, 33, 45, 0.96);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.bb-cookie-settings:hover,
.bb-cookie-settings:focus,
.bb-cookie-settings:active {
    border-color: #7fd0f0;
    background: rgba(34, 52, 70, 0.98);
    color: #ffffff;
    text-decoration: none;
}

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

    .bb-cookie-consent__inner {
        padding: 18px;
        border-radius: 16px;
    }

    .bb-cookie-consent__title {
        font-size: 18px;
    }

    .bb-cookie-consent__text {
        font-size: 14px;
    }

    .bb-cookie-consent__actions {
        flex-direction: column;
    }

    .bb-cookie-consent__button,
    .bb-cookie-settings {
        width: 100%;
    }

    .bb-cookie-settings {
        right: 16px;
        bottom: 16px;
        width: auto;
    }
}
