/* SWCC shared floating widgets: WhatsApp contact + Accessibility menu */

/* WhatsApp floating button (sits above the urgent-help button, bottom-right) */
.wa-fab{position:fixed; right:24px; bottom:100px; z-index:150; width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; text-decoration:none;
  box-shadow:0 12px 30px -8px rgba(37,211,102,.6); transition:transform .2s ease, box-shadow .25s ease;}
.wa-fab:hover{transform:translateY(-2px); box-shadow:0 18px 40px -8px rgba(37,211,102,.8);}
.wa-fab svg{width:32px; height:32px;}
@media (max-width:560px){ .wa-fab{right:16px; bottom:92px; width:52px; height:52px;} .wa-fab svg{width:29px; height:29px;} }

/* Accessibility button (bottom-left) + panel */
.a11y-fab{position:fixed; left:20px; bottom:20px; z-index:160; width:52px; height:52px; border-radius:50%; border:none; cursor:pointer;
  background:#A855F7; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px -8px rgba(168,85,247,.7); transition:transform .2s ease;}
.a11y-fab:hover{transform:translateY(-2px);}
.a11y-fab svg{width:28px; height:28px;}
.a11y-panel{position:fixed; left:20px; bottom:82px; z-index:161; width:280px; max-width:calc(100vw - 40px);
  background:#181322; border:1px solid #3A2C52; border-radius:14px; padding:16px 16px 14px; color:#F5F2FA;
  box-shadow:0 24px 60px -14px rgba(0,0,0,.75); font-family:'Public Sans',Arial,sans-serif; display:none;}
.a11y-panel.open{display:block;}
.a11y-panel h3{font-family:'Space Grotesk',sans-serif; font-size:15px; margin:0;}
.a11y-panel .a11y-sub{font-size:12px; color:#B6A9CB; margin:2px 0 12px; display:block;}
.a11y-row{display:flex; justify-content:space-between; align-items:center; gap:10px; padding:9px 0; border-top:1px solid #2c2140; font-size:14px;}
.a11y-row:first-of-type{border-top:none;}
.a11y-size-group{display:flex; gap:6px;}
.a11y-btn{background:#221A31; border:1px solid #3A2C52; color:#F5F2FA; border-radius:999px; padding:6px 12px; font-size:13px; cursor:pointer; font-family:inherit; line-height:1;}
.a11y-btn[aria-pressed="true"]{background:#A855F7; border-color:#A855F7; color:#fff;}
.a11y-reset{margin-top:12px; width:100%; background:none; border:1px solid #3A2C52; color:#B6A9CB; border-radius:8px; padding:8px; font-size:13px; cursor:pointer; font-family:inherit;}
.a11y-reset:hover{color:#F5F2FA; border-color:#A855F7;}

/* ---- Accessibility states, applied to <html> ---- */
html.a11y-text-1{zoom:1.12;}
html.a11y-text-2{zoom:1.25;}
html.a11y-readable, html.a11y-readable body, html.a11y-readable p, html.a11y-readable a,
html.a11y-readable h1, html.a11y-readable h2, html.a11y-readable h3, html.a11y-readable h4,
html.a11y-readable li, html.a11y-readable span, html.a11y-readable div, html.a11y-readable button{
  font-family:Verdana, Tahoma, Arial, sans-serif !important; letter-spacing:.02em;}
html.a11y-contrast{--paper:#ffffff; --paper-dim:#ececf5; --panel:#000000; --panel-2:#0b0910; --line:#8a6fc0; --charcoal:#000000;}
html.a11y-contrast body{background:#000 !important;}
html.a11y-contrast p, html.a11y-contrast .lead, html.a11y-contrast li, html.a11y-contrast .a11y-sub{color:#f2eefb !important;}
html.a11y-underline a{text-decoration:underline !important;}
html.a11y-no-motion *{animation:none !important; transition:none !important; scroll-behavior:auto !important;}
