/* ══════════════════════════════════════════
   SKIP LINK
══════════════════════════════════════════ */
.skip-link{
  position:absolute;top:-120px;right:0;left:0;z-index:9999;
  background:#d71d43;color:#fff;text-align:center;
  padding:14px;font-weight:700;font-size:15px;
  font-family:'Heebo','Inter',sans-serif;
  transition:top .2s;text-decoration:none;
}
.skip-link:focus{top:0;outline:3px solid #fff;outline-offset:2px}

/* ══════════════════════════════════════════
   FOCUS VISIBLE (Global)
══════════════════════════════════════════ */
:focus-visible{
  outline:3px solid #d71d43 !important;
  outline-offset:2px !important;
}

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
#cookie-banner{
  position:fixed;bottom:0;right:0;left:0;
  z-index:8500;background:rgba(20,20,20,0.97);
  border-top:1px solid rgba(255,255,255,0.12);
  padding:18px 48px;
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;flex-wrap:wrap;
  backdrop-filter:blur(16px);
  direction:rtl;
  transform:translateY(100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.show{transform:translateY(0)}
.cookie-text{
  flex:1;min-width:240px;
  font-size:13px;line-height:1.65;
  color:rgba(255,255,255,0.78);
  font-family:'Heebo','Inter',sans-serif;
}
.cookie-text a{color:#d71d43;text-decoration:underline}
.cookie-btns{display:flex;gap:10px;flex-shrink:0;flex-wrap:wrap}
#cookie-accept{
  padding:10px 26px;border-radius:5px;
  background:#d71d43;color:#fff;border:none;
  font-size:13px;font-weight:700;cursor:pointer;
  font-family:'Heebo','Inter',sans-serif;
  transition:opacity .2s;
}
#cookie-accept:hover{opacity:.85}
#cookie-accept:focus{outline:3px solid rgba(215,29,67,.5);outline-offset:2px}
#cookie-decline{
  padding:10px 18px;border-radius:5px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.22);
  color:rgba(255,255,255,0.55);
  font-size:13px;cursor:pointer;
  font-family:'Heebo','Inter',sans-serif;
  transition:border-color .2s,color .2s;
}
#cookie-decline:hover{border-color:rgba(255,255,255,.5);color:#fff}
#cookie-decline:focus{outline:3px solid rgba(255,255,255,.3);outline-offset:2px}

/* ══════════════════════════════════════════
   ACCESSIBILITY WIDGET
══════════════════════════════════════════ */
#a11y-widget{
  position:fixed;left:0;bottom:120px;
  z-index:8400;
  direction:rtl;
}
#a11y-toggle{
  display:flex;align-items:center;justify-content:center;
  width:52px;height:52px;
  background:#d71d43;
  border:none;border-radius:0 8px 8px 0;
  cursor:pointer;color:#fff;
  box-shadow:2px 4px 16px rgba(215,29,67,.4);
  transition:background .2s;
  overflow:hidden;
}
#a11y-toggle:hover{background:#a01530}
#a11y-toggle:focus{outline:3px solid rgba(215,29,67,.6);outline-offset:2px}
#a11y-toggle svg{flex-shrink:0;width:26px;height:26px}
#a11y-panel{
  display:none;
  position:absolute;left:52px;bottom:0;
  width:260px;
  background:rgba(30,30,30,0.98);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:0 12px 12px 0;
  padding:20px 16px 16px;
  box-shadow:4px 8px 32px rgba(0,0,0,.6);
  animation:a11y-slide-in .22s ease;
}
#a11y-panel.open{display:block}
@keyframes a11y-slide-in{
  from{opacity:0;transform:translateX(-12px)}
  to{opacity:1;transform:translateX(0)}
}
#a11y-panel h3{
  font-size:13px;font-weight:700;letter-spacing:1px;
  color:#d71d43;text-transform:uppercase;
  margin-bottom:14px;
  font-family:'Heebo','Inter',sans-serif;
}
.a11y-option{
  display:flex;align-items:center;justify-content:space-between;
  padding:9px 0;border-bottom:1px solid rgba(255,255,255,0.06);
  gap:12px;
}
.a11y-option:last-of-type{border-bottom:none}
.a11y-label{
  font-size:13px;color:rgba(255,255,255,0.82);
  font-family:'Heebo','Inter',sans-serif;
  flex:1;
}
.a11y-btn{
  display:flex;align-items:center;gap:6px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:4px;color:#fff;
  cursor:pointer;padding:5px 10px;
  font-size:13px;font-weight:600;
  font-family:'Heebo','Inter',sans-serif;
  transition:background .15s;
  white-space:nowrap;
}
.a11y-btn:hover{background:rgba(215,29,67,.2);border-color:rgba(215,29,67,.4)}
.a11y-btn:focus{outline:2px solid #d71d43;outline-offset:2px}
.a11y-btn.active{background:rgba(215,29,67,.25);border-color:#d71d43;color:#d71d43}
.a11y-font-row{display:flex;gap:6px}
.a11y-font-row .a11y-btn{padding:5px 12px;font-size:15px}
.a11y-reset-btn{
  width:100%;margin-top:12px;
  padding:9px;border-radius:5px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.55);
  font-size:12px;cursor:pointer;letter-spacing:.5px;
  font-family:'Heebo','Inter',sans-serif;
  transition:background .2s,color .2s;
}
.a11y-reset-btn:hover{background:rgba(255,80,80,.15);color:#ff6060;border-color:rgba(255,80,80,.3)}
.a11y-statement-link{
  display:block;text-align:center;margin-top:10px;
  font-size:12px;color:#d71d43;text-decoration:underline;
  font-family:'Heebo','Inter',sans-serif;
  transition:opacity .2s;
}
.a11y-statement-link:hover{opacity:.75}

/* ══════════════════════════════════════════
   GLOBAL ACCESSIBILITY MODES
══════════════════════════════════════════ */
body.a11y-high-contrast > *:not(#a11y-widget):not(#cookie-banner){filter:contrast(135%) brightness(1.03)}
body.a11y-grayscale > *:not(#a11y-widget):not(#cookie-banner){filter:grayscale(100%)}
body.a11y-no-anim *,
body.a11y-no-anim *::before,
body.a11y-no-anim *::after{
  animation-duration:.001ms !important;
  transition-duration:.001ms !important;
}
body.a11y-highlight-links a{
  outline:2px solid #d71d43 !important;
  outline-offset:2px !important;
  background:rgba(215,29,67,0.12) !important;
  border-radius:2px !important;
}
