/** Shopify CDN: Minification failed

Line 533:0 Unexpected ";"

**/
:root {
  --muc-pink: #ff31dc;
  --ink-900: #0b0b0c;
  --ink-800: #111113;
  --ink-700: #141416;
  --line: #ffffff;
  --fg: #ffffff;
  --select-bg: #0b0b0c;
  /* black */
  --select-fg: #ffffff;
  /* white text */
  --select-border: #2a2a2e;
  --select-focus: #ff31dc;
  /* Muc-Off pink */
  --select-highlight: #ff31dc;
  /* highlight row */
  --select-highlight-fg: #000;
  /* readable on pink */
  --yelow: #D3FF03;
}





/* Base select */
.variant-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--select-bg);
  color: var(--select-fg);
  border: 1px solid var(--select-border);
  border-radius: 5px;
  padding: .55rem 2.0rem .55rem .6rem;
  line-height: 1.2;
  color-scheme: dark;
  /* forces dark popup on iOS/Safari */
  outline: none;
}

/* Custom arrow (ensures contrast in dark UI) */
.variant-input {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--select-fg) 50%),
    linear-gradient(135deg, var(--select-fg) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 14px) 50%, calc(100% - 9px) 50%, 0 0;
  background-size:
    6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.variant-input:focus-visible {
  outline: 2px solid var(--select-focus);
  outline-offset: 2px;
}

/* Dropdown list colors (Chromium/WebKit support) */
.variant-input option {
  background: var(--select-bg);
  color: var(--select-fg);
}

/* Highlighted/selected row inside the open list */
.variant-input option:checked,
.variant-input option:hover {
  background: var(--select-highlight);
  color: var(--select-highlight-fg);
}

/* Hide old IE arrow (just in case) */
select::-ms-expand {
  display: none;
}


.advent .hero {
  display: flex;
  justify-content: center;
}

.advent {
   background-image: url('https://cdn.shopify.com/s/files/1/0454/7910/0574/files/Landing_Page_Background_1920x1080_29abe510-56cb-4f53-a616-0eef345691df.png?v=1764581719');
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  color: var(--fg);
  padding-bottom: 2rem;
}

.advent__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: .75rem 1rem;
}

.advent__brand {
  font-weight: 900;
  letter-spacing: .08em;
  padding: .25rem .5rem;
  border: 1px solid var(--line);
}

.advent__timer {
  display: flex;
  gap: .5rem;
  font-variant-numeric: tabular-nums;
}

.advent__timer-label {
  opacity: .8;
}

.advent-hero {
  margin: 1rem;
  overflow: hidden;
}

.advent-hero__badge {
  display: flex;
  gap: .5rem;
  padding: 1rem 1rem 0;
}

.pill {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .5rem;
  border-radius: 5px;
  border: 1px solid transparent;
}

.pill--today {
  background: var(--muc-pink);
  color: #fff;
}

.pill--day {
  background: rgba(255, 0, 160, .15);
  border-color: rgba(255, 0, 160, .6);
}

.advent-hero__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

@media (min-width: 900px) {
  .advent-hero__body {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.advent-hero__info {
      color: #fff;
    border-radius: 5px;
    padding: 1rem;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
}

.advent-hero__title {
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.1;
}

.advent-hero__desc {
  opacity: .85;
  margin: .25rem 0 .75rem;
}

.advent-hero__price {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
}

.advent-hero__price-now {
  color: var(--muc-pink);
  font-size: 2rem;
  font-weight: 900;
  line-height: 3rem;
}

.advent-hero__price-was {
  opacity: .6;
  text-decoration: line-through;
}

.advent-hero__cta {
  display: flex;
  gap: .5rem;
  margin: .5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 5px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.btn--primary {
  background: var(--muc-pink);
  color: #fff;
  border-color: var(--muc-pink);
  margin-bottom:10px;
}

.btn--ghost {
  background: transparent;
  color: #fff;
}

.advent-hero__note {
  font-size: .8rem;
  opacity: .75;
  
}

.advent-hero__image {
  position: relative;
  display: block;
  min-height: 260px;
  background: #000;
}

.advent-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advent-hero__flag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-weight: 800;
  font-size: .75rem;
  padding: .25rem .5rem;
  border-radius: 5px;
  background: rgba(255, 0, 160, .15);
  border: 1px solid rgba(255, 0, 160, .7);
}

.advent-grid {
  margin: 40px auto;
  border-radius: 5px;
  padding: 1rem;
}

.advent-grid__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}

.advent-grid__grid {
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 600px) {
  .advent-grid__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.door {
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: #0f0f12;
}

.door--past {
  background: var(--ink-700);
}

.door--today {
  outline: 2px solid var(--yelow);
  border-color: var(--yelow);
}

.door__num {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .4rem;
  border-radius: 5px;
  background: rgba(255, 0, 160, .12);
  border: 1px solid rgba(255, 0, 160, .55);
  color:var(--yelow);
}

.door__status, .door__lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .75;
}

.door__hotspot {
  position: absolute;
  inset: 0;
}

.advent-grid__legend {
  margin-top: .75rem;
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  opacity: .8;
}

.legend {
  display: inline-block;
  width: .9rem;
  height: .9rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  margin-right: .35rem;
  vertical-align: -2px;
  background: #0f0f12;
}

.legend--today {
  outline: 2px solid var(--muc-pink);
}

.legend--past {
  background: var(--ink-700);
}

.advent-past {
  padding: 1rem;
}

.advent-past__grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .advent-past__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.past-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: #0b0b0c;
}

.past-card__media img, .past-card__ph {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #000;
}

.past-card__info {
  padding: .5rem .65rem;
  font-size: .8rem;
}

.past-card__title {
  font-weight: 800;
}

.past-card__meta {
  opacity: .75;
}

/* Multi-hero wrapper: one or two products */
.advent-hero-list {
  display: grid;
  gap: 1rem;
  margin: 1rem;
}

.advent-hero-list.container {
  margin: 0 auto;
}

@media (min-width: 900px) {
  .advent-hero-list {
    grid-template-columns: 1fr;
  }

  .advent-hero-list--two {
    grid-template-columns: 1fr 1fr;
  }
}

/* Make individual hero cards happy in a grid */
.advent-hero {
  height: 100%;
}


/* Door background images */
.door {
  position: relative;
  overflow: hidden;
}

.door__bg {
  position: absolute;
  inset: 0;
}

.door__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

/* If two products on the same day, split left/right */
.door__img--left {
  width: 50%;
  right: 50%;
}

.door__img--right {
  width: 50%;
  left: 50%;
}

/* Hatch + shade overlays to keep the gritty look and legibility */
.door__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .45));
}

.door__hatch {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: repeating-linear-gradient(45deg, #fff, #fff 1px, transparent 2px, transparent 6px);
}

.door--locked {
  border-color:var(--muc-pink);
}

/* Locked doors: blur & mute the image so it doesn’t leak */
.door__bg--locked .door__img {
  filter: blur(20px) brightness(.25) saturate(.2);
  transform: scale(1.06);
}

.door__bg--locked .door__shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .75));
}


/* Placeholder when no image found */
.door__ph {
  width: 100%;
  height: 100%;
  background: #0f0f12;
}

/* Make past cards fully clickable with good states */
.past-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: #0b0b0c;
  outline: none;
}

.past-card:hover {
  filter: brightness(1.05);
}

.past-card:focus-visible {
  outline: 2px solid var(--muc-pink);
  outline-offset: 2px;
}

.past-card:visited {
  color: #fff !important;
}

;

.past-card__media img, .past-card__ph {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
}

.past-card__info {
  padding: .5rem .65rem;
  font-size: .85rem;
}

.past-card__day {
  font-weight: 800;
  letter-spacing: .02em;
}

.past-card__name {
  margin-top: 2px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* clamp long titles to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.past-card__meta {
  opacity: .75;
  font-size: .8rem;
  margin-top: 4px;
}

.variant-selects {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  margin: .25rem 0 .5rem;
}

@media (min-width: 560px) {
  .variant-selects {
    grid-template-columns: repeat(2, 1fr);
  }
}

.variant-select {
  display: grid;
  gap: .25rem;
}

.variant-label {
  font-size: .78rem;
  opacity: .85;
}

.variant-input {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: .55rem .6rem;
}

.variant-input:disabled {
  opacity: .55;
}

.atc-btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

.advent-hero__image img {
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

.advent-hero__image img.swapping {
  opacity: .9;
  transform: scale(1.01);
}

.advent-hero__image img.loading-next {
  filter: brightness(0.98);
}

/* Home advent slide layout */
.home-advent__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(72vh, 720px);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(255, 0, 160, .08), transparent), #0b0b0c;
  color: #fff;
  overflow: hidden;
  margin: 0;
}

@media (min-width:1024px) {
  .home-advent__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.home-advent__left {
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

@media (min-width:1024px) {
  .home-advent__left {
    border-right: 1px solid #2a2a2e;
  }
}

.home-advent__label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .9;
  margin-bottom: .5rem;
}

.home-advent__clock {
  font-variant-numeric: tabular-nums;
  /* already there, keep */
  font-feature-settings: "tnum"1;
  /* extra safety */
  display: inline-block;
  inline-size: 8.5ch;
  /* fits 8 chars + a bit for colons */
  max-inline-size: 8.5ch;
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: clamp(2.2rem, 6vw, 5rem);
}

.home-advent__link {
  display: inline-block;
  margin-top: 1rem;
  padding: .7rem 1rem;
  border-radius: 5px;
  background: #ff31dc;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #ff31dc;
  justify-content: center;
  align-items: center;
  min-inline-size: 12rem;
  white-space: nowrap;
}

.home-advent__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

.home-advent__right--two {
  grid-auto-rows: 1fr;
}

.home-advent__card {
  display: block;
}

.home-advent__right .advent-hero {
  margin: 0;
}

.variant-selects:empty {
  display: none;
}

/* Reused product card fits neatly */

/* ===== New Home Advent (mock-aligned) ===== */
.home-advent-12 {
  --bg-desktop: var(--advent-bg-desktop, none);
  --bg-mobile: var(--advent-bg-mobile, var(--advent-bg-desktop, none));
  background-image: var(--bg-mobile);
  background-size: contain;
  background-position: center;
}

@media (min-width: 768px) {
  .home-advent-12 {
    background-image: var(--bg-desktop);
  }
}

.home-advent-12__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: min(72vh, 720px);
  padding: 1rem;
}

@media (min-width: 1024px) {
  .home-advent-12__inner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

/* LEFT PANEL */
.home-advent-12__left {

  color: #fff;
  border-radius: 5px;
  padding: 1rem;
  padding-top:0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;

  margin: 0 auto;
}

.home-advent-12__art img {
  display: block;
  max-width: 500px;
  width: 100%;
  height: auto;
}

.collection-advent-12__pill {
  margin: 0 auto;
  align-items: center;
  gap: .5rem;
  border-radius: 5px;
  color: #D3FF03;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 24px;
  width: max-content;
}
.home-advent-12__pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 5px;
  color: #D3FF03;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: .85rem;
  width: max-content;
}

.home-advent-12__pill-day {
  text-transform: uppercase;
}

.home-advent-12__pill-sep {
  opacity: .7;
}

.home-advent-12__pill-exp {
  text-transform: uppercase;
}

.home-advent-12__pill-clock {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  inline-size: 8.5ch;
  text-align: center;
}

.home-advent-12__title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.home-advent-12__price {
  display: flex;
  gap: .6rem;
  align-items: flex-end;
}

.home-advent-12__price .now {
  color: #ff31dc;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.home-advent-12__price .was {
  opacity: .7;
  text-decoration: line-through;
}

.home-advent-12__cta .cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .8rem 1.2rem;
  border-radius: 5px;
  background: #ff31dc;
  color: #fff;
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none;
  border: 1px solid #ff31dc;
  min-inline-size: 11rem;
  font-size: 18px;
}


.home-advent-12__cta .cta:not(.btn):visited,
.home-advent-12__cta .cta:not(.btn):focus {
color:#fff;
}

.home-advent-12__cta .cta::after {
  display: none;
}

/* RIGHT FRAMES (stack if two) */
.home-advent-12__right {
  display: flex;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding: 2rem;
  justify-content: center;
}



.home-advent-12__right.is-two {
  grid-auto-rows: 1fr;
}

.home-advent-12__right .frame {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  /* balanced proportion like the mock */
}

/* .frame__outer {
  position: absolute;
  inset: -12px;
  background: #000;
  border-radius: 5px;
  box-shadow: 0 8px 0 #2a2a2e;
}

.frame__inner {
  position: absolute;
  inset: 0;
  background: #e6e6e6;
  border-radius: 2px;
  transform: translate(8px, 8px);
  /* inner margin (grey mat) 
} 
*/
.frame__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: block;
}

.frame__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: normal;
}

.frame__img {

  inset: 12px;
  width: calc(85% - 24px);
  object-fit: contain;
  display: block;
}

/* Prevent CTA width jitter when numbers change */
.home-advent-12__pill-clock {
  max-inline-size: 8.5ch;
}

@media (max-width:1023px) {
  .home-advent-12__right {
    justify-content: center;
  }

}

/* Small screens: stack neatly */
@media (max-width: 767px) {

  .home-advent-12__left,
  .home-advent-12__right {
    padding: 1.4rem;
  }

  .home-advent-12__left {
    padding-top: 0;
  }

  .frame__img {
    width: 100%;
    height:unset;
  }

  .advent .hero img{
    height: unset;
  }
}

/* Wrapper so label sits under the square */
.door-item { display: flex; flex-direction: column; gap: .35rem; }

/* Mobile label under square */
.door__label-mobile {
  display: block;
  text-align: center;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  color:#D3FF03;
}



