.a11y {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif
    }
.a11y__toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #e30613;
    color: #fff;
    border: none;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease
    }
.a11y__toggle:hover,
.a11y__toggle:focus {
    background: #b8050f
    }
.a11y__toggle:focus {
    outline: 3px solid #fff;
    outline-offset: 2px
    }
.a11y__toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center
    }
.a11y__toggle-icon svg {
    width: 24px;
    height: 24px
    }
.a11y__toggle-text {
    display: inline
    }
@media (max-width: 768px) {
    .a11y__toggle-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0
        }
    }
.a11y__panel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    width: 320px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 40px);
    background: #fff;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease
    }
.a11y__panel[hidden] {
    display: block !important
    }
.a11y[data-state="open"] .a11y__panel {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    visibility: visible
    }
.a11y__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #e30613;
    color: #fff
    }
.a11y__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff !important
    }
.a11y__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease
    }
.a11y__close svg {
    display: block
    }
.a11y__close:hover,
.a11y__close:focus {
    background: rgba(255, 255, 255, 0.2)
    }
.a11y__close:focus {
    border-color: #fff;
    outline: none
    }
.a11y__content {
    padding: 16px 20px;
    overflow-y: auto;
    max-height: calc(100vh - 200px)
    }
.a11y__footer {
    padding: 16px 20px;
    border-top: 1px solid #e9ecef
    }
.a11y__announcer {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
    }
.a11y__section {
    margin: 0 0 20px;
    padding: 0;
    border: none
    }
.a11y__section:last-child {
    margin-bottom: 0
    }
.a11y__section-title {
    display: block;
    margin-bottom: 12px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a
    }
.a11y__font-controls {
    display: flex;
    align-items: center;
    gap: 8px
    }
.a11y__font-value {
    min-width: 50px;
    padding: 8px 12px;
    background: #e9ecef;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a
    }
.a11y__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #e9ecef;
    color: #1a1a1a;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease
    }
.a11y__btn:hover {
    background: #d4d4d4
    }
.a11y__btn:focus {
    outline: none;
    border-color: #b8050f;
    box-shadow: 0 0 0 2px rgba(184, 5, 15, 0.2)
    }
.a11y__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed
    }
.a11y__btn--font {
    min-width: 44px;
    padding: 8px 12px;
    font-weight: 700
    }
.a11y__btn--reset {
    padding: 8px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.a11y__contrast-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
    }
.a11y__btn--contrast {
    flex: 1 1 calc(50% - 4px);
    min-width: 100px;
    padding: 12px 8px;
    font-size: 13px
    }
.a11y__btn--contrast[aria-checked="true"] {
    background: #b8050f;
    color: #fff;
    border-color: #b8050f
    }
.a11y__btn--contrast:first-child {
    flex-basis: 100%
    }
.a11y__switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef
    }
.a11y__switch-row:last-child {
    border-bottom: none
    }
.a11y__switch-label {
    font-size: 14px;
    color: #1a1a1a
    }
.a11y__switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer
    }
.a11y__switch:focus {
    outline: none
    }
.a11y__switch:focus .a11y__switch-track {
    box-shadow: 0 0 0 3px rgba(184, 5, 15, 0.3)
    }
.a11y__switch-track {
    position: relative;
    display: block;
    width: 52px;
    height: 28px;
    background: #ccc;
    border-radius: 14px;
    transition: background-color 0.2s ease
    }
.a11y__switch[aria-checked="true"] .a11y__switch-track {
    background: #b8050f
    }
.a11y__switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease
    }
.a11y__switch[aria-checked="true"] .a11y__switch-thumb {
    transform: translateX(24px)
    }
.a11y__btn--reset-all {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    color: #b8050f;
    border: 2px solid #b8050f
    }
.a11y__btn--reset-all:hover {
    background: #b8050f;
    color: #fff
    }
.a11y__btn--reset-all:focus {
    border-color: #b8050f;
    box-shadow: 0 0 0 2px rgba(184, 5, 15, 0.3)
    }
.a11y[data-state="open"] .a11y__toggle {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
    pointer-events: none
    }
@media (max-width: 480px) {
    .a11y__panel {
        width: 100vw;
        max-width: 100vw;
        border-radius: 0
        }
    .a11y__toggle {
        padding: 10px 12px
        }
    .a11y__content {
        padding: 12px 16px
        }
    .a11y__font-controls {
        flex-wrap: wrap
        }
    .a11y__btn--contrast {
        flex-basis: 100%
        }
    }
body.a11y-contrast-high {
    background: #000 !important;
    color: #fff !important
    }
body.a11y-contrast-high *,
body.a11y-contrast-high *::before,
body.a11y-contrast-high *::after {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important
    }
body.a11y-contrast-high a {
    color: #ff0 !important
    }
body.a11y-contrast-high a:hover,
body.a11y-contrast-high a:focus {
    color: #fff !important;
    background: #ff0 !important
    }
body.a11y-contrast-high button,
body.a11y-contrast-high input[type="submit"],
body.a11y-contrast-high input[type="button"],
body.a11y-contrast-high .btn {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important
    }
body.a11y-contrast-high button:hover,
body.a11y-contrast-high button:focus,
body.a11y-contrast-high input[type="submit"]:hover,
body.a11y-contrast-high input[type="submit"]:focus,
body.a11y-contrast-high input[type="button"]:hover,
body.a11y-contrast-high input[type="button"]:focus,
body.a11y-contrast-high .btn:hover,
body.a11y-contrast-high .btn:focus {
    background: #ff0 !important;
    color: #000 !important
    }
body.a11y-contrast-high img {
    filter: grayscale(100%) contrast(120%)
    }
body.a11y-contrast-high .a11y__panel {
    background: #000 !important;
    border: 2px solid #fff !important
    }
body.a11y-contrast-high .a11y__header {
    background: #333 !important;
    border-bottom: 2px solid #fff !important
    }
body.a11y-contrast-high .a11y__btn {
    background: #333 !important;
    color: #fff !important;
    border: 2px solid #fff !important
    }
body.a11y-contrast-high .a11y__btn:hover,
body.a11y-contrast-high .a11y__btn:focus {
    background: #fff !important;
    color: #000 !important
    }
body.a11y-contrast-high .a11y__btn[aria-checked="true"] {
    background: #ff0 !important;
    color: #000 !important
    }
body.a11y-contrast-high .a11y__switch-track {
    background: #333 !important;
    border: 2px solid #fff !important
    }
body.a11y-contrast-high .a11y__switch[aria-checked="true"] .a11y__switch-track {
    background: #ff0 !important
    }
body.a11y-contrast-high .a11y__switch-thumb {
    background: #fff !important
    }
body.a11y-contrast-high .a11y__font-value {
    background: #333 !important;
    color: #fff !important;
    border: 1px solid #fff !important
    }
body.a11y-contrast-high .a11y__section-title {
    color: #fff !important
    }
body.a11y-contrast-high .a11y__switch-label {
    color: #fff !important
    }
body.a11y-contrast-high .a11y__footer {
    border-color: #fff !important
    }
body.a11y-contrast-high .a11y__btn--reset-all {
    background: transparent !important;
    color: #ff0 !important;
    border-color: #ff0 !important
    }
body.a11y-contrast-high .a11y__btn--reset-all:hover,
body.a11y-contrast-high .a11y__btn--reset-all:focus {
    background: #ff0 !important;
    color: #000 !important
    }
html.a11y-contrast-inverted {
    filter: invert(1) hue-rotate(180deg);
    min-height: 100%;
    background: #fff
    }
html.a11y-contrast-inverted img,
html.a11y-contrast-inverted video,
html.a11y-contrast-inverted picture,
html.a11y-contrast-inverted svg:not(.a11y svg),
html.a11y-contrast-inverted canvas,
html.a11y-contrast-inverted iframe {
    filter: invert(1) hue-rotate(180deg)
    }
html.a11y-contrast-inverted .a11y {
    filter: invert(1) hue-rotate(180deg)
    }
body.a11y-underline-links a {
    text-decoration: underline !important;
    text-underline-offset: 3px
    }
body.a11y-pause-animations,
body.a11y-pause-animations *,
body.a11y-pause-animations *::before,
body.a11y-pause-animations *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important
    }
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important
        }
    }
body.a11y-big-cursor,
body.a11y-big-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='2' d='M8 8l28 12-12 4-4 12z'/%3E%3C/svg%3E") 4 4, auto !important
    }
body.a11y-big-cursor a,
body.a11y-big-cursor button,
body.a11y-big-cursor [role="button"],
body.a11y-big-cursor input[type="submit"],
body.a11y-big-cursor input[type="button"],
body.a11y-big-cursor [onclick] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='2' d='M12 8v28l6-6h14l-6-6 6-6H18z'/%3E%3C/svg%3E") 12 8, pointer !important
    }
@media print {
    .a11y {
        display: none !important
        }
    }
