/** Shopify CDN: Minification failed

Line 130:31 Expected ")" to end URL token
Line 131:21 Expected ")" to end URL token

**/
/* swatch lives in its own file for reusability of the swatch in swatch-input and dropdown */
.swatch {
  display: block;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--swatch--background);
  background-position: var(--swatch-focal-point, initial);
  background-size: cover;
  background-origin: border-box;
  border: 3px solid black;
  width: 4.5vw;
  height: 2vw;
  border-radius: var(--swatch--border-radius);
}

.swatch--square {
  --swatch--border-radius: var(--swatch-input--border-radius, 0.2rem);
}

.swatch--unavailable {
  border-style: dashed;
  border-color: rgba(var(--color-foreground), 0.5);
}

@media (min-width: 320px) and (max-width: 374px) {
  .swatch {
    display: block;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--swatch--background);
    background-position: var(--swatch-focal-point, initial);
    background-size: cover;
    background-origin: border-box;
    border: 3px solid black;
    width: 21vw;
    height: 9vw;
    border-radius: var(--swatch--border-radius);
}
}


@media (min-width: 375px) and (max-width: 430px) {
  .swatch {
    display: block;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--swatch--background);
    background-position: var(--swatch-focal-point, initial);
    background-size: cover;
    background-origin: border-box;
    border: 3px solid black;
    width: 21vw;
    height: 9vw;
    border-radius: var(--swatch--border-radius);
}
}

/* === Custom Color Map (Dawn v9, .swatch + radio/label patterns) === */
/* Works when your swatch element has either:
   - class="swatch swatch--{handle}"  (e.g. swatch--crunchberry)
   - data-value="{Exact Name}"        (e.g. data-value="Crunchberry")
*/

/* Crunchberry = #EF4A81 */
.swatch--crunchberry,
.swatch[data-value="Crunchberry"],
.swatch[data-value="crunchberry"],
input[type="radio"][value="Crunchberry"] + label.swatch,
input[type="radio"][value="crunchberry"] + label.swatch,
input[type="radio"][value="Crunchberry"] + label.swatch-input__label,
input[type="radio"][value="crunchberry"] + label.swatch-input__label {
  --swatch--background: #EF4A81 !important;
  background: #EF4A81 !important;
  background-color: #EF4A81 !important;
  border-color: rgba(0,0,0,.2) !important;
}

/* Billard Duck Camo = #C4BABA */
.swatch--billard-duck-camo,
.swatch[data-value="Billard Duck Camo"],
.swatch[data-value="billard duck camo"],
input[type="radio"][value="Billard Duck Camo"] + label.swatch,
input[type="radio"][value="billard duck camo"] + label.swatch,
input[type="radio"][value="Billard Duck Camo"] + label.swatch-input__label,
input[type="radio"][value="billard duck camo"] + label.swatch-input__label {
  --swatch--background: #C4BABA !important;
  background: #C4BABA !important;
  background-color: #C4BABA !important;
  border-color: rgba(0,0,0,.2) !important;
}

/* Marsh Duck Camo = #788E70 */
.swatch--marsh-duck-camo,
.swatch[data-value="Marsh Duck Camo"],
.swatch[data-value="marsh duck camo"],
input[type="radio"][value="Marsh Duck Camo"] + label.swatch,
input[type="radio"][value="marsh duck camo"] + label.swatch,
input[type="radio"][value="Marsh Duck Camo"] + label.swatch-input__label,
input[type="radio"][value="marsh duck camo"] + label.swatch-input__label {
  --swatch--background: #788E70 !important;
  background: #788E70 !important;
  background-color: #788E70 !important;
  border-color: rgba(0,0,0,.2) !important;
}

/* Dusty Red = #B9484E */
.swatch--dusty-red,
.swatch[data-value="Dusty Red"],
.swatch[data-value="dusty red"],
input[type="radio"][value="Dusty Red"] + label.swatch,
input[type="radio"][value="dusty red"] + label.swatch,
input[type="radio"][value="Dusty Red"] + label.swatch-input__label,
input[type="radio"][value="dusty red"] + label.swatch-input__label {
  --swatch--background: #B9484E !important;
  background: #B9484E !important;
  background-color: #B9484E !important;
  border-color: rgba(0,0,0,.2) !important;
}
/* Crunchberry image swatch */
.swatch--crunchberry,
.swatch[data-value="Crunchberry"],
input[type="radio"][value="Crunchberry"] + label.swatch,
input[type="radio"][value="Crunchberry"] + label.swatch-input__label {
  --swatch--background: url({{ 'crunchberry-swatch.png' | asset_url }}) center/cover no-repeat !important;
  background: url({{ 'crunchberry-swatch.png' | asset_url }}) center/cover no-repeat !important;
  border-color: rgba(0,0,0,.2) !important;
}

/* BRO PLP swatch tooltip — shared component behavior */
.color-swatches-plp .swatch-plp {
  position: relative;
}

.color-swatches-plp .swatch-plp > .swatch-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 20;
  display: block;
  max-width: 220px;
  padding: 6px 9px;
  border-radius: 5px;
  background: #22160f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(2px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.color-swatches-plp .swatch-plp:hover > .swatch-tooltip,
.color-swatches-plp .swatch-plp:focus-visible > .swatch-tooltip,
.color-swatches-plp .swatch-plp:focus > .swatch-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (hover: none) {
  .color-swatches-plp .swatch-plp > .swatch-tooltip {
    display: none;
  }
}
