/*
 * Inter, the typeface the Commission prescribes for the EU GARAN label
 * (guidelines 3.1.2), for the label's editable fields. Shipped with the module
 * under the SIL Open Font License (assets/fonts/OFL.txt); one variable font
 * covers Regular and ExtraBold.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../../assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../../assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/**
 * EU harmonised guarantee notice - front office styles.
 *
 * Everything is scoped under .wsc-eugn* so the module cannot be disturbed by,
 * or disturb, the shop theme. The official artwork (the notice and the GARAN
 * label) is only ever framed and sized in proportion: never recoloured,
 * cropped or overlaid. The boxes, links and dialogs around it are the
 * module's own and are styled freely.
 *
 * Colours are custom properties: a theme can override them in its own CSS,
 * for example `.wsc-eugn-root { --wsc-eugn-accent: #b3122e; }`.
 *
 * @author    WebStart Consulting
 * @copyright WebStart Consulting
 * @license   Proprietary – WebStart Consulting (see LICENSE)
 */

.wsc-eugn,
.wsc-eugn-garan,
.wsc-eugn-garan-checkout,
.wsc-eugn-dialog,
.wsc-eugn-page,
.wsc-eugn-garan-page {
  --wsc-eugn-accent: #0b4f9e;
  --wsc-eugn-accent-soft: #eaf1fb;
  --wsc-eugn-ink: #1d2433;
  --wsc-eugn-muted: #5f6b7d;
  --wsc-eugn-line: #e2e7ef;
  --wsc-eugn-surface: #ffffff;
  --wsc-eugn-surface-alt: #f6f8fb;
  --wsc-eugn-radius: 14px;
  --wsc-eugn-shadow: 0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 3px rgba(16, 24, 40, 0.06);
  --wsc-eugn-shadow-hover: 0 6px 18px rgba(16, 24, 40, 0.1);
  box-sizing: border-box;
}

.wsc-eugn *,
.wsc-eugn-garan *,
.wsc-eugn-garan-checkout *,
.wsc-eugn-dialog *,
.wsc-eugn-page *,
.wsc-eugn-garan-page * {
  box-sizing: border-box;
}

.wsc-eugn svg,
.wsc-eugn-garan-checkout__title svg,
.wsc-eugn-dialog__official svg,
.wsc-eugn-page__official svg,
.wsc-eugn-garan__more svg {
  display: block;
  flex: 0 0 auto;
}

/* ------------------------------------------------------------ notice link */

/* Default: a card, for the product page, the cart and the checkout. */
.wsc-eugn {
  display: block;
  margin: 12px 0;
  line-height: 1.35;
}

.wsc-eugn__link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  padding: 11px 14px;
  color: var(--wsc-eugn-ink);
  font-weight: 600;
  text-decoration: none;
  background: var(--wsc-eugn-surface);
  border: 1px solid var(--wsc-eugn-line);
  border-radius: var(--wsc-eugn-radius);
  box-shadow: var(--wsc-eugn-shadow);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.wsc-eugn__link:hover,
.wsc-eugn__link:focus-visible {
  color: var(--wsc-eugn-ink);
  text-decoration: none;
  border-color: var(--wsc-eugn-accent);
  box-shadow: var(--wsc-eugn-shadow-hover);
  transform: translateY(-1px);
}

.wsc-eugn__link:focus-visible {
  outline: 3px solid rgba(11, 79, 158, 0.35);
  outline-offset: 2px;
}

.wsc-eugn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--wsc-eugn-accent);
  background: var(--wsc-eugn-accent-soft);
  border-radius: 50%;
}

.wsc-eugn__icon svg {
  width: 20px;
  height: 20px;
}

.wsc-eugn__text {
  flex: 1 1 auto;
  min-width: 0;
}

.wsc-eugn__chevron {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--wsc-eugn-muted);
  transition: transform 0.15s ease, color 0.15s ease;
}

.wsc-eugn__link:hover .wsc-eugn__chevron,
.wsc-eugn__link:focus-visible .wsc-eugn__chevron {
  color: var(--wsc-eugn-accent);
  transform: translateX(2px);
}

/* Moved to the top of the cart summary box by the front script. */
.wsc-eugn.is-in-summary {
  margin: 0 0 14px 0;
}

.wsc-eugn.is-in-summary .wsc-eugn__link {
  max-width: none;
}

/* Footer: a quiet link that takes the footer's own colour. */
.wsc-eugn[data-wsc-eugn-hook^="displayFooter"] {
  margin: 8px 0;
}

.wsc-eugn[data-wsc-eugn-hook^="displayFooter"] .wsc-eugn__link {
  display: inline-flex;
  width: auto;
  max-width: none;
  gap: 8px;
  padding: 2px 0;
  color: inherit;
  font-weight: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.wsc-eugn[data-wsc-eugn-hook^="displayFooter"] .wsc-eugn__link:hover .wsc-eugn__text,
.wsc-eugn[data-wsc-eugn-hook^="displayFooter"] .wsc-eugn__link:focus-visible .wsc-eugn__text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wsc-eugn[data-wsc-eugn-hook^="displayFooter"] .wsc-eugn__icon,
.wsc-eugn[data-wsc-eugn-hook^="displayNav"] .wsc-eugn__icon,
.wsc-eugn[data-wsc-eugn-hook="displayTop"] .wsc-eugn__icon {
  width: auto;
  height: auto;
  color: inherit;
  background: none;
}

.wsc-eugn[data-wsc-eugn-hook^="displayFooter"] .wsc-eugn__icon svg {
  width: 18px;
  height: 18px;
}

.wsc-eugn[data-wsc-eugn-hook^="displayFooter"] .wsc-eugn__chevron,
.wsc-eugn[data-wsc-eugn-hook^="displayNav"] .wsc-eugn__chevron,
.wsc-eugn[data-wsc-eugn-hook="displayTop"] .wsc-eugn__chevron {
  display: none;
}

/* Header and navigation bar: compact, inline. */
.wsc-eugn[data-wsc-eugn-hook^="displayNav"],
.wsc-eugn[data-wsc-eugn-hook="displayTop"] {
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
}

.wsc-eugn[data-wsc-eugn-hook^="displayNav"] .wsc-eugn__link,
.wsc-eugn[data-wsc-eugn-hook="displayTop"] .wsc-eugn__link {
  display: inline-flex;
  width: auto;
  max-width: none;
  gap: 6px;
  padding: 4px 10px;
  color: inherit;
  font-size: 0.875em;
  font-weight: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-color: rgba(127, 127, 127, 0.35);
  border-radius: 999px;
  box-shadow: none;
  transform: none;
}

.wsc-eugn[data-wsc-eugn-hook^="displayNav"] .wsc-eugn__icon svg,
.wsc-eugn[data-wsc-eugn-hook="displayTop"] .wsc-eugn__icon svg {
  width: 15px;
  height: 15px;
}

/* ------------------------------------------------------------------ dialog */

.wsc-eugn-dialog[hidden] {
  display: none;
}

.wsc-eugn-dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--wsc-eugn-ink);
  line-height: 1.45;
}

.wsc-eugn-dialog__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(15, 20, 30, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: wsc-eugn-fade 0.18s ease-out;
}

.wsc-eugn-dialog__window {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 820px;
  max-height: calc(100vh - 48px);
  background: var(--wsc-eugn-surface);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(15, 20, 30, 0.35);
  overflow: hidden;
  animation: wsc-eugn-rise 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wsc-eugn-dialog__window:focus {
  outline: none;
}

.wsc-eugn-dialog__header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 14px 14px 14px 22px;
  border-bottom: 1px solid var(--wsc-eugn-line);
}

.wsc-eugn-dialog__title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--wsc-eugn-ink);
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1.3;
}

.wsc-eugn-dialog__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--wsc-eugn-ink);
  background: var(--wsc-eugn-surface-alt);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}

.wsc-eugn-dialog__close:hover {
  background: #e7ebf2;
  transform: rotate(90deg);
}

.wsc-eugn-dialog__close:focus-visible {
  outline: 3px solid rgba(11, 79, 158, 0.35);
  outline-offset: 2px;
}

.wsc-eugn-dialog__body {
  flex: 1 1 auto;
  padding: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--wsc-eugn-surface-alt);
}

/* The official notice sits on its own "sheet of paper"; the frame is ours. */
.wsc-eugn-dialog__paper,
.wsc-eugn-page__paper {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--wsc-eugn-line);
  border-radius: 10px;
  box-shadow: var(--wsc-eugn-shadow);
}

/*
 * The official files are A4 portrait (595.28 x 841.89 pt). Declaring that
 * ratio keeps the layout stable while the file loads, and object-fit makes
 * any distortion impossible even if a theme forces img dimensions.
 */
.wsc-eugn-dialog__notice,
.wsc-eugn-page__notice {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 595.28 / 841.89;
  object-fit: contain;
  background: #ffffff;
}

.wsc-eugn-dialog__meta {
  margin: 14px 0 0 0;
  color: var(--wsc-eugn-muted);
  text-align: center;
}

.wsc-eugn-dialog__footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding: 14px 22px;
  border-top: 1px solid var(--wsc-eugn-line);
  background: var(--wsc-eugn-surface);
}

.wsc-eugn-dialog__official,
.wsc-eugn-page__official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 10px 18px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: var(--wsc-eugn-accent);
  border-radius: 999px;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.wsc-eugn-dialog__official:hover,
.wsc-eugn-dialog__official:focus-visible,
.wsc-eugn-page__official:hover,
.wsc-eugn-page__official:focus-visible {
  color: #ffffff;
  text-decoration: none;
  filter: brightness(1.12);
  transform: translateY(-1px);
}

/* Keeps the page behind the dialog from scrolling. */
.wsc-eugn-dialog-open,
.wsc-eugn-dialog-open body {
  overflow: hidden;
}

.wsc-eugn-dialog--garan .wsc-eugn-dialog__window {
  max-width: 560px;
}

.wsc-eugn-dialog--garan .wsc-eugn-dialog__body {
  background: var(--wsc-eugn-surface);
}

.wsc-eugn-dialog--garan .wsc-eugn-garan-label {
  max-width: 420px;
  margin: 0 auto;
}

@keyframes wsc-eugn-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes wsc-eugn-rise {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@keyframes wsc-eugn-sheet {
  from { transform: translateY(100%); }
  to { transform: none; }
}

/* Phones: a sheet that slides up from the bottom and fills the screen. */
@media (max-width: 767px) {
  .wsc-eugn-dialog {
    align-items: flex-end;
    padding: 0;
  }

  .wsc-eugn-dialog__window,
  .wsc-eugn-dialog--garan .wsc-eugn-dialog__window {
    max-width: none;
    height: calc(100% - 24px);
    max-height: none;
    border-radius: 18px 18px 0 0;
    animation: wsc-eugn-sheet 0.26s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .wsc-eugn-dialog__header {
    padding: 10px 10px 10px 18px;
  }

  .wsc-eugn-dialog__body {
    padding: 12px;
  }

  .wsc-eugn-dialog__paper {
    padding: 4px;
    border-radius: 8px;
  }

  .wsc-eugn-dialog__footer {
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .wsc-eugn-dialog__official {
    width: 100%;
  }

  .wsc-eugn__link {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wsc-eugn-dialog__backdrop,
  .wsc-eugn-dialog__window,
  .wsc-eugn-dialog--garan .wsc-eugn-dialog__window {
    animation: none;
  }

  .wsc-eugn__link,
  .wsc-eugn__chevron,
  .wsc-eugn-dialog__close,
  .wsc-eugn-dialog__official,
  .wsc-eugn-page__official,
  .wsc-eugn-garan__card {
    transition: none;
  }
}

@media print {
  .wsc-eugn-dialog {
    position: static;
    overflow: visible;
  }

  .wsc-eugn-dialog__backdrop,
  .wsc-eugn-dialog__close,
  .wsc-eugn-dialog__footer {
    display: none;
  }
}

/* -------------------------------------------------------- stand-alone pages */

.wsc-eugn-page,
.wsc-eugn-garan-page {
  max-width: 820px;
  margin: 0 auto;
  color: var(--wsc-eugn-ink);
}

.wsc-eugn-garan-page {
  max-width: 560px;
}

.wsc-eugn-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin: 20px 0 0 0;
}

.wsc-eugn-page__back {
  color: var(--wsc-eugn-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wsc-eugn-garan-page__text {
  margin: 16px 0 0 0;
  color: var(--wsc-eugn-muted);
  text-align: center;
}

/* ------------------------------------------------------------ EU GARAN label */

/*
 * The label is only ever sized, as a whole and in proportion (guidelines
 * 3.1.5: "Always maintain the original proportions", "Don't crop or
 * stretch"). Width is set on the wrapper; the SVG follows its viewBox.
 */
.wsc-eugn-garan-label svg,
.wsc-eugn-garan__nested svg {
  display: block;
  width: 100%;
  height: auto;
}

.wsc-eugn-garan {
  margin: 14px 0;
  color: var(--wsc-eugn-ink);
  line-height: 1.4;
}

.wsc-eugn-garan__card,
.wsc-eugn-garan__full {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  max-width: 560px;
  padding: 14px 16px;
  background: var(--wsc-eugn-surface);
  border: 1px solid var(--wsc-eugn-line);
  border-radius: var(--wsc-eugn-radius);
  box-shadow: var(--wsc-eugn-shadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wsc-eugn-garan__card:hover {
  border-color: #c9d3e1;
  box-shadow: var(--wsc-eugn-shadow-hover);
}

.wsc-eugn-garan__full .wsc-eugn-garan-label {
  /* 269.29 x 283.46 viewBox; 240px keeps the 9px fields legible */
  flex: 0 0 240px;
  max-width: 100%;
}

.wsc-eugn-garan__nested {
  display: block;
  flex: 0 0 auto;
  /* 368.5 x 56.69 viewBox */
  width: 172px;
  max-width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

.wsc-eugn-garan__nested:focus-visible {
  outline: 3px solid rgba(11, 79, 158, 0.35);
  outline-offset: 3px;
}

.wsc-eugn-garan__info {
  flex: 1 1 200px;
  min-width: 0;
}

.wsc-eugn-garan__headline {
  margin: 0;
  color: var(--wsc-eugn-ink);
  font-weight: 700;
  line-height: 1.3;
}

.wsc-eugn-garan__meta {
  display: block;
  margin: 2px 0 0 0;
  color: var(--wsc-eugn-muted);
  font-size: 0.875em;
}

.wsc-eugn-garan__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 8px 0 0 0;
  font-size: 0.875em;
}

.wsc-eugn-garan__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--wsc-eugn-accent);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.wsc-eugn-garan__more:hover,
.wsc-eugn-garan__more:focus-visible {
  color: var(--wsc-eugn-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wsc-eugn-garan__about {
  color: var(--wsc-eugn-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wsc-eugn-garan__about:hover {
  color: var(--wsc-eugn-ink);
}

/* Checkout: one card, one row per product. */
.wsc-eugn-garan-checkout {
  margin: 16px 0;
  padding: 14px 16px;
  color: var(--wsc-eugn-ink);
  background: var(--wsc-eugn-surface);
  border: 1px solid var(--wsc-eugn-line);
  border-radius: var(--wsc-eugn-radius);
  box-shadow: var(--wsc-eugn-shadow);
  line-height: 1.4;
}

.wsc-eugn-garan-checkout__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.wsc-eugn-garan-checkout__title svg {
  width: 18px;
  height: 18px;
  color: var(--wsc-eugn-accent);
}

.wsc-eugn-garan-checkout__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wsc-eugn-garan-checkout__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 10px 0;
  border-top: 1px solid var(--wsc-eugn-line);
}

.wsc-eugn-garan-checkout__item:first-child {
  border-top: 0;
}

.wsc-eugn-garan-checkout__item:last-child {
  padding-bottom: 2px;
}

.wsc-eugn-garan-checkout .wsc-eugn-garan__nested {
  width: 140px;
}

.wsc-eugn-garan-checkout__info {
  display: block;
  flex: 1 1 180px;
  min-width: 0;
}

.wsc-eugn-garan-checkout__product {
  display: block;
  font-weight: 600;
}

@media (max-width: 575px) {
  .wsc-eugn-garan__card,
  .wsc-eugn-garan__full {
    padding: 12px;
  }

  .wsc-eugn-garan__full .wsc-eugn-garan-label {
    flex-basis: 100%;
    max-width: 280px;
  }

  .wsc-eugn-garan-checkout__item .wsc-eugn-garan__more {
    flex-basis: 100%;
  }
}

/* --------------------------------------------------------------- hardening */

/*
 * Themes style links with selectors such as "#wrapper a", "a:not(.btn)" or
 * "a:visited" that outrank a single class. The module's own buttons and
 * links keep their colours here, whatever the theme does. The official
 * artwork is not touched.
 */
.wsc-eugn-dialog a.wsc-eugn-dialog__official,
.wsc-eugn-dialog a.wsc-eugn-dialog__official:link,
.wsc-eugn-dialog a.wsc-eugn-dialog__official:visited,
.wsc-eugn-dialog a.wsc-eugn-dialog__official:hover,
.wsc-eugn-dialog a.wsc-eugn-dialog__official:focus,
.wsc-eugn-dialog a.wsc-eugn-dialog__official *,
.wsc-eugn-page a.wsc-eugn-page__official,
.wsc-eugn-page a.wsc-eugn-page__official:link,
.wsc-eugn-page a.wsc-eugn-page__official:visited,
.wsc-eugn-page a.wsc-eugn-page__official:hover,
.wsc-eugn-page a.wsc-eugn-page__official *,
.wsc-eugn-garan-page a.wsc-eugn-page__official,
.wsc-eugn-garan-page a.wsc-eugn-page__official:link,
.wsc-eugn-garan-page a.wsc-eugn-page__official:visited,
.wsc-eugn-garan-page a.wsc-eugn-page__official:hover,
.wsc-eugn-garan-page a.wsc-eugn-page__official * {
  color: #ffffff !important;
  opacity: 1;
  text-decoration: none !important;
}

.wsc-eugn:not([data-wsc-eugn-hook^="displayFooter"]):not([data-wsc-eugn-hook^="displayNav"]):not([data-wsc-eugn-hook="displayTop"]) a.wsc-eugn__link,
.wsc-eugn:not([data-wsc-eugn-hook^="displayFooter"]):not([data-wsc-eugn-hook^="displayNav"]):not([data-wsc-eugn-hook="displayTop"]) a.wsc-eugn__link:visited,
.wsc-eugn:not([data-wsc-eugn-hook^="displayFooter"]):not([data-wsc-eugn-hook^="displayNav"]):not([data-wsc-eugn-hook="displayTop"]) a.wsc-eugn__link:hover,
.wsc-eugn:not([data-wsc-eugn-hook^="displayFooter"]):not([data-wsc-eugn-hook^="displayNav"]):not([data-wsc-eugn-hook="displayTop"]) a.wsc-eugn__link .wsc-eugn__text {
  color: var(--wsc-eugn-ink) !important;
  text-decoration: none !important;
}

.wsc-eugn a.wsc-eugn__link .wsc-eugn__icon {
  color: var(--wsc-eugn-accent);
}

.wsc-eugn-dialog .wsc-eugn-dialog__title {
  color: var(--wsc-eugn-ink) !important;
}

.wsc-eugn-garan a.wsc-eugn-garan__more,
.wsc-eugn-garan a.wsc-eugn-garan__more:visited,
.wsc-eugn-garan-checkout a.wsc-eugn-garan__more,
.wsc-eugn-garan-checkout a.wsc-eugn-garan__more:visited {
  color: var(--wsc-eugn-accent) !important;
}

.wsc-eugn-garan a.wsc-eugn-garan__about,
.wsc-eugn-garan a.wsc-eugn-garan__about:visited {
  color: var(--wsc-eugn-muted) !important;
}

.wsc-eugn-garan .wsc-eugn-garan__headline,
.wsc-eugn-garan-checkout .wsc-eugn-garan-checkout__product {
  color: var(--wsc-eugn-ink) !important;
}

/* Some themes fade the text inside links ("a span { opacity: … }"). */
.wsc-eugn a span,
.wsc-eugn-garan a span,
.wsc-eugn-garan-checkout a span,
.wsc-eugn-dialog a span,
.wsc-eugn-page a span,
.wsc-eugn-garan-page a span {
  opacity: 1 !important;
}
