/** 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;
}

