/** Shopify CDN: Minification failed

Line 195:22 Expected "}" to go with "{"

**/
/* Starhome custom variant dropdown
   Portable module: only depends on the native Shopify variant <select>. */

.starhome-variant-select {
  position: relative;
  width: 100%;
  margin-top: var(--margin-2xs);
}

.starhome-variant-select__native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.starhome-variant-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: var(--padding-md) var(--padding-lg);
  border: var(--style-border-width-inputs) solid var(--color-border);
  border-radius: var(--style-border-radius-inputs);
  background: var(--color-background);
  color: var(--color-foreground);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color var(--animation-speed) var(--animation-easing),
    box-shadow var(--animation-speed) var(--animation-easing);
}

.starhome-variant-select__trigger:hover {
  border-color: var(--color-variant-hover-border);
}

.starhome-variant-select__trigger:focus-visible {
  outline: var(--focus-outline-width) solid currentColor;
  outline-offset: var(--focus-outline-offset);
}

.starhome-variant-select.is-open .starhome-variant-select__trigger {
  border-color: var(--color-foreground);
}

.starhome-variant-select__selected,
.starhome-variant-select__option-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.starhome-variant-select__selected > span:last-child,
.starhome-variant-select__option-main > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.starhome-variant-select__swatch {
  display: inline-flex;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}

.starhome-variant-select__swatch:empty {
  display: none;
}

.starhome-variant-select__swatch .swatch {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.starhome-variant-select__caret {
  display: inline-flex;
  flex: 0 0 auto;
  width: var(--icon-size-2xs);
  height: var(--icon-size-2xs);
  transition: transform 0.2s ease;
}

.starhome-variant-select__caret svg {
  width: 100%;
  height: 100%;
}

.starhome-variant-select.is-open .starhome-variant-select__caret {
  transform: rotate(180deg);
}

.starhome-variant-select__menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 320px;
  overflow-y: auto;
  padding: 6px;
  border: var(--style-border-width-inputs) solid var(--color-border);
  border-radius: var(--style-border-radius-inputs);
  background: var(--color-background);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.starhome-variant-select__menu[hidden] {
  display: none;
}

.starhome-variant-select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: max(2px, calc(var(--style-border-radius-inputs) - 2px));
  background: transparent;
  color: var(--color-foreground);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.starhome-variant-select__option:hover,
.starhome-variant-select__option:focus-visible {
  background: rgba(0, 0, 0, 0.055);
  outline: none;
}

.starhome-variant-select__option.is-selected {
  background: rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.starhome-variant-select__option.is-unavailable {
  opacity: 0.58;
}

.starhome-variant-select__availability {
  flex: 0 0 auto;
  font-size: 0.85em;
  white-space: nowrap;
}

.starhome-variant-select__menu {
  background-color: #ffffff !important;
  opacity: 1 !important;
  isolation: isolate;
  z-index: 9999;
  max-height: 320px;
  overflow-y: auto;
}

.starhome-variant-select__option {
  background-color: #ffffff !important;
}

.starhome-variant-select__option:hover,
.starhome-variant-select__option:focus-visible {
  background-color: rgba(0, 0, 0, 0.06) !important;
}

.starhome-variant-select__option.is-selected {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

@media screen and (max-width: 749px) {
  .starhome-variant-select__menu {
    max-height: 280px;