/* A11y overrides: contrast + underline link-in-text-block
   Scoped to content zones — do NOT touch header / nav / menu / footer nav. */

/* Body text contrast (inherited only where not overridden by theme) */
body {
  color: #333333;
}

/* Darken low-contrast text in CONTENT zones only */
#main .page-content,
#main .page-content p,
#main .page-content span,
#main .page-content li,
.cms-block, .cms-block p, .cms-block span, .cms-block li,
.rte-content, .rte-content p, .rte-content span, .rte-content li,
.product-description, .product-description p, .product-description span,
.product-description-short,
.banner-top-home .text h2,
.banner-top-home .text p,
.banner-top-home .text span,
.wt-bottom-home .text h2,
.wt-bottom-home .text h3,
.wt-bottom-home .text p,
.wt-bottom-home .text span {
  color: #2b2b2b;
}

#main .page-content h1, #main .page-content h2, #main .page-content h3,
#main .page-content h4, #main .page-content h5, #main .page-content h6,
.products-section-title,
.featured-products .products-section-title {
  color: #1f1f1f;
}

/* Underline links inside text/CMS blocks only (link-in-text-block A11y) */
#main .page-content p a,
.cms-block p a,
.rte-content a,
.product-description a {
  text-decoration: underline;
}

/* Visible focus for keyboard nav (safe, only affects :focus state) */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #0b5394;
  outline-offset: 2px;
}

/* Footer contrast (WCAG AA) — lift #999 to #b8b8b8 for ratio ~6:1 on #333 */
.footer-container,
.footer-container p,
.footer-container span,
.footer-container .links a,
.footer-container .block-contact,
.footer-container #footer_information,
.footer-container #footer_information p,
.footer-container #footer_information span,
.footer-container #footer_account_list a,
.footer-container .links .cms-page-link {
  color: #b8b8b8;
}
.footer-container .links a:hover,
.footer-container #footer_account_list a:hover,
.footer-container .links .cms-page-link:hover {
  color: #ffffff;
}

/* Links inside CMS category/CMS-page descriptions: ensure underline + darker color */
#category-description a,
#category-description p a,
.cms-page-content a,
.cms-block a,
.page-content a,
footer#footer > .container > p > a {
  text-decoration: underline;
  color: #a00d2a; /* darker red for AA contrast on white */
}
#category-description a:hover,
#category-description p a:hover,
.cms-page-content a:hover,
.page-content a:hover {
  color: #7a0921;
}
