/** Shopify CDN: Minification failed

Line 127:1 Expected "}" to go with "{"

**/
/* ====================================================================
   Custom overrides – route every last bit of “Shopify green” (#34b060)
   through Theme Settings → Accent (settings.primary_accent_color)
   ==================================================================== */

/* 1️⃣  Default colour for util bar, buttons, sale labels, etc. */
header.util,
header.util a,
header.util a:visited,
a.button,
.onsale-label,
.price--sale {
  color: #fe30a8 !important;
  background: unset !important;
}

/* 2️⃣  Hover / active states for util links & buttons */
header.util a:hover,
a.button:hover {
  color: #fa0192 !important;
}

/* 3️⃣  Universal link hover / active fallback */
a:hover,
a:active,
.site-nav__link:hover,
.button:hover,
.btn:hover {
  color: #fa0192 !important;
}

/* 4️⃣  Currency picker (text + icon) */
.currency-picker,
.currency-picker__label,
.currency-picker a,
.currency-picker span,
header.util .currency-picker,
header.util .currency-picker a {
  color: #fe30a8 !important;
}

/* 5️⃣  If the dropdown arrow / SVG icon was green, repaint it */
.currency-picker svg,
.currency-picker use {
  fill: #fe30a8 !important;
  /* === FINAL clean-up: kill hover flicker === */

/* 1️⃣  Force ALL base link colours to Accent instantly */
a,
.site-nav__link,
header.util a {
  color: #fe30a8 !important;
}

/* 2️⃣  Hover / active shade (already in file, but catch every state) */
a:hover,
a:active,
.site-nav__link:hover,
header.util a:hover {
  color: #fa0192 !important;
}

/* 3️⃣  Remove the tiny color transition ONLY on util/header links
       (optional—comment these two lines out if you still want the fade) */
header.util a,
header.util a:hover {
  transition: none !important;
  /* === Global link colour + no-flicker hover ====================== */

/* Base colour for every anchor that hasn’t been styled elsewhere */
a,
header.util a,
.site-nav__link,
.site-header a,
.footer a {
  color: #fe30a8 !important;
}

/* Hover / focus shade – 10 % darker Accent */
a:hover,
a:focus,
header.util a:hover,
.site-nav__link:hover {
  color: #fa0192 !important;
  transition: none !important;          /* kill the 0.1 s fade */
}

/* Currency picker is already fixed, but keep these in case          */
.currency-picker,
.currency-picker svg,
.currency-picker use {
  color: #fe30a8 !important;
  fill:  #fe30a8 !important;
  /* ===== FINAL override – kill leftover green hover fade ============= */

/* 1️⃣  Global default for all links (prevents starting with green) */
a,
figure a,
.product-title a {
  color: #fe30a8 !important;
}

/* 2️⃣  Hover / focus shade with NO transition (stops flash) */
a:hover,
a:focus,
figure:hover a,
figure a:hover,
.product-title a:hover {
  color: #fa0192 !important;
  transition: none !important;        /* disable 0.1 s colour fade */
}

/* 3️⃣  Safety-net: cancel any colour transition left on plain links */
a {
  transition: none !important;
}/* === Kill green on product-image hover ===================== */
a.product-image,
a.product-image:hover,
a.product-image:focus {
  color: #fe30a8 !important;
  transition: none !important;      /* remove 0.1 s colour fade */
}