:root {
  --night: #050611;
  --ink: #f6f3ff;
  --muted: rgba(237, 239, 255, 0.68);
  --line: rgba(224, 225, 255, 0.2);
  --violet: #8559e8;
  --violet-light: #b69aff;
  --pink: #e03aa5;
  --aurora: #82f5cf;
  --header-height: 6.5rem;
  --hero-content-gap: clamp(3rem, 9vh, 7rem);
  --scene-x: 0px;
  --scene-y: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--night);
  color-scheme: dark;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 18rem;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 24%, rgba(77, 48, 135, .52), transparent 31rem),
    radial-gradient(circle at 92% 42%, rgba(180, 46, 143, .27), transparent 35rem),
    radial-gradient(circle at 13% 68%, rgba(52, 163, 151, .21), transparent 34rem),
    radial-gradient(circle at 84% 88%, rgba(109, 72, 181, .35), transparent 37rem),
    linear-gradient(180deg, #050611 0%, #100b27 24%, #21102f 44%, #091d29 67%, #170b25 85%, #050714 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.page-atmosphere {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-atmosphere::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 3, 11, .08), transparent 18%, rgba(3, 5, 15, .12) 72%, rgba(2, 3, 10, .34));
  content: "";
}

.page-atmosphere__stars,
.page-atmosphere__aurora {
  position: absolute;
  will-change: opacity, transform;
}

.page-atmosphere__stars {
  inset: 0;
  background-image:
    radial-gradient(circle at 7% 18%, rgba(255,255,255,.95) 0 .7px, transparent 1px),
    radial-gradient(circle at 21% 64%, rgba(202,230,255,.92) 0 .8px, transparent 1.15px),
    radial-gradient(circle at 37% 29%, rgba(255,255,255,.9) 0 .6px, transparent 1px),
    radial-gradient(circle at 53% 78%, rgba(226,216,255,.88) 0 .75px, transparent 1.1px),
    radial-gradient(circle at 69% 12%, rgba(255,255,255,.94) 0 .7px, transparent 1px),
    radial-gradient(circle at 81% 47%, rgba(201,235,255,.9) 0 .8px, transparent 1.15px),
    radial-gradient(circle at 94% 84%, rgba(255,255,255,.92) 0 .65px, transparent 1px);
  background-size: 31rem 37rem;
  opacity: .24;
  animation: page-stars-drift 42s linear infinite, page-stars-pulse 9s ease-in-out infinite alternate;
}

.page-atmosphere__stars--far {
  background-position: 9rem 13rem;
  background-size: 22rem 28rem;
  opacity: .12;
  transform: scale(1.12);
  animation-duration: 58s, 13s;
  animation-direction: reverse, alternate-reverse;
}

.page-atmosphere__aurora {
  width: 120vw;
  height: 34rem;
  border-radius: 50%;
  filter: blur(5.5rem);
  mix-blend-mode: screen;
  opacity: .13;
}

.page-atmosphere__aurora--violet {
  top: 18%;
  left: -38%;
  background: linear-gradient(100deg, transparent 10%, rgba(122, 83, 237, .18) 31%, rgba(220, 53, 168, .68) 50%, rgba(107, 228, 201, .22) 69%, transparent 89%);
  transform: rotate(-11deg);
  animation: page-aurora-violet 24s ease-in-out infinite alternate;
}

.page-atmosphere__aurora--green {
  right: -36%;
  bottom: 7%;
  background: linear-gradient(106deg, transparent 12%, rgba(75, 205, 180, .15) 30%, rgba(101, 243, 207, .52) 51%, rgba(132, 82, 224, .29) 70%, transparent 88%);
  transform: rotate(9deg);
  animation: page-aurora-green 29s ease-in-out infinite alternate;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: white;
  color: #080914;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(226, 226, 255, .1);
  background: linear-gradient(180deg, rgba(4, 5, 15, .42), rgba(4, 5, 15, .08));
  -webkit-backdrop-filter: blur(.35rem) saturate(1.12);
  backdrop-filter: blur(.35rem) saturate(1.12);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  animation: header-in 900ms 150ms both cubic-bezier(.2, .7, .2, 1);
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-bottom-color: rgba(226, 226, 255, .16);
  background: rgba(5, 6, 17, .78);
  box-shadow: 0 .8rem 2.4rem rgba(1, 2, 8, .18);
  -webkit-backdrop-filter: blur(1.1rem) saturate(1.2);
  backdrop-filter: blur(1.1rem) saturate(1.2);
}

.brand {
  position: relative;
  z-index: 4;
  display: block;
  width: clamp(16rem, 25vw, 23rem);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 .35rem 1rem rgba(1, 2, 9, .35));
}

.nav-shop {
  padding: .72rem 1.25rem;
  border: 1px solid rgba(225, 225, 255, .28);
  border-radius: 999px;
  background: rgba(112, 74, 177, .12);
}

.menu-toggle {
  color: white;
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 48rem;
  min-height: 100svh;
  place-items: start center;
  overflow: hidden;
  isolation: isolate;
}

.scene, .scene > * { position: absolute; inset: 0; }

.scene {
  z-index: -1;
  overflow: hidden;
  background: var(--night);
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.025);
  transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.scene-photo {
  z-index: 1;
  display: block;
  overflow: hidden;
  background: #070916;
}

.scene-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: photo-breathe 20s ease-in-out infinite alternate;
  will-change: transform;
}

.photo-shade {
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 43%, rgba(3, 5, 15, .55), rgba(4, 6, 18, .3) 32%, transparent 62%),
    linear-gradient(180deg, rgba(3, 4, 13, .12), transparent 35%, rgba(2, 4, 12, .18) 68%, rgba(2, 3, 10, .52)),
    linear-gradient(90deg, rgba(2, 3, 10, .32), transparent 25%, transparent 75%, rgba(2, 3, 10, .32));
}

.atmosphere-canvas {
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero__content {
  z-index: 3;
  width: min(calc(100% - 2.5rem), 70rem);
  margin-top: calc(var(--header-height) + var(--hero-content-gap));
  text-align: center;
  text-shadow: 0 .2rem 2rem rgba(3, 4, 12, .62);
  animation: content-in 1.25s 250ms both cubic-bezier(.16, 1, .3, 1);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8.7vw, 8.25rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .78;
}

.hero h1 span { display: block; }

.hero h1 span:last-child {
  margin-top: .2em;
  color: #faf8ff;
  font-size: clamp(2rem, 6.2vw, 6rem);
  font-style: italic;
  text-shadow: 0 0 3.2rem rgba(155, 111, 237, .2);
  white-space: nowrap;
}

.hero__subtitle {
  max-width: 48rem;
  margin: clamp(1.25rem, 2.8vh, 2rem) auto 0;
  color: rgba(248, 247, 255, .9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.35;
}

.hero__tagline {
  margin: clamp(.75rem, 1.8vh, 1.2rem) 0 0;
  color: rgba(244, 243, 255, .78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: .11em;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: clamp(1.8rem, 4vh, 3rem);
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .8rem 1.45rem;
  border-radius: 999px;
  color: white;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }

.button--primary {
  border: 1px solid rgba(222, 215, 255, .46);
  background: linear-gradient(110deg, rgba(108, 69, 184, .72), rgba(181, 49, 142, .68));
  box-shadow: 0 .8rem 2.7rem rgba(67, 37, 112, .27), inset 0 1px rgba(255, 255, 255, .17);
  backdrop-filter: blur(.45rem);
}

.button--primary:hover, .button--primary:focus-visible {
  background: linear-gradient(110deg, rgba(126, 80, 211, .86), rgba(203, 58, 161, .82));
}

.button svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button--quiet {
  padding-right: .2rem;
  padding-left: .2rem;
  border-bottom: 1px solid rgba(225, 225, 255, .3);
  border-radius: 0;
  color: rgba(244, 243, 255, .78);
}

.hero__footer {
  position: absolute;
  z-index: 4;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: clamp(1.2rem, 3.5vh, 2.4rem);
  left: clamp(1.25rem, 4vw, 4.5rem);
  color: rgba(238, 238, 255, .43);
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.elements-panel {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  margin-top: clamp(-32rem, -44vh, -26rem);
  padding: var(--hero-content-gap) clamp(1.25rem, 4vw, 4.5rem) 2rem;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 17, 0),
    rgba(5, 6, 17, .18) 4rem,
    rgba(5, 6, 17, .72) 13rem,
    #080914 24rem,
    #080914 34rem,
    rgba(8, 9, 20, .72) 45rem,
    rgba(8, 9, 20, 0) 60rem
  );
  isolation: isolate;
}

.elements-panel::before {
  display: none;
}

.elements-panel__intro {
  width: min(100%, 60rem);
  margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
}

.section-kicker {
  margin: 0 0 1rem;
  color: var(--violet-light);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.kwj-elements-kicker {
  display: inline-flex;
  align-items: baseline;
  flex-direction: row;
  gap: .55em;
  line-height: 1.15;
  vertical-align: middle;
  white-space: nowrap;
}

.kwj-elements-kicker > span,
.kwj-elements-kicker > small { display: block; }

.kwj-elements-kicker > small {
  font-size: .9em;
  font-weight: 600;
  letter-spacing: .09em;
  opacity: .74;
  text-transform: none;
}

.kwj-elements-kicker__divider {
  letter-spacing: 0;
  opacity: .56;
}

.elements-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 5.6vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.elements-panel__intro > p:not(.elements-panel__kicker) {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.content-flow {
  width: min(100%, 84rem);
  margin-inline: auto;
}

.collection-categories {
  display: grid;
  width: min(100%, 76rem);
  margin: 0 auto clamp(4.5rem, 9vw, 8rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.75rem, 1.5vw, 1.5rem);
}

.collection-category {
  --collection-footer-height: clamp(6.5rem, 19%, 7.35rem);
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 4 / 5.9;
  overflow: visible;
  background: transparent;
  color: inherit;
  isolation: isolate;
  text-decoration: none;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1);
}

.collection-category:focus-visible {
  border-radius: clamp(.9rem, 1.6vw, 1.5rem);
  outline: 2px solid rgba(221, 208, 255, .88);
  outline-offset: .35rem;
}

.collection-category__frame,
.collection-category__frame::before,
.collection-category__frame::after,
.collection-category__image {
  position: absolute;
  inset: 0;
}

.collection-category__frame {
  overflow: hidden;
  border-radius: clamp(.9rem, 1.6vw, 1.5rem);
  background: rgba(7, 9, 22, .54);
  box-shadow:
    0 1.5rem 4.5rem rgba(1, 2, 10, .3),
    inset 0 1px rgba(255, 255, 255, .08);
}

.collection-category__frame::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 5, 14, .08) 22%, rgba(4, 5, 14, .32) 57%, rgba(4, 5, 14, .9)),
    linear-gradient(120deg, rgba(255,255,255,.1), transparent 24% 76%, rgba(255,255,255,.04));
  content: "";
}

.collection-category__frame::after {
  z-index: 3;
  border: 1px solid rgba(225, 229, 255, .13);
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  content: "";
  pointer-events: none;
}

.collection-category__image {
  z-index: 1;
  bottom: var(--collection-footer-height);
  border-bottom: 1px solid rgba(225, 229, 255, .1);
  background-position: center;
  background-size: cover;
  filter: saturate(.55) contrast(1.08) brightness(.54);
  transition: filter 800ms ease;
}

.collection-category:hover {
  z-index: 8;
  transform: translateY(-.35rem);
}

.collection-category:hover .collection-category__image {
  filter: saturate(.72) contrast(1.04) brightness(.64);
}

.collection-category__piece {
  position: absolute;
  z-index: 5;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 1.3rem 1.5rem rgba(0, 0, 0, .5));
  transition: filter 800ms ease, transform 900ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.collection-category__piece img {
  display: block;
  width: 100%;
  height: auto;
}

.collection-category:hover .collection-category__piece {
  filter: drop-shadow(0 1.65rem 1.8rem rgba(0, 0, 0, .58));
}

.collection-category--fire .collection-category__frame {
  clip-path: polygon(0 3%, 7% 0, 91% 0, 100% 9%, 100% 100%, 7% 97%, 0 89%);
}

.collection-category--fire .collection-category__image {
  background-image:
    radial-gradient(circle at 70% 64%, rgba(255, 102, 18, .34), transparent 31%),
    linear-gradient(152deg, rgba(15, 4, 14, .14), rgba(56, 9, 27, .57)),
    url("../images/categories/volcanic-fire-base.webp");
  background-position: 48% center;
  -webkit-mask-image: linear-gradient(145deg, #000 0 47%, rgba(0,0,0,.72) 68%, rgba(0,0,0,.2) 100%);
  mask-image: linear-gradient(145deg, #000 0 47%, rgba(0,0,0,.72) 68%, rgba(0,0,0,.2) 100%);
}

.collection-category--fire .collection-category__piece {
  top: -5%;
  right: auto;
  left: 52%;
  width: 78%;
  transform: translateX(-50%) rotate(2.5deg);
}

.collection-category--fire:hover .collection-category__piece {
  transform: translate(-50%, -1%) rotate(1.25deg) scale(1.025);
}

.collection-category--ice .collection-category__frame {
  clip-path: polygon(5% 0, 100% 4%, 98% 90%, 91% 100%, 0 97%, 2% 10%);
}

.collection-category--ice .collection-category__image {
  background-image:
    radial-gradient(circle at 23% 67%, rgba(139, 224, 244, .2), transparent 34%),
    linear-gradient(158deg, rgba(105, 232, 220, .12), rgba(37, 41, 112, .48)),
    url("../images/categories/glacial-ice-base.webp");
  background-position: 54% center;
  -webkit-mask-image: linear-gradient(215deg, #000 0 51%, rgba(0,0,0,.74) 71%, rgba(0,0,0,.16) 100%);
  mask-image: linear-gradient(215deg, #000 0 51%, rgba(0,0,0,.74) 71%, rgba(0,0,0,.16) 100%);
}

.collection-category--ice .collection-category__piece {
  top: -4%;
  right: auto;
  left: 48%;
  width: 76%;
  transform: translateX(-50%) rotate(-2deg);
}

.collection-category--ice:hover .collection-category__piece {
  transform: translate(-50%, -1%) rotate(-.75deg) scale(1.025);
}

.collection-category--aurora .collection-category__frame {
  clip-path: polygon(0 7%, 8% 0, 100% 2%, 98% 88%, 91% 100%, 5% 97%, 0 91%);
}

.collection-category--aurora .collection-category__image {
  background-image:
    linear-gradient(148deg, rgba(95, 242, 205, .2), transparent 38%),
    radial-gradient(ellipse at 67% 50%, rgba(155, 91, 238, .34), transparent 37%),
    linear-gradient(145deg, rgba(8, 21, 32, .15), rgba(24, 16, 47, .46) 55%, rgba(41, 15, 44, .64)),
    url("../images/categories/aurora-lights-base.webp");
  background-position: center 38%;
  -webkit-mask-image: radial-gradient(ellipse at 54% 43%, #000 0 42%, rgba(0,0,0,.72) 66%, rgba(0,0,0,.16) 100%);
  mask-image: radial-gradient(ellipse at 54% 43%, #000 0 42%, rgba(0,0,0,.72) 66%, rgba(0,0,0,.16) 100%);
}

.collection-category--aurora .collection-category__image::after {
  position: absolute;
  inset: 18% -15%;
  background: repeating-linear-gradient(172deg, transparent 0 1.4rem, rgba(216, 236, 255, .075) 1.45rem, transparent 1.52rem 2.8rem);
  content: "";
  filter: blur(.3rem);
  transform: rotate(-8deg);
  animation: category-aurora-drift 8s ease-in-out infinite alternate;
}

.collection-category--aurora .collection-category__piece {
  top: -5%;
  right: auto;
  left: 53%;
  width: 80%;
  transform: translateX(-50%) rotate(1.5deg);
}

.collection-category--aurora:hover .collection-category__piece {
  transform: translate(-50%, -1%) rotate(.25deg) scale(1.025);
}

.collection-category__label {
  position: absolute;
  z-index: 7;
  right: auto;
  bottom: 0;
  left: 50%;
  display: flex;
  height: var(--collection-footer-height);
  width: calc(100% - clamp(2rem, 4vw, 3rem));
  max-width: 28rem;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  padding: .7rem 0 .9rem;
  text-align: center;
  text-shadow: 0 .2rem 1.25rem rgba(0, 0, 0, .96);
  transform: translateX(-50%);
}

.collection-category--ice .collection-category__label {
  right: auto;
  left: 50%;
  text-align: center;
}

.collection-category h3 {
  min-height: 1.1em;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.collection-category__description {
  max-width: 25rem;
  margin: .58rem auto 0;
  color: rgba(242, 242, 255, .72);
  font-size: clamp(.66rem, 1vw, .82rem);
  font-weight: 550;
  letter-spacing: .015em;
  line-height: 1.45;
}

.elements-panel > .collection-categories {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.eternal-collection-callout {
  width: min(100%, 76rem);
  margin: 0 auto clamp(4.5rem, 9vw, 8rem);
}

.eternal-collection-callout__link {
  position: relative;
  display: grid;
  min-height: clamp(17rem, 25vw, 20.5rem);
  overflow: hidden;
  border: 1px solid rgba(184, 169, 218, .38);
  border-radius: clamp(.9rem, 1.6vw, 1.5rem);
  background:
    radial-gradient(circle at 12% 16%, rgba(196, 230, 242, .72), transparent 36%),
    radial-gradient(circle at 80% 12%, rgba(221, 202, 243, .46), transparent 40%),
    linear-gradient(112deg, #f9f7fb 0%, #f0eff8 54%, #e8edf7 100%);
  box-shadow:
    0 1.5rem 4.5rem rgba(32, 26, 62, .2),
    inset 0 1px rgba(255, 255, 255, .82);
  color: #241f38;
  isolation: isolate;
  text-decoration: none;
  transition: border-color 350ms ease, box-shadow 350ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
}

.eternal-collection-callout__link::before,
.eternal-collection-callout__link::after {
  position: absolute;
  z-index: 3;
  content: "";
  pointer-events: none;
}

.eternal-collection-callout__link::before {
  inset: clamp(.55rem, 1vw, .85rem);
  border: 1px solid rgba(137, 115, 177, .2);
  border-radius: calc(clamp(.9rem, 1.6vw, 1.5rem) - .35rem);
}

.eternal-collection-callout__link::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 248, 252, .99) 0%, rgba(247, 246, 251, .94) 36%, rgba(245, 245, 251, .62) 53%, rgba(245, 245, 251, 0) 70%),
    linear-gradient(120deg, rgba(255, 255, 255, .34), transparent 52%);
}

.eternal-collection-callout__link:hover {
  border-color: rgba(153, 126, 202, .52);
  box-shadow:
    0 2rem 5.5rem rgba(45, 35, 82, .26),
    inset 0 1px rgba(255, 255, 255, .92);
  transform: translateY(-.25rem);
}

.eternal-collection-callout__link:focus-visible {
  outline: 2px solid rgba(153, 126, 202, .82);
  outline-offset: .35rem;
}

.eternal-collection-callout__image {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--kwj-eternal-banner-image, url("../images/site/ashes-eternal-banner-v1.webp")) right center / auto 100% no-repeat;
  filter: saturate(.9) contrast(.98) brightness(1.02);
  transform: scale(1.005);
  transition: filter 800ms ease, transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.eternal-collection-callout__link:hover .eternal-collection-callout__image {
  filter: saturate(1) contrast(1) brightness(1.035);
  transform: scale(1.02);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__link,
.eternal-collection-callout--design-3 .eternal-collection-callout__link {
  border-color: rgba(177, 157, 226, .3);
  background: linear-gradient(112deg, #090b1d 0%, #11142b 52%, #18162d 100%);
  box-shadow:
    0 1.5rem 4.5rem rgba(2, 3, 14, .34),
    inset 0 1px rgba(255, 255, 255, .08);
  color: rgba(249, 247, 255, .96);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__link::before,
.eternal-collection-callout--design-3 .eternal-collection-callout__link::before {
  border-color: rgba(199, 188, 238, .16);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__link::after {
  background:
    linear-gradient(90deg, rgba(7, 9, 27, .99) 0%, rgba(8, 11, 31, .95) 37%, rgba(9, 13, 34, .68) 54%, rgba(9, 13, 34, .08) 75%),
    linear-gradient(120deg, rgba(69, 49, 112, .22), transparent 58%);
}

.eternal-collection-callout--design-3 .eternal-collection-callout__link::after {
  background:
    linear-gradient(90deg, rgba(10, 9, 24, .99) 0%, rgba(14, 11, 28, .96) 38%, rgba(25, 17, 37, .7) 55%, rgba(25, 17, 37, .08) 76%),
    radial-gradient(circle at 40% 22%, rgba(117, 79, 136, .2), transparent 44%);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__image {
  filter: saturate(.8) contrast(.96) brightness(.82);
}

.eternal-collection-callout--design-3 .eternal-collection-callout__image {
  filter: saturate(.78) contrast(.96) brightness(.87);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__link:hover,
.eternal-collection-callout--design-3 .eternal-collection-callout__link:hover {
  border-color: rgba(191, 171, 238, .48);
  box-shadow:
    0 2rem 5.5rem rgba(2, 3, 14, .42),
    inset 0 1px rgba(255, 255, 255, .12);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__link:hover .eternal-collection-callout__image {
  filter: saturate(.9) contrast(.99) brightness(.9);
}

.eternal-collection-callout--design-3 .eternal-collection-callout__link:hover .eternal-collection-callout__image {
  filter: saturate(.88) contrast(.99) brightness(.94);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__eyebrow,
.eternal-collection-callout--design-3 .eternal-collection-callout__eyebrow {
  color: rgba(177, 239, 222, .78);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__content > strong,
.eternal-collection-callout--design-3 .eternal-collection-callout__content > strong {
  color: rgba(239, 235, 250, .86);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__content > p,
.eternal-collection-callout--design-3 .eternal-collection-callout__content > p {
  color: rgba(222, 218, 239, .7);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__action,
.eternal-collection-callout--design-3 .eternal-collection-callout__action {
  color: rgba(182, 229, 220, .86);
}

.eternal-collection-callout--design-2 .eternal-collection-callout__audience,
.eternal-collection-callout--design-3 .eternal-collection-callout__audience {
  border-color: rgba(195, 180, 232, .2);
  background: rgba(7, 9, 25, .64);
  color: rgba(229, 224, 243, .76);
}

.eternal-collection-callout__content {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(52%, 38rem);
  align-self: center;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 4vw, 3.75rem);
}

.eternal-collection-callout__eyebrow {
  margin-bottom: .75rem;
  color: #725a9b;
  font-size: clamp(.58rem, .8vw, .7rem);
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eternal-collection-callout h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.eternal-collection-callout__content > strong {
  margin-top: .85rem;
  color: #403853;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.9rem, 1.45vw, 1.15rem);
  font-weight: 400;
  line-height: 1.45;
}

.eternal-collection-callout__content > p {
  max-width: 39rem;
  margin: .7rem 0 0;
  color: #686176;
  font-size: clamp(.72rem, 1vw, .88rem);
  line-height: 1.6;
}

.eternal-collection-callout__action {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.15rem;
  color: #66508e;
  font-size: clamp(.64rem, .85vw, .74rem);
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eternal-collection-callout__action svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 300ms ease;
}

.eternal-collection-callout__link:hover .eternal-collection-callout__action svg {
  transform: translateX(.25rem);
}

.eternal-collection-callout__audience {
  position: absolute;
  z-index: 4;
  right: clamp(1.35rem, 2.5vw, 2.5rem);
  bottom: clamp(1.25rem, 2.2vw, 2rem);
  padding: .45rem .7rem;
  border: 1px solid rgba(120, 96, 167, .25);
  border-radius: 999px;
  background: rgba(252, 250, 255, .74);
  color: rgba(75, 60, 103, .82);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.flow-section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.flow-section--packaging { padding-top: 0; }

.content-flow > .flow-section--story:first-child { padding-top: 0; }

.flow-section--care,
.flow-section--delivery {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-right: max(clamp(1.25rem, 4vw, 4.5rem), calc((100vw - 84rem) / 2));
  padding-left: max(clamp(1.25rem, 4vw, 4.5rem), calc((100vw - 84rem) / 2));
}

.flow-section--care {
  background: transparent;
}

.flow-section--delivery {
  background: transparent;
}

.flow-columns {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.flow-columns--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.flow-columns--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.flow-column {
  min-width: 0;
}

.flow-column h2,
.flow-column h3,
.flow-section--story > h3 {
  margin: 0 0 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.9vw, 2.85rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.flow-section--story > h3 {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  text-align: center;
}

.flow-column p,
.story-flow p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.7;
}

.flow-column figure,
.story-flow figure {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.flow-column img,
.story-flow img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 34rem;
  object-fit: contain;
  filter: saturate(.92) brightness(.96) contrast(1.03);
  transition: filter 600ms ease, transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.flow-column img[src$="hypoallergenic.webp"],
.flow-column img[src$="care.webp"] {
  border-radius: clamp(1rem, 2vw, 1.75rem);
}

.flow-column:hover img { filter: saturate(1) brightness(1.02); }

.flow-feature {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, .92fr);
  gap: clamp(2rem, 5vw, 5.5rem);
}

.flow-feature--reverse {
  grid-template-columns: minmax(20rem, .92fr) minmax(0, 1.08fr);
}

.flow-feature--reverse .flow-feature__media { order: 2; }
.flow-feature--reverse .flow-feature__copy { justify-self: end; }

.flow-feature__media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 223, 255, .13);
  border-radius: clamp(1rem, 2vw, 1.75rem);
  background: rgba(8, 10, 24, .45);
  box-shadow:
    0 1.5rem 4.5rem rgba(1, 2, 10, .28),
    inset 0 1px rgba(255, 255, 255, .07);
}

.flow-feature__media picture {
  display: block;
  aspect-ratio: 4 / 3;
}

.flow-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) brightness(.96) contrast(1.02);
  transition: filter 600ms ease, transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.flow-feature:hover .flow-feature__media img {
  filter: saturate(1) brightness(1.01) contrast(1);
  transform: scale(1.018);
}

.flow-feature__copy {
  width: min(100%, 38rem);
  min-width: 0;
}

.flow-feature__copy h3 {
  margin: 0 0 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.flow-feature__copy p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.72;
}

.flow-feature__copy p:last-child { margin-bottom: 0; }

.flow-feature__list {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  gap: .72rem;
  color: var(--muted);
  line-height: 1.6;
  list-style: none;
}

.flow-feature__list li {
  position: relative;
  padding-left: 1.25rem;
}

.flow-feature__list li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora), var(--violet-light));
  box-shadow: 0 0 .8rem rgba(112, 235, 209, .28);
  content: "";
}

.story-flow {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(18rem, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.story-flow__intro figure {
  width: min(100%, 28rem);
  margin-right: auto;
  margin-left: auto;
}

.story-flow__intro figure picture {
  display: block;
  width: 100%;
  height: auto;
}

.story-flow__intro figure img {
  width: 100%;
  height: auto;
  max-height: 34rem;
  border-radius: 0;
  object-fit: contain;
}

.story-flow__copy { padding-top: .25rem; }

.story-flow__ending {
  max-width: 66rem;
  margin: clamp(2rem, 5vw, 4.5rem) auto 0;
  text-align: center;
}

.story-flow__ending p:last-child {
  margin-top: 2rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.site-footer {
  width: min(calc(100% - 2rem), 100rem);
  margin: 0 auto clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(218, 235, 255, .13);
  border-radius: clamp(1.4rem, 3vw, 2.8rem);
  background: rgba(3, 8, 18, .47);
  box-shadow:
    0 1.4rem 4rem rgba(0, 0, 0, .24),
    inset 0 1px rgba(255, 255, 255, .08),
    inset 0 -2rem 5rem rgba(2, 5, 14, .22);
  -webkit-backdrop-filter: blur(1.25rem) saturate(.86);
  backdrop-filter: blur(1.25rem) saturate(.86);
  isolation: isolate;
}

.site-footer__content {
  display: flex;
  width: min(calc(100% - 2.5rem), 78rem);
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2.6rem, 4vw, 3.5rem) 0 1.5rem;
  text-align: center;
  text-shadow: 0 .25rem 1.5rem rgba(0, 0, 0, .5);
}

.site-footer__content > p:not(.site-footer__legal) {
  margin: 0 0 .8rem;
  color: rgba(239, 242, 255, .72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-style: italic;
  letter-spacing: .06em;
}

.site-footer__content h2 {
  margin: 0 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.2vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
}

.site-footer__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem clamp(1.15rem, 2.5vw, 2.25rem);
}

.site-footer__navigation a {
  color: rgba(242, 244, 255, .73);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-footer__navigation a:hover,
.site-footer__navigation a:focus-visible {
  color: white;
  text-shadow: 0 0 1.2rem rgba(151, 228, 225, .6);
}

.site-footer__legal {
  margin: 1.75rem 0 0;
  color: rgba(229, 234, 255, .42);
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
}

@media (max-width: 70rem) and (min-width: 50.01rem) {
  .brand { width: 14.5rem; }
}

@keyframes header-in { from { opacity: 0; transform: translateY(-.75rem); } }
@keyframes content-in { from { opacity: 0; transform: translateY(1.4rem) scale(.985); } }
@keyframes photo-breathe {
  from { transform: scale(1.018) translate3d(-.15%, 0, 0); }
  to { transform: scale(1.04) translate3d(.2%, -.25%, 0); }
}
@keyframes page-stars-drift { to { background-position: 5rem 11rem; } }
@keyframes page-stars-pulse { to { opacity: .36; } }
@keyframes page-aurora-violet {
  from { opacity: .07; transform: translate3d(-7%, -3%, 0) rotate(-11deg) scale(.94); }
  to { opacity: .17; transform: translate3d(16%, 7%, 0) rotate(-4deg) scale(1.08); }
}
@keyframes page-aurora-green {
  from { opacity: .08; transform: translate3d(7%, 3%, 0) rotate(9deg) scale(1.04); }
  to { opacity: .16; transform: translate3d(-14%, -8%, 0) rotate(3deg) scale(.95); }
}
@keyframes category-aurora-drift {
  from { opacity: .46; transform: translate3d(-3%, -1%, 0) rotate(-8deg); }
  to { opacity: .9; transform: translate3d(5%, 3%, 0) rotate(-3deg) scale(1.04); }
}
@media (max-width: 50rem) {
  :root { --header-height: 5.5rem; }

  .hero__coordinate { display: none; }

  .elements-panel {
    margin-top: clamp(-30rem, calc(18.25rem - 85vh), -15rem);
    padding: var(--hero-content-gap) 1.1rem 1rem;
    background: linear-gradient(
      180deg,
      rgba(5, 6, 17, 0),
      rgba(5, 6, 17, .22) 3rem,
      rgba(5, 6, 17, .72) 10rem,
      #080914 18rem,
      #080914 26rem,
      rgba(8, 9, 20, .68) 34rem,
      rgba(8, 9, 20, 0) 44rem
    );
  }

  .elements-panel::before { inset-block-start: 17.5rem; }
  .elements-panel__intro { margin-bottom: 3rem; }

  .collection-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
  }

  .collection-category:last-child:nth-child(odd) {
    width: calc(50% - .4rem);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .eternal-collection-callout__link {
    min-height: clamp(19rem, 44vw, 22rem);
  }

  .eternal-collection-callout__link::after {
    background:
      linear-gradient(90deg, rgba(249, 248, 252, .99) 0%, rgba(247, 246, 251, .95) 52%, rgba(245, 245, 251, .56) 78%, rgba(245, 245, 251, .2) 100%),
      linear-gradient(120deg, rgba(255, 255, 255, .3), transparent 56%);
  }

  .eternal-collection-callout__image { inset: 0; }
  .eternal-collection-callout__content { width: min(60%, 39rem); }

  .flow-section { padding: 3.75rem 0; }
  .flow-section--packaging { padding-top: 0; }

  .flow-columns--three,
  .flow-columns--two,
  .flow-feature,
  .flow-feature--reverse,
  .story-flow {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .flow-feature--reverse .flow-feature__media,
  .flow-feature--reverse .flow-feature__copy { order: initial; }

  .flow-feature--reverse .flow-feature__copy { justify-self: stretch; }
  .flow-feature__copy { width: 100%; }

  .flow-section--care,
  .flow-section--delivery {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .story-flow { gap: 1.25rem; }
  .story-flow__copy { padding-top: 0; }
  .story-flow__ending { text-align: left; }

  .site-footer {
    width: calc(100% - 1rem);
    border-radius: 1.35rem;
  }
}

@media (max-width: 35rem) {
  :root { --hero-content-gap: clamp(2.5rem, 8vh, 4rem); }
  .site-header { padding-inline: 1.1rem; }
  .brand { width: 14rem; }
  .hero { min-height: 43rem; min-height: 100svh; }
  .hero__content { width: min(calc(100% - 2rem), 32rem); }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); line-height: .86; }
  .hero h1 span:first-child { font-size: .86em; }
  .hero h1 span:last-child { font-size: clamp(1.9rem, 9.5vw, 2.45rem); }
  .hero__subtitle { max-width: 21rem; font-size: 1rem; }
  .hero__tagline { line-height: 1.55; }
  .hero__actions { flex-direction: column; gap: .55rem; }
  .button--primary { width: min(100%, 17rem); }
  .collection-categories { grid-template-columns: 1fr; }
  .collection-category,
  .collection-category:last-child:nth-child(odd) { width: 100%; grid-column: auto; border-radius: .8rem; }
  .collection-category__label { right: auto; bottom: 0; left: 50%; width: calc(100% - 1.8rem); }
  .collection-category h3 { font-size: 1.65rem; }
  .eternal-collection-callout__link { min-height: clamp(23rem, 108vw, 26rem); }
  .eternal-collection-callout__link::after {
    background: linear-gradient(180deg, rgba(249, 248, 252, .99) 0%, rgba(247, 246, 251, .96) 58%, rgba(245, 245, 251, .68) 79%, rgba(245, 245, 251, .18) 100%);
  }
  .eternal-collection-callout__image {
    inset: auto 0 .45rem;
    height: 34%;
    background-position: center bottom;
    background-size: contain;
  }
  .eternal-collection-callout__content { width: 100%; align-self: start; padding: 2rem 1.5rem 8.25rem; }
  .eternal-collection-callout__content > p { max-width: 30rem; }
  .eternal-collection-callout__audience { display: none; }
  .site-footer__navigation { max-width: 20rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .scene { transform: none; }
}

/* WordPress and Hello Elementor layout integration. */
.site-header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.site-footer.site-footer {
  max-width: 100rem;
  padding: 0;
}

/* WordPress navigation and administration integration. */
.site-footer__navigation-wrap {
  display: contents;
}

.site-footer__navigation {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__navigation li {
  display: flex;
  margin: 0;
  padding: 0;
}

body.admin-bar .site-header { top: 32px; }

/* Standard WordPress content surfaces. */
.site-main--content,
.site-main--shop {
  position: relative;
  z-index: 1;
  min-height: 72vh;
  padding-top: var(--header-height);
}

/* Defeat Hello's boxed .site-main rule for all primary shop surfaces. */
body.kwj-woocommerce-ready .site-main.site-main--commerce-full {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.content-hero,
.shop-hero {
  width: min(calc(100% - 2.5rem), 78rem);
  margin: 0 auto;
  padding: clamp(6.5rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.content-hero h1,
.shop-hero h1 {
  max-width: 66rem;
  margin: 0 auto;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.shop-hero > p:last-child {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.content-surface,
.woocommerce-stage {
  width: min(calc(100% - 2.5rem), 84rem);
  margin: 0 auto clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(218, 235, 255, .12);
  border-radius: clamp(1.25rem, 3vw, 2.5rem);
  background: rgba(5, 8, 20, .48);
  box-shadow: 0 1.5rem 4.5rem rgba(1, 2, 10, .22), inset 0 1px rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(1.15rem) saturate(.9);
  backdrop-filter: blur(1.15rem) saturate(.9);
}

.site-main--commerce-full .woocommerce-stage,
.site-main--commerce-full .shop-return {
  width: calc(100% - 2.5rem);
  max-width: 100rem;
}

.content-surface {
  color: rgba(245, 244, 255, .82);
  line-height: 1.75;
}

.content-surface > :first-child { margin-top: 0; }
.content-surface > :last-child { margin-bottom: 0; }

.content-surface h2,
.content-surface h3,
.post-list__item h2 {
  color: var(--ink);
  font-weight: 400;
}

.post-list__item + .post-list__item {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(224, 225, 255, .12);
}

.post-list__item a { text-decoration-color: rgba(182, 154, 255, .45); }

/* WooCommerce shop, product, basket, and checkout foundation. */
.shop-return {
  width: min(calc(100% - 2.5rem), 84rem);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0 1.5rem;
}

.shop-return a {
  color: rgba(241, 240, 255, .7);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.woocommerce-stage .woocommerce-breadcrumb {
  margin: 0 0 2rem;
  color: rgba(237, 239, 255, .52);
  font-size: .68rem;
  letter-spacing: .08em;
}

.woocommerce-stage .woocommerce-breadcrumb a { color: rgba(237, 239, 255, .78); }

.woocommerce-stage .woocommerce-result-count,
.woocommerce-stage .woocommerce-ordering {
  margin-bottom: 2rem;
  color: var(--muted);
}

.woocommerce-stage select,
.woocommerce-stage input.input-text,
.woocommerce-stage input[type="number"],
.woocommerce-stage textarea {
  min-height: 2.9rem;
  border: 1px solid rgba(220, 223, 255, .2);
  border-radius: .75rem;
  background: rgba(7, 9, 24, .65);
  color: var(--ink);
}

.woocommerce-stage ul.products,
.woocommerce-stage .wc-block-grid__products {
  display: grid !important;
  clear: both;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-stage ul.products::before,
.woocommerce-stage ul.products::after { display: none !important; }

.woocommerce-stage ul.products li.product,
.woocommerce-stage .wc-block-grid__product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: clamp(.85rem, 1.8vw, 1.25rem) !important;
  overflow: hidden;
  border: 1px solid rgba(220, 224, 255, .12);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(132, 89, 218, .16), transparent 52%),
    rgba(7, 9, 23, .55);
  box-shadow: 0 1.1rem 3.5rem rgba(0, 0, 0, .2), inset 0 1px rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(.8rem);
  backdrop-filter: blur(.8rem);
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1), border-color 300ms ease;
}

.woocommerce-stage ul.products li.product:hover,
.woocommerce-stage .wc-block-grid__product:hover {
  border-color: rgba(190, 166, 255, .25);
  transform: translateY(-.35rem);
}

.woocommerce-stage ul.products li.product a img,
.woocommerce-stage .wc-block-grid__product-image img {
  width: 100%;
  margin: 0 0 1.1rem !important;
  border-radius: .9rem;
}

.woocommerce-stage ul.products li.product .woocommerce-loop-product__title,
.woocommerce-stage .wc-block-grid__product-title {
  padding: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
}

.woocommerce-stage .price,
.woocommerce-stage ul.products li.product .price {
  color: var(--aurora) !important;
  font-size: .86rem !important;
  letter-spacing: .035em;
}

.woocommerce-stage .button,
.woocommerce-stage button.button,
.woocommerce-stage input.button,
.woocommerce-stage a.button,
.woocommerce-stage .wp-element-button {
  min-height: 2.85rem;
  padding: .75rem 1.15rem !important;
  border: 1px solid rgba(222, 215, 255, .28) !important;
  border-radius: 999px !important;
  background: linear-gradient(110deg, rgba(108, 69, 184, .78), rgba(181, 49, 142, .74)) !important;
  color: white !important;
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 .7rem 2.1rem rgba(42, 24, 75, .22);
}

.woocommerce-stage .button:hover,
.woocommerce-stage button.button:hover,
.woocommerce-stage input.button:hover,
.woocommerce-stage a.button:hover {
  background: linear-gradient(110deg, rgba(128, 82, 214, .92), rgba(204, 60, 164, .88)) !important;
}

.woocommerce-stage .woocommerce-message,
.woocommerce-stage .woocommerce-info,
.woocommerce-stage .woocommerce-error {
  border-top: 0;
  border-radius: 1rem;
  background: rgba(11, 14, 34, .78);
  color: var(--ink);
}

.woocommerce-stage .woocommerce-message::before,
.woocommerce-stage .woocommerce-info::before { color: var(--aurora); }
.woocommerce-stage .woocommerce-error::before { color: #ff8c85; }

.woocommerce-stage nav.woocommerce-pagination ul {
  overflow: hidden;
  border: 1px solid rgba(220, 224, 255, .14);
  border-radius: 999px;
}

.woocommerce-stage nav.woocommerce-pagination ul li { border-right-color: rgba(220, 224, 255, .14); }
.woocommerce-stage nav.woocommerce-pagination ul li span,
.woocommerce-stage nav.woocommerce-pagination ul li a { color: var(--ink); }
.woocommerce-stage nav.woocommerce-pagination ul li span.current { background: rgba(132, 89, 218, .38); }

.woocommerce-stage div.product .product_title,
.woocommerce-stage .woocommerce-Tabs-panel h2,
.woocommerce-stage .related.products > h2,
.woocommerce-stage .cart_totals h2,
.woocommerce-stage .woocommerce-checkout h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.woocommerce-stage div.product div.images img { border-radius: 1.25rem; }

.woocommerce-stage div.product div.summary {
  padding: clamp(1rem, 3vw, 2.5rem);
  border-radius: 1.5rem;
  background: rgba(8, 10, 26, .4);
}

.woocommerce-stage table.shop_table {
  overflow: hidden;
  border-color: rgba(220, 224, 255, .14);
  border-radius: 1rem;
}

.woocommerce-stage table.shop_table th,
.woocommerce-stage table.shop_table td { border-color: rgba(220, 224, 255, .1); }

.woocommerce-stage #add_payment_method #payment,
.woocommerce-stage .woocommerce-cart #payment,
.woocommerce-stage .woocommerce-checkout #payment {
  border-radius: 1rem;
  background: rgba(8, 10, 26, .62);
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 50rem) {
  .content-hero,
  .shop-hero { padding-top: 5.5rem; }

  .content-surface,
  .woocommerce-stage { width: calc(100% - 1rem); padding: 1.15rem; }

  .woocommerce-stage ul.products,
  .woocommerce-stage .wc-block-grid__products { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .woocommerce-stage div.product div.images,
  .woocommerce-stage div.product div.summary {
    float: none;
    width: 100%;
  }
}

/* The menu uses the basket drawer component rather than a parallel imitation. */
button.kwj-basket-backdrop,
button.kwj-basket-backdrop:hover,
button.kwj-basket-backdrop:focus,
button.kwj-basket-backdrop:focus-visible,
button.kwj-basket-backdrop:active {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(1, 2, 9, .72) !important;
  color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
  filter: none !important;
}

.kwj-basket-layer.is-open .kwj-basket-close:hover,
.kwj-basket-layer.is-open .kwj-basket-close:focus-visible {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
}

.kwj-menu-drawer .primary-navigation-wrap {
  display: block;
  width: 100%;
}

.kwj-menu-drawer .primary-navigation {
  position: static !important;
  z-index: auto !important;
  inset: auto !important;
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
  list-style: none;
}

.kwj-menu-drawer .primary-navigation::before,
.kwj-menu-drawer .primary-navigation::after {
  display: none !important;
  content: none !important;
}

.kwj-menu-drawer .primary-navigation > li {
  display: block !important;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kwj-menu-drawer .primary-navigation > li > a {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 3.35rem;
  align-items: center;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(221, 219, 255, .1);
  background: transparent !important;
  color: rgba(250, 248, 255, .9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.kwj-menu-drawer .primary-navigation > li > a::after { display: none !important; }

.kwj-menu-drawer .primary-navigation > .kwj-menu-section-heading {
  padding: .9rem 0 .5rem;
  border-bottom: 1px solid rgba(181, 246, 226, .16);
  color: rgba(181, 246, 226, .68);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kwj-menu-drawer .primary-navigation > .kwj-menu-section-heading--ashes {
  margin-top: .65rem;
}

.kwj-menu-drawer .primary-navigation > .kwj-menu-collection-item > a {
  min-height: 2.9rem;
  border-bottom-color: rgba(221, 219, 255, .08);
  color: rgba(237, 239, 255, .74);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .035em;
}

.kwj-menu-drawer .primary-navigation > .kwj-menu-feature-item > a {
  min-height: 2.9rem;
  border-bottom-color: rgba(221, 219, 255, .08);
  color: rgba(250, 248, 255, .9);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: .025em;
}

.kwj-menu-drawer .primary-navigation > .kwj-menu-feature-item--custom > a {
  min-height: 4.35rem;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: .28rem;
  white-space: normal;
}

.kwj-menu-feature-item__title,
.kwj-menu-feature-item__summary {
  display: block;
}

.kwj-menu-feature-item__summary {
  max-width: 25rem;
  color: rgba(221, 219, 255, .62);
  font-size: .76rem;
  font-weight: 450;
  letter-spacing: .01em;
  line-height: 1.45;
}

.kwj-menu-drawer .primary-navigation > .kwj-menu-feature-item--custom > a:hover .kwj-menu-feature-item__summary,
.kwj-menu-drawer .primary-navigation > .kwj-menu-feature-item--custom > a:focus-visible .kwj-menu-feature-item__summary {
  color: rgba(221, 219, 255, .78);
}

.kwj-menu-drawer .primary-navigation > .kwj-menu-link--first {
  margin-top: .85rem;
  border-top: 1px solid rgba(221, 219, 255, .1);
}

.kwj-menu-drawer .primary-navigation a:hover,
.kwj-menu-drawer .primary-navigation a:focus-visible {
  background: transparent !important;
  color: var(--aurora) !important;
  box-shadow: none !important;
  outline: 0;
  transform: none !important;
}

html.menu-open { overflow: hidden; }

@media (max-width: 35rem) {
  .kwj-menu-drawer__body { padding-inline: 1rem; }
}

.mixed-catalogue {
  position: relative;
  width: min(calc(100% - 2.5rem), 100rem);
  margin: 0 auto;
  isolation: isolate;
}

.mixed-catalogue::before {
  position: absolute;
  z-index: -1;
  inset: -5rem -12vw;
  background:
    radial-gradient(circle at 13% 26%, rgba(255, 91, 42, .08), transparent 25rem),
    radial-gradient(circle at 50% 72%, rgba(125, 218, 245, .08), transparent 28rem),
    radial-gradient(circle at 88% 30%, rgba(181, 90, 232, .09), transparent 26rem);
  content: "";
  filter: blur(1.5rem);
  pointer-events: none;
}

.mixed-catalogue__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 188, 255, .2);
}

.mixed-catalogue__header h2 {
  margin: 0;
  color: rgba(181, 246, 226, .7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .94;
}

.mixed-catalogue__header > span {
  flex: 0 0 auto;
  color: rgba(238, 239, 255, .48);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* One shared, collection-aware card beats Woo defaults on every classic loop. */
body.kwj-woocommerce-ready ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card {
  --card-primary: 151, 106, 242;
  --card-secondary: 207, 66, 177;
  --card-light: 226, 214, 255;
  position: relative;
  display: flex !important;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(.65rem, 1.35vw, 1rem) !important;
  overflow: hidden;
  border: 1px solid rgba(var(--card-primary), .2) !important;
  border-radius: clamp(1rem, 2vw, 1.5rem) !important;
  background:
    radial-gradient(circle at 88% 3%, rgba(var(--card-primary), .15), transparent 39%),
    radial-gradient(circle at 4% 94%, rgba(var(--card-secondary), .08), transparent 45%),
    rgba(7, 9, 23, .68) !important;
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, .25), inset 0 1px rgba(255, 255, 255, .055) !important;
  -webkit-backdrop-filter: blur(.75rem);
  backdrop-filter: blur(.75rem);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 480ms cubic-bezier(.16, 1, .3, 1);
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card--fire {
  --card-primary: 255, 91, 42;
  --card-secondary: 205, 41, 72;
  --card-light: 255, 190, 104;
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card--ice {
  --card-primary: 125, 218, 245;
  --card-secondary: 128, 157, 230;
  --card-light: 219, 246, 255;
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card--aurora {
  --card-primary: 105, 238, 198;
  --card-secondary: 192, 72, 225;
  --card-light: 231, 185, 255;
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card:hover {
  border-color: rgba(var(--card-light), .44) !important;
  box-shadow: 0 1.45rem 4rem rgba(var(--card-secondary), .12), inset 0 1px rgba(255, 255, 255, .07) !important;
  transform: translateY(-.4rem);
}

.kwj-product-card > .onsale {
  z-index: 5;
  top: 1.2rem !important;
  right: auto !important;
  left: 1.2rem !important;
  min-width: auto;
  min-height: auto;
  margin: 0 !important;
  padding: .45rem .65rem !important;
  border: 1px solid rgba(var(--card-light), .35);
  border-radius: 999px;
  background: rgba(5, 7, 18, .84);
  color: rgb(var(--card-light));
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.kwj-product-card__gallery {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-rows: auto auto;
  gap: .62rem;
  margin: 0 0 1rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
}

.kwj-product-card__gallery:focus-visible { box-shadow: none; }

.kwj-product-card__gallery:focus-visible .kwj-product-card__track {
  box-shadow: 0 0 0 3px rgba(var(--card-primary), .28), inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.kwj-product-card__track {
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(var(--card-light), .1);
  border-radius: .9rem;
  background: rgba(244, 244, 247, .96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
  cursor: grab;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  user-select: none;
}

.kwj-product-card__track:active { cursor: grabbing; }

.kwj-product-card__track::-webkit-scrollbar { display: none; }

.kwj-product-card__slide {
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card .kwj-product-card__slide img,
body.kwj-woocommerce-ready ul.products li.product.kwj-product-card img.kwj-product-card__image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1;
  margin: 0 !important;
  border: 0;
  border-radius: 0 !important;
  background: #f5f4f7;
  object-fit: cover;
  pointer-events: none;
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1);
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card:hover .kwj-product-card__image {
  transform: scale(1.025);
}

.kwj-product-card__dots {
  position: static;
  z-index: auto;
  display: flex;
  width: max-content;
  max-width: calc(100% - 1.4rem);
  align-items: center;
  justify-content: center;
  gap: .36rem;
  margin: 0 auto;
  padding: .38rem .5rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(4, 6, 16, .62);
  box-shadow: 0 .35rem 1.2rem rgba(0, 0, 0, .25);
  -webkit-backdrop-filter: blur(.65rem);
  backdrop-filter: blur(.65rem);
}

.kwj-product-card__dots button {
  display: block;
  width: .42rem;
  height: .42rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.kwj-product-card__dots button[aria-current="true"] {
  background: rgb(var(--card-light));
  box-shadow: 0 0 .65rem rgba(var(--card-primary), .72);
  transform: scale(1.28);
}

.kwj-product-card__dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.kwj-product-card__body {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.kwj-product-card__collection {
  margin: 0 0 .5rem;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kwj-product-card__collection a {
  color: rgb(var(--card-light));
  text-decoration: none;
}

.kwj-product-card__collection a:hover,
.kwj-product-card__collection a:focus-visible {
  color: #fff;
  outline: 0;
}

.kwj-product-card__name-link {
  color: inherit;
  text-decoration: none;
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card .woocommerce-loop-product__title {
  min-height: 2.4em;
  margin: 0;
  padding: 0 !important;
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem) !important;
  font-weight: 400;
  line-height: 1.2;
}

.kwj-product-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
  margin: .85rem 0 1rem;
}

.kwj-product-card__facts > div {
  min-width: 0;
  padding: .52rem .58rem;
  border: 1px solid rgba(var(--card-primary), .13);
  border-radius: .7rem;
  background: rgba(255, 255, 255, .025);
}

.kwj-product-card__facts dt {
  margin: 0 0 .22rem;
  color: rgba(241, 240, 255, .42);
  font-size: .49rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kwj-product-card__facts dd {
  margin: 0;
  overflow: hidden;
  color: rgba(246, 245, 255, .76);
  font-size: .67rem;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.kwj-product-card__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  margin-top: auto;
  padding-top: .1rem;
}

.kwj-product-card__price { min-height: 1.45rem; }

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card .kwj-product-card__price .price {
  display: block;
  margin: 0;
  color: rgb(var(--card-light)) !important;
  font-size: .88rem !important;
  font-weight: 750 !important;
  letter-spacing: .035em;
}

.kwj-product-card__action { min-width: 0; }

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card .kwj-product-card__action .button {
  display: inline-flex !important;
  width: 100%;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: .68rem .85rem !important;
  border: 1px solid rgba(var(--card-light), .28) !important;
  border-radius: 999px !important;
  background: linear-gradient(115deg, rgba(var(--card-primary), .25), rgba(var(--card-secondary), .22)) !important;
  color: #fff !important;
  font-size: .6rem !important;
  font-weight: 800 !important;
  letter-spacing: .09em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, .055);
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card .kwj-product-card__action .button:hover,
body.kwj-woocommerce-ready ul.products li.product.kwj-product-card .kwj-product-card__action .button:focus-visible {
  border-color: rgba(var(--card-light), .56) !important;
  background: linear-gradient(115deg, rgba(var(--card-primary), .42), rgba(var(--card-secondary), .36)) !important;
  outline: 0;
}

body.kwj-woocommerce-ready ul.products li.product.kwj-product-card .added_to_cart.wc-forward {
  display: none !important;
}

@media (max-width: 68rem) {
  body.kwj-woocommerce-ready ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 50rem) {
  .mixed-catalogue { width: min(calc(100% - 1.5rem), 44rem); }
  .mixed-catalogue__header { align-items: start; flex-direction: column; gap: .65rem; }
  body.kwj-woocommerce-ready ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 28rem) {
  .mixed-catalogue { width: calc(100% - 1rem); }
  body.kwj-woocommerce-ready ul.products { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .kwj-product-card__track { scroll-behavior: auto; }
  body.kwj-woocommerce-ready ul.products li.product.kwj-product-card,
  .kwj-product-card__image { transition-duration: 1ms; }
}

@media (max-width: 35rem) {
  .woocommerce-stage ul.products,
  .woocommerce-stage .wc-block-grid__products { grid-template-columns: 1fr; }
}

/* Compact animated shop hero and randomized collection shelves. */
.site-main--shop-index {
  padding-top: 0;
}

.site-main--shop-index .shop-hero {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: none;
  height: clamp(25rem, 48svh, 34rem);
  min-height: 25rem;
  margin: 0;
  padding: 0;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  text-align: center;
}

.shop-hero__scene,
.shop-hero__scene > *,
.shop-hero__scene picture,
.shop-hero__scene picture img {
  position: absolute;
  inset: 0;
}

.shop-hero__scene {
  z-index: -1;
  overflow: hidden;
  background: #060916;
}

.shop-hero__scene picture,
.shop-hero__scene picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-hero__scene picture img {
  object-fit: cover;
  object-position: right center;
  animation: shop-photo-breathe 22s ease-in-out infinite alternate;
  will-change: transform;
}

.shop-hero__atmosphere {
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shop-hero__lava-glow {
  z-index: 7;
  top: 38%;
  right: 2%;
  bottom: auto;
  left: auto;
  width: min(20rem, 24vw);
  height: 44%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 63% 66%, rgba(255, 129, 30, .42), rgba(224, 48, 86, .11) 32%, transparent 67%);
  filter: blur(1.45rem);
  mix-blend-mode: screen;
  animation: shop-lava-pulse 6s ease-in-out infinite alternate;
}

.shop-hero__steam {
  z-index: 8;
  top: 53%;
  right: 4%;
  bottom: auto;
  left: auto;
  width: min(22rem, 27vw);
  height: 8rem;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 60% 72%, rgba(239, 247, 255, .26), transparent 51%),
    radial-gradient(ellipse at 37% 60%, rgba(197, 226, 239, .16), transparent 46%);
  filter: blur(1.1rem);
  opacity: .48;
  animation: shop-steam 8s ease-in-out infinite alternate;
}

.shop-hero__shade {
  z-index: 9;
  background:
    radial-gradient(ellipse at 50% 53%, rgba(3, 5, 14, .14), rgba(3, 5, 14, .48) 78%),
    linear-gradient(180deg, rgba(2, 4, 13, .06), transparent 38%, rgba(3, 5, 15, .38));
}

.shop-hero__content {
  position: relative;
  z-index: 11;
  width: min(calc(100% - 2.5rem), 68rem);
  margin: calc(var(--header-height) * .42) auto 0;
  padding: 1rem;
  text-shadow: 0 .3rem 2rem rgba(0, 0, 0, .72);
}

.shop-hero__content .section-kicker {
  margin: 0 0 1rem;
  color: rgba(190, 244, 231, .82);
}

.shop-hero__content h1 {
  max-width: 65rem;
  margin: 0 auto;
  font-size: clamp(2.85rem, 6.2vw, 6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
}

.shop-hero__lead {
  margin: 1rem auto 0;
  color: rgba(245, 236, 255, .92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  letter-spacing: .015em;
}

.shop-hero__lead strong { font-weight: 600; }

.shop-hero__content > p:last-child {
  max-width: 45rem;
  margin: 1.25rem auto 0;
  color: rgba(245, 244, 255, .78);
  font-size: clamp(.9rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.shop-hero__fade {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(14rem, 32vh, 20rem);
  background: linear-gradient(
    180deg,
    rgba(8, 9, 20, 0),
    rgba(8, 9, 20, .16) 24%,
    rgba(8, 9, 20, .7) 66%,
    #080914 100%
  );
  pointer-events: none;
}

.shop-collections {
  position: relative;
  z-index: 3;
  margin-top: -12rem;
  padding: clamp(16rem, 20vw, 19rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(8, 9, 20, 0),
      rgba(8, 9, 20, .18) 4rem,
      rgba(8, 9, 20, .74) 9rem,
      #080914 12rem,
      rgba(8, 9, 20, .9) 72%,
      rgba(6, 8, 19, .54)
    );
}

.shop-filters {
  width: min(calc(100% - 2.5rem), 88rem);
  margin: 0 auto clamp(5rem, 8vw, 7.5rem);
  border: 1px solid rgba(205, 214, 255, .13);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 4% 0, rgba(112, 232, 205, .09), transparent 26rem),
    radial-gradient(circle at 96% 0, rgba(205, 66, 177, .1), transparent 25rem),
    rgba(7, 9, 23, .58);
  box-shadow: 0 1.25rem 4rem rgba(0, 0, 0, .2), inset 0 1px rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(.85rem);
  backdrop-filter: blur(.85rem);
}

.shop-filters summary {
  position: relative;
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .28rem;
  padding: 1rem 4rem 1rem 1.5rem;
  list-style: none;
  text-align: center;
  cursor: pointer;
}

.shop-filters summary::-webkit-details-marker { display: none; }

.shop-filters summary::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  color: rgba(221, 211, 255, .75);
  content: "+";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 300;
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.shop-filters[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.shop-filters summary span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.shop-filters summary small {
  color: rgba(238, 239, 255, .5);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.shop-filters__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 1rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(216, 220, 255, .1);
}

.shop-filters__form > label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .45rem;
}

.shop-filters__form label > span {
  color: rgba(238, 239, 255, .58);
  font-size: .57rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.shop-filters select {
  width: 100%;
  min-height: 2.8rem;
  padding: .65rem .75rem;
  border: 1px solid rgba(218, 220, 255, .14);
  border-radius: .72rem;
  outline: none;
  background: rgba(4, 6, 17, .68);
  color: var(--ink);
  font: inherit;
  font-size: .76rem;
}

.shop-filters select:focus {
  border-color: rgba(171, 145, 247, .56);
  box-shadow: 0 0 0 3px rgba(139, 96, 227, .12);
}

.shop-filters__actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: .7rem;
}

.shop-filters__actions button {
  min-height: 2.8rem;
  padding: .7rem 1.05rem;
  border: 1px solid rgba(220, 211, 255, .28);
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(108, 69, 184, .78), rgba(181, 49, 142, .74));
  color: white;
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-filters__actions a {
  padding: .8rem .2rem;
  color: rgba(241, 240, 255, .58);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.collection-shelf {
  --shelf-accent: 151, 106, 242;
  position: relative;
  width: min(calc(100% - 2.5rem), 88rem);
  margin: 0 auto;
  isolation: isolate;
}

.collection-shelf + .collection-shelf {
  margin-top: clamp(5rem, 9vw, 9rem);
}

.collection-shelf::before {
  position: absolute;
  z-index: -1;
  top: -7rem;
  right: -20vw;
  bottom: -5rem;
  left: -20vw;
  background: radial-gradient(ellipse at 50% 45%, rgba(var(--shelf-accent), .13), transparent 62%);
  content: "";
  filter: blur(2rem);
  opacity: .78;
  pointer-events: none;
}

.collection-shelf--fire { --shelf-accent: 255, 91, 42; }
.collection-shelf--ice { --shelf-accent: 125, 218, 245; }
.collection-shelf--aurora { --shelf-accent: 181, 90, 232; }

.collection-shelf__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--shelf-accent), .28);
}

.collection-shelf__header p {
  margin: 0 0 .65rem;
  color: rgba(var(--shelf-accent), .92);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.collection-shelf__header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .92;
}

.collection-shelf__header div > span {
  display: block;
  max-width: 38rem;
  margin-top: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

.collection-shelf__header > a {
  flex: 0 0 auto;
  padding: .75rem 0;
  color: rgba(245, 244, 255, .76);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.collection-shelf__header > a span {
  display: inline-block;
  margin-left: .4rem;
  transition: transform 180ms ease;
}

.collection-shelf__header > a:hover span,
.collection-shelf__header > a:focus-visible span { transform: translateX(.25rem); }

.collection-shelf ul.products {
  display: grid !important;
  clear: both;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.85rem, 2vw, 1.6rem);
  margin: 0 !important;
  padding: 0 !important;
}

.collection-shelf ul.products::before,
.collection-shelf ul.products::after { display: none !important; }

.collection-shelf ul.products li.product {
  position: relative;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: clamp(.65rem, 1.4vw, 1rem) !important;
  overflow: hidden;
  border: 1px solid rgba(var(--shelf-accent), .18);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 82% 8%, rgba(var(--shelf-accent), .12), transparent 42%),
    rgba(7, 9, 23, .62);
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, .25), inset 0 1px rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(.75rem);
  backdrop-filter: blur(.75rem);
  transition: border-color 260ms ease, transform 480ms cubic-bezier(.16, 1, .3, 1);
}

.collection-shelf ul.products li.product:hover {
  border-color: rgba(var(--shelf-accent), .4);
  transform: translateY(-.4rem);
}

.collection-shelf ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 1.15rem !important;
  border-radius: .85rem;
  background: #fff;
  object-fit: cover;
}

.collection-shelf .woocommerce-loop-product__title {
  min-height: 2.5em;
  padding: 0 !important;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.65vw, 1.45rem) !important;
  font-weight: 400;
  line-height: 1.18;
}

.collection-shelf .price {
  display: block;
  margin-top: .55rem;
  color: rgb(var(--shelf-accent)) !important;
  font-size: .86rem !important;
  font-weight: 700 !important;
}

.kwj-product-metal {
  margin: .45rem 0 .85rem;
  color: rgba(241, 240, 255, .61);
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kwj-product-metal span::before {
  display: inline-block;
  width: .38rem;
  height: .38rem;
  margin-right: .5rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 .8rem rgba(var(--shelf-accent), .42);
}

.collection-shelf ul.products li.product .button {
  min-height: 2.55rem;
  margin-top: .3rem !important;
  padding: .68rem 1rem !important;
  border: 1px solid rgba(var(--shelf-accent), .27) !important;
  border-radius: 999px !important;
  background: rgba(var(--shelf-accent), .12) !important;
  color: white !important;
  font-size: .62rem !important;
  font-weight: 750 !important;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.collection-shelf__empty {
  color: var(--muted);
  font-style: italic;
}

@keyframes shop-photo-breathe {
  from { transform: scale(1.01) translate3d(-.12%, 0, 0); }
  to { transform: scale(1.035) translate3d(.18%, -.25%, 0); }
}

@keyframes shop-lava-pulse { to { opacity: .72; transform: scale(1.09) translate3d(-2%, 1%, 0); } }

@keyframes shop-steam {
  from { opacity: .28; transform: translate3d(0, .55rem, 0) scale(.92); }
  to { opacity: .63; transform: translate3d(-1.4rem, -.8rem, 0) scale(1.13); }
}

@media (max-width: 50rem) {
  .site-main--shop-index .shop-hero {
    height: clamp(27rem, 56svh, 32rem);
    min-height: 27rem;
    padding-top: 0;
  }

  .shop-hero__scene picture img { object-position: right center; }
  .shop-hero__content { margin-top: calc(var(--header-height) * .55); }
  .shop-hero__content h1 { font-size: clamp(2.6rem, 10vw, 4.4rem); }
  .shop-hero__lava-glow { right: -5%; width: 32vw; }
  .shop-hero__steam { right: -6%; width: 38vw; }
  .shop-collections { margin-top: -9rem; padding-top: 13rem; }
  .shop-filters { width: min(calc(100% - 1.5rem), 44rem); margin-bottom: 5rem; }
  .shop-filters__form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-filters__actions { grid-column: 1 / -1; }
  .collection-shelf { width: min(calc(100% - 1.5rem), 44rem); }
  .collection-shelf__header { align-items: start; flex-direction: column; gap: .65rem; }
  .collection-shelf ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 28rem) {
  .shop-filters__form { grid-template-columns: 1fr; }
  .collection-shelf ul.products { grid-template-columns: 1fr; }
  .shop-hero__content > p:last-child { font-size: .84rem; }
}

/* Collection worlds: the archive theme follows each piece onto its product page. */
body.kwj-theme-fire {
  --collection-primary: 255, 111, 38;
  --collection-secondary: 205, 41, 72;
  --collection-light: 255, 190, 104;
  --collection-deep: 18, 6, 10;
}

body.kwj-theme-ice {
  --collection-primary: 105, 214, 244;
  --collection-secondary: 128, 157, 230;
  --collection-light: 219, 246, 255;
  --collection-deep: 4, 13, 26;
}

body.kwj-theme-aurora {
  --collection-primary: 105, 238, 198;
  --collection-secondary: 192, 72, 225;
  --collection-light: 231, 185, 255;
  --collection-deep: 8, 6, 24;
}

body.kwj-collection-theme .site-main--shop {
  background:
    radial-gradient(circle at 7% 34%, rgba(var(--collection-primary), .13), transparent 29rem),
    radial-gradient(circle at 94% 66%, rgba(var(--collection-secondary), .12), transparent 34rem),
    rgb(var(--collection-deep));
}

.collection-hero {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: clamp(30rem, 60svh, 42rem);
  margin-top: calc(var(--header-height) * -1);
  padding: calc(var(--header-height) + 4rem) 1.25rem 11rem;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  text-align: center;
}

.collection-scene,
.collection-scene > picture,
.collection-scene > picture img,
.collection-scene__canvas,
.collection-scene__shade,
.collection-scene__fade {
  position: absolute;
  inset: 0;
}

.collection-scene {
  z-index: -1;
  overflow: hidden;
  background: rgb(var(--collection-deep));
}

.collection-scene > picture,
.collection-scene > picture img,
.collection-scene__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.collection-scene > picture img {
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.collection-scene__canvas {
  z-index: 3;
  pointer-events: none;
}

.collection-scene__shade {
  z-index: 4;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(2, 4, 12, .04), rgba(2, 4, 12, .46) 86%),
    linear-gradient(180deg, rgba(2, 3, 10, .08), transparent 40%, rgba(var(--collection-deep), .5));
}

.collection-scene__fade {
  z-index: 5;
  top: auto;
  height: clamp(13rem, 28vh, 20rem);
  background: linear-gradient(180deg, transparent, rgba(var(--collection-deep), .62) 52%, rgb(var(--collection-deep)) 100%);
}

.collection-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 64rem);
  text-shadow: 0 .35rem 2rem rgba(0, 0, 0, .78);
}

.collection-hero__kicker {
  margin: 0 0 1rem;
  color: rgb(var(--collection-light));
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.collection-hero h1 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .88;
}

.collection-hero__lead {
  margin: 1.25rem auto 0;
  color: rgb(var(--collection-light));
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.collection-hero__lead strong { font-weight: 600; }

.collection-hero__description {
  max-width: 44rem;
  margin: 1.15rem auto 0;
  color: rgba(247, 247, 255, .76);
  font-size: clamp(.88rem, 1.3vw, 1.05rem);
  line-height: 1.75;
}

.site-main--commerce-full .woocommerce-stage--category {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: none;
  margin: -12rem 0 0;
  padding: 16rem clamp(1rem, 4vw, 4rem) clamp(5rem, 9vw, 8rem);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, transparent, rgba(var(--collection-deep), .88) 9rem, rgb(var(--collection-deep)) 13rem),
    radial-gradient(circle at 10% 32%, rgba(var(--collection-primary), .1), transparent 28rem),
    radial-gradient(circle at 90% 68%, rgba(var(--collection-secondary), .1), transparent 30rem);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.collection-catalogue {
  width: min(100%, 100rem);
  margin-inline: auto;
}

.woocommerce-stage--category ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.kwj-collection-theme .woocommerce-stage ul.products li.product {
  border-color: rgba(var(--collection-primary), .2);
  background:
    radial-gradient(circle at 88% 4%, rgba(var(--collection-primary), .14), transparent 42%),
    rgba(var(--collection-deep), .68);
}

body.kwj-collection-theme .woocommerce-stage ul.products li.product:hover {
  border-color: rgba(var(--collection-light), .46);
  box-shadow: 0 1.4rem 4rem rgba(var(--collection-secondary), .13);
}

body.kwj-collection-theme .woocommerce-stage .price,
body.kwj-collection-theme .woocommerce-stage ul.products li.product .price {
  color: rgb(var(--collection-light)) !important;
}

body.kwj-collection-theme .woocommerce-stage .button,
body.kwj-collection-theme .woocommerce-stage button.button,
body.kwj-collection-theme .woocommerce-stage input.button,
body.kwj-collection-theme .woocommerce-stage a.button {
  border-color: rgba(var(--collection-light), .32) !important;
  background: linear-gradient(110deg, rgba(var(--collection-primary), .76), rgba(var(--collection-secondary), .76)) !important;
}

.product-theme-scene {
  position: relative;
  z-index: 1;
  height: clamp(22rem, 44svh, 31rem);
  margin-top: calc(var(--header-height) * -1);
  overflow: hidden;
  isolation: isolate;
}

.product-theme-scene > .collection-scene { z-index: 0; }

.product-theme-scene .collection-scene__fade {
  height: 80%;
  background: linear-gradient(180deg, transparent, rgba(var(--collection-deep), .7) 60%, rgb(var(--collection-deep)) 100%);
}

.product-theme-scene + .shop-return {
  position: relative;
  z-index: 5;
  margin-top: -8rem;
  padding-top: 0;
}

.product-theme-scene ~ .woocommerce-stage--product {
  position: relative;
  z-index: 5;
  margin-top: 1.25rem;
  border-color: rgba(var(--collection-primary), .2);
  background:
    radial-gradient(circle at 92% 0, rgba(var(--collection-primary), .12), transparent 34rem),
    radial-gradient(circle at 5% 100%, rgba(var(--collection-secondary), .1), transparent 30rem),
    rgba(var(--collection-deep), .74);
}

body.kwj-collection-theme .woocommerce-stage div.product div.summary {
  border: 1px solid rgba(var(--collection-primary), .12);
  background: rgba(var(--collection-deep), .45);
}

body.single-product .woocommerce-stage .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
  padding-top: clamp(.75rem, 1.5vw, 1rem) !important;
}

body.single-product .woocommerce-stage div.product div.summary p.price,
body.single-product .woocommerce-stage div.product div.summary p.price .woocommerce-Price-amount {
  color: rgb(var(--collection-light)) !important;
  font-size: clamp(1.75rem, 3.3vw, 2.65rem) !important;
  font-weight: 650 !important;
  letter-spacing: -.025em;
  line-height: 1;
}

body.kwj-collection-theme .site-footer.site-footer {
  border-color: rgba(var(--collection-light), .18);
  box-shadow: 0 1.5rem 5rem rgba(var(--collection-secondary), .11), inset 0 1px rgba(255, 255, 255, .06);
}

@media (max-width: 68rem) {
  .woocommerce-stage--category ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 50rem) {
  .collection-hero {
    min-height: 32rem;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .collection-scene > picture img { object-position: center; }
  .site-main--commerce-full .woocommerce-stage--category { padding-inline: .75rem; }
  .woocommerce-stage--category ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-theme-scene { height: 25rem; }
}

@media (max-width: 35rem) {
  .collection-hero h1 { font-size: clamp(3rem, 17vw, 5.3rem); }
  .woocommerce-stage--category ul.products { grid-template-columns: 1fr; }
  .product-theme-scene + .shop-return { width: calc(100% - 1.5rem); }
  .product-theme-scene ~ .woocommerce-stage--product { width: calc(100% - 1rem); }
}

/* Inline single-product information and shared collection discovery. */
body.single-product .product_meta .sku_wrapper,
body.single-product .woocommerce-tabs { display: none !important; }

body.single-product form.cart .added_to_cart.wc-forward,
body.single-product .woocommerce-message a.wc-forward { display: none !important; }

.single-product-collections > h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -.035em;
}

.product-details-inline {
  margin: 1.25rem 0 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(var(--collection-light), .14);
}

.product-details-inline__description {
  color: rgba(241, 242, 255, .72);
  font-size: .86rem;
  line-height: 1.7;
}

.product-details-inline__description > :first-child { margin-top: 0; }
.product-details-inline__description > :last-child { margin-bottom: 0; }

.product-facts {
  display: flex;
  margin: .9rem 0 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.product-facts li {
  display: flex;
  margin: 0;
  align-items: center;
}

.product-facts li + li::before {
  margin: 0 .65rem;
  color: rgba(var(--collection-light), .28);
  content: "-";
}

.product-facts a {
  color: rgba(238, 240, 255, .52);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .105em;
  text-decoration-color: rgba(var(--collection-light), .2);
  text-underline-offset: .24rem;
  text-transform: uppercase;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.product-facts a:hover,
.product-facts a:focus-visible {
  color: rgba(var(--collection-light), .82);
  text-decoration-color: rgba(var(--collection-light), .58);
}

.woocommerce-stage--product .related.products {
  clear: both;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(var(--collection-light), .12);
}

.woocommerce-stage--product .related.products ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.single-product-collections {
  clear: both;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(var(--collection-light), .12);
}

.single-product-collections > h2 { text-align: center; }

.collection-categories--compact {
  width: min(75%, 72rem);
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  gap: clamp(.75rem, 1.4vw, 1.25rem);
}

.collection-categories--compact .collection-category {
  --collection-footer-height: clamp(5.5rem, 18%, 6.5rem);
  aspect-ratio: 4 / 5.8;
}

.collection-categories--compact .collection-category__frame {
  border-radius: clamp(.8rem, 1.3vw, 1.2rem);
}

.collection-categories--compact .collection-category__label {
  right: auto;
  bottom: 0;
  left: 50%;
  width: calc(100% - clamp(1.5rem, 2.8vw, 2.3rem));
}

.collection-categories--compact .collection-category--ice .collection-category__label {
  right: auto;
  left: 50%;
}

.collection-categories--compact .collection-category h3 {
  font-size: clamp(1.2rem, 2vw, 1.85rem);
}

.collection-categories--compact .collection-category__description {
  margin-top: .4rem;
  font-size: clamp(.56rem, .8vw, .7rem);
  line-height: 1.38;
}

@media (max-width: 68rem) {
  .woocommerce-stage--product .related.products ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .collection-categories--compact { width: 100%; }
}

@media (max-width: 50rem) {
  .woocommerce-stage--product .related.products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 35rem) {
  .product-facts { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .product-facts li + li::before { margin: 0 .55rem 0 0; content: "-"; }
  .woocommerce-stage--product .related.products ul.products { grid-template-columns: 1fr; }
}

/* Slide-out basket, magical add feedback, and the full-page checkout fallback. */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(.65rem, 1.2vw, 1.15rem);
}

.site-header__actions .primary-navigation { order: 1; }
.site-header__actions .menu-toggle { order: 2; }
.site-header__actions .kwj-basket-trigger { order: 3; }

.kwj-basket-trigger {
  position: relative;
  z-index: 4;
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(225, 225, 255, .26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 18%, rgba(130, 245, 207, .13), transparent 42%),
    linear-gradient(135deg, rgba(108, 70, 184, .28), rgba(181, 49, 142, .2));
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, .09), 0 .6rem 1.8rem rgba(1, 2, 9, .2);
  cursor: pointer;
  place-items: center;
  transition: border-color 180ms ease, box-shadow 240ms ease, transform 180ms ease;
}

.kwj-basket-trigger:hover,
.kwj-basket-trigger:focus-visible {
  border-color: rgba(181, 246, 226, .62);
  box-shadow: 0 0 0 .25rem rgba(130, 245, 207, .07), 0 0 1.7rem rgba(130, 245, 207, .2);
  outline: 0;
  transform: translateY(-2px);
}

.kwj-basket-trigger__glow {
  position: absolute;
  inset: -.45rem;
  border: 1px solid rgba(130, 245, 207, .22);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.kwj-basket-trigger__icon {
  width: 1.22rem;
  height: 1.22rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.kwj-basket-trigger__count {
  position: absolute;
  top: -.34rem;
  right: -.36rem;
  display: grid;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 .26rem;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 999px;
  background: linear-gradient(135deg, #9a67f5, #de3ca5);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 .22rem .75rem rgba(32, 10, 56, .52);
  place-items: center;
}

.kwj-basket-trigger.is-receiving {
  border-color: rgba(130, 245, 207, .72);
  animation: kwj-basket-receive 960ms cubic-bezier(.16, 1, .3, 1);
}

.kwj-basket-trigger.is-receiving .kwj-basket-trigger__glow {
  animation: kwj-basket-ring 1100ms ease-out;
}

.kwj-basket-layer {
  position: fixed;
  z-index: 90;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 520ms;
}

.kwj-basket-layer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.kwj-basket-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(1, 2, 9, .72);
  opacity: 0;
  cursor: default;
  transition: opacity 360ms ease;
}

.kwj-basket-layer.is-open .kwj-basket-backdrop { opacity: 1; }

.kwj-basket-drawer {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  width: min(92vw, 31rem);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  border-left: 1px solid rgba(219, 226, 255, .17);
  background:
    radial-gradient(circle at 96% 2%, rgba(219, 58, 172, .2), transparent 20rem),
    radial-gradient(circle at 2% 39%, rgba(91, 221, 193, .1), transparent 25rem),
    linear-gradient(165deg, rgba(17, 13, 40, .99), rgba(5, 8, 23, .995) 66%);
  box-shadow: -2.5rem 0 7rem rgba(0, 0, 0, .48), inset 1px 0 rgba(255, 255, 255, .045);
  flex-direction: column;
  opacity: 1;
  outline: 0;
  transform: translate3d(103%, 0, 0);
  transition: transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.kwj-basket-layer.is-open .kwj-basket-drawer {
  transform: translate3d(0, 0, 0);
}

.kwj-basket-drawer__header {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  min-height: 9.4rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.45rem, 4vw, 2.2rem);
  border-bottom: 1px solid rgba(224, 225, 255, .11);
}

.kwj-basket-drawer__eyebrow {
  margin: 0 0 .45rem;
  color: rgba(181, 246, 226, .68);
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.kwj-basket-drawer__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 7vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .95;
}

.kwj-basket-drawer__summary,
.kwj-menu-heading__summary {
  margin: .7rem 0 0;
  color: rgba(237, 239, 255, .62);
  font-size: .75rem;
}

.kwj-basket-close {
  position: relative;
  z-index: 2;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(228, 225, 255, .24);
  border-radius: 50%;
  background: rgba(6, 8, 21, .46);
  color: #fff;
  cursor: pointer;
  place-items: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.kwj-basket-close:hover,
.kwj-basket-close:focus-visible {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(117, 76, 190, .34);
  outline: 0;
  transform: rotate(5deg);
}

.kwj-basket-close svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.45;
}

.kwj-basket-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 1.1rem clamp(1.2rem, 4vw, 2rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(182, 154, 255, .5) transparent;
}

.kwj-basket-layer .kwj-basket-drawer .widget_shopping_cart_content {
  height: 100%;
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart-item {
  position: relative;
  min-height: 6.4rem;
  margin: 0;
  padding: .75rem 1.8rem .75rem 6.5rem;
  border-bottom: 1px solid rgba(224, 225, 255, .1);
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart-item > a:not(.remove) {
  display: block;
  color: #f8f5ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.25;
  text-decoration: none;
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart-item img {
  position: absolute;
  top: .75rem;
  left: 0;
  width: 5.25rem;
  height: 4.95rem;
  margin: 0;
  border: 1px solid rgba(220, 224, 255, .12);
  border-radius: .8rem;
  object-fit: cover;
  box-shadow: 0 .7rem 1.8rem rgba(0, 0, 0, .24);
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart-item .remove {
  position: absolute;
  z-index: 2;
  top: .6rem;
  right: 0;
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(6, 8, 21, .58);
  color: rgba(245, 242, 255, .68) !important;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  place-items: center;
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart-item .remove:hover {
  background: rgba(224, 70, 140, .22);
  color: #fff !important;
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart-item .quantity {
  display: block;
  margin-top: .55rem;
  color: rgba(237, 239, 255, .6);
  font-size: .72rem;
  letter-spacing: .025em;
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.4rem 0 .25rem;
  padding: 1rem 0 0;
  border-top: 0;
  color: rgba(237, 239, 255, .68);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart__total strong { font-weight: 700; }

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart__total .woocommerce-Price-amount {
  color: var(--aurora);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: -.02em;
}

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart__buttons { display: none; }

.kwj-basket-layer .kwj-basket-drawer .woocommerce-mini-cart__empty-message {
  display: grid;
  min-height: 17rem;
  margin: 0;
  padding: 7.8rem 2rem 2rem;
  color: rgba(237, 239, 255, .62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.55;
  text-align: center;
  place-items: start center;
  background:
    radial-gradient(circle at 50% 28%, rgba(130, 245, 207, .14), transparent 4.5rem),
    radial-gradient(circle at 50% 28%, rgba(133, 89, 232, .18), transparent 7rem);
}

.kwj-basket-drawer__footer {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 2rem) max(1.2rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(224, 225, 255, .12);
  background: rgba(5, 7, 19, .82);
  box-shadow: 0 -1rem 2.7rem rgba(1, 2, 9, .16);
}

.kwj-basket-action {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: .78rem 1rem;
  border: 1px solid rgba(225, 225, 255, .25);
  border-radius: 999px;
  color: #fff;
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .09em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 240ms ease, transform 180ms ease;
}

.kwj-basket-action--secondary { background: rgba(255, 255, 255, .035); }

.kwj-basket-action--primary {
  background: linear-gradient(112deg, rgba(112, 74, 193, .95), rgba(212, 53, 157, .9));
  box-shadow: 0 .8rem 2rem rgba(47, 22, 80, .34);
}

.kwj-basket-action--primary span { margin-left: .35rem; }

.kwj-basket-action:hover,
.kwj-basket-action:focus-visible {
  border-color: rgba(190, 249, 232, .58);
  box-shadow: 0 0 1.5rem rgba(130, 245, 207, .12);
  outline: 0;
  transform: translateY(-2px);
}

.kwj-basket-action.is-disabled {
  opacity: .38;
  pointer-events: none;
}

.kwj-basket-full-link {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: .1rem;
  color: rgba(237, 239, 255, .54);
  font-size: .62rem;
  letter-spacing: .08em;
  text-decoration-color: rgba(182, 154, 255, .35);
  text-underline-offset: .25rem;
}

html.kwj-basket-open { overflow: hidden; }

.kwj-basket-toast {
  position: fixed;
  z-index: 110;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  display: flex;
  width: min(calc(100vw - 2rem), 22rem);
  min-height: 4.8rem;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(184, 246, 227, .28);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(130, 245, 207, .13), transparent 7rem),
    rgba(8, 10, 27, .94);
  color: #fff;
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .07);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 1rem, 0) scale(.96);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(.16, 1, .3, 1);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

.kwj-basket-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.kwj-basket-toast.is-error {
  border-color: rgba(255, 140, 133, .36);
  background:
    radial-gradient(circle at 0 50%, rgba(255, 112, 124, .13), transparent 10rem),
    rgba(18, 7, 19, .94);
  box-shadow: 0 1.4rem 4rem rgba(1, 2, 9, .46), 0 0 2rem rgba(224, 58, 112, .1);
}

.kwj-basket-toast.is-error .kwj-basket-toast__spark {
  border-color: rgba(255, 140, 133, .46);
  background: radial-gradient(circle, rgba(255, 112, 124, .4), rgba(133, 89, 232, .14) 54%, transparent 56%);
  box-shadow: 0 0 1.5rem rgba(255, 112, 124, .16);
}

.kwj-basket-toast.is-error .kwj-basket-toast__spark::before,
.kwj-basket-toast.is-error .kwj-basket-toast__spark::after {
  background: #fff1ef;
  filter: drop-shadow(0 0 .3rem rgba(255, 140, 133, .9));
}

.kwj-basket-toast.is-error .kwj-basket-toast__spark::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.kwj-basket-toast.is-error .kwj-basket-toast__spark::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.kwj-basket-toast__spark {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border: 1px solid rgba(130, 245, 207, .4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 245, 207, .42), rgba(133, 89, 232, .16) 54%, transparent 56%);
  box-shadow: 0 0 1.5rem rgba(130, 245, 207, .18);
}

.kwj-basket-toast__spark::before,
.kwj-basket-toast__spark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #eafff9;
  content: "";
  filter: drop-shadow(0 0 .3rem rgba(130, 245, 207, .9));
  transform: translate(-50%, -50%);
}

.kwj-basket-toast__spark::before { width: 1rem; height: 1px; }
.kwj-basket-toast__spark::after { width: 1px; height: 1rem; }

.kwj-basket-toast__copy { display: grid; gap: .15rem; }

.kwj-basket-toast__copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.kwj-basket-toast__copy small {
  color: rgba(237, 239, 255, .62);
  font-size: .68rem;
}

.kwj-basket-flight {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(226, 255, 248, .7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, #fff 0 .13rem, #a9ffe7 .15rem, rgba(133, 89, 232, .9) 35%, rgba(224, 58, 165, .65) 58%, transparent 71%);
  box-shadow:
    0 0 .7rem rgba(130, 245, 207, .85),
    0 0 1.8rem rgba(133, 89, 232, .56),
    -.8rem .5rem 1.6rem rgba(224, 58, 165, .35);
  pointer-events: none;
  will-change: transform, opacity;
}

.kwj-basket-flight::before,
.kwj-basket-flight::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(234, 255, 249, .9);
  content: "";
  transform: translate(-50%, -50%);
}

.kwj-basket-flight::before { width: 2.8rem; height: 1px; }
.kwj-basket-flight::after { width: 1px; height: 2.8rem; }

/* Full basket and checkout pages retain the drawer's glass-and-aurora styling. */
.site-main--basket-flow {
  background:
    radial-gradient(circle at 8% 19%, rgba(130, 245, 207, .08), transparent 27rem),
    radial-gradient(circle at 92% 31%, rgba(224, 58, 165, .11), transparent 31rem);
}

body.woocommerce-cart .site-main.site-main--basket-flow,
body.woocommerce-checkout .site-main.site-main--basket-flow {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

body.woocommerce-cart .woocommerce-stage--basket-flow {
  width: calc(100% - 2.5rem);
  max-width: none;
}

body.woocommerce-checkout .woocommerce-stage--basket-flow {
  width: calc(100% - 2.5rem);
  max-width: 100rem;
}

.content-hero--basket-flow {
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
}

.content-hero--basket-flow h1 { font-size: clamp(3.3rem, 8vw, 6.6rem); }

.woocommerce-stage--basket-flow {
  position: relative;
  max-width: 78rem;
  border-color: rgba(188, 228, 226, .16);
  background:
    radial-gradient(circle at 98% 0, rgba(133, 89, 232, .13), transparent 30rem),
    rgba(5, 8, 20, .62);
}

.woocommerce-stage--basket-flow::before {
  position: absolute;
  z-index: -1;
  top: -4rem;
  right: 2rem;
  width: 19rem;
  height: 9rem;
  border-radius: 50%;
  background: linear-gradient(100deg, rgba(130, 245, 207, .12), rgba(133, 89, 232, .2), rgba(224, 58, 165, .15));
  content: "";
  filter: blur(3.5rem);
}

.woocommerce-stage--basket-flow .woocommerce { color: rgba(246, 243, 255, .78); }

.woocommerce-stage--basket-flow form .form-row label,
.woocommerce-stage--basket-flow .wc-block-components-form .wc-block-components-text-input label,
.woocommerce-stage--basket-flow .wc-block-components-checkbox__label {
  color: rgba(246, 243, 255, .74);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .035em;
}

.woocommerce-stage--basket-flow input.input-text,
.woocommerce-stage--basket-flow input[type="text"],
.woocommerce-stage--basket-flow input[type="email"],
.woocommerce-stage--basket-flow input[type="tel"],
.woocommerce-stage--basket-flow input[type="password"],
.woocommerce-stage--basket-flow select,
.woocommerce-stage--basket-flow textarea,
.woocommerce-stage--basket-flow .wc-block-components-text-input input,
.woocommerce-stage--basket-flow .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  min-height: 3rem;
  border: 1px solid rgba(220, 223, 255, .18) !important;
  border-radius: .75rem !important;
  background: rgba(6, 8, 22, .68) !important;
  color: #fff !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035) !important;
}

.woocommerce-stage--basket-flow input:focus,
.woocommerce-stage--basket-flow select:focus,
.woocommerce-stage--basket-flow textarea:focus {
  border-color: rgba(130, 245, 207, .55) !important;
  outline: 2px solid rgba(130, 245, 207, .1);
  outline-offset: 1px;
}

.woocommerce-stage--basket-flow table.shop_table {
  border-collapse: separate;
  border: 1px solid rgba(220, 224, 255, .13);
  background: rgba(6, 8, 22, .36);
}

.woocommerce-stage--basket-flow table.shop_table th {
  color: rgba(184, 246, 228, .66);
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.woocommerce-stage--basket-flow table.shop_table td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: rgba(246, 243, 255, .76);
}

.woocommerce-stage--basket-flow table.shop_table .product-name a {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  text-decoration: none;
}

.woocommerce-stage--basket-flow table.shop_table img {
  width: 4.6rem;
  border-radius: .7rem;
}

.woocommerce-stage--basket-flow .quantity .qty {
  width: 4.2rem;
  color: #fff;
  text-align: center;
}

.woocommerce-stage--basket-flow .cart-collaterals .cart_totals,
.woocommerce-stage--basket-flow .woocommerce-checkout-review-order,
.woocommerce-stage--basket-flow .woocommerce-billing-fields,
.woocommerce-stage--basket-flow .woocommerce-additional-fields {
  padding: clamp(1rem, 3vw, 1.7rem);
  border: 1px solid rgba(220, 224, 255, .12);
  border-radius: 1.1rem;
  background: rgba(7, 9, 24, .44);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.woocommerce-stage--basket-flow .cart_totals h2,
.woocommerce-stage--basket-flow .woocommerce-checkout h3,
.woocommerce-stage--basket-flow #order_review_heading {
  margin-top: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.woocommerce-stage--basket-flow .woocommerce-checkout-payment {
  border: 1px solid rgba(220, 224, 255, .12);
  background: rgba(5, 7, 20, .68) !important;
}

.woocommerce-stage--basket-flow .woocommerce-checkout-payment .payment_box {
  background: rgba(132, 89, 218, .15) !important;
  color: rgba(246, 243, 255, .74) !important;
}

.woocommerce-stage--basket-flow .woocommerce-checkout-payment .payment_box::before {
  border-bottom-color: rgba(132, 89, 218, .15) !important;
}

.woocommerce-stage--basket-flow .button,
.woocommerce-stage--basket-flow button,
.woocommerce-stage--basket-flow .checkout-button,
.woocommerce-stage--basket-flow .wc-block-components-button {
  border: 1px solid rgba(222, 215, 255, .28) !important;
  border-radius: 999px !important;
  background: linear-gradient(110deg, rgba(108, 69, 184, .9), rgba(199, 51, 151, .84)) !important;
  color: #fff !important;
  font-size: .68rem !important;
  font-weight: 750 !important;
  letter-spacing: .09em;
  text-decoration: none !important;
  text-transform: uppercase;
  box-shadow: 0 .75rem 2.2rem rgba(42, 24, 75, .24);
}

.woocommerce-stage--basket-flow .button:hover,
.woocommerce-stage--basket-flow button:hover,
.woocommerce-stage--basket-flow .wc-block-components-button:hover {
  border-color: rgba(190, 249, 232, .55) !important;
  background: linear-gradient(110deg, rgba(128, 82, 214, .98), rgba(217, 62, 169, .94)) !important;
}

.woocommerce-stage--basket-flow .select2-container--default .select2-selection--single {
  min-height: 3rem;
  border-color: rgba(220, 223, 255, .18);
  border-radius: .75rem;
  background: rgba(6, 8, 22, .68);
}

.woocommerce-stage--basket-flow .select2-selection__rendered {
  color: #fff !important;
  line-height: 3rem !important;
}

.woocommerce-stage--basket-flow .wc-block-cart,
.woocommerce-stage--basket-flow .wc-block-checkout {
  color: rgba(246, 243, 255, .78);
}

.woocommerce-stage--basket-flow .wc-block-components-sidebar,
.woocommerce-stage--basket-flow .wc-block-components-main {
  border-color: rgba(220, 224, 255, .12) !important;
}

.woocommerce-stage--basket-flow .wc-block-components-product-name,
.woocommerce-stage--basket-flow .wc-block-components-totals-item__label,
.woocommerce-stage--basket-flow .wc-block-components-totals-item__value,
.woocommerce-stage--basket-flow .wc-block-components-order-summary-item__description,
.woocommerce-stage--basket-flow .wc-block-components-checkout-step__heading,
.woocommerce-stage--basket-flow .wc-block-components-title {
  color: #f8f5ff !important;
}

.woocommerce-stage--basket-flow .wc-block-components-order-summary,
.woocommerce-stage--basket-flow .wc-block-components-totals-wrapper,
.woocommerce-stage--basket-flow .wc-block-components-checkout-step {
  border-color: rgba(220, 224, 255, .12) !important;
}

.woocommerce-stage--basket-flow > .wp-block-woocommerce-cart,
.woocommerce-stage--basket-flow > .wp-block-woocommerce-checkout {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.woocommerce-stage--basket-flow .wc-block-components-sidebar-layout {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  gap: 0;
}

.woocommerce-stage--basket-flow .wc-block-cart__main {
  min-width: 0;
  padding-right: clamp(1rem, 2.5vw, 2rem) !important;
}

.woocommerce-stage--basket-flow .wc-block-cart-items {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(220, 224, 255, .12);
  border-radius: 1.1rem;
  background: rgba(6, 8, 22, .34);
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce-stage--basket-flow .wc-block-cart-items th,
.woocommerce-stage--basket-flow .wc-block-cart-items td {
  border-color: rgba(220, 224, 255, .09) !important;
}

.woocommerce-stage--basket-flow .wc-block-cart-items__header {
  color: rgba(184, 246, 228, .64);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.woocommerce-stage--basket-flow .wc-block-cart-item__image img {
  border: 1px solid rgba(220, 224, 255, .12);
  border-radius: .8rem;
  box-shadow: 0 .7rem 1.8rem rgba(0, 0, 0, .2);
}

.woocommerce-stage--basket-flow .wc-block-components-product-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  text-decoration: none;
}

.woocommerce-stage--basket-flow .wc-block-components-product-price,
.woocommerce-stage--basket-flow .wc-block-components-formatted-money-amount {
  color: var(--aurora);
}

body.woocommerce-cart .wc-block-cart-item__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.woocommerce-cart .wc-block-cart-item__wrap > .wc-block-components-product-name {
  order: 1;
}

body.woocommerce-cart .wc-block-cart-item__prices {
  display: none !important;
}

body.woocommerce-cart .wc-block-cart-item__quantity {
  order: 2;
  margin: .4rem 0 .3rem !important;
}

body.woocommerce-cart .wc-block-components-product-metadata {
  order: 3;
}

.woocommerce-stage--basket-flow .wc-block-components-quantity-selector {
  border-color: rgba(220, 224, 255, .18);
  border-radius: 999px;
  background: rgba(5, 7, 19, .58);
}

.woocommerce-stage--basket-flow .wc-block-components-quantity-selector input {
  min-height: 2rem;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
}

.woocommerce-stage--basket-flow .wc-block-cart-item__remove-link {
  color: rgba(237, 239, 255, .56) !important;
  font-size: .62rem !important;
  letter-spacing: .06em;
  text-underline-offset: .2rem;
}

.woocommerce-stage--basket-flow .wc-block-cart__sidebar {
  align-self: flex-start;
  padding: clamp(1rem, 2.5vw, 1.5rem) !important;
  border: 1px solid rgba(220, 224, 255, .12) !important;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 100% 0, rgba(133, 89, 232, .12), transparent 16rem),
    rgba(6, 8, 22, .42);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.woocommerce-stage--basket-flow .wc-block-cart__totals-title {
  margin: 0 !important;
  padding: 0 0 1rem !important;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem !important;
  font-weight: 400;
  letter-spacing: -.02em;
  text-align: left;
  text-transform: none;
}

.woocommerce-stage--basket-flow .wc-block-components-totals-wrapper {
  padding-block: 1rem !important;
}

.woocommerce-stage--basket-flow .wc-block-components-panel__button,
.woocommerce-stage--basket-flow .wc-block-components-totals-coupon__button {
  color: rgba(246, 243, 255, .72) !important;
}

.woocommerce-stage--basket-flow .wc-block-components-panel__button-icon {
  fill: currentColor;
}

.woocommerce-stage--basket-flow .wc-block-cart__submit-button {
  min-height: 3.2rem;
  margin-top: .9rem;
}

@keyframes kwj-basket-receive {
  0%, 100% { transform: scale(1); }
  34% { transform: scale(1.18) rotate(-5deg); }
  62% { transform: scale(.94) rotate(3deg); }
}

@keyframes kwj-basket-ring {
  0% { opacity: .9; transform: scale(.7); }
  100% { opacity: 0; transform: scale(1.7); }
}

@media (max-width: 70rem) and (min-width: 50.01rem) {
  .site-header__actions { gap: .55rem; }
  .kwj-basket-trigger { width: 2.65rem; height: 2.65rem; }
}

@media (max-width: 50rem) {
  .site-header__actions { gap: .55rem; }
  .kwj-basket-trigger { width: 2.65rem; height: 2.65rem; }
  .kwj-basket-drawer__footer { grid-template-columns: 1fr; }
  .kwj-basket-full-link { grid-column: auto; }

  .woocommerce-stage--basket-flow {
    overflow: hidden;
  }

  body.woocommerce-cart .woocommerce-stage--basket-flow,
  body.woocommerce-checkout .woocommerce-stage--basket-flow {
    width: calc(100% - 1rem);
  }

  .woocommerce-stage--basket-flow > .wp-block-woocommerce-cart,
  .woocommerce-stage--basket-flow > .wp-block-woocommerce-checkout,
  .woocommerce-stage--basket-flow .wc-block-components-sidebar-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .woocommerce-stage--basket-flow .wc-block-cart__main,
  .woocommerce-stage--basket-flow .wc-block-cart__sidebar {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .woocommerce-stage--basket-flow .wc-block-cart__main {
    padding-right: 0 !important;
  }

  .woocommerce-stage--basket-flow .wc-block-cart__sidebar {
    margin-top: 1rem !important;
    padding: 1rem !important;
  }

  .woocommerce-stage--basket-flow .woocommerce-checkout .col2-set,
  .woocommerce-stage--basket-flow .woocommerce-checkout #order_review,
  .woocommerce-stage--basket-flow .woocommerce-checkout #order_review_heading {
    float: none;
    width: 100%;
  }
}

@media (max-width: 35rem) {
  .site-header .brand { width: min(42vw, 12rem); }
  .site-header__actions { gap: .42rem; }
  .menu-toggle { min-width: 4.7rem; padding-inline: .75rem; }
  .menu-toggle__text { font-size: .58rem; }

  .kwj-basket-drawer { width: 100%; border-left: 0; }
  .kwj-basket-drawer__header { min-height: 8.5rem; padding: 1.25rem; }
  .kwj-basket-drawer__body { padding-inline: 1rem; }
  .kwj-basket-drawer__footer { padding-inline: 1rem; }
  .kwj-basket-toast { right: 1rem; bottom: 1rem; }

  .woocommerce-stage--basket-flow table.shop_table_responsive tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(220, 224, 255, .12);
    border-radius: .9rem;
    background: rgba(6, 8, 22, .42);
  }

  .woocommerce-stage--basket-flow table.shop_table_responsive tr td {
    border-color: rgba(220, 224, 255, .08);
  }
}

/* Compact site-wide navigation: Shop, Menu, Basket at every breakpoint. */
.site-header__actions .header-shop-link { order: 1; }
.site-header__actions .menu-toggle { order: 2; }
.site-header__actions .kwj-basket-trigger { order: 3; }

.header-shop-link {
  position: relative;
  z-index: 4;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 255, .9);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-shop-link:hover,
.header-shop-link:focus-visible {
  border-color: rgba(181, 246, 226, .58);
  color: #fff;
  outline: 0;
}

.site-header .menu-toggle {
  position: relative;
  z-index: 4;
  display: inline-flex;
  min-width: 5.4rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  order: 2;
  padding: .6rem 1rem;
  border: 1px solid rgba(225, 225, 255, .32);
  border-radius: 999px;
  background: linear-gradient(112deg, rgba(100, 66, 174, .3), rgba(179, 51, 145, .22));
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle__lines {
  position: relative;
  width: 1rem;
  height: .65rem;
  flex: 0 0 auto;
}

.menu-toggle__lines i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: top 240ms ease, transform 240ms ease;
}

.menu-toggle__lines i:first-child { top: .12rem; }
.menu-toggle__lines i:last-child { top: .5rem; }

.site-header.menu-open .menu-toggle__lines i:first-child {
  top: .31rem;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle__lines i:last-child {
  top: .31rem;
  transform: rotate(-45deg);
}

@media (max-width: 50rem) {
  .site-header { padding-inline: clamp(.65rem, 3vw, 1.25rem); }
  .site-header .brand { width: clamp(7.75rem, 32vw, 12rem); }
  .site-header__actions { gap: clamp(.3rem, 1.6vw, .55rem); }

  .header-shop-link {
    min-height: 2.65rem;
    padding: .58rem clamp(.65rem, 2.4vw, .9rem);
    font-size: .61rem;
  }

  .site-header .menu-toggle {
    min-width: 4.85rem;
    min-height: 2.65rem;
    gap: .48rem;
    padding: .58rem .72rem;
    font-size: .59rem;
  }

}

@media (max-width: 23.5rem) {
  .site-header { padding-inline: .5rem; }
  .site-header .brand { width: clamp(6rem, 29vw, 7.25rem); }
  .site-header__actions { gap: .25rem; }

  .header-shop-link {
    min-height: 2.45rem;
    padding: .5rem .58rem;
    font-size: .55rem;
  }

  .site-header .menu-toggle {
    min-width: 4.25rem;
    min-height: 2.45rem;
    gap: .34rem;
    padding: .5rem .55rem;
    font-size: .54rem;
  }

  .menu-toggle__lines { width: .85rem; }
  .kwj-basket-trigger { width: 2.45rem; height: 2.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .kwj-basket-trigger.is-receiving,
  .kwj-basket-trigger.is-receiving .kwj-basket-trigger__glow {
    animation: none;
  }

  .kwj-basket-drawer,
  .kwj-basket-backdrop,
  .kwj-basket-toast {
    transition-duration: 1ms;
  }
}

/* Full-width atmospheric footer: page colour dissolves into dark moving water. */
.site-footer.site-footer {
  --footer-primary: 132, 92, 216;
  --footer-secondary: 89, 231, 203;
  --footer-light: 211, 242, 239;
  --footer-deep: 5, 7, 20;
  --footer-warm: 255, 93, 42;
  --footer-warm-opacity: .2;
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: clamp(-12rem, -10vw, -7rem) 0 0 !important;
  padding: clamp(14rem, 16vw, 18rem) 0 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(var(--footer-deep), 0) 0 24%, rgba(var(--footer-deep), .12) 36%, rgba(var(--footer-deep), .62) 58%, rgba(2, 4, 11, .94) 78%, #010207 100%);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  isolation: isolate;
}

body.kwj-collection-theme .site-footer.site-footer {
  --footer-primary: var(--collection-primary);
  --footer-secondary: var(--collection-secondary);
  --footer-light: var(--collection-light);
  --footer-deep: var(--collection-deep);
  border: 0;
  box-shadow: none;
}

body.kwj-theme-fire .site-footer.site-footer {
  --footer-warm: var(--collection-primary);
  --footer-warm-opacity: .34;
}

body.kwj-theme-ice .site-footer.site-footer {
  --footer-warm: 145, 206, 255;
  --footer-warm-opacity: .08;
}

body.kwj-theme-aurora .site-footer.site-footer {
  --footer-warm: var(--collection-secondary);
  --footer-warm-opacity: .16;
}

.site-footer.site-footer::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(15rem, 23vw, 24rem);
  background:
    radial-gradient(ellipse at 14% 9%, rgba(var(--footer-primary), .07), transparent 43%),
    radial-gradient(ellipse at 84% 16%, rgba(var(--footer-secondary), .06), transparent 46%),
    linear-gradient(180deg, transparent 0 28%, rgba(var(--footer-deep), .08) 46%, rgba(var(--footer-deep), .62) 100%);
  content: "";
  pointer-events: none;
}

.site-footer.site-footer::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: url("../images/site/lava-rock-footer-v1.jpg");
  background-image: image-set(
    url("../images/site/lava-rock-footer-v1.webp") type("image/webp"),
    url("../images/site/lava-rock-footer-v1.jpg") type("image/jpeg")
  );
  background-position: center bottom;
  background-size: cover;
  content: "";
  filter: brightness(.4) contrast(1.06) saturate(.55);
  opacity: .34;
  -webkit-mask-image: linear-gradient(180deg, transparent 0 31%, rgba(0, 0, 0, .08) 42%, #000 68%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0 31%, rgba(0, 0, 0, .08) 42%, #000 68%, #000 100%);
  pointer-events: none;
}

.site-footer .site-footer__content {
  position: relative;
  z-index: 1;
  display: block;
  width: min(calc(100% - clamp(2rem, 8vw, 8rem)), 92rem);
  margin: 0 auto;
  padding: 0 0 clamp(1.25rem, 2vw, 1.75rem);
  text-align: left;
  text-shadow: 0 .3rem 1.8rem rgba(0, 0, 0, .5);
}

.site-footer__main {
  display: grid;
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(2rem, 4vw, 3.1rem);
  border-top: 1px solid rgba(var(--footer-light), .075);
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
  gap: clamp(2.75rem, 8vw, 9rem);
  align-items: end;
}

.site-footer__statement {
  max-width: 48rem;
}

.site-footer__eyebrow,
.site-footer__nav-title {
  margin: 0 0 .9rem;
  color: rgba(var(--footer-light), .6);
  font-size: .61rem;
  font-weight: 760;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-footer .site-footer__statement h2 {
  max-width: 13ch;
  margin: 0;
  color: #f8f6ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.25vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .96;
}

.site-footer__signature {
  margin: 1rem 0 0;
  color: rgba(241, 241, 255, .66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.95rem, 1.35vw, 1.15rem);
  font-style: italic;
  letter-spacing: .045em;
}

.site-footer__explore {
  padding-bottom: .25rem;
}

.site-footer .site-footer__navigation-wrap {
  display: block;
}

.site-footer .site-footer__navigation {
  display: grid;
  max-width: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .25rem clamp(1.5rem, 4vw, 4rem);
}

.site-footer .site-footer__navigation li {
  display: block;
  border-bottom: 1px solid rgba(var(--footer-light), .075);
}

.site-footer .site-footer__navigation a {
  display: flex;
  min-height: 2.4rem;
  padding: .68rem 0 .56rem;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 245, 255, .68);
  font-size: .63rem;
  letter-spacing: .12em;
}

.site-footer .site-footer__navigation a::after {
  width: 1.5rem;
  height: 1px;
  background: rgba(var(--footer-light), .24);
  color: rgba(var(--footer-light), .34);
  content: "";
  transform: scaleX(.55);
  transform-origin: right center;
  transition: background 180ms ease, transform 180ms ease;
}

.site-footer .site-footer__navigation a:hover,
.site-footer .site-footer__navigation a:focus-visible {
  color: #fff;
  text-shadow: 0 0 1.2rem rgba(var(--footer-secondary), .45);
}

.site-footer .site-footer__navigation a:hover::after,
.site-footer .site-footer__navigation a:focus-visible::after {
  background: rgba(var(--footer-light), .7);
  transform: scaleX(1);
}

.site-footer__base {
  display: flex;
  min-height: 3.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--footer-light), .08);
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.site-footer .site-footer__legal,
.site-footer__note {
  margin: 0;
  color: rgba(229, 234, 255, .4);
  font-size: .56rem;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer__note {
  color: rgba(var(--footer-light), .38);
  text-align: right;
}

@keyframes footer-stars-breathe {
  from { opacity: .17; }
  to { opacity: .36; }
}

@media (max-width: 52rem) {
  .site-footer.site-footer {
    margin-top: -5.5rem !important;
    padding-top: 10rem;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    align-items: start;
  }

  .site-footer .site-footer__statement h2 { max-width: 15ch; }
  .site-footer__explore { width: 100%; }
}

@media (max-width: 35rem) {
  .site-footer .site-footer__content { width: calc(100% - 2rem); }
  .site-footer__main { padding-top: 1.75rem; }
  .site-footer .site-footer__statement h2 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .site-footer .site-footer__navigation { grid-template-columns: 1fr; }
  .site-footer__base { align-items: flex-start; flex-direction: column; }
  .site-footer__note { text-align: left; }
  .site-footer.site-footer::after { background-size: auto 76%; }
}

/* Premium footer directory: the preceding page remains visible before basalt resolves into black. */
.site-footer.site-footer {
  margin-top: -14rem !important;
  padding-top: 22rem;
  background: linear-gradient(
    180deg,
    transparent 0 10rem,
    rgba(var(--footer-deep), .025) 12.5rem,
    rgba(var(--footer-deep), .16) 16.5rem,
    rgba(var(--footer-deep), .58) 22rem,
    rgba(2, 3, 9, .94) 28rem,
    #010207 36rem,
    #010207 100%
  );
}

.site-footer.site-footer::before {
  z-index: -2;
  inset: 0;
  height: auto;
  background:
    radial-gradient(ellipse at 8% 14rem, rgba(var(--footer-primary), .055), transparent 28rem),
    radial-gradient(ellipse at 92% 17rem, rgba(var(--footer-secondary), .04), transparent 31rem);
  filter: none;
}

.site-footer.site-footer::after {
  z-index: -1;
  background-position: center bottom;
  background-size: cover;
  filter: brightness(.5) contrast(1.08) saturate(.46);
  opacity: .8;
  -webkit-mask-image: linear-gradient(180deg, transparent 0 11rem, rgba(0, 0, 0, .025) 15rem, rgba(0, 0, 0, .16) 22rem, rgba(0, 0, 0, .38) 62%, rgba(0, 0, 0, .7) 80%, #000 87.5%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0 11rem, rgba(0, 0, 0, .025) 15rem, rgba(0, 0, 0, .16) 22rem, rgba(0, 0, 0, .38) 62%, rgba(0, 0, 0, .7) 80%, #000 87.5%, #000 100%);
}

.site-footer .site-footer__content {
  width: min(calc(100% - clamp(2rem, 7vw, 8rem)), 96rem);
  padding-bottom: clamp(1.25rem, 2vw, 1.8rem);
}

.site-footer__directory {
  display: grid;
  padding: clamp(2.5rem, 5vw, 4.75rem) 0 clamp(2.5rem, 4vw, 4rem);
  border-top: 1px solid rgba(var(--footer-light), .1);
  grid-template-columns: minmax(17rem, 1.35fr) minmax(0, 2.65fr);
  gap: clamp(3.5rem, 8vw, 10rem);
  align-items: start;
}

.site-footer__identity {
  max-width: 30rem;
}

.site-footer .site-footer__eyebrow {
  margin: 0 0 1rem;
  color: rgba(var(--footer-light), .5);
  font-size: .58rem;
  font-weight: 760;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-footer .site-footer__identity h2 {
  max-width: none;
  margin: 0;
  color: #f7f5fb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.7vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .98;
}

.site-footer__promise {
  max-width: none;
  margin: 1.2rem 0 0;
  color: rgba(245, 243, 251, .68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.site-footer .site-footer__signature {
  margin: .55rem 0 0;
  color: rgba(var(--footer-light), .4);
  font-family: inherit;
  font-size: .63rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer__shop-link {
  display: inline-flex;
  margin-top: 1.85rem;
  padding-bottom: .38rem;
  border-bottom: 1px solid rgba(var(--footer-light), .32);
  align-items: center;
  gap: .75rem;
  color: rgba(250, 249, 253, .88);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, gap 180ms ease;
}

.site-footer__shop-link:hover,
.site-footer__shop-link:focus-visible {
  border-color: rgba(var(--footer-light), .75);
  color: #fff;
  gap: 1rem;
}

.site-footer__sitemap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
}

.site-footer__group h3 {
  margin: 0 0 1.35rem;
  color: rgba(var(--footer-light), .46);
  font-size: .57rem;
  font-weight: 780;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-footer__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__group li {
  margin: 0;
  padding: 0;
}

.site-footer__group li + li {
  margin-top: .78rem;
}

.site-footer__group a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(244, 242, 250, .68);
  font-size: clamp(.78rem, 1vw, .88rem);
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__group a:hover,
.site-footer__group a:focus-visible {
  color: #fff;
  transform: translate3d(.18rem, 0, 0);
}

.site-footer__collection-link::before {
  width: .32rem;
  height: .32rem;
  margin-right: .68rem;
  border-radius: 50%;
  background: rgba(var(--footer-light), .34);
  box-shadow: 0 0 .8rem transparent;
  content: "";
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-footer__collection-link--fire::before { background: rgba(255, 113, 52, .68); }
.site-footer__collection-link--ice::before { background: rgba(157, 224, 255, .68); }
.site-footer__collection-link--aurora::before { background: rgba(126, 239, 207, .68); }
.site-footer__collection-link--eternal::before { background: rgba(203, 178, 226, .62); }

.site-footer__collection-link:hover::before,
.site-footer__collection-link:focus-visible::before {
  background: rgb(var(--footer-light));
  box-shadow: 0 0 .85rem rgba(var(--footer-light), .55);
}

.site-footer .site-footer__base {
  min-height: 3.5rem;
  padding-top: 1.1rem;
  border-top-color: rgba(var(--footer-light), .075);
}

.site-footer__utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .6rem 1.35rem;
}

.site-footer__utility a,
.site-footer__utility span,
.site-footer .site-footer__legal {
  color: rgba(230, 232, 241, .38);
  font-size: .54rem;
  font-weight: 680;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__utility a {
  color: rgba(var(--footer-light), .52);
  transition: color 180ms ease;
}

.site-footer__utility a:hover,
.site-footer__utility a:focus-visible { color: #fff; }

@media (min-width: 72.01rem) {
  .site-footer__directory {
    grid-template-columns: minmax(25rem, 1.35fr) minmax(0, 2.65fr);
  }

  .site-footer .site-footer__identity h2 {
    font-size: clamp(2.2rem, 2.7vw, 3rem);
    white-space: nowrap;
  }

  .site-footer__promise {
    font-size: clamp(.96rem, 1.1vw, 1.08rem);
    white-space: nowrap;
  }
}

@media (max-width: 72rem) {
  .site-footer__directory {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .site-footer__identity { max-width: 40rem; }
  .site-footer .site-footer__identity h2 { max-width: 16ch; }
}

@media (max-width: 48rem) {
  .site-footer.site-footer {
    margin-top: -9rem !important;
    padding-top: 16rem;
    background: linear-gradient(180deg, transparent 0 6rem, rgba(var(--footer-deep), .03) 8rem, rgba(var(--footer-deep), .24) 12rem, rgba(2, 3, 9, .92) 18rem, #010207 25rem, #010207 100%);
  }

  .site-footer.site-footer::after {
    -webkit-mask-image: linear-gradient(180deg, transparent 0 7rem, rgba(0, 0, 0, .16) 12rem, #000 21rem, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0 7rem, rgba(0, 0, 0, .16) 12rem, #000 21rem, #000 100%);
  }

  .site-footer__sitemap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 34rem) {
  .site-footer .site-footer__content { width: calc(100% - 2.25rem); }
  .site-footer__directory { padding-top: 2rem; gap: 3rem; }
  .site-footer__sitemap { grid-template-columns: 1fr; gap: 2.7rem; }
  .site-footer__group li + li { margin-top: .7rem; }
  .site-footer .site-footer__base { align-items: flex-start; flex-direction: column; }
  .site-footer__utility { justify-content: flex-start; }
  .site-footer__utility span { flex-basis: 100%; }
}

/* Shop-to-footer bridge: resolve the catalogue atmosphere before introducing basalt. */
body.woocommerce-shop .shop-collections {
  background:
    radial-gradient(ellipse at 9% 78%, rgba(98, 225, 199, .055), transparent 30rem),
    radial-gradient(ellipse at 92% 88%, rgba(184, 72, 213, .055), transparent 32rem),
    linear-gradient(
      180deg,
      rgba(8, 9, 20, 0),
      rgba(8, 9, 20, .18) 4rem,
      rgba(8, 9, 20, .74) 9rem,
      #080914 12rem,
      rgba(8, 9, 20, .96) 72%,
      #080914 100%
    );
}

body.woocommerce-shop .site-footer.site-footer {
  --footer-deep: 8, 9, 20;
  background: linear-gradient(
    180deg,
    transparent 0 7rem,
    rgba(8, 9, 20, .2) 10rem,
    #080914 14rem,
    #060711 21rem,
    #020309 29rem,
    #010207 36rem,
    #010207 100%
  );
}

body.woocommerce-shop .site-footer.site-footer::before {
  background:
    radial-gradient(ellipse at 10% 13rem, rgba(98, 225, 199, .045), transparent 29rem),
    radial-gradient(ellipse at 90% 16rem, rgba(184, 72, 213, .04), transparent 31rem);
}

@media (max-width: 48rem) {
  body.woocommerce-shop .site-footer.site-footer {
    background: linear-gradient(
      180deg,
      transparent 0 4rem,
      rgba(8, 9, 20, .22) 6rem,
      #080914 9rem,
      #050610 15rem,
      #010207 24rem,
      #010207 100%
    );
  }
}

/* Collection archives, single products and their footer share one atmosphere. */
body.single-product.kwj-collection-theme,
body.tax-product_cat.kwj-collection-theme {
  background:
    radial-gradient(circle at 7% 34%, rgba(var(--collection-primary), .13), transparent 30rem),
    radial-gradient(circle at 94% 70%, rgba(var(--collection-secondary), .11), transparent 36rem),
    rgb(var(--collection-deep));
}

body.single-product.kwj-collection-theme .site-main--shop,
body.tax-product_cat.kwj-collection-theme .site-main--shop {
  background: transparent;
}

body.single-product .site-footer.site-footer,
body.tax-product_cat .site-footer.site-footer {
  background: linear-gradient(
    180deg,
    transparent 0 6rem,
    rgba(var(--footer-deep), .08) 8rem,
    rgba(var(--footer-deep), .38) 11rem,
    rgb(var(--footer-deep)) 14rem,
    rgba(var(--footer-deep), .98) 18rem,
    rgba(5, 6, 16, .9) 31rem,
    #020309 35rem,
    #010207 40rem,
    #010207 100%
  );
}

body.single-product .site-footer.site-footer::before,
body.tax-product_cat .site-footer.site-footer::before {
  background:
    radial-gradient(ellipse at 10% 13rem, rgba(var(--footer-primary), .05), transparent 29rem),
    radial-gradient(ellipse at 90% 16rem, rgba(var(--footer-secondary), .045), transparent 31rem);
  -webkit-mask-image: linear-gradient(180deg, transparent 0 7rem, rgba(0, 0, 0, .2) 12rem, #000 18rem, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0 7rem, rgba(0, 0, 0, .2) 12rem, #000 18rem, #000 100%);
}

@media (max-width: 48rem) {
  body.single-product .site-footer.site-footer,
  body.tax-product_cat .site-footer.site-footer {
    background: linear-gradient(
      180deg,
      transparent 0 4rem,
      rgba(var(--footer-deep), .25) 6rem,
      rgb(var(--footer-deep)) 9rem,
      #050610 16rem,
      #010207 25rem,
      #010207 100%
    );
  }
}


/*
 * Unified fluid scaling layer.
 *
 * The full desktop composition above 72rem remains untouched. Below that
 * point, shared tokens and content-sized grids replace device-by-device
 * jumps. Structural changes such as the product summary and checkout stack
 * remain tied to the space their content actually needs.
 */
@media (max-width: 72rem) {
  :root {
    --header-height: clamp(5.5rem, calc(4.55rem + 2.7vw), 6.5rem);
    --kwj-fluid-gutter: clamp(1rem, 4.15vw, 3rem);
    --kwj-fluid-section: clamp(4rem, calc(2.1rem + 4.25vw), 7rem);
    --kwj-fluid-gap: clamp(1rem, calc(.55rem + 1.55vw), 2.25rem);
    --kwj-product-card-min: clamp(13.5rem, 18vw, 15rem);
    --kwj-collection-card-min: clamp(17rem, 28vw, 20rem);
  }

  .site-header {
    padding-inline: var(--kwj-fluid-gutter);
  }

  .site-header .brand {
    width: clamp(8rem, 25vw, 18rem);
    flex: 0 1 auto;
  }

  .site-header__actions {
    flex: 0 0 auto;
    gap: clamp(.3rem, 1vw, .7rem);
  }

  .header-shop-link,
  .site-header .menu-toggle {
    min-height: clamp(2.45rem, calc(1.93rem + 1.5vw), 3rem);
  }

  .header-shop-link {
    padding-inline: clamp(.58rem, 1.4vw, 1.1rem);
    font-size: clamp(.55rem, calc(.48rem + .2vw), .68rem);
  }

  .site-header .menu-toggle {
    min-width: clamp(4.25rem, calc(3.25rem + 2.8vw), 5.4rem);
    padding-inline: clamp(.55rem, 1.35vw, 1rem);
    gap: clamp(.34rem, .75vw, .65rem);
    font-size: clamp(.54rem, calc(.49rem + .16vw), .64rem);
  }

  .kwj-basket-trigger {
    width: clamp(2.45rem, calc(1.93rem + 1.5vw), 3rem);
    height: clamp(2.45rem, calc(1.93rem + 1.5vw), 3rem);
  }

  .hero h1 {
    font-size: clamp(3.1rem, calc(1.55rem + 6.6vw), 6.3rem);
    text-wrap: balance;
  }

  .hero h1 span:last-child {
    font-size: clamp(2.25rem, calc(1.15rem + 4.7vw), 4.5rem);
  }

  .hero__subtitle {
    font-size: clamp(1rem, calc(.78rem + .8vw), 1.35rem);
  }

  .content-flow,
  .mixed-catalogue,
  .collection-shelf,
  .shop-filters {
    width: min(calc(100% - (var(--kwj-fluid-gutter) * 2)), 88rem);
  }

  .flow-section,
  .collection-shelf,
  .collection-catalogue,
  .single-product-collections,
  .site-footer .site-footer__content {
    container-type: inline-size;
  }

  .collection-categories--compact {
    --kwj-collection-card-min: 14rem;
  }

  .collection-categories {
    grid-template-columns: repeat(
      auto-fit,
      minmax(min(100%, var(--kwj-collection-card-min)), 1fr)
    );
    gap: var(--kwj-fluid-gap);
  }

  .collection-category:last-child:nth-child(odd) {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

  .flow-columns--three {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  }

  .flow-columns--two,
  .flow-feature,
  .flow-feature--reverse,
  .story-flow {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
    gap: var(--kwj-fluid-gap);
  }

  .flow-feature__copy {
    width: 100%;
  }

  .site-main--shop-index .shop-hero {
    height: auto;
    min-height: clamp(25rem, 48svh, 34rem);
  }

  .shop-hero__content {
    margin-top: calc(var(--header-height) * .48);
  }

  .shop-hero__content h1 {
    font-size: clamp(2.6rem, calc(1.7rem + 3.85vw), 4.45rem);
    text-wrap: balance;
  }

  .shop-collections {
    margin-top: clamp(-12rem, calc(-6rem - 8.33vw), -9rem);
    padding-top: clamp(13rem, calc(10rem + 8.33vw), 16rem);
    padding-bottom: var(--kwj-fluid-section);
  }

  .shop-filters {
    margin-bottom: clamp(4rem, 7vw, 7.5rem);
  }

  .shop-filters__form {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
    gap: var(--kwj-fluid-gap);
  }

  .shop-filters__actions {
    grid-column: auto;
  }

  body.kwj-woocommerce-ready .woocommerce-stage ul.products,
  body.kwj-woocommerce-ready .woocommerce-stage .wc-block-grid__products,
  body.kwj-woocommerce-ready .collection-shelf ul.products,
  body.kwj-woocommerce-ready .mixed-catalogue ul.products,
  body.kwj-woocommerce-ready .woocommerce-stage--category ul.products,
  body.kwj-woocommerce-ready .woocommerce-stage--product .related.products ul.products {
    grid-template-columns: repeat(
      auto-fit,
      minmax(min(100%, var(--kwj-product-card-min)), 1fr)
    );
  }

  body.kwj-woocommerce-ready .mixed-catalogue ul.products {
    display: grid !important;
    clear: both;
    gap: var(--kwj-fluid-gap);
    margin: 0 !important;
    padding: 0 !important;
  }

  body.kwj-woocommerce-ready .mixed-catalogue ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
  }

  .collection-shelf__header h2 {
    font-size: clamp(2.4rem, 7cqw, 5.2rem);
  }

  .collection-hero {
    min-height: clamp(30rem, max(52svh, calc(24rem + 12vw)), 42rem);
    padding-top: calc(
      var(--header-height) + clamp(3rem, calc(2.05rem + 2.7vw), 4rem)
    );
  }

  .collection-hero h1 {
    font-size: clamp(3.8rem, calc(3.15rem + 3.6vw), 5.75rem);
    text-wrap: balance;
  }

  .product-theme-scene {
    height: clamp(22rem, max(40svh, calc(19rem + 8vw)), 31rem);
  }

  .content-hero h1,
  .content-hero--basket-flow h1 {
    text-wrap: balance;
  }

  .content-surface,
  .woocommerce-stage,
  .site-main--commerce-full .woocommerce-stage,
  .site-main--commerce-full .shop-return,
  body.woocommerce-cart .woocommerce-stage--basket-flow,
  body.woocommerce-checkout .woocommerce-stage--basket-flow {
    width: min(calc(100% - (var(--kwj-fluid-gutter) * 2)), 100rem);
    padding-inline: clamp(1rem, 3vw, 3.5rem);
  }

  .site-footer.site-footer {
    margin-top: clamp(-14rem, calc(1rem - 20.83vw), -9rem) !important;
    padding-top: clamp(16rem, calc(4rem + 25vw), 22rem);
  }

  .site-footer .site-footer__content {
    width: min(calc(100% - (var(--kwj-fluid-gutter) * 2)), 96rem);
  }

  .site-footer__directory {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 7rem);
  }

  .site-footer .site-footer__identity h2 {
    max-width: none;
    font-size: clamp(1.95rem, 3.1vw, 2.2rem);
    white-space: nowrap;
  }

  .site-footer__promise {
    font-size: clamp(.92rem, 1.4vw, 1.08rem);
  }

  .site-footer__sitemap {
    grid-template-columns: repeat(
      auto-fit,
      minmax(min(100%, clamp(10rem, 14vw, 11rem)), 1fr)
    );
    gap: clamp(2rem, 4vw, 4.5rem);
  }
}

@media (max-width: 72rem) {
  /* Preserve the alternating desktop flow until the component itself is narrow. */
  @container (min-width: 42rem) {
    .flow-feature--reverse .flow-feature__media { order: 2; }
    .flow-feature--reverse .flow-feature__copy { order: 1; justify-self: end; }
  }

  /* Keep the footer's desktop proportions until its own content needs to stack. */
  @container (min-width: 48rem) {
    .site-footer__directory {
      grid-template-columns: minmax(20rem, 1.35fr) minmax(0, 2.65fr);
    }
  }
}

/*
 * Rendering-performance layer.
 *
 * Each hero uses one canvas for its moving atmosphere. The global page
 * atmosphere remains deliberately restrained and becomes static on touch.
 */
.page-atmosphere__stars,
.page-atmosphere__aurora {
  will-change: auto;
}

.page-atmosphere__stars--near {
  animation: page-stars-pulse 12s ease-in-out infinite alternate;
}

.page-atmosphere__stars--far {
  animation: none;
}

.page-atmosphere__aurora {
  filter: blur(3rem);
}

.hero.is-motion-paused *,
.hero.is-motion-paused *::before,
.hero.is-motion-paused *::after,
.shop-hero.is-motion-paused *,
.shop-hero.is-motion-paused *::before,
.shop-hero.is-motion-paused *::after,
.collection-hero.is-motion-paused *,
.collection-hero.is-motion-paused *::before,
.collection-hero.is-motion-paused *::after,
.product-theme-scene.is-motion-paused *,
.product-theme-scene.is-motion-paused *::before,
.product-theme-scene.is-motion-paused *::after {
  animation-play-state: paused !important;
}

/* Touch scrolling favours stable pre-rasterised layers over fixed blur stacks. */
@media (pointer: coarse) {
  .page-atmosphere__stars,
  .page-atmosphere__aurora,
  .scene-photo img,
  .shop-hero__scene picture img,
  .shop-hero__lava-glow,
  .shop-hero__steam {
    animation: none;
    will-change: auto;
  }

  .page-atmosphere__aurora {
    filter: none;
    mix-blend-mode: normal;
    opacity: .065;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-open {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header {
    background: rgba(5, 6, 17, .68);
  }

  .site-header.is-scrolled,
  .site-header.menu-open {
    background: rgba(5, 6, 17, .92);
  }

  .site-footer.site-footer::after {
    filter: none;
    opacity: .42;
  }
}
