/* ══════════════════════════════════════════════════════════════
   minimarvels Style Quiz — full stylesheet
══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400;1,9..144,500&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #F4EFE8;
  --cream-soft: #EDE7DD;
  --cream-darker: #E5DDD0;
  --ink: #1F1B17;
  --ink-soft: #4A433C;
  --ink-faded: #847A6E;
  --terracotta: #94715A;
  --terracotta-dark: #6B4E3A;
  --sage: #8B9676;
  --line: #D9D0C3;
  --success: #4F6B47;
  --max-w: 1240px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top:    env(safe-area-inset-top, 0px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; text-align: inherit; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--ink); }
img { display: block; max-width: 100%; }
input { font: inherit; color: inherit; -webkit-appearance: none; appearance: none; }
input[type="checkbox"], input[type="radio"] { -webkit-appearance: auto !important; appearance: auto !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.frame { min-height: 100vh; display: flex; flex-direction: column; }
.main-area { flex: 1; display: flex; flex-direction: column; }

/* ─── HEADER ──────────────────────────────────────────────────── */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: calc(20px + var(--safe-top)) 40px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 232, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  position: sticky; top: 0;
  z-index: 50;
}
.brand {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink); }
.progress-wrap {
  display: flex;
  gap: 14px;
  align-items: center;
  transition: opacity 0.3s;
}
.progress-wrap.hidden { opacity: 0; pointer-events: none; }
.step-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.dots { display: flex; gap: 5px; align-items: center; }
.dot { width: 22px; height: 2px; background: var(--line); transition: background 0.4s; }
.dot.active { background: var(--ink); }

.header-cart {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.header-cart.visible { display: flex; }
.cart-count {
  background: var(--ink);
  color: var(--cream);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0;
  transition: transform 0.3s, background 0.3s;
}
.cart-count.bump { animation: bump 0.45s ease; }
.cart-count.has-items { background: var(--terracotta); }
@keyframes bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* ─── SCREENS ──────────────────────────────────────────────── */
.screen {
  display: none;
  padding: 60px 40px 80px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.screen.active {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 500;
}
.display {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.display em { font-style: italic; font-weight: 400; }
.lead {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 44px;
}
.q-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.q-title em { font-style: italic; font-weight: 400; }
.q-subtitle {
  font-size: clamp(14px, 1.3vw, 15px);
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 520px;
}

/* ─── INTRO ──────────────────────────────────────────────── */
.intro.screen.active {
  flex-direction: row;
  gap: 80px;
  align-items: center;
  min-height: 70vh;
}
.intro-content { flex: 1; }
.intro-visual {
  flex: 1;
  max-width: 480px;
  aspect-ratio: 4/5;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.intro-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(148,113,90,0.08), transparent 60%);
}
.intro-visual img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* ─── CTA ──────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 17px 34px;
  min-height: 52px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}
.cta:hover { background: var(--terracotta); color: var(--cream); transform: translateY(-2px); }
.cta:active { transform: translateY(0); }
.cta:disabled { opacity: 0.38; cursor: not-allowed; transform: none; }
.cta-note { margin-top: 18px; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ─── CARDS GRID ──────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.option-card, .palette-card, .mood-card {
  cursor: pointer;
  background: var(--cream-soft);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.2s;
  font-family: inherit;
  text-align: left;
  color: inherit;
}
.option-card:hover, .palette-card:hover, .mood-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px -20px rgba(31, 27, 23, 0.18);
}
.option-card.selected, .palette-card.selected, .mood-card.selected {
  border-color: var(--ink);
  border-width: 2px;
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(31, 27, 23, 0.28);
}

.option-card .card-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.option-card .card-photo img {
  max-width: 100%; max-height: 100%;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.option-card:hover .card-photo img { transform: scale(1.06); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20, 14, 8, 0.85) 0%,
    rgba(20, 14, 8, 0.55) 25%,
    rgba(20, 14, 8, 0.15) 55%,
    transparent 75%);
  z-index: 2;
  pointer-events: none;
}
.card-number {
  position: absolute;
  top: 18px; left: 22px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  z-index: 3;
  letter-spacing: 0.05em;
}
.card-number-dark {
  position: absolute;
  top: 18px; left: 22px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  z-index: 3;
  letter-spacing: 0.05em;
}
.card-label {
  position: relative;
  z-index: 3;
  padding: 22px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.card-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  line-height: 1.1;
}
.card-desc {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}

/* Palette card */
.palette-swatches {
  flex: 1;
  display: flex;
  min-height: 60%;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);  /* jasná hranica okolo palety */
  border-bottom: 1px solid var(--line);
}
.palette-swatches span {
  flex: 1;
  position: relative;
  display: block;
  min-height: 100%;
}
.palette-swatches span + span {
  border-left: 1px solid rgba(0,0,0,0.18);  /* viditeľný separátor medzi farbami */
}
.palette-meta { padding: 20px 22px; }
.palette-meta .option-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.palette-meta .option-desc { font-size: 12px; color: var(--ink-soft); }

/* Mood card */
.mood-card { padding: 0; }
.mood-gradient { flex: 1; min-height: 0; }
.mood-body { padding: 20px 22px; background: var(--cream-soft); }
.mood-body .option-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.mood-body .option-desc { font-size: 12px; color: var(--ink-soft); }

/* ─── TEXT GRID ──────────────────────────────────────────────── */
.text-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.text-card {
  cursor: pointer;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 36px 28px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s, background 0.25s, box-shadow 0.4s;
  font-family: inherit;
  text-align: left;
  color: inherit;
  position: relative;
}
.text-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px -20px rgba(31, 27, 23, 0.18);
  background: var(--cream);
}
.text-card.selected { border-color: var(--ink); border-width: 2px; background: var(--cream); transform: translateY(-3px); }
.text-label-wrap { width: 100%; }
.text-label {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.text-sub { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ─── CONTROLS ──────────────────────────────────────────────── */
.controls { margin-top: 40px; }
.back-btn {
  font-family: 'Manrope';
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 12px 4px;
  min-height: 44px;
  transition: color 0.3s;
}
.back-btn:hover { color: var(--ink); }
.link-btn {
  font: inherit;
  color: var(--ink-soft);
  padding: 0;
  min-height: auto;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link-btn:hover { color: var(--ink); }

/* ─── EMAIL GATE ──────────────────────────────────────────────── */
.gate { max-width: 620px; margin: 48px auto 0; text-align: center; }
.gate-star {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(52px, 7vw, 80px);
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 24px;
}
.gate .q-title { margin-bottom: 16px; }
.gate .lead { margin: 0 auto 32px; text-align: center; }
.email-field {
  display: flex;
  border: 1px solid var(--ink);
  background: var(--cream-soft);
  margin-bottom: 18px;
}
.email-field input {
  flex: 1;
  padding: 18px 22px;
  border: none;
  background: transparent;
  font-family: 'Manrope';
  font-size: 16px; /* ≥ 16px aby iOS nezoomoval */
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.email-field input::placeholder { color: var(--ink-faded); }
.email-field button {
  padding: 18px 26px;
  min-height: 56px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Manrope';
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s;
  white-space: nowrap;
}
.email-field button:hover:not(:disabled) { background: var(--terracotta); }
.email-field button:disabled { background: var(--ink-faded); cursor: not-allowed; }

.consent-row {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  cursor: pointer;
  margin-top: 6px;
}
.consent-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px; height: 20px;
  min-width: 20px;
  accent-color: var(--ink);
  margin-top: 1px;
  cursor: pointer;
  -webkit-appearance: checkbox !important;
  appearance: checkbox !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.consent-row a { color: var(--terracotta); }
.consent-row strong { color: var(--ink); font-weight: 600; }

/* ─── LOADING ──────────────────────────────────────────────── */
#screen-loading {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
}
.loader {
  width: 48px; height: 48px;
  border: 2px solid var(--line);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 28px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.load-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.3vw, 28px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.load-sub { font-size: 14px; color: var(--ink-soft); }

/* ─── RESULT ──────────────────────────────────────────────── */
.result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  gap: 40px;
}
.result-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(54px, 11vw, 156px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-top: 4px;
}
.result-title em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.result-match {
  font-family: 'Fraunces';
  font-style: italic;
  color: var(--terracotta);
  font-size: clamp(15px, 1.5vw, 18px);
  white-space: nowrap;
}
.result-desc {
  max-width: 620px;
  font-family: 'Fraunces';
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 36px;
}
.result-promo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-soft);
  border: 1px dashed var(--terracotta);
  padding: 14px 20px;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.promo-code {
  font-family: 'Fraunces';
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--terracotta);
}
.promo-copy {
  font-family: 'Manrope';
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 8px;
  border-left: 1px solid var(--line);
  margin-left: 4px;
  transition: color 0.2s;
}
.promo-copy:hover { color: var(--ink); }

/* Products section */
.products-section { margin-top: 72px; }
.products-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.products-empty {
  text-align: center;
  padding: 40px 20px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
}
.products-empty p { font-family: 'Fraunces'; font-weight: 300; font-size: 18px; color: var(--ink-soft); margin-bottom: 20px; }

.product-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.2s, background 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card.selected { border-color: var(--ink); background: #FDFBF7; }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(31, 27, 23, 0.18);
}
.product-category-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 4;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--line);
}
.product-image {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-image img { transform: scale(1.04); }
.product-info {
  padding: 18px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: 'Fraunces';
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faded);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.product-price {
  font-family: 'Fraunces';
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.btn-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Manrope';
  font-size: 0;
  position: relative;
}
.btn-add::before {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}
.btn-add:hover { background: var(--terracotta); transform: scale(1.08); }
.btn-add.added {
  background: var(--success);
  width: auto;
  padding: 0 14px;
  border-radius: 100px;
  font-size: 0;
}
.btn-add.added::before {
  content: '✓ pridané';
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.btn-add.added:hover { background: var(--success); }
.product-detail-link {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faded);
  text-decoration: none;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: color 0.3s;
}
.product-detail-link:hover { color: var(--ink); }

/* Look summary */
.look-summary {
  margin-top: 40px;
  background: var(--ink);
  color: var(--cream);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.summary-left { flex: 1; min-width: 0; }
.summary-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
  font-weight: 600;
}
.summary-text {
  font-family: 'Fraunces';
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.summary-text em { font-style: italic; color: var(--terracotta); }
.summary-totals { text-align: right; margin-right: 8px; }
.summary-discount {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 4px;
}
.summary-old-price {
  font-family: 'Fraunces';
  font-size: 13px;
  color: var(--ink-faded);
  text-decoration: line-through;
  margin-right: 8px;
}
.summary-total {
  font-family: 'Fraunces';
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.btn-add-all {
  background: var(--cream);
  color: var(--ink);
  padding: 18px 28px;
  min-height: 56px;
  font-family: 'Manrope';
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-add-all:hover { background: var(--terracotta); color: var(--cream); }
.btn-add-all.all-added { background: var(--success); color: var(--cream); }
.btn-add-all.disabled { background: var(--ink-faded); color: var(--cream); pointer-events: none; }

.result-cta-row {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cta-text {
  font-family: 'Fraunces';
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
}
.cta-link-secondary {
  font-family: 'Manrope';
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  transition: background 0.3s, color 0.3s;
}
.cta-link-secondary:hover { background: var(--ink); color: var(--cream); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 40px calc(24px + var(--safe-bottom));
  background: var(--cream);
  margin-top: auto;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-soft);
}
.footer-brand { letter-spacing: 0.02em; }
.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-links a, .footer-links .link-btn {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-links .link-btn:hover { color: var(--ink); text-decoration: underline; }

/* ─── COOKIE BANNER ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px;
  bottom: calc(16px + var(--safe-bottom));
  background: var(--ink);
  color: var(--cream);
  padding: 22px 26px;
  z-index: 100;
  border: 1px solid var(--ink);
  max-width: 780px;
  margin-left: auto; margin-right: auto;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.35);
}
.cookie-banner.open { transform: translateY(0); opacity: 1; }
.cookie-inner { display: flex; flex-direction: column; gap: 18px; }
.cookie-text { font-size: 13px; line-height: 1.55; color: rgba(244,239,232,0.86); }
.cookie-text strong { color: var(--cream); font-weight: 500; }
.cookie-text a { color: var(--cream); text-decoration: underline; }
.cookie-options { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.cookie-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(244,239,232,0.86);
  cursor: pointer;
}
.cookie-opt input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--cream);
  cursor: pointer;
}
.cookie-opt em { font-style: normal; opacity: 0.55; font-size: 11px; margin-left: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.btn-cookie-secondary {
  padding: 11px 18px;
  min-height: 44px;
  background: transparent;
  border: 1px solid rgba(244,239,232,0.35);
  color: var(--cream);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cookie-secondary:hover { border-color: var(--cream); background: rgba(244,239,232,0.06); }
.btn-cookie-primary {
  padding: 11px 22px;
  min-height: 44px;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-cookie-primary:hover { background: #fff; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: calc(32px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(180%);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── LEGAL pages ──────────────────────────────────────────────── */
.legal { max-width: 760px; display: flex !important; flex-direction: column; }
.legal .q-title { margin-bottom: 12px; }
.legal-section { margin-top: 36px; }
.legal-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
.legal-section p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 12px; }
.legal-section ul { margin: 8px 0 16px 20px; }
.legal-section li { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 6px; }
.legal-section strong { color: var(--ink); font-weight: 500; }
.legal-section a { color: var(--terracotta); }
.legal-section a:hover { color: var(--ink); }

/* ─── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header { padding: calc(14px + var(--safe-top)) 18px 14px; gap: 12px; }
  .brand { font-size: 20px; }
  .step-label { display: inline; font-size: 10px; letter-spacing: 0.16em; }
  .dot { width: 14px; }

  .screen { padding: 28px 18px 56px; }
  .intro.screen.active { flex-direction: column; gap: 28px; min-height: auto; align-items: flex-start; }
  .intro-visual { width: 100%; max-width: 100%; aspect-ratio: 16/10; order: -1; padding: 20px; }
  .intro-content { width: 100%; }
  .display { font-size: clamp(36px, 11vw, 56px); margin-bottom: 18px; }
  .lead { margin-bottom: 28px; font-size: 16px; }

  /* ─── MOBILE CAROUSEL — horizontálny scroll ako na minimarvels.sk ─── */
  .cards-grid {
    display: flex;
    grid-template-columns: none;   /* override grid */
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 18px 16px;
    margin: 0 -18px;
    scrollbar-width: none;          /* Firefox */
  }
  .cards-grid::-webkit-scrollbar {
    display: none;                  /* Safari / Chrome */
  }
  .option-card, .palette-card, .mood-card {
    flex: 0 0 78%;                  /* card = 78% šírky viewportu */
    max-width: 360px;
    scroll-snap-align: center;
    box-shadow: 0 14px 32px -18px rgba(31, 27, 23, 0.30);
  }

  /* Q5 budget — text karty zostávajú 2×2 (žiadny carousel pre text) */
  .text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .card-label { padding: 20px 22px; }
  .palette-meta, .mood-body { padding: 16px 22px 18px; }
  .card-name { font-size: 22px; letter-spacing: -0.005em; }
  .card-desc { font-size: 13.5px; }
  .palette-meta .option-name, .mood-body .option-name { font-size: 22px; }
  .palette-meta .option-desc, .mood-body .option-desc { font-size: 13px; line-height: 1.4; }
  .card-number, .card-number-dark { top: 16px; left: 20px; font-size: 12px; }

  .text-card { padding: 26px 22px; min-height: 96px; aspect-ratio: auto; }
  .text-label { font-size: 22px; }
  .text-sub { font-size: 13.5px; }

  .q-title { font-size: clamp(28px, 7.5vw, 38px); margin-bottom: 8px; }
  .q-subtitle { font-size: 14px; margin-bottom: 28px; }

  .gate { margin-top: 24px; }
  .gate-star { font-size: 50px; margin-bottom: 18px; }
  .email-field { flex-direction: column; }
  .email-field input { padding: 16px 18px; }
  .email-field button { padding: 16px; width: 100%; }
  .consent-row { font-size: 12px; }

  .result-header { flex-direction: column; align-items: flex-start; gap: 10px; padding-bottom: 28px; }
  .result-title { font-size: clamp(42px, 13vw, 72px); }
  .result-desc { font-size: 16.5px; margin-top: 26px; }
  .result-promo { flex-wrap: wrap; gap: 8px; padding: 12px 16px; }
  .promo-code { font-size: 16px; }

  .products-section { margin-top: 48px; }
  .products-label { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 18px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 14px 16px 16px; }
  .product-name { font-size: 14px; }
  .product-price { font-size: 16px; }
  .product-meta { margin-bottom: 10px; font-size: 10px; }
  .btn-add { width: 32px; height: 32px; }
  .btn-add::before { font-size: 20px; }
  .product-detail-link { font-size: 10px; margin-top: 10px; padding-top: 10px; }

  .look-summary {
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    gap: 18px;
    margin-top: 28px;
  }
  .summary-totals { text-align: left; margin-right: 0; display: flex; justify-content: space-between; align-items: baseline; }
  .summary-text { font-size: 18px; }
  .summary-total { font-size: 24px; }
  .btn-add-all { width: 100%; padding: 16px; }

  .result-cta-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .result-cta-row > div { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-link-secondary { text-align: center; }

  .site-footer { padding: 18px 18px calc(18px + var(--safe-bottom)); }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-links { flex-wrap: wrap; justify-content: flex-start; gap: 16px; }

  .cookie-banner { padding: 18px 18px; left: 10px; right: 10px; bottom: calc(10px + var(--safe-bottom)); }
  .cookie-text { font-size: 12.5px; }
  .cookie-actions { flex-direction: column-reverse; width: 100%; }
  .cookie-actions button { width: 100%; }

  .back-btn { padding: 14px 4px; min-height: 48px; }
  .controls { margin-top: 28px; }

  .legal-section h2 { font-size: 19px; }
  .legal-section p, .legal-section li { font-size: 14px; }
}

/* ─── Hover off on touch ──────────────────────────────────────────────── */
@media (hover: none) {
  .option-card:hover, .palette-card:hover, .mood-card:hover, .text-card:hover, .product-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--line);
  }
  .option-card:hover .card-photo img, .product-card:hover .product-image img { transform: none; }
  .cta:hover { transform: none; }
}

/* ─── Utility ──────────────────────────────────────────────── */
.hidden { display: none !important; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS — v2
   Pridané vizuálne vylepšenia bez zmeny funkcionality.
═══════════════════════════════════════════════════════════════ */

/* ─── 1. Intro flourish (editorial line decoration) ───────────── */
.intro-flourish {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--terracotta);
  max-width: 180px;
}
.intro-flourish span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terracotta) 40%, var(--terracotta) 60%, transparent);
  opacity: 0.6;
}
.intro-flourish em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   UNIFIED CARD PATTERN — všetky 4 typy otázok (Q1-Q4)
   ───────────────────────────────────────────────────────────────
   Vizuálny obsah HORE (4/5 portrait) — fotka, swatch, gradient
   Text DOLE (centered, plain) — názov + popis
   Žiadne pozadie karty, žiadny rám, žiadny overlay, žiadne čísla
   ═══════════════════════════════════════════════════════════════ */

.option-card,
.palette-card,
.mood-card,
.option-card[style],
.option-card.product-shape,
.option-card.product-shape[data-val] {
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  text-align: center !important;
  -webkit-text-align: center !important;
  align-items: stretch !important;
}

/* ─── VIZUÁLNA ČASŤ — 4/5 portrait box ─── */
.option-card .card-photo,
.palette-card .palette-swatches,
.mood-card .mood-gradient {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  aspect-ratio: 4 / 5 !important;
  width: 100% !important;
  height: auto !important;
  overflow: hidden !important;
  margin: 0 0 18px 0 !important;
  padding: 0 !important;
  z-index: auto !important;
  min-height: 0 !important;
}

/* Photo card (Q1 + Q4) — image fills 4/5 box */
.option-card .card-photo {
  background: var(--cream-soft) !important;
  display: block !important;
}
.option-card .card-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  filter: none !important;
  transform: none;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.option-card:hover .card-photo img {
  transform: scale(1.04);
}

/* Palette swatches (Q2) — 3 color stripes filling 4/5 box */
.palette-card .palette-swatches {
  background: #fff !important;
  display: flex !important;
}
.palette-card .palette-swatches span {
  flex: 1 !important;
  height: 100% !important;
  width: auto !important;
  display: block !important;
  min-height: 0 !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}
.palette-card .palette-swatches span + span {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

/* Mood gradient (Q3) — background sets via [data-val] rules below */
.mood-card .mood-gradient {
  /* No bg here — set via .mood-card[data-val="..."] .mood-gradient rules */
}

/* ─── SKRY VŠETKY DEKORÁCIE ─── */
.option-card .card-overlay,
.option-card .card-number,
.palette-card .card-number-dark,
.mood-card .card-number-dark {
  display: none !important;
}

/* ─── TEXT DOLE — plain, centered, žiadny overlay ─── */
/* Centrovanie text-align + flexbox + width: 100% — všetko naraz pre 
   iOS Safari kde text-align na inner elementoch v <button> niekedy zlyhá */
.option-card .card-label,
.palette-card .palette-meta,
.mood-card .mood-body {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  background: transparent !important;
  background-image: none !important;
  text-shadow: none !important;
  padding: 4px 8px 4px !important;
  text-align: center !important;
  -webkit-text-align: center !important;
  border-top: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: var(--ink) !important;
  z-index: auto !important;
  flex-shrink: 0;
  /* Flexbox centering — funguje aj keď text-align inheritance zlyhá */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.option-card .card-name,
.palette-card .palette-meta .option-name,
.mood-card .mood-body .option-name {
  font-family: 'Fraunces', serif !important;
  font-size: clamp(20px, 1.7vw, 24px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  color: var(--ink) !important;
  text-shadow: none !important;
  text-align: center !important;
  -webkit-text-align: center !important;
  text-align-last: center !important;
  margin: 0 auto 6px auto !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.option-card .card-desc,
.palette-card .palette-meta .option-desc,
.mood-card .mood-body .option-desc {
  font-size: clamp(12.5px, 0.95vw, 13.5px) !important;
  color: var(--ink-soft) !important;
  letter-spacing: 0.03em !important;
  text-shadow: none !important;
  text-align: center !important;
  -webkit-text-align: center !important;
  text-align-last: center !important;
  margin: 0 auto !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ─── HOVER — pre všetky 4 typy ─── */
.option-card:hover,
.palette-card:hover,
.mood-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* ─── SELECTED — outline okolo vizuálu + terracotta title ─── */
.option-card.selected,
.palette-card.selected,
.mood-card.selected {
  outline: none !important;
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
}
.option-card.selected .card-photo,
.palette-card.selected .palette-swatches,
.mood-card.selected .mood-gradient {
  outline: 2px solid var(--ink) !important;
  outline-offset: 4px !important;
}
.option-card.selected .card-name,
.palette-card.selected .palette-meta .option-name,
.mood-card.selected .mood-body .option-name {
  color: var(--terracotta) !important;
}

/* ─── Mood gradients via data-val (spoľahlivé, žiadne inline styly) ──── */
.mood-card[data-val="nordic"] .mood-gradient {
  background: linear-gradient(160deg, #FFFFFF 0%, #B0ACA6 55%, #2A2622 100%);
}
.mood-card[data-val="japandi"] .mood-gradient {
  background: linear-gradient(160deg, #EFE3CE 0%, #B8916A 55%, #4A3520 100%);
}
.mood-card[data-val="mono"] .mood-gradient {
  background: linear-gradient(135deg, #1A1614 0%, #2A2622 55%, #94715A 100%);
}
.mood-card[data-val="boho"] .mood-gradient {
  background: linear-gradient(160deg, #7B8758 0%, #9B7A52 55%, #B8704A 100%);
}

/* ─── 5. Loading screen — rotating messages ────────────────────── */
.load-messages {
  position: relative;
  height: 22px;
  width: 100%;
  max-width: 360px;
}
.load-msg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  font-size: 14px;
  color: var(--ink-soft);
  white-space: nowrap;
  animation: loadMsgCycle 4.5s ease-in-out infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
}
.load-msg:nth-child(1) { animation-delay: 0s; }
.load-msg:nth-child(2) { animation-delay: 1.5s; }
.load-msg:nth-child(3) { animation-delay: 3s; }
@keyframes loadMsgCycle {
  0%    { opacity: 0; transform: translateX(-50%) translateY(8px); }
  4%, 30%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  33%, 100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
}

/* ─── 6. Result reveal — staggered cinematic entry ─────────────── */
.screen[data-screen="8"].active .result-header {
  animation: revealUp 0.7s 0.15s both cubic-bezier(0.2, 0.8, 0.3, 1);
}
.screen[data-screen="8"].active .result-title em {
  display: inline-block;
  animation: emReveal 1.1s 0.55s both cubic-bezier(0.2, 0.8, 0.3, 1);
}
.screen[data-screen="8"].active .result-match {
  animation: revealUp 0.6s 0.7s both;
}
.screen[data-screen="8"].active .result-desc {
  animation: revealUp 0.6s 0.85s both;
}
.screen[data-screen="8"].active .result-promo {
  animation: revealUp 0.55s 1.05s both;
}
.screen[data-screen="8"].active .products-section {
  animation: revealUp 0.6s 1.25s both;
}
.screen[data-screen="8"].active .look-summary {
  animation: revealUp 0.55s 1.5s both;
}
.screen[data-screen="8"].active .result-cta-row {
  animation: revealUp 0.5s 1.7s both;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes emReveal {
  0%   { opacity: 0; filter: blur(14px); transform: scale(0.92); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

/* ─── 7. Sophisticated selected states ────────────────────────── */
.option-card.selected, .palette-card.selected, .mood-card.selected {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}
.text-card.selected { outline: 2px solid var(--ink); outline-offset: -2px; }

/* ─── 8. Drop-shadow refinement on cards (less generic) ───────── */
.option-card, .palette-card, .mood-card, .text-card, .product-card {
  box-shadow:
    0 1px 0 rgba(31, 27, 23, 0.04),
    0 2px 8px -4px rgba(31, 27, 23, 0.06);
}
.option-card:hover, .palette-card:hover, .mood-card:hover, .text-card:hover {
  box-shadow:
    0 24px 48px -20px rgba(31, 27, 23, 0.20),
    0 6px 16px -8px rgba(31, 27, 23, 0.10);
}

/* ─── 9. Result promo box — refined ──────────────────────────── */
.result-promo {
  position: relative;
  padding-right: 24px;
}
.promo-code {
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}

/* ─── 10. Look summary — refined ─────────────────────────────── */
.look-summary {
  position: relative;
  overflow: hidden;
}
.look-summary::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at right top, rgba(148,113,90,0.18), transparent 70%);
  pointer-events: none;
}
.look-summary > * { position: relative; z-index: 1; }

/* ─── 11. Mobile typography — readable & premium ─────────────── */
@media (max-width: 768px) {
  .intro-flourish { max-width: 140px; gap: 10px; margin-bottom: 16px; }
  .intro-flourish em { font-size: 14px; }

  /* Q1 product-shape mobile — väčší text, väčší margin pod fotou */
  .option-card.product-shape .card-photo { margin-bottom: 16px; }
  .option-card.product-shape .card-name { font-size: 22px; }
  .option-card.product-shape .card-desc { font-size: 13.5px; }

  /* Result mobile */
  .result-title { font-size: clamp(44px, 14vw, 80px); }
  .look-summary { padding: 24px; }
}

/* ─── 12. Refined back button (more elegant) ──────────────────── */
.back-btn {
  position: relative;
  padding-left: 0;
}
.back-btn::after {
  content: '';
  display: block;
  height: 1px;
  background: currentColor;
  width: 0;
  margin-top: 4px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.back-btn:hover::after { width: 24px; }

/* ─── 13. Subtle entrance animations for cards ────────────────── */
.screen.active .cards-grid > *,
.screen.active .text-grid > * {
  animation: cardEntrance 0.5s both cubic-bezier(0.16, 1, 0.3, 1);
}
.screen.active .cards-grid > *:nth-child(1),
.screen.active .text-grid > *:nth-child(1) { animation-delay: 0.05s; }
.screen.active .cards-grid > *:nth-child(2),
.screen.active .text-grid > *:nth-child(2) { animation-delay: 0.12s; }
.screen.active .cards-grid > *:nth-child(3),
.screen.active .text-grid > *:nth-child(3) { animation-delay: 0.19s; }
.screen.active .cards-grid > *:nth-child(4),
.screen.active .text-grid > *:nth-child(4) { animation-delay: 0.26s; }
@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── 14. Cookie consent — tighter premium look ───────────────── */
.cookie-banner { border-radius: 0; }
.cookie-banner.open { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

/* ═══════════════════════════════════════════════════════════════
   CINEMATIC MOMENTS — premium feel enhancements
   ═══════════════════════════════════════════════════════════════ */

/* ─── LOADING SCREEN — dramatic upgrade ───────────────────── */
#screen-loading {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  min-height: 70vh;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.loader {
  width: 60px !important;
  height: 60px !important;
  border: 1.5px solid rgba(148, 113, 90, 0.18) !important;
  border-top-color: var(--terracotta) !important;
  border-right-color: var(--terracotta) !important;
  border-radius: 50% !important;
  margin-bottom: 36px !important;
  animation: spinSmooth 1.4s cubic-bezier(0.65, 0, 0.35, 1) infinite !important;
}
@keyframes spinSmooth { to { transform: rotate(360deg); } }

.load-title {
  font-family: 'Fraunces', serif !important;
  font-weight: 300 !important;
  font-style: italic !important;
  font-size: clamp(24px, 2.6vw, 32px) !important;
  letter-spacing: -0.015em !important;
  margin-bottom: 16px !important;
  color: var(--ink);
  animation: fadeUp 0.6s 0.1s both;
}

.load-messages {
  position: relative;
  height: 28px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 36px;
}
.load-msg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-soft);
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.005em;
  animation: loadMsgCycle 4.5s ease-in-out infinite;
}
.load-msg:nth-child(1) { animation-delay: 0s; }
.load-msg:nth-child(2) { animation-delay: 1.5s; }
.load-msg:nth-child(3) { animation-delay: 3s; }
@keyframes loadMsgCycle {
  0%    { opacity: 0; transform: translateX(-50%) translateY(8px); }
  6%, 28%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  33%, 100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
}

.load-progress {
  position: relative;
  width: 220px;
  height: 2px;
  background: rgba(31, 27, 23, 0.08);
  overflow: hidden;
  margin: 0 auto;
}
.load-progress-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--ink) 100%);
  animation: progressFill 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes progressFill {
  0%   { width: 0; }
  60%  { width: 75%; }   /* slows near the end — feels like real work */
  100% { width: 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESULT REVEAL — cinematic choreography ─────────────── */
.screen[data-screen="8"].active .eyebrow {
  animation: fadeUp 0.6s 0.2s both;
}
.screen[data-screen="8"].active .result-title {
  animation: fadeUp 0.7s 0.4s both;
}
.screen[data-screen="8"].active .result-title em {
  display: inline-block;
  position: relative;
  animation: emRevealDramatic 1.4s 0.85s both cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes emRevealDramatic {
  0%   { opacity: 0; filter: blur(18px); transform: scale(0.88) translateY(8px); }
  40%  { opacity: 1; }
  70%  { filter: blur(0); }
  100% { opacity: 1; filter: blur(0); transform: scale(1) translateY(0); }
}

/* ─── Decorative ✦ next to style name — pops after reveal ── */
.screen[data-screen="8"].active .result-title em::after {
  content: '✦';
  display: inline-block;
  margin-left: 0.18em;
  font-size: 0.38em;
  color: var(--terracotta);
  vertical-align: 0.85em;
  opacity: 0;
  transform: scale(0) rotate(-90deg);
  animation: starPop 0.7s 2.0s forwards cubic-bezier(0.2, 0.8, 0.3, 1);
}
@keyframes starPop {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.screen[data-screen="8"].active .result-match {
  animation: fadeUp 0.5s 0.9s both;
}
.screen[data-screen="8"].active .result-desc {
  animation: descReveal 0.8s 1.1s both;
}
@keyframes descReveal {
  from { opacity: 0; transform: translateY(10px); letter-spacing: 0.08em; }
  to   { opacity: 1; transform: translateY(0); letter-spacing: normal; }
}

.screen[data-screen="8"].active .result-promo {
  animation: fadeUp 0.5s 1.4s both;
  position: relative;
  overflow: hidden;
}
/* Shimmer over promo code — once after reveal */
.screen[data-screen="8"].active .result-promo::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(148, 113, 90, 0.18) 50%,
    transparent);
  transform: translateX(-180%);
  pointer-events: none;
  animation: promoShimmer 1.4s 2.4s forwards ease-out;
}
@keyframes promoShimmer {
  to { transform: translateX(280%); }
}

.screen[data-screen="8"].active .products-section {
  animation: fadeUp 0.7s 1.6s both;
}
.screen[data-screen="8"].active .products-grid > * {
  animation: productCardEntry 0.6s both cubic-bezier(0.16, 1, 0.3, 1);
}
.screen[data-screen="8"].active .products-grid > *:nth-child(1) { animation-delay: 1.8s; }
.screen[data-screen="8"].active .products-grid > *:nth-child(2) { animation-delay: 1.9s; }
.screen[data-screen="8"].active .products-grid > *:nth-child(3) { animation-delay: 2.0s; }
.screen[data-screen="8"].active .products-grid > *:nth-child(4) { animation-delay: 2.1s; }
@keyframes productCardEntry {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.screen[data-screen="8"].active .look-summary {
  animation: fadeUp 0.6s 2.3s both;
}
.screen[data-screen="8"].active .result-cta-row {
  animation: fadeUp 0.5s 2.5s both;
}

/* ─── CARD SELECTION — terracotta ring ping ─────────────── */
.option-card, .palette-card, .mood-card, .text-card {
  position: relative;
}
.option-card.selected::after,
.palette-card.selected::after,
.mood-card.selected::after,
.text-card.selected::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--terracotta);
  pointer-events: none;
  opacity: 0;
  animation: cardPing 0.85s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
  z-index: 5;
}
@keyframes cardPing {
  0%   { transform: scale(0.96); opacity: 0; border-width: 3px; }
  25%  { opacity: 1; }
  100% { transform: scale(1.04); opacity: 0; border-width: 1px; }
}

/* ─── INTRO — bigger breathing, subtle pulse on flourish ─── */
.intro-flourish em {
  animation: starPulse 3s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(0.9); }
}

/* CTA button subtle hover pulse */
.cta {
  position: relative;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  pointer-events: none;
  opacity: 0;
  transform: scale(1);
  transition: transform 0.5s, opacity 0.5s;
}
.cta:hover::before {
  opacity: 0.35;
  transform: scale(1.06);
}

/* ─── PROGRESS DOTS — smoother fill animation ───────────── */
.dot {
  position: relative;
  background: var(--line);
  overflow: hidden;
}
.dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dot.active { background: var(--line); }
.dot.active::after { transform: scaleX(1); }

/* ─── SCREEN TRANSITIONS — smoother fadeIn ───────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.screen.active {
  animation: fadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── EMAIL GATE GATE-STAR — gentler animation ────────── */
.gate-star {
  display: inline-block;
  animation: starOrbit 8s ease-in-out infinite;
}
@keyframes starOrbit {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(180deg); }
}

/* ─── RESPECT REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESULT v2 — Hierarchy (hero + alternatives + complements + sticky bundle)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── HEADER BLOCK (style identification, centered) ─── */
.result-header-block {
  text-align: center;
  margin: 12px auto 32px;
  max-width: 720px;
}
.result-header-block .eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-30, #7a7268);
  margin-bottom: 14px;
}
.result-header-block .result-title {
  font-family: var(--serif, 'Fraunces', Georgia, serif);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.result-header-block .result-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terra, #94715A);
}
.result-header-block .result-match {
  font-family: var(--serif, 'Fraunces', Georgia, serif);
  font-style: italic;
  font-size: 14px;
  color: var(--terra, #94715A);
  margin-bottom: 18px;
}
.result-header-block .result-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft, #4A433C);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── PROMO BAR (centered + dashed border) ─── */
.result-promo {
  margin: 0 auto 56px;
  max-width: 560px;
  padding: 16px 22px;
  background: var(--cream-2, #FAF7F2);
  border: 1px dashed var(--terra-2, #b08770);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.result-promo .promo-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-30, #7a7268);
}
.result-promo .promo-code {
  font-family: var(--serif, 'Fraunces', Georgia, serif);
  font-size: 22px;
  color: var(--ink, #1F1B17);
  letter-spacing: 0.04em;
  flex: 1;
  text-align: left;
}
.result-promo .promo-copy {
  background: transparent;
  border: none;
  color: var(--terra, #94715A);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
}
.result-promo .promo-copy:hover { color: var(--terra-2, #b08770); }

/* ─── SECTION (hero / alternatives / complements) ─── */
.result-section { margin-bottom: 56px; }
.result-section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra, #94715A);
  margin-bottom: 8px;
}
.result-section-title {
  font-family: var(--serif, 'Fraunces', Georgia, serif);
  font-weight: 300;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.result-section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terra, #94715A);
}

/* ─── HERO CARD ─── */
.hero-card {
  background: #fff;
  border: 2px solid var(--line, #E5DDD0);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  position: relative;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.hero-card.selected {
  border-color: var(--success, #6e8654);
  box-shadow: 0 0 0 4px var(--success-bg, #EEF2E5);
}
@media (max-width: 880px) { .hero-card { grid-template-columns: 1fr; } }
.hero-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--terra, #94715A); color: #fff;
  padding: 7px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 6px 16px -8px rgba(148,113,90,0.5);
}
.hero-card .selected-mark {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: var(--success, #6e8654); color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-card.selected .selected-mark { display: flex; }
.hero-image-wrap {
  background: var(--cream-2, #FAF7F2);
  position: relative;
  min-height: 480px;
}
@media (max-width: 880px) { .hero-image-wrap { min-height: 320px; } }
.hero-image-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-content { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 880px) { .hero-content { padding: 28px 22px; } }
.hero-category {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-30, #7a7268); margin-bottom: 10px;
}
.hero-name {
  font-family: var(--serif, 'Fraunces', Georgia, serif); font-weight: 400;
  font-size: clamp(24px, 3vw, 32px); line-height: 1.2; margin: 0 0 10px;
  color: var(--ink, #1F1B17);
}
.hero-variant { font-size: 13px; color: var(--ink-30, #7a7268); margin-bottom: 18px; }
.hero-reason {
  font-family: var(--serif, 'Fraunces', Georgia, serif); font-style: italic; font-weight: 300;
  font-size: 16px; line-height: 1.55; color: var(--ink-soft, #4A433C);
  padding: 14px 0 14px 16px; border-left: 2px solid var(--terra, #94715A);
  margin: 0 0 24px;
}
.hero-price { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 26px; color: var(--ink, #1F1B17); margin-bottom: 22px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── BUTTONS (hero CTAs) ─── */
.btn-cart, .btn-detail {
  appearance: none; border: none; font: inherit; font-weight: 500;
  padding: 13px 22px; border-radius: 10px; cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; line-height: 1;
}
.btn-cart { background: var(--ink, #1F1B17); color: #fff; }
.btn-cart:hover { background: #2f2820; }
.btn-cart:active { transform: translateY(1px); }
.btn-cart.selected { background: var(--success, #6e8654); }
.btn-cart.selected:hover { background: #5d7148; }
.btn-detail { background: transparent; color: var(--ink, #1F1B17); border: 1px solid var(--ink, #1F1B17); }
.btn-detail:hover { background: var(--ink, #1F1B17); color: #fff; }
.btn-detail::after { content: '→'; transition: transform .2s; display: inline-block; }
.btn-detail:hover::after { transform: translateX(3px); }
.btn-cart .btn-check::before {
  content: '✓'; font-size: 14px; opacity: 0; margin-right: 0;
  transition: opacity .2s, margin .2s;
}
.btn-cart.selected .btn-check::before { opacity: 1; margin-right: 6px; }

/* ─── CARD GRID (alternatives + complements) ─── */
.card-grid { display: grid; gap: 20px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
  .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; }
}

/* ─── PRODUCT CARD (used for alt + complements) ─── */
.p-card {
  background: #fff;
  border: 2px solid var(--line, #E5DDD0);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .3s;
}
.p-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -16px rgba(31,27,23,0.18); }
.p-card.selected { border-color: var(--success, #6e8654); box-shadow: 0 0 0 3px var(--success-bg, #EEF2E5); }
.p-card-img {
  background: var(--cream-2, #FAF7F2);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.p-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-card-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 6px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink, #1F1B17); font-weight: 500;
}
.p-card .selected-mark {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--success, #6e8654); color: #fff;
  width: 30px; height: 30px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 15px;
}
.p-card.selected .selected-mark { display: flex; }
.p-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.p-card-name {
  font-family: var(--serif, 'Fraunces', Georgia, serif); font-weight: 400;
  font-size: 17px; line-height: 1.3; margin: 0 0 6px;
}
.p-card-meta {
  font-size: 11px; color: var(--ink-30, #7a7268); margin-bottom: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.p-card-price {
  font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 20px; margin: 0 0 16px;
}
.p-card-ctas {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line, #E5DDD0);
  display: flex; gap: 8px; flex-direction: column;
}
.btn-sm-cart, .btn-sm-detail {
  appearance: none; border: none; font: inherit; font-weight: 500; font-size: 13px;
  padding: 10px 14px; border-radius: 8px; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: background .2s, color .2s, border-color .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; line-height: 1;
}
.btn-sm-cart { background: var(--ink, #1F1B17); color: #fff; }
.btn-sm-cart:hover { background: #2f2820; }
.btn-sm-cart.selected { background: var(--success, #6e8654); }
.btn-sm-cart.selected:hover { background: #5d7148; }
.btn-sm-detail { background: transparent; color: var(--ink, #1F1B17); border: 1px solid var(--line, #E5DDD0); }
.btn-sm-detail:hover { border-color: var(--ink, #1F1B17); }
.btn-sm-cart .btn-check::before {
  content: '✓'; font-size: 13px; opacity: 0; margin-right: 0;
  transition: opacity .2s, margin .2s;
}
.btn-sm-cart.selected .btn-check::before { opacity: 1; margin-right: 5px; }
@media (min-width: 481px) {
  .card-grid.cols-2 .p-card-ctas { flex-direction: row; }
  .card-grid.cols-2 .btn-sm-cart, .card-grid.cols-2 .btn-sm-detail { flex: 1; }
}

/* ─── STICKY BUNDLE BAR ─── */
.bundle-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink, #1F1B17);
  color: #fff;
  padding: 16px 24px;
  z-index: 100;
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.25);
  transition: transform .3s ease;
}
.bundle-bar.hidden { transform: translateY(100%); }
.bundle-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 720px) {
  .bundle-inner { grid-template-columns: 1fr; gap: 10px; }
  .bundle-bar { padding: 12px 16px; }
}
.bundle-info { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.bundle-count {
  font-family: var(--serif, 'Fraunces', Georgia, serif); font-weight: 400;
  font-size: 17px; display: flex; align-items: baseline; gap: 8px;
}
.bundle-count em { font-style: italic; color: var(--rose, #C2A29A); }
.bundle-count strong { font-weight: 500; font-family: var(--serif, 'Fraunces', Georgia, serif); }
.bundle-prices { display: flex; gap: 12px; align-items: baseline; }
.bundle-old { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.bundle-new { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 22px; color: #fff; }
.bundle-save { font-size: 12px; color: var(--rose, #C2A29A); letter-spacing: 0.05em; }
.bundle-toggle-all {
  background: transparent; color: rgba(255,255,255,0.7); border: none; font: inherit;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; padding: 4px 0; text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s;
}
.bundle-toggle-all:hover { color: #fff; }
.btn-bundle {
  background: #fff; color: var(--ink, #1F1B17);
  padding: 13px 22px; font-weight: 500; border-radius: 10px; border: none; cursor: pointer;
  font-size: 14px; letter-spacing: 0.01em; white-space: nowrap;
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-bundle:hover { background: var(--cream, #F4EFE8); }
.btn-bundle::after { content: '→'; transition: transform .2s; }
.btn-bundle:hover::after { transform: translateX(3px); }

/* Add padding to bottom of result screen to clear sticky bar */
.screen[data-screen="8"].active { padding-bottom: 120px; }
@media (max-width: 720px) { .screen[data-screen="8"].active { padding-bottom: 180px; } }

/* Add fineprint style for email gate */
.gate-fineprint {
  font-size: 12px;
  color: var(--ink-30, #7a7268);
  text-align: center;
  margin: 8px 0 24px;
  font-style: italic;
}

/* Hide old result components that are no longer in new layout */
.result-header,
.products-section,
.look-summary {
  display: none !important;
}
