/* Акцентный цвет для активных кнопок навигации */
:root {
    --bv-accent: #2196f3;
    --bv-accent-light: #e3f2fd;
}

/* Шрифт Брайля — путь относительно этого файла (assets/css/) */
@font-face {
    font-family: 'Braille';
    src: url('../../fonts/braille/Braille.woff2') format('woff2'),
         url('../../fonts/braille/Braille.woff') format('woff'),
         url('../../fonts/braille/Braille.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Контейнер сайта: ширина 1280px, отступы по 20px */
.bv-site-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Trigger: по умолчанию правый верхний угол окна (fixed) */
.blind-version-trigger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99998;
    background: #333;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.blind-version-trigger:hover {
    opacity: 0.9;
}

/* Panel: по умолчанию fixed (для WP и страниц без контейнера) */
.bv-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.bv-panel--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* В контейнере: панель в потоке, над контентом (не перекрывает) */
.bv-site-container .bv-panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    transition: opacity 0.25s ease;
}

.bv-site-container .bv-panel--hidden {
    display: none !important;
    transform: none;
}

.bv-panel__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    padding: 10px 16px;
    max-width: 100%;
}

.bv-panel__label {
    font-size: 14px;
    color: #000;
    font-weight: normal;
    margin: 0 2px 0 0;
}

.bv-panel__divider {
    width: 1px;
    height: 22px;
    background: #ccc;
    margin: 0 4px;
}

/* Buttons — белые с закруглёнными углами */
.bv-btn {
    border: 1px solid #999;
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.3;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.bv-btn:hover {
    background: #f5f5f5;
    border-color: #666;
}

.bv-btn__icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid #000;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.bv-btn--to-content {
    display: inline-flex;
    align-items: center;
}

.bv-btn--to-content .bv-btn__icon-circle svg {
    display: block;
}

/* Шрифт: три кнопки с буквой А разного размера */
.bv-font-group {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.bv-btn--font-a {
    padding: 6px 14px;
    min-width: 44px;
}

.bv-a { display: inline-block; font-weight: bold; }
.bv-a--100 { font-size: 1em; }
.bv-a--150 { font-size: 1.35em; }
.bv-a--200 { font-size: 1.75em; }

.bv-btn--font.bv-btn--active {
    border: 1px solid var(--bv-accent);
    border-bottom: 2px solid var(--bv-accent);
    padding-bottom: 4px;
    background: var(--bv-accent-light);
    color: #000;
}

/* Цвет: кнопки с буквой Ц */
.bv-color-group {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.bv-btn--color {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bv-ts {
    font-size: 16px;
    font-weight: bold;
}

.bv-btn--color.bv-btn--active {
    border: 2px solid var(--bv-accent);
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--bv-accent);
}

/* Цветовые кнопки по скриншоту */
/* Фон кнопки = фон схемы, «Ц» = цвет текста схемы */
.bv-btn--color-1 { background: #000; color: #fff; }
.bv-btn--color-1 .bv-ts { color: #fff; }
.bv-btn--color-2 { background: #fff; color: #000; }
.bv-btn--color-2 .bv-ts { color: #000; }
.bv-btn--color-3 { background: #add8e6; color: #000080; }
.bv-btn--color-3 .bv-ts { color: #000080; }
.bv-btn--color-4 { background: #5c4033; color: #f5f5dc; }
.bv-btn--color-4 .bv-ts { color: #f5f5dc; }
.bv-btn--color-5 { background: #556b2f; color: #adff2f; }
.bv-btn--color-5 .bv-ts { color: #adff2f; }

.bv-btn--color-reset {
    background: #f0f0f0;
    color: #555;
}
.bv-btn--color-reset .bv-btn__icon--reset-scheme {
    stroke: currentColor;
}

.bv-btn--with-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bv-btn__icon {
    flex-shrink: 0;
}

.bv-btn--braille .bv-btn__icon,
.bv-btn--speech .bv-btn__icon,
.bv-btn--exit .bv-btn__icon { display: block; }

.bv-btn--braille.bv-btn--active {
    border-color: var(--bv-accent);
    background: var(--bv-accent-light);
}

/* Дополнительно — выделенная рамка когда открыто */
.bv-btn--additional {
    margin-left: auto;
    border-width: 2px;
    border-color: #000;
}

.bv-btn--additional[aria-expanded="true"] {
    border-width: 2px;
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
}

/* Additional panel */
.bv-additional {
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 16px 20px 12px;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
}

.bv-additional--hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
}

.bv-additional__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.bv-additional__section {
    flex: 1 1 auto;
    min-width: 180px;
}

.bv-additional__section-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.bv-additional__options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    align-items: center;
}

.bv-additional__options--sound {
    align-items: center;
}

.bv-btn--option {
    padding: 5px 10px;
    font-size: 13px;
}

.bv-btn--option.bv-btn--active {
    border: 1px solid var(--bv-accent);
    border-bottom: 2px solid var(--bv-accent);
    padding-bottom: 3px;
    background: var(--bv-accent-light);
    color: #000;
}

.bv-btn--icon-only {
    padding: 6px;
    min-width: 36px;
}

.bv-btn--icon-only svg {
    display: block;
}

.bv-sound-level {
    font-size: 13px;
    color: #333;
    margin-left: 8px;
}

.bv-additional__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.bv-additional__copyright {
    font-size: 12px;
    color: #666;
    margin: 12px 0 0;
}

/* Cookie notice */
.bv-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background: #fff;
    color: #000;
    border-top: 1px solid #ddd;
    padding: 20px 24px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.bv-cookie--hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.bv-cookie__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.bv-cookie__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.bv-cookie__text {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
}

.bv-cookie__link {
    color: #000;
    text-decoration: underline;
}

.bv-cookie__btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.bv-cookie__btn:hover {
    background: #333;
}

/* Body: цветовые схемы (5 схем по скриншотам) */
body.bv-active {
    transition: background-color 0.3s, color 0.3s;
}

/* Когда панель fixed — сдвигаем контент вниз, чтобы не перекрывать header (значение задаётся из JS по высоте панели) */
body.bv-active.bv-panel-is-fixed {
    padding-top: var(--bv-panel-height, 56px) !important;
}
/* Elementor header (fixed/sticky): сдвигаем вниз на высоту панели */
body.bv-active.bv-panel-is-fixed header.elementor-location-header,
body.bv-active.bv-panel-is-fixed [data-elementor-type="header"] {
    top: var(--bv-panel-height, 56px) !important;
}

/* Фон задаём и для html, чтобы секции без своего фона не показывали чёрный */
html:has(body.bv-scheme-black-white),
body.bv-scheme-black-white { background: #fff !important; color: #000 !important; }
body.bv-scheme-black-white a { color: #000 !important; }

html:has(body.bv-scheme-white-black),
body.bv-scheme-white-black { background: #000 !important; color: #fff !important; }
body.bv-scheme-white-black a { color: #fff !important; }

html:has(body.bv-scheme-blue),
body.bv-scheme-blue { background: #add8e6 !important; color: #000080 !important; }
body.bv-scheme-blue a { color: #000080 !important; }

html:has(body.bv-scheme-beige-green),
body.bv-scheme-beige-green { background: #5c4033 !important; color: #f5f5dc !important; }
body.bv-scheme-beige-green a { color: #f5f5dc !important; }

html:has(body.bv-scheme-yellow-green),
body.bv-scheme-yellow-green { background: #556b2f !important; color: #adff2f !important; }
body.bv-scheme-yellow-green a { color: #adff2f !important; }

/* Цвет текста, заголовков, фоны и background-image переопределяются только при выбранной схеме; при сбросе схемы всё возвращается к стилям темы */
body.bv-active[class*="bv-scheme-"] * {
    color: inherit !important;
    background-color: inherit !important;
    background-image: none !important;
}

/* При сбросе схемы иконки выбора схемы в панели — те же цвета, что и при выбранной схеме */
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-reset { background-color: #f0f0f0 !important; color: #555 !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-1 { background-color: #000 !important; color: #fff !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-1 .bv-ts { color: #fff !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-2 { background-color: #fff !important; color: #000 !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-2 .bv-ts { color: #000 !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-3 { background-color: #add8e6 !important; color: #000080 !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-3 .bv-ts { color: #000080 !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-4 { background-color: #5c4033 !important; color: #f5f5dc !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-4 .bv-ts { color: #f5f5dc !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-5 { background-color: #556b2f !important; color: #adff2f !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-5 .bv-ts { color: #adff2f !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-reset:hover { background-color: #f0f0f0 !important; color: #555 !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-1:hover { background-color: #000 !important; color: #fff !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-2:hover { background-color: #fff !important; color: #000 !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-3:hover { background-color: #add8e6 !important; color: #000080 !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-4:hover { background-color: #5c4033 !important; color: #f5f5dc !important; }
body.bv-active:not([class*="bv-scheme-"]) #blind-version-panel .bv-btn--color-5:hover { background-color: #556b2f !important; color: #adff2f !important; }

/* Исключение: кнопки выбора схемы в панели всегда в цветах своей схемы (фон = фон схемы, «Ц» = цвет текста схемы) */
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-1,
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-2,
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-3,
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-4,
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-5,
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-reset {
    background-image: none !important;
}
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-1 { background-color: #000 !important; color: #fff !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-1 .bv-ts { color: #fff !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-2 { background-color: #fff !important; color: #000 !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-2 .bv-ts { color: #000 !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-3 { background-color: #add8e6 !important; color: #000080 !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-3 .bv-ts { color: #000080 !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-4 { background-color: #5c4033 !important; color: #f5f5dc !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-4 .bv-ts { color: #f5f5dc !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-5 { background-color: #556b2f !important; color: #adff2f !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-5 .bv-ts { color: #adff2f !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-reset { background-color: #f0f0f0 !important; color: #555 !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-1:hover { background-color: #000 !important; color: #fff !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-2:hover { background-color: #fff !important; color: #000 !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-3:hover { background-color: #add8e6 !important; color: #000080 !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-4:hover { background-color: #5c4033 !important; color: #f5f5dc !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-5:hover { background-color: #556b2f !important; color: #adff2f !important; }
body.bv-active[class*="bv-scheme-"] #blind-version-panel .bv-btn--color-reset:hover { background-color: #f0f0f0 !important; color: #555 !important; }

/* Секции/контейнеры без своего фона наследуют фон схемы только при выбранной схеме */
body.bv-active[class*="bv-scheme-"] .elementor-section,
body.bv-active[class*="bv-scheme-"] .elementor-inner,
body.bv-active[class*="bv-scheme-"] .elementor-container,
body.bv-active[class*="bv-scheme-"] .elementor-widget-wrap,
body.bv-active[class*="bv-scheme-"] section[class*="elementor"],
body.bv-active[class*="bv-scheme-"] .elementor-location-single {
    background-color: inherit !important;
}

/* При выбранной схеме .demo-notice наследует схему для контраста */
body.bv-active[class*="bv-scheme-"] .demo-notice {
    background: inherit !important;
    color: inherit !important;
    border: 1px solid currentColor !important;
}
body.bv-active[class*="bv-scheme-"] .demo-notice a,
body.bv-active[class*="bv-scheme-"] .demo-notice code {
    color: inherit !important;
}

/* Увеличение шрифта: zoom только у обёртки контента (панель и триггер не масштабируются) */
@supports (zoom: 1) {
    .bv-content-zoom.bv-zoom-150 { zoom: 1.5 !important; }
    .bv-content-zoom.bv-zoom-200 { zoom: 2 !important; }
}
@supports not (zoom: 1) {
    body.bv-font-150 { font-size: 150% !important; }
    body.bv-font-150 *,
    body.bv-font-150 .elementor-widget-wrap,
    body.bv-font-150 .elementor-inner,
    body.bv-font-150 .elementor-section,
    body.bv-font-150 .elementor-container,
    body.bv-font-150 .elementor-widget-heading .elementor-heading-title,
    body.bv-font-150 .elementor-widget-text-editor,
    body.bv-font-150 .elementor-widget * { font-size: 1em !important; }
    body.bv-font-200 { font-size: 200% !important; }
    body.bv-font-200 *,
    body.bv-font-200 .elementor-widget-wrap,
    body.bv-font-200 .elementor-inner,
    body.bv-font-200 .elementor-section,
    body.bv-font-200 .elementor-container,
    body.bv-font-200 .elementor-widget-heading .elementor-heading-title,
    body.bv-font-200 .elementor-widget-text-editor,
    body.bv-font-200 .elementor-widget * { font-size: 1em !important; }
}

body.bv-braille * {
    font-family: 'Braille', sans-serif !important;
}

body.bv-underline-links a {
    text-decoration: underline !important;
}

/* Кернинг */
body.bv-kerning-medium * { letter-spacing: 0.08em !important; }
body.bv-kerning-large * { letter-spacing: 0.15em !important; }

/* Интервал */
body.bv-interval-1\.5 * { line-height: 1.6 !important; }
body.bv-interval-double * { line-height: 2 !important; }

/* Гарнитура */
body.bv-font-serif * { font-family: Georgia, "Times New Roman", serif !important; }

body.bv-image-descriptions img[alt]:not([alt=""]) {
    border: 2px solid currentColor;
    padding: 4px;
}
body.bv-image-descriptions img:not([alt]) {
    outline: 2px dashed #999;
}

/* Графика: монохром (картинки и фоновые изображения) */
body.bv-graphics-monochrome {
    filter: grayscale(100%);
}
body.bv-graphics-monochrome img {
    filter: grayscale(100%);
}

/* Скрытие изображений и фоновых картинок при "Отключить" */
body.bv-graphics-off img {
    visibility: hidden;
}
body.bv-graphics-off * {
    background-image: none !important;
}

/* Кнопка «Озвучить текст» при выделении */
.bv-speak-selection {
    position: fixed;
    z-index: 99997;
    min-width: 160px;
    height: 40px;
    padding: 0 14px;
    border: none;
    border-radius: 6px;
    background: #333;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transition: opacity 0.15s ease, background 0.15s ease;
}
.bv-speak-selection:hover {
    background: #222;
    opacity: 0.95;
}
.bv-speak-selection:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}
.bv-speak-selection--hidden {
    display: none !important;
}

/* ========== Защита от переопределения темой / Elementor (жёсткие стили плагина) ========== */
body #blind-version-trigger.blind-version-trigger {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 99998 !important;
    background: #333 !important;
    color: #fff !important;
    padding: 10px 16px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    line-height: normal !important;
}
body #blind-version-trigger.blind-version-trigger:hover {
    opacity: 0.9 !important;
    background: #333 !important;
    color: #fff !important;
}

body #blind-version-panel.bv-panel {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: #fff !important;
    color: #000 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    border-bottom: 1px solid #ddd !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}
body #blind-version-panel .bv-panel__bar {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px 10px !important;
    padding: 10px 16px !important;
}
body #blind-version-panel .bv-panel__label {
    font-size: 14px !important;
    color: #000 !important;
    font-weight: normal !important;
}
body #blind-version-panel .bv-btn,
body #blind-version-panel button.bv-btn {
    border: 1px solid #999 !important;
    background: #fff !important;
    color: #000 !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-family: inherit !important;
    box-shadow: none !important;
}
body #blind-version-panel .bv-btn:hover,
body #blind-version-panel button.bv-btn:hover {
    background: #f5f5f5 !important;
    border-color: #666 !important;
    color: #000 !important;
}
body #blind-version-panel .bv-btn--color {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Кнопки выбора схемы всегда в цветах своей схемы (фон = фон схемы, «Ц» = цвет текста; перебиваем body.bv-active[class*="bv-scheme-"] *) */
body #blind-version-panel .bv-btn--color-reset { background-color: #f0f0f0 !important; background-image: none !important; color: #555 !important; }
body #blind-version-panel .bv-btn--color-1 { background-color: #000 !important; background-image: none !important; color: #fff !important; }
body #blind-version-panel .bv-btn--color-1 .bv-ts { color: #fff !important; }
body #blind-version-panel .bv-btn--color-2 { background-color: #fff !important; background-image: none !important; color: #000 !important; }
body #blind-version-panel .bv-btn--color-2 .bv-ts { color: #000 !important; }
body #blind-version-panel .bv-btn--color-3 { background-color: #add8e6 !important; background-image: none !important; color: #000080 !important; }
body #blind-version-panel .bv-btn--color-3 .bv-ts { color: #000080 !important; }
body #blind-version-panel .bv-btn--color-4 { background-color: #5c4033 !important; background-image: none !important; color: #f5f5dc !important; }
body #blind-version-panel .bv-btn--color-4 .bv-ts { color: #f5f5dc !important; }
body #blind-version-panel .bv-btn--color-5 { background-color: #556b2f !important; background-image: none !important; color: #adff2f !important; }
body #blind-version-panel .bv-btn--color-5 .bv-ts { color: #adff2f !important; }
body #blind-version-panel .bv-btn--color-reset:hover { background-color: #f0f0f0 !important; color: #555 !important; }
body #blind-version-panel .bv-btn--color-1:hover { background-color: #000 !important; color: #fff !important; }
body #blind-version-panel .bv-btn--color-2:hover { background-color: #fff !important; color: #000 !important; }
body #blind-version-panel .bv-btn--color-3:hover { background-color: #add8e6 !important; color: #000080 !important; }
body #blind-version-panel .bv-btn--color-4:hover { background-color: #5c4033 !important; color: #f5f5dc !important; }
body #blind-version-panel .bv-btn--color-5:hover { background-color: #556b2f !important; color: #adff2f !important; }
body #blind-version-panel .bv-btn--font-a {
    padding: 6px 14px !important;
    min-width: 44px !important;
}
body #blind-version-panel .bv-additional {
    background: #fff !important;
    border-top: 1px solid #ddd !important;
    padding: 16px 20px 12px !important;
}
body #blind-version-panel .bv-additional__section-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #000 !important;
}
body #blind-version-panel .bv-btn--option {
    padding: 5px 10px !important;
    font-size: 13px !important;
}
body #blind-version-panel .bv-btn--font.bv-btn--active,
body #blind-version-panel .bv-btn--option.bv-btn--active {
    border-color: #2196f3 !important;
    background: #e3f2fd !important;
}
body #blind-version-panel .bv-btn--color.bv-btn--active {
    border-color: #2196f3 !important;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #2196f3 !important;
}
body #blind-version-panel .bv-btn--braille.bv-btn--active {
    border-color: #2196f3 !important;
    background: #e3f2fd !important;
}

body #bv-cookie-notice.bv-cookie {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100000 !important;
    background: #fff !important;
    color: #000 !important;
    border-top: 1px solid #ddd !important;
    padding: 20px 24px !important;
}
body #bv-cookie-notice .bv-cookie__btn {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    cursor: pointer !important;
}
body #bv-cookie-notice .bv-cookie__link {
    color: #000 !important;
    text-decoration: underline !important;
}

/* Панель не перекрывает header: отступ body и сдвиг фиксированного/липкого header (Elementor и др.) */
body.bv-active.bv-panel-is-fixed {
    padding-top: var(--bv-panel-height, 56px) !important;
}
body.bv-active.bv-panel-is-fixed header.elementor-location-header,
body.bv-active.bv-panel-is-fixed [data-elementor-type="header"] {
    top: var(--bv-panel-height, 56px) !important;
}

/* Увеличение шрифта: zoom на обёртке контента (панель/триггер не масштабируются) */
@supports (zoom: 1) {
    body.bv-active .bv-content-zoom.bv-zoom-150 { zoom: 1.5 !important; }
    body.bv-active .bv-content-zoom.bv-zoom-200 { zoom: 2 !important; }
}
