/**
 * CMC Silesia — wcag.css
 * Floating WCAG widget (ikona → panel).
 */
.wcag-widget { position: fixed; bottom: 28px; right: 28px; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wcag-toggle-btn { width: 54px; height: 54px; border-radius: 50%; background: #127A60; color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(18,122,96,.40); transition: background .2s, transform .2s; }
.wcag-toggle-btn:hover { background: #0A5A47; transform: scale(1.08); }
.wcag-toggle-btn:focus-visible { outline: 3px solid #3FC9A8; outline-offset: 3px; }
.wcag-toggle-btn[aria-expanded="true"] { background: #0E3A52; }
.wcag-panel { background: #fff; border-radius: 16px; box-shadow: 0 16px 48px rgba(14,58,82,.18); width: 280px; overflow: hidden; transform-origin: bottom right; animation: wp-in .2s ease both; }
.wcag-panel[hidden] { display: none; }
@keyframes wp-in { from { opacity:0; transform: scale(.9) translateY(8px); } to { opacity:1; transform: scale(1) translateY(0); } }
.wcag-panel__header { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: #0E3A52; color: #fff; }
.wcag-panel__title { font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.wcag-panel__close { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.12); border: none; color: rgba(255,255,255,.85); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.wcag-panel__close:hover { background: rgba(255,255,255,.25); }
.wcag-panel__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.wcag-option { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.wcag-option__label { font-size: 13px; color: #3D5162; font-weight: 500; }
.wcag-font-group { display: flex; gap: 4px; }
.wcag-font-btn { min-width: 36px; height: 34px; padding: 0 8px; font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 13px; color: #0E3A52; background: #F0F4F7; border: 1px solid #DDE5EC; border-radius: 6px; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.wcag-font-btn:hover { background: #E6F5F0; border-color: #127A60; }
.wcag-font-btn.is-active, .wcag-font-btn[aria-pressed="true"] { background: #127A60; color: #fff; border-color: #127A60; }
.wcag-toggle-row { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 12px; background: #F8FAFB; border: 1px solid #DDE5EC; border-radius: 10px; font-size: 13px; font-weight: 500; color: #1a2a3a; cursor: pointer; text-align: left; transition: background .15s, border-color .15s; }
.wcag-toggle-row svg { flex-shrink: 0; color: #127A60; }
.wcag-toggle-row:hover { background: #E6F5F0; border-color: #127A60; }
.wcag-toggle-row__badge { margin-left: auto; font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 99px; background: #DDE5EC; color: #5A6B7A; }
.wcag-toggle-row[aria-pressed="true"] { background: #E6F5F0; border-color: #127A60; }
.wcag-toggle-row[aria-pressed="true"] .wcag-toggle-row__badge { background: #127A60; color: #fff; }
.wcag-toggle-row[aria-pressed="true"]  .wcag-toggle-row__badge::after { content: 'Wł'; }
.wcag-toggle-row[aria-pressed="false"] .wcag-toggle-row__badge::after { content: 'Wył'; }
.wcag-decl-link { display: flex; align-items: center; gap: 8px; padding: 8px 0 4px; font-size: 12px; color: #127A60; text-decoration: none; border-top: 1px solid #DDE5EC; transition: color .15s; }
.wcag-decl-link:hover { color: #0A5A47; text-decoration: underline; }
body.high-contrast { filter: contrast(1.5) brightness(1.05); }
body.links-underline a { text-decoration: underline !important; }
@media (max-width: 480px) { .wcag-widget { bottom: 16px; right: 16px; } .wcag-panel { width: calc(100vw - 32px); } }
@media print { .wcag-widget { display: none !important; } }
