.r52-a-cookies {
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    width: 95%;
    background: #2e469c;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    padding: 20px 30px;
    font-size: 16px;
    border: 3px solid #191970;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity 0.3s;
}

.r52-a-cookies__body {
    flex: 1 1 auto;
    text-align: left;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ССЫЛКА БЕЛАЯ ВСЕГДА */
.r52-a-cookies__body a,
.r52-a-cookies__body a:visited,
.r52-a-cookies__body a:active,
.r52-a-cookies__body a:focus,
.r52-a-cookies__body a:hover {
    color: #fff !important;
    text-decoration: underline;
    font-weight: 700;
    background: none !important;
    border: none !important;
    outline: none !important;
}

.r52-a-cookies__settings {
    margin-top: 10px;
    background: #25357a;
    border-radius: 12px;
    padding: 12px 16px;
    display: none;
    font-weight: 400;
    font-size: 15px;
}

.r52-a-cookies__settings.active {
    display: block;
}

.r52-a-cookies__checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 15px;
    gap: 8px;
}

.r52-a-cookies__checkbox input[type="checkbox"] {
    accent-color: #2e469c;
    width: 18px;
    height: 18px;
}

.r52-a-cookies__checkbox--disabled input {
    accent-color: #aaa;
}

.r52-a-cookies__footer {
    display: flex;
    gap: 16px;
    margin-left: 30px;
}

.r52-a-cookies__btn {
    min-width: 110px;
    height: 40px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    border: 3px solid #191970;
    cursor: pointer;
    transition: 0.2s;
}

/* КНОПКА ПРИНЯТЬ — ОРАНЖЕВАЯ */
.r52-a-cookies__btn--accept {
    background: #e4491e;
    color: #fff;
    border-color: #e4491e;
}

.r52-a-cookies__btn--accept:hover {
    background: #c53b13;
    border-color: #c53b13;
}

/* КНОПКА НАСТРОИТЬ — СИНЯЯ */
.r52-a-cookies__btn--settings {
    background: #2e469c;
    color: #fff;
    border-color: #191970;
}

.r52-a-cookies__btn--settings:hover {
    background: #191970;
    color: #fff;
}

@media (max-width: 700px) {
    .r52-a-cookies {
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.10);
        padding: 14px 8px 18px 8px;
        font-size: 15px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin: 0;
        transform: none;
        border-width: 2px;
    }
    .r52-a-cookies__body {
        gap: 8px;
        font-size: 15px;
        text-align: left;
        word-break: break-word;
    }
    .r52-a-cookies__settings {
        font-size: 14px;
        padding: 10px 6px;
    }
    .r52-a-cookies__footer {
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        margin-top: 14px;
        width: 100%;
    }
    .r52-a-cookies__btn {
        width: 100%;
        min-width: unset;
        font-size: 16px;
        height: 44px;
        padding: 0 0;
        border-radius: 10px;
    }
}
