/** Shopify CDN: Minification failed

Line 755:0 Unexpected "}"

**/
/*
 * Kinn — the quiz: "Is this for me?"
 *
 * Every colour is a role token (--bg, --text, --accent, --accent-text,
 * --accent-ink) from assets/kinn-tokens.css, read as rgb(var(--token)) or
 * mixed toward transparent. Nothing is a hex, so one stylesheet paints the
 * glass sheet and the plaster one alike.
 *
 * v2, 26 Sep 2026: the sheet is the header panel's glass (same surface, same
 * blur, same scrim) with light text; options are Seed-style chips that grow a
 * tick when chosen; the hot-or-cold tiles stack and advance on tap; a short
 * "reading your answers" beat before Good news; all eight serves.
 *
 * 1rem = 10px in this theme.
 */

.kq {
  --kq-ink: var(--text, var(--color-foreground));
  --kq-ground: var(--bg, var(--color-background));
  --kq-accent: var(--accent, 255, 188, 19);
  --kq-accent-text: var(--accent-text, var(--kq-accent));
  --kq-accent-ink: var(--accent-ink, 63, 63, 63);

  --kq-line: color-mix(in srgb, rgb(var(--kq-ink)) 16%, transparent);
  --kq-line-strong: color-mix(in srgb, rgb(var(--kq-ink)) 34%, transparent);
  --kq-muted: color-mix(in srgb, rgb(var(--kq-ink)) 72%, transparent);
  --kq-faint: color-mix(in srgb, rgb(var(--kq-ink)) 50%, transparent);
  --kq-fill: color-mix(in srgb, rgb(var(--kq-ink)) 8%, transparent);
  --kq-fill-selected: color-mix(in srgb, rgb(var(--kq-ink)) 18%, transparent);

  --kq-ease: cubic-bezier(0.22, 1, 0.36, 1);

  color: rgb(var(--kq-ink));
  font-family: var(--font-body-family);
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------------
 * Title and description. Every screen opens with these two.
 * ------------------------------------------------------------------ */
.kq-title {
  margin: 0 0 1rem;
  font-family: var(--font-heading-family, var(--font-body-family));
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgb(var(--kq-ink));
  text-wrap: balance;
}
.kq-lede {
  margin: 0 0 2.6rem;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--kq-muted);
  max-width: 38ch;
}
@media screen and (min-width: 750px) {
  .kq-title { font-size: 3.4rem; }
  .kq-lede { font-size: 1.6rem; max-width: 44ch; }
}
.kq-eyebrow {
  margin: 0 0 1.4rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--kq-accent-text));
}
.kq-screen--statement .kq-title { font-size: 3.4rem; line-height: 1.08; margin-bottom: 1.4rem; }
.kq-screen--statement .kq-lede { font-size: 1.7rem; max-width: 30ch; }
@media screen and (min-width: 750px) {
  .kq-screen--statement .kq-title { font-size: 4rem; }
}

/* ------------------------------------------------------------------
 * Header strip: a three-column grid so the logo is centred on the sheet
 * whatever sits either side of it, then an edge-to-edge progress bar.
 * ------------------------------------------------------------------ */
.kq-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.4rem 2rem 0;
}
.kq-head__back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  margin-left: -0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--kq-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.2s ease;
}
.kq-head__back:hover { background: var(--kq-fill); color: rgb(var(--kq-ink)); }
.kq-head__back:focus-visible { outline: 2px solid rgb(var(--kq-accent)); outline-offset: 2px; }
.kq-head__back svg { width: 1.8rem; height: 1.8rem; }
.kq-head__back.is-ghost { opacity: 0; pointer-events: none; }

.kq-head__mark {
  display: block;
  height: 1.5rem;
  width: calc(1.5rem * var(--kq-logo-ratio, 3.2));
  background: rgb(var(--kq-ink));
  -webkit-mask: var(--kq-logo) center / contain no-repeat;
  mask: var(--kq-logo) center / contain no-repeat;
}
.kq-head__mark--text {
  height: auto;
  width: auto;
  background: none;
  -webkit-mask: none;
  mask: none;
  font-family: var(--font-heading-family, var(--font-body-family));
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgb(var(--kq-ink));
}
.kq-head__count {
  justify-self: end;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  color: var(--kq-faint);
  transition: opacity 0.2s ease;
}
.kq-head__count.is-ghost { opacity: 0; }

.kq-track {
  height: 2px;
  margin-top: 1.4rem;
  background: var(--kq-line);
}
.kq-track__fill {
  height: 100%;
  width: var(--kq-progress, 0%);
  background: rgb(var(--kq-ink));
  transition: width 420ms var(--kq-ease);
}

/* ------------------------------------------------------------------
 * Chips. Sized to their words, wrapping in a row, like Seed. At rest a
 * hairline; chosen, a soft fill and a tick that the chip grows to make
 * room for.
 * ------------------------------------------------------------------ */
.kq-pills {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.kq-pill {
  display: inline-flex;
  align-items: center;
  min-height: 4.8rem;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--kq-line-strong);
  border-radius: 999px;
  background: transparent;
  color: rgb(var(--kq-ink));
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 120ms ease;
  -webkit-tap-highlight-color: transparent;
}
.kq-pill:hover { border-color: rgb(var(--kq-ink)); }
.kq-pill:active { transform: scale(0.97); }
.kq-pill:focus-visible { outline: 2px solid rgb(var(--kq-accent)); outline-offset: 3px; }
.kq-pill[aria-pressed="true"] {
  border-color: transparent;
  background: var(--kq-fill-selected);
}
.kq-pill__tick {
  display: inline-flex;
  flex: 0 0 auto;
  width: 0;
  height: 1.4rem;
  margin-right: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 220ms var(--kq-ease), margin 220ms var(--kq-ease), opacity 160ms ease;
}
.kq-pill__tick svg { width: 1.4rem; height: 1.4rem; flex: 0 0 auto; }
.kq-pill[aria-pressed="true"] .kq-pill__tick { width: 1.4rem; margin-right: 0.8rem; opacity: 1; }

/* ------------------------------------------------------------------
 * The two tiles, stacked. Picture left, words right; a tap answers and
 * moves on, so there is no selected state to hold.
 * ------------------------------------------------------------------ */
.kq-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.kq-tile {
  display: grid;
  grid-template-columns: 10rem 1fr auto;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  padding: 0.8rem 1.6rem 0.8rem 0.8rem;
  border: 1px solid var(--kq-line-strong);
  border-radius: 2rem;
  background: var(--kq-fill);
  color: rgb(var(--kq-ink));
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 120ms ease;
  -webkit-tap-highlight-color: transparent;
}
.kq-tile:hover { border-color: rgb(var(--kq-ink)); }
.kq-tile:active, .kq-tile[aria-pressed="true"] { transform: scale(0.985); background: var(--kq-fill-selected); border-color: transparent; }
.kq-tile:focus-visible { outline: 2px solid rgb(var(--kq-accent)); outline-offset: 3px; }
.kq-tile__media {
  width: 10rem;
  height: 10rem;
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgb(var(--kinn-aubergine));
}
.kq-tile__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.kq-tile__name { display: block; font-size: 1.8rem; font-weight: 500; }
.kq-tile__sub { display: block; margin-top: 0.2rem; font-size: 1.35rem; color: var(--kq-muted); }
.kq-tile__go { color: var(--kq-faint); }
.kq-tile__go svg { width: 1.8rem; height: 1.8rem; display: block; }

/* ------------------------------------------------------------------
 * The icon row.
 * ------------------------------------------------------------------ */
.kq-rows {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.kq-row { display: flex; gap: 1.3rem; align-items: flex-start; }
.kq-row__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--kq-fill-selected);
  color: rgb(var(--kq-ink));
}
.kq-row__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.kq-row__title { display: block; margin: 0 0 0.25rem; font-size: 1.55rem; font-weight: 500; line-height: 1.3; }
.kq-row__text { display: block; margin: 0; font-size: 1.4rem; line-height: 1.5; color: var(--kq-muted); max-width: 40ch; }

/* Ingredient rows. */
.kq-ing { margin: 0; padding: 0; list-style: none; }
.kq-ing li {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.4rem;
  row-gap: 0.15rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--kq-line);
}
.kq-ing li:first-child { border-top: 0; padding-top: 0; }
.kq-ing__name { font-size: 1.55rem; font-weight: 500; }
.kq-ing__amount {
  font-family: var(--font-heading-family, var(--font-body-family));
  font-size: 1.55rem;
  font-weight: 500;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.kq-ing__what { grid-column: 1 / -1; font-size: 1.3rem; color: var(--kq-muted); }

/* Lists arrive a row at a time. */
@media (prefers-reduced-motion: no-preference) {
  .is-entering > .kq-row, .is-entering > li, .is-entering > .kq-pill, .is-entering > .kq-tile {
    animation: kq-rise 420ms var(--kq-ease) both;
  }
  .is-entering > :nth-child(2) { animation-delay: 50ms; }
  .is-entering > :nth-child(3) { animation-delay: 100ms; }
  .is-entering > :nth-child(4) { animation-delay: 150ms; }
  .is-entering > :nth-child(5) { animation-delay: 200ms; }
  .is-entering > :nth-child(6) { animation-delay: 250ms; }
}
@keyframes kq-rise {
  from { opacity: 0; transform: translateY(0.8rem); }
  to   { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------
 * The serves. All eight, hers first. Cards at 76% so the next shows its
 * edge and asks to be swiped.
 * ------------------------------------------------------------------ */
.kq-serves {
  display: flex;
  gap: 1.2rem;
  touch-action: pan-x;
  margin-inline: -2rem;
  padding: 0.2rem 2rem 0.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.kq-serves::-webkit-scrollbar { display: none; }
.kq-serve {
  position: relative;
  flex: 0 0 62%;
  scroll-snap-align: center;
  border: 1px solid var(--kq-line);
  border-radius: 1.8rem;
  overflow: hidden;
  background: var(--kq-fill);
}
@media screen and (min-width: 750px) { .kq-serve { flex-basis: 46%; } }
.kq-serve__media { aspect-ratio: 4 / 5; background: rgb(var(--kinn-aubergine)); }
.kq-serve__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.kq-serve__name {
  display: block;
  padding: 1.3rem 1.5rem 0.3rem;
  font-family: var(--font-heading-family, var(--font-body-family));
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.kq-serve__line { display: block; padding: 0 1.5rem 1.5rem; font-size: 1.35rem; line-height: 1.5; color: var(--kq-muted); }
.kq-serve__yours {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgb(var(--kq-accent));
  color: rgb(var(--kq-accent-ink));
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.kq-dots { display: flex; justify-content: center; gap: 0.6rem; padding-top: 1.4rem; }
.kq-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--kq-line-strong);
  transition: width 220ms var(--kq-ease), background 180ms ease;
}
.kq-dot.is-on { width: 1.8rem; background: rgb(var(--kq-ink)); }

/* ------------------------------------------------------------------
 * The beat between her last answer and Good news. Three lines that tick
 * off one after another, under a thin line that fills. Two seconds.
 * ------------------------------------------------------------------ */
.kq-think { padding-top: 1rem; }
.kq-think__rows { display: flex; flex-direction: column; gap: 1.6rem; margin: 2.4rem 0 0; padding: 0; list-style: none; }
.kq-think__row {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 1.6rem;
  color: var(--kq-faint);
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 320ms ease, transform 420ms var(--kq-ease), color 320ms ease;
}
.kq-think__row.is-on { opacity: 1; transform: none; }
.kq-think__row.is-done { color: rgb(var(--kq-ink)); }
.kq-think__dot {
  position: relative;
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--kq-line-strong);
  transition: background 260ms ease, border-color 260ms ease;
}
.kq-think__dot svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 200ms ease, transform 300ms var(--kq-ease);
}
.kq-think__row.is-on .kq-think__dot::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgb(var(--kq-accent));
  border-right-color: transparent;
  animation: kq-spin 900ms linear infinite;
}
.kq-think__row.is-done .kq-think__dot::after { display: none; }
.kq-think__row.is-done .kq-think__dot { background: rgb(var(--kq-accent)); border-color: rgb(var(--kq-accent)); color: rgb(var(--kq-accent-ink)); }
.kq-think__row.is-done .kq-think__dot svg { opacity: 1; transform: scale(1); }
@keyframes kq-spin { to { transform: rotate(360deg); } }
.kq-think__bar { height: 2px; margin-top: 3.2rem; background: var(--kq-line); overflow: hidden; border-radius: 2px; }
.kq-think__bar i { display: block; height: 100%; width: 0; background: rgb(var(--kq-accent)); transition: width 1900ms cubic-bezier(0.4, 0, 0.2, 1); }
.kq-think.is-running .kq-think__bar i { width: 100%; }

/* ------------------------------------------------------------------
 * The code, after her email, and when she comes back.
 * ------------------------------------------------------------------ */
.kq-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin: 0;
  padding: 1.5rem 1.8rem;
  border: 1px dashed var(--kq-line-strong);
  border-radius: 1.4rem;
  background: var(--kq-fill);
}
.kq-code__value {
  font-family: var(--font-heading-family, var(--font-body-family));
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.kq-code__copy, .kq-link {
  padding: 0.6rem 0;
  border: 0;
  background: none;
  color: rgb(var(--kq-ink));
  font: inherit;
  font-size: 1.4rem;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  cursor: pointer;
}
.kq-note { margin: 0 0 0.4rem; font-size: 1.55rem; font-weight: 500; }
.kq-note + .kq-lede { margin-top: 0.2rem; }
.kq-again { margin-top: 2.4rem; text-align: center; }

/* The capture inside the sheet: the snippet's stacked field and button,
   recoloured for glass. */
.kq-screen .kinn-capture { padding: 0; }
.kq-screen .kinn-capture__inner { padding: 0; max-width: none; }
.kq-sheet--glass .kinn-capture__input {
  background: var(--kq-fill);
  border-color: var(--kq-line-strong);
  color: rgb(var(--kq-ink));
}
.kq-sheet--glass .kinn-capture__input::placeholder { color: var(--kq-faint); }
.kq-sheet--glass .kinn-capture__button {
  background: rgb(var(--kinn-plaster));
  color: rgb(var(--kinn-text-dark));
}
.kq-sheet--glass .kinn-capture__error { color: rgb(var(--kq-accent)); }
.kinn-capture__disclaimer, .kinn-capture__disclaimer p { margin: 1.6rem 0 0; font-size: 1.05rem; line-height: 1.5; color: color-mix(in srgb, rgb(var(--kq-ink)) 38%, transparent); }
.kinn-capture__disclaimer a { color: inherit; }

/* ==================================================================
 * The sheet. The header panel's glass: the same scrim, the same surface,
 * the same blur, so the two overlays on the site are the same object.
 * 93dvh on phones with the cart sheet's radius and handle; a centred card
 * on desktop. The shape never changes mid-flow.
 * ================================================================== */
.kq-root {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.kq-root[hidden] { display: none; }
html.kq-open { overflow: hidden; }

.kq-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 8, 0.55);
  opacity: 0;
  transition: opacity 320ms ease;
}
.kq-root.is-open .kq-scrim { opacity: 1; }

.kq-sheet {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 93dvh;
  border-radius: 2.4rem 2.4rem 0 0;
  box-shadow: 0 -1.2rem 4rem rgba(var(--kinn-band), 0.28);
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 380ms var(--kq-ease);
  outline: none;
}
.kq-root.is-open .kq-sheet { transform: translateY(0); }
.kq-root.is-dragging .kq-sheet { transition: none; }
.kq-root.is-instant .kq-sheet, .kq-root.is-instant .kq-scrim { transition: none; }

/* The glass. --kinn-chip is the header's tint; the band preset gives the
   light text and the white button. */
.kq-sheet--glass {
  background: rgba(74, 58, 68, 0.42);
  backdrop-filter: blur(38px) saturate(140%);
  -webkit-backdrop-filter: blur(38px) saturate(140%);
  box-shadow: 0 -1.2rem 4rem rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .kq-sheet--glass { background: rgb(var(--kinn-band)); }
}
/* The preset's own background-color must not paint over the glass. */
.shopify-section .kq-sheet--glass.section--band { background-color: rgba(74, 58, 68, 0.42); }

.kq-sheet::before {
  content: '';
  display: block;
  flex: 0 0 auto;
  width: 4rem;
  height: 0.4rem;
  margin: 1rem auto 0;
  border-radius: 1000px;
  background: color-mix(in srgb, rgb(var(--kq-ink)) 30%, transparent);
}
.kq-sheet .kq-head { padding-top: 1rem; }
.kq-sheet .kq-track { flex: 0 0 auto; }

.kq-body {
  position: relative;
  touch-action: pan-y;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 2.8rem 2rem 2.4rem;
}
.kq-foot {
  flex: 0 0 auto;
  padding: 1.2rem 2rem calc(1.6rem + env(safe-area-inset-bottom));
}
.kq-foot .button { width: 100%; }
.kq-foot[hidden] { display: none; }

@media screen and (min-width: 990px) {
  .kq-root { align-items: center; }
  .kq-sheet {
    width: 50rem;
    height: min(82rem, 88vh);
    border-radius: 2.4rem;
    transform: translateY(2.4rem) scale(0.98);
    opacity: 0;
    transition: transform 420ms var(--kq-ease), opacity 320ms ease;
  }
  .kq-root.is-open .kq-sheet { transform: none; opacity: 1; }
  .kq-sheet::before { display: none; }
  .kq-sheet .kq-head { padding-top: 2.2rem; }
  .kq-body { padding: 3.2rem 3.2rem 2.4rem; }
  .kq-foot { padding: 1.4rem 3.2rem 2.6rem; }
}

/* ------------------------------------------------------------------
 * Screens. The one leaving is lifted out of the flow so the one arriving
 * never renders underneath it for a frame.
 * ------------------------------------------------------------------ */
.kq-screen { min-height: 100%; }
.kq-screen.is-out, .kq-screen.is-out-back {
  position: absolute;
  top: 2.8rem;
  left: 2rem;
  right: 2rem;
  min-height: 0;
  pointer-events: none;
}
@media screen and (min-width: 990px) {
  .kq-screen.is-out, .kq-screen.is-out-back { top: 3.2rem; left: 3.2rem; right: 3.2rem; }
}
@media (prefers-reduced-motion: no-preference) {
  .kq-screen.is-in { animation: kq-in 360ms var(--kq-ease) both; }
  .kq-screen.is-in-back { animation: kq-in-back 360ms var(--kq-ease) both; }
  .kq-screen.is-out { animation: kq-out 180ms ease both; }
  .kq-screen.is-out-back { animation: kq-out-back 180ms ease both; }
}
@media (prefers-reduced-motion: reduce) {
  .kq-screen.is-out, .kq-screen.is-out-back { display: none; }
}
@keyframes kq-in { from { opacity: 0; transform: translateX(2.4rem); } to { opacity: 1; transform: none; } }
@keyframes kq-in-back { from { opacity: 0; transform: translateX(-2.4rem); } to { opacity: 1; transform: none; } }
@keyframes kq-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateX(-1.6rem); } }
@keyframes kq-out-back { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateX(1.6rem); } }

/* The line on the product page once the code is on. The weight of the
   "Works out at" line under the button, not a box: a reminder at the
   price, not a second announcement. */
.kq-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
  color: color-mix(in srgb, rgb(var(--kinn-text-dark)) 62%, transparent);
}
.kq-banner b { font-weight: 500; color: rgb(var(--kinn-text-dark)); }
.kq-banner .kq-toast__dot { width: 0.7rem; height: 0.7rem; background: rgb(var(--kinn-amber)); }

/* The moment she lands on the product page from the quiz. The sticky
   buy bar's surface, so it reads as the same chrome: band at 92% over a
   blur, a hairline of light, the bar's radius. */
.kq-toast {
  position: fixed;
  top: calc(var(--header-height, 6rem) + 1.2rem);
  left: 50%;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem 1.2rem 1.5rem;
  border: 0.1rem solid rgba(var(--kinn-text-light), 0.14);
  border-radius: 1.8rem;
  background: rgba(var(--kinn-band), 0.92);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.36);
  color: rgb(var(--kinn-text-light));
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -1.2rem);
  transition: opacity 320ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.kq-toast.is-in { opacity: 1; transform: translate(-50%, 0); }
.kq-toast__dot { width: 0.8rem; height: 0.8rem; border-radius: 50%; background: rgb(var(--kinn-amber)); flex: 0 0 auto; }

/* ------------------------------------------------------------------
 * Component-page scaffolding (phase 1 showcase). Deletable.
 * ------------------------------------------------------------------ */
.kq-frame {
  position: relative;
  width: min(100%, 44rem);
  margin-inline: auto;
  border-radius: 2.4rem 2.4rem 0 0;
  background: rgb(var(--kq-ground));
  box-shadow: 0 -1.2rem 4rem rgba(var(--kinn-band), 0.28);
  overflow: hidden;
}
.kq-frame::before {
  content: '';
  display: block;
  width: 4rem;
  height: 0.4rem;
  margin: 1rem auto 0.4rem;
  border-radius: 1000px;
  background: color-mix(in srgb, rgb(var(--kq-ink)) 22%, transparent);
}
.kq-frame__body { padding: 3.2rem 2rem 1rem; }
.kq-frame__foot { padding: 1.4rem 2rem 2.2rem; }
.kq-frame__foot .button { width: 100%; }
.kq-showcase { padding: 5.6rem 2rem; background: rgb(var(--kq-ground)); }
.kq-showcase__label { margin: 0 0 2.4rem; text-align: center; font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgb(var(--kq-accent-text)); }
.kq-showcase__label b { color: rgb(var(--kq-ink)); font-weight: 500; }
.kq-part { margin-bottom: 4.4rem; }
.kq-part:last-child { margin-bottom: 0; }
.kq-part__name { margin: 0 0 1.4rem; font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--kq-faint); }
.kq-stage { padding: 6rem 2rem 0; background: color-mix(in srgb, rgb(var(--kinn-band)) 55%, rgb(var(--kinn-plaster))); }

/* ------------------------------------------------------------------
 * Page mode: the same sheet as a page of its own. No scrim, no transform,
 * a card centred on the band, full height on phones. The site's own logo
 * sits above it, so the strip's mark is hidden here.
 * ------------------------------------------------------------------ */
.kq-root--page {
  position: static;
  display: block;
  min-height: calc(100vh - var(--header-height, 6rem));
  padding: 0;
  background: rgb(var(--kinn-band));
}
.kq-root--page .kq-sheet {
  height: auto;
  min-height: calc(100vh - var(--header-height, 6rem));
  border-radius: 0;
  box-shadow: none;
  transform: none;
  opacity: 1;
  background: rgb(var(--kinn-band));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.shopify-section .kq-root--page .kq-sheet--glass.section--band { background-color: rgb(var(--kinn-band)); }
.kq-root--page .kq-sheet::before { display: none; }
.kq-root--page .kq-head__mark { visibility: hidden; }
.kq-root--page .kq-body { flex: 1 1 auto; overflow: visible; }
.kq-root--page .kq-foot { position: sticky; bottom: 0; background: rgb(var(--kinn-band)); }
@media screen and (min-width: 990px) {
  /* Desktop is a spread, like Seed: the strip and the progress line run
     the full width of the page, the content sits in one 45rem column,
     the button fills the column. No card. */
  .kq-root--page { padding: 0 0 8rem; }
  .kq-root--page .kq-sheet {
    width: 100%;
    min-height: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .shopify-section .kq-root--page .kq-sheet--glass.section--band { background-color: transparent; }
  .kq-root--page .kq-head { padding: 2.6rem 4rem 0; }
  .kq-root--page .kq-head__mark { visibility: visible; height: 1.9rem; width: calc(1.9rem * var(--kq-logo-ratio, 3.2)); }
  .kq-root--page .kq-head__count { font-size: 1.3rem; }
  .kq-root--page .kq-track { margin-top: 2.2rem; }
  .kq-root--page .kq-body { width: 45rem; margin-inline: auto; padding: 7.2rem 0 3.2rem; }
  .kq-root--page .kq-title { font-size: 4.2rem; }
  .kq-root--page .kq-screen--statement .kq-title { font-size: 4.8rem; }
  .kq-root--page .kq-lede { font-size: 1.7rem; max-width: none; margin-bottom: 3.2rem; }
  .kq-root--page .kq-pill { font-size: 1.6rem; min-height: 5.2rem; padding: 1.3rem 2.2rem; }
  .kq-root--page .kq-serves { margin-inline: 0; padding-inline: 0; }
  .kq-root--page .kq-serve { flex-basis: 62%; }
  .kq-root--page .kq-foot { position: static; width: 45rem; margin-inline: auto; padding: 1.2rem 0 0; background: transparent; }
  .kq-root--page .kq-foot .button { width: 100%; }
  .kq-root--page .kq-screen.is-out, .kq-root--page .kq-screen.is-out-back { top: 7.2rem; left: 0; right: 0; }
}
}
}
