/** Shopify CDN: Minification failed

Line 6:0 Unexpected "`"

**/
```css
/* ====================================================================================================================
   COMPLETE THE LOOK — native upsell box
   Scoped under .complete-the-look. Uses Impact theme tokens only (rgb(var(--token))) — no hardcoded colours.
   ==================================================================================================================== */

/* Borderless: no outer frame, no row rules — the box sits flush in the column it lives in. */
.complete-the-look {
  display: block;
  color: rgb(var(--text-color));
}

/* Typography comes from the theme's own `h6` class on the element, so this heading always uses
   whatever font the rest of the site's headings use. Only layout is set here. */
.complete-the-look__heading {
  margin: 0 0 1rem;
  padding: 0;
  text-align: center;
}

/* ---- Heading size ------------------------------------------------------------------------------------------------ */
/* Applies in all three places: product page, cart drawer and cart page.
   TO CHANGE THE SIZE: swap --text-h4 below. Bigger the further up the list you go.
     var(--text-h3)   biggest — as large as a page section heading
     var(--text-h4)   current
     var(--text-h5)   one step down
     var(--text-h6)   the original small size
   TO MAKE ONE PLACE DIFFERENT: add a rule underneath naming just that place, e.g.
     .complete-the-look[data-context="cart-drawer"] .complete-the-look__heading { font-size: var(--text-h5); }
   The three names are: product, cart-drawer, cart */
.complete-the-look .complete-the-look__heading {
  font-size: var(--text-h4);
}

/* ---- Rows ------------------------------------------------------------------------------------------------------- */

.complete-the-look__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.complete-the-look__select {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0;
  cursor: pointer;
}

/* Custom checkbox so it is always clearly visible (the theme hides the native control). */
.complete-the-look .complete-the-look__checkbox {
  flex: none;
  display: inline-block !important;
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  border: 1px solid rgb(var(--text-color) / 0.45);
  border-radius: 3px;
  background: rgb(var(--background-without-opacity));
  cursor: pointer;
  position: relative;
}

.complete-the-look .complete-the-look__checkbox:checked {
  background-color: rgb(var(--accent));
  border-color: rgb(var(--accent));
}

.complete-the-look .complete-the-look__checkbox:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(var(--button-text-color));
  -webkit-mask: var(--checkmark-svg-url) center / 62% no-repeat;
  mask: var(--checkmark-svg-url) center / 62% no-repeat;
}

.complete-the-look .complete-the-look__checkbox:focus-visible {
  outline: 2px solid rgb(var(--accent));
  outline-offset: 2px;
}

.complete-the-look__row[data-available="false"] {
  opacity: 0.5;
}

.complete-the-look__media {
  flex: none;
  width: 3.5rem;
  height: 3.5rem;
  background: rgb(var(--text-color) / 0.05);
  overflow: hidden;
}

.complete-the-look__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.complete-the-look__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.complete-the-look__title {
  font-size: var(--text-sm);
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Price uses the page's body font (inherited — no font-family here), so it matches the rest of the site
   rather than the heading font. Same size as the title above it. */
.complete-the-look__price {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.25;
}

/* ---- Inline variant select (multi-variant products) ------------------------------------------------------------ */
/* Sits to the right of the row, with the theme's dropdown chevron — same look as the size selector. */

.complete-the-look__variant {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

/* No font-family here on purpose: the select inherits the page's body font so the size label matches
   the rest of the site (it used to force the theme-setting text font, which the site overrides). */
.complete-the-look__variant-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgb(var(--border-color));
  border-radius: var(--input-border-radius);
  background: transparent;
  color: rgb(var(--text-color));
  font-size: var(--text-sm);
  line-height: 1.2;
  padding: 0.4rem 1.7rem 0.4rem 0.65rem;
  cursor: pointer;
}

.complete-the-look__variant > svg {
  position: absolute;
  right: 0.6rem;
  width: 0.65rem;
  height: auto;
  pointer-events: none;
}

/* ---- Add to cart ----------------------------------------------------------------------------------------------- */

.complete-the-look__add {
  display: block;
  width: 100%;
  margin: 1rem 0 0;
}

.complete-the-look__add[disabled],
.complete-the-look__add[aria-busy="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}