/* ============================================================
   Euphoria Unleashed – wcag-fix.css v6.0
   Updated: 2026-02-28
   
   v1-v5: WCAG AAA overrides for original light theme.
   v6: Dark Theme v4 is now the canonical theme. Remove all
       overrides that conflict with dark-on-dark rendering.
       Only retain non-conflicting accessibility fixes.
   ============================================================ */

/* ── CookieYes GDPR consent banner – high contrast (light modal on dark page) ── */
.cky-consent-container,
.cky-consent-bar,
.cky-modal {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 107, 53, 0.4) !important;
}
.cky-notice-des,
.cky-title,
.cky-consent-container p {
    color: #f5f5f5 !important;
    text-shadow: none !important;
}
.cky-btn-accept {
    background: #ff6b35 !important;
    border-color: #ff6b35 !important;
    color: #fff !important;
}
.cky-btn-customize,
.cky-btn-reject {
    background: #4a1f5c !important;
    color: #fff !important;
    border-color: #4a1f5c !important;
}
.cky-title {
    color: #ff6b35 !important;
}

/* ── Skip-to-content link – must be visible on focus ──────────────────────── */
.skip-link:focus,
.screen-reader-text:focus {
    background: #1a1a2e !important;
    color: #ff6b35 !important;
    border: 2px solid #ff6b35 !important;
}

/* ── Focus rings – ensure keyboard navigation is visible on dark bg ─────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #ff6b35 !important;
    outline-offset: 2px !important;
}

/* ── Form placeholder contrast on dark inputs ──────────────────────────── */
::placeholder {
    color: #888 !important;
    opacity: 1 !important;
}

/* ── REMOVED in v6 (were causing dark-theme regressions):
   - body i, body em { color: #8B3500 }
   - .elementor-widget-text-editor a { color: #8B3500 }
   - [style*="color: rgb(255, 107"] { color: #8B3500 }   ← was overriding brand orange
   - [style*="color:#ff6b"] { color: #8B3500 }           ← was overriding brand orange
   All of these are now handled by Dark Theme v4 (wp-custom-css).
   ─────────────────────────────────────────────────────────── */
