/** Shopify CDN: Minification failed

Line 2505:66 Unexpected "}"
Line 2704:66 Unexpected "}"

**/
/* ==========================================================================
   CROEV Quiz V1 Styles
   Lunavo - Hair Growth Quiz
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --quiz-primary: #5f9f8e;
  --quiz-primary-dark: #4a8a7a;
  --quiz-secondary: #121212;
  --quiz-secondary-light: #666666;
  --quiz-background: #f5f5f5;
  --quiz-white: #ffffff;
  --quiz-black: #121212;
  --quiz-success: #05ac2e;
  --quiz-warning: #ff9800;
  --quiz-error: #e43044;
  --quiz-border: #dddddd;

  --quiz-font-heading: 'Poppins', sans-serif;
  --quiz-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --quiz-radius-sm: 4px;
  --quiz-radius-md: 8px;
  --quiz-radius-lg: 12px;
  --quiz-radius-xl: 16px;

  --quiz-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --quiz-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --quiz-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

  --quiz-container-max: 600px;
  --quiz-container-padding: 14px;

  --quiz-transition: 0.3s ease;
}

div:empty {
  display: block !important;
}

.header-wrapper {
  display: none !important;
}

.shopify-section-group-header-group {
  display: none !important;
}

.shopify-section-group-footer-group {
  display: none !important;
}

.ly-switcher-wrapper {
  display: none !important;
}

.needsclick {
  display: none !important;
}

#mimirContainer {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Base Quiz Container
   -------------------------------------------------------------------------- */
.croev-quiz {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--quiz-background);
  font-family: var(--quiz-font-body);
  color: var(--quiz-black);
}

.croev-quiz__header {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  background: var(--quiz-white);
}

.croev-quiz__wrapper {
  max-width: var(--quiz-container-max);
  margin: 0 auto;
  padding: 24px var(--quiz-container-padding) var(--quiz-container-padding);
}

/* Mobile: Fixed header/footer with scrollable content */
@media (max-width: 740px) {
  .croev-quiz {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 100vw;
  }

  .croev-quiz *:not(.croev-quiz__reviews-track):not(.croev-quiz__reviews-track--autoscroll):not(.croev-quiz__image-carousel-track):not(.croev-quiz__loading-reviews-track) {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Force all breakout elements to stay contained */
  .croev-quiz__reviews-carousel,
  .croev-quiz__reviews-carousel--autoscroll,
  .croev-quiz__image-carousel,
  .croev-quiz__loading-reviews {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .croev-quiz__header {
    flex-shrink: 0;
    padding: 10px 16px;
  }

  .croev-quiz__progress {
    flex-shrink: 0;
  }

  .croev-quiz__wrapper {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 22px var(--quiz-container-padding) 100px;
  }

  .croev-quiz__steps {
    width: 100%;
  }

  .croev-quiz__step {
    width: 100%;
  }

  /* Fixed navigation at bottom */
  .croev-quiz__nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--quiz-background);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .croev-quiz__step[data-selection-type="multi"] .croev-quiz__nav {
    position: fixed;
  }
}

.croev-quiz__logo {
  display: block;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 741px) {
  .croev-quiz__logo {
    max-width: 260px;
  }
}

/* --------------------------------------------------------------------------
   Progress Bar
   -------------------------------------------------------------------------- */
.croev-quiz__progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 4px;
  flex-shrink: 0;
}

.croev-quiz__progress {
  flex: 1;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.croev-quiz__progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--quiz-primary, #5f9f8e) 0%,
    color-mix(in srgb, var(--quiz-primary, #5f9f8e), white 20%) 50%,
    var(--quiz-primary, #5f9f8e) 100%
  );
  background-size: 200% 100%;
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
  animation: quiz-progress-shimmer 2s ease-in-out infinite;
}

@keyframes quiz-progress-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.croev-quiz__progress-pct {
    display: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--quiz-primary, #5f9f8e);
  min-width: 32px;
  text-align: right;
  transition: opacity 0.3s ease;
}

.croev-quiz__progress-text {
  text-align: center;
  font-size: 14px;
  color: var(--quiz-secondary-light);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Step Container
   -------------------------------------------------------------------------- */
.croev-quiz__step {
  display: none;
  opacity: 0;
  transition: opacity var(--quiz-transition);
}

.croev-quiz__step.is-active {
  display: block;
  opacity: 1;
}

.croev-quiz__step.is-exiting {
  opacity: 0;
}

/* --------------------------------------------------------------------------
   Question Styles
   -------------------------------------------------------------------------- */
.croev-quiz__headline {
  font-family: var(--quiz-font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--quiz-primary);
  margin: 0 0 2px;
  text-align: center;
}

.croev-quiz__question {
  font-family: var(--quiz-font-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--quiz-black);
  margin: 0 0 2px;
  text-align: center;
}

@media (min-width: 741px) {
  .croev-quiz__question {
    font-size: 36px;
  }
}

.croev-quiz__subheadline {
  font-size: 18px;
  color: var(--quiz-secondary);
  margin: 0 0 10px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Image Option Cards
   -------------------------------------------------------------------------- */
.croev-quiz__options--image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Dynamic grid columns based on option count */
/* 2 options: 2 columns */
.croev-quiz__options--image[data-option-count="2"] {
  grid-template-columns: repeat(2, 1fr);
}

/* 3 options: 3 columns on desktop, 1 on mobile */
.croev-quiz__options--image[data-option-count="3"] {
  grid-template-columns: 1fr;
}

@media (min-width: 741px) {
  .croev-quiz__options--image[data-option-count="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 4 options: 2 columns (divisible by 2) */
.croev-quiz__options--image[data-option-count="4"] {
  grid-template-columns: repeat(2, 1fr);
}

/* 5 options: default behavior (2 cols mobile, 3 cols desktop) */
.croev-quiz__options--image[data-option-count="5"] {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 741px) {
  .croev-quiz__options--image[data-option-count="5"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 6 options: 3 columns on desktop (divisible by both 2 and 3, 3 looks better) */
.croev-quiz__options--image[data-option-count="6"] {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 741px) {
  .croev-quiz__options--image[data-option-count="6"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 741px) {
  .croev-quiz__options--image {
    gap: 20px;
  }
}

.croev-quiz__option--image {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  background: var(--quiz-white);
  border: 2px solid transparent;
  border-radius: var(--quiz-radius-lg);
  padding: 0;
  cursor: pointer;
  transition: all var(--quiz-transition);
  box-shadow: var(--quiz-shadow-sm);
  text-align: center;
  overflow: hidden;
}

@media (hover: hover) {
  .croev-quiz__option--image:hover {
    border-color: var(--quiz-primary);
    box-shadow: var(--quiz-shadow-md);
    transform: translateY(-2px);
  }
}

.croev-quiz__option--image.is-selected {
  border-color: var(--quiz-primary);
  background: rgba(95, 159, 142, 0.05);
}

.croev-quiz__option--image.is-selected::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: var(--quiz-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.croev-quiz__option-image {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  display: block;
  background: var(--quiz-background);
}

.croev-quiz__option-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--quiz-black);
  line-height: 1.3;
  padding: 10px 8px;
}

@media (min-width: 741px) {
  .croev-quiz__option-label {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   Text Option Cards
   -------------------------------------------------------------------------- */
.croev-quiz__options--text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.croev-quiz__option--text {
  display: block;
  background: var(--quiz-white);
  border: 2px solid var(--quiz-border);
  border-radius: var(--quiz-radius-md);
  padding: 14px 20px;
  cursor: pointer;
  transition: all var(--quiz-transition);
  text-align: left;
}

@media (hover: hover) {
  .croev-quiz__option--text:hover {
    border-color: var(--quiz-primary);
    background: rgba(95, 159, 142, 0.02);
  }
}

.croev-quiz__option--text.is-selected {
  border-color: var(--quiz-primary);
  background: rgba(95, 159, 142, 0.05);
}

/* Hide checkbox/radio on text options */
.croev-quiz__option-checkbox {
  display: none;
}

.croev-quiz__option-text {
  font-size: 18px;
  color: var(--quiz-black);
  line-height: 1.4;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Input Field Question
   -------------------------------------------------------------------------- */
.croev-quiz__input-wrapper {
  max-width: 400px;
  margin: 0 auto 16px;
}

.croev-quiz__input {
  width: 100%;
  font-family: var(--quiz-font-body);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: var(--quiz-black);
  background: var(--quiz-white);
  border: 2px solid var(--quiz-border);
  border-radius: var(--quiz-radius-md);
  padding: 16px 20px;
  transition: all var(--quiz-transition);
  -moz-appearance: textfield;
}

.croev-quiz__input::-webkit-outer-spin-button,
.croev-quiz__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.croev-quiz__input:focus {
  outline: none;
  border-color: var(--quiz-primary);
  box-shadow: 0 0 0 3px rgba(95, 159, 142, 0.15);
}

.croev-quiz__input::placeholder {
  color: var(--quiz-secondary-light);
  font-weight: 400;
}

.croev-quiz__input.is-invalid {
  border-color: var(--quiz-error);
}

.croev-quiz__input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(228, 48, 68, 0.15);
}

.croev-quiz__input-error {
  font-size: 14px;
  color: var(--quiz-error);
  text-align: center;
  margin-top: 8px;
}

.croev-quiz__input-info {
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-md);
  padding: 16px 20px;
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.croev-quiz__input-info p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--quiz-secondary);
  margin: 0;
}

.croev-quiz__input-info strong {
  color: var(--quiz-black);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Navigation Buttons
   -------------------------------------------------------------------------- */
.croev-quiz__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

/* Hide nav for auto-advance single-select questions */
.croev-quiz__step[data-auto-advance="true"] .croev-quiz__nav {
  display: none !important;
}

.croev-quiz__btn {
  display: none !important;
  align-items: center;
  justify-content: center;
  font-family: var(--quiz-font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border: none;
  border-radius: var(--quiz-radius-sm);
  cursor: pointer;
  transition: all var(--quiz-transition);
  min-height: 52px;
}

.croev-quiz__btn--primary {
  background: var(--quiz-primary);
  color: var(--quiz-white);
  flex: 1;
  max-width: 100%;
}

@media (hover: hover) {
  .croev-quiz__btn--primary:hover {
    background: var(--quiz-primary-dark);
  }
}

.croev-quiz__btn--primary:disabled {
  background: var(--quiz-border);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Hide back button completely */
.croev-quiz__btn--back {
  display: none;
}

/* Skip button (text link style) */
.croev-quiz__skip-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: none;
  border: none;
  color: var(--quiz-secondary-light);
  font-family: var(--quiz-font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--quiz-transition);
}

@media (hover: hover) {
  .croev-quiz__skip-btn:hover {
    color: var(--quiz-secondary);
  }
}

/* Nav with skip button - stack vertically */
.croev-quiz__nav--with-skip {
  flex-direction: column;
  gap: 8px;
}

.croev-quiz__nav--with-skip .croev-quiz__btn--primary {
  width: 100%;
}

.croev-quiz__nav--with-skip .croev-quiz__skip-btn {
  margin-top: 0;
  padding: 8px 12px;
}

/* Multi-select: fixed bottom CTA */
.croev-quiz__step[data-selection-type="multi"] .croev-quiz__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--quiz-white);
  padding: 16px var(--quiz-container-padding);
  margin: 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.croev-quiz__step[data-selection-type="multi"] .croev-quiz__nav-inner,
.croev-quiz__step[data-selection-type="multi"] .croev-quiz__btn--primary {
  width: 100%;
  max-width: var(--quiz-container-max);
  margin: 0 auto;
  display: block;
}

.croev-quiz__step[data-selection-type="multi"] .croev-quiz__options {
  padding-bottom: 100px;
}

/* Summary steps: fixed bottom CTA */
.croev-quiz__step[data-step-type="summary_profile"] .croev-quiz__nav,
.croev-quiz__step[data-step-type="summary_results"] .croev-quiz__nav,
.croev-quiz__step[data-step-type="summary_comparison"] .croev-quiz__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--quiz-white);
  padding: 16px var(--quiz-container-padding);
  margin: 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.croev-quiz__step[data-step-type="summary_profile"] .croev-quiz__btn--primary,
.croev-quiz__step[data-step-type="summary_results"] .croev-quiz__btn--primary,
.croev-quiz__step[data-step-type="summary_comparison"] .croev-quiz__btn--primary {
  width: 100%;
  max-width: var(--quiz-container-max);
  margin: 0 auto;
  display: block;
}

.croev-quiz__step[data-step-type="summary_profile"],
.croev-quiz__step[data-step-type="summary_results"],
.croev-quiz__step[data-step-type="summary_comparison"] {
  padding-bottom: 90px;
}

/* --------------------------------------------------------------------------
   Summary Profile Step
   -------------------------------------------------------------------------- */

/* Profile Card */
.croev-quiz__profile-card {
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-xl);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.croev-quiz__profile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.croev-quiz__profile-card-title {
  font-family: var(--quiz-font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--quiz-black);
}

.croev-quiz__profile-badge {
  display: inline-block;
  background: rgba(228, 48, 68, 0.1);
  color: var(--quiz-error);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 14px;
  border-radius: 8px;
}

/* Level bar with tooltip */
.croev-quiz__level-bar-wrap {
  position: relative;
  padding-top: 32px;
}

.croev-quiz__level-tooltip {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.croev-quiz__level-tooltip-text {
  background: var(--quiz-black);
  color: var(--quiz-white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  position: relative;
}

.croev-quiz__level-tooltip-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--quiz-black);
  border-radius: 1px;
  transform: translateX(-50%) rotate(45deg);
}

.croev-quiz__level-tooltip-dot {
  width: 22px;
  height: 22px;
  background: var(--quiz-white);
  border: 4px solid #1a3a34;
  border-radius: 50%;
  margin-top: 6px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.croev-quiz__level-bar {
  height: 10px;
  border-radius: 100px;
  background: linear-gradient(to right, #2ecc40 0%, #6fcf47 20%, #f4d03f 45%, #f39c12 65%, #e74c3c 100%);
  margin-top: -11px;
  position: relative;
  z-index: 1;
}

.croev-quiz__level-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--quiz-secondary-light);
}

.croev-quiz__level-label--high {
  color: var(--quiz-error);
  font-weight: 600;
}

/* Profile Alert */
.croev-quiz__profile-alert {
  display: flex;
  gap: 14px;
  background: rgba(228, 48, 68, 0.06);
  border-radius: var(--quiz-radius-xl);
  padding: 20px;
  margin-bottom: 16px;
}

.croev-quiz__profile-alert-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--quiz-error);
}

.croev-quiz__profile-alert-content {
  flex: 1;
}

.croev-quiz__profile-alert-level {
  display: block;
  color: var(--quiz-error);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.croev-quiz__profile-alert p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--quiz-secondary);
  margin: 0;
}

/* Stats Grid */
.croev-quiz__profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.croev-quiz__profile-stat {
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-xl);
  padding: 20px 16px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.croev-quiz__profile-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--quiz-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.croev-quiz__profile-stat-icon--green {
  background: rgba(46, 204, 64, 0.1);
  color: #2ecc40;
}

.croev-quiz__profile-stat-icon--pink {
  background: rgba(228, 48, 68, 0.08);
  color: var(--quiz-error);
}

.croev-quiz__profile-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--quiz-secondary-light);
  margin-bottom: 4px;
}

.croev-quiz__profile-stat-value {
  display: block;
  font-family: var(--quiz-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--quiz-black);
}

.croev-quiz__message {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: var(--quiz-secondary);
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Info Step
   -------------------------------------------------------------------------- */
.croev-quiz__step--info .croev-quiz__question,
.croev-quiz__step--info .croev-quiz__subheadline {
  text-align: left;
}

.croev-quiz__step--info .croev-quiz__question {
  margin-bottom: 12px;
}

.croev-quiz__info-content {
  text-align: left;
  max-width: 600px;
}

.croev-quiz__info-content p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--quiz-black);
  margin-bottom: 16px;
}

.croev-quiz__info-content strong {
  color: var(--quiz-black);
  font-weight: 600;
}

.croev-quiz__info-image {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  border-radius: var(--quiz-radius-lg);
}

/* Info Step: Fixed bottom CTA */
.croev-quiz__step--info {
  padding-bottom: 90px;
}

.croev-quiz__step--info .croev-quiz__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--quiz-white);
  padding: 16px var(--quiz-container-padding);
  margin: 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.croev-quiz__step--info .croev-quiz__btn--primary {
  width: 100%;
  max-width: var(--quiz-container-max);
  margin: 0 auto;
  display: block;
}

/* --------------------------------------------------------------------------
   Reviews Carousel
   -------------------------------------------------------------------------- */
.croev-quiz__reviews-carousel {
  width: calc(100% + 2 * var(--quiz-container-padding));
  margin-left: calc(-1 * var(--quiz-container-padding));
  margin-right: calc(-1 * var(--quiz-container-padding));
  padding: 24px 0;
  overflow: hidden;
}

/* Mobile: Prevent horizontal overflow */
@media (max-width: 740px) {
  .croev-quiz__reviews-carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.croev-quiz__reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: 20px;
  padding-right: 20px;
  scroll-padding-left: 20px;
}

.croev-quiz__reviews-track::-webkit-scrollbar {
  display: none;
}

.croev-quiz__review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-lg);
  overflow: hidden;
}


@media (min-width: 741px) {
  .croev-quiz__review-card {
    flex: 0 0 320px;
  }
}

.croev-quiz__review-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.croev-quiz__review-content {
  padding: 16px;
}

.croev-quiz__review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.croev-quiz__review-stars svg {
  width: 16px;
  height: 16px;
  color: #ffc107;
}

.croev-quiz__review-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--quiz-black);
  margin: 0 0 12px;
  font-style: italic;
}

.croev-quiz__review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--quiz-secondary);
}

/* --------------------------------------------------------------------------
   Loading Step
   -------------------------------------------------------------------------- */
.croev-quiz__loading {
  text-align: center;
  padding: 24px 16px;
}

.croev-quiz__loading-headline {
  font-family: var(--quiz-font-heading);
  font-size: 24px;
  color: var(--quiz-black);
  margin-bottom: 16px;
  line-height: 1.4;
}

@media (min-width: 741px) {
  .croev-quiz__loading-headline {
    font-size: 28px;
  }
}

.croev-quiz__loading-text {
  font-size: 19px;
  color: var(--quiz-black);
  margin-bottom: 24px;
  line-height: 1.6;
}

.croev-quiz__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--quiz-border);
  border-top-color: var(--quiz-primary);
  border-radius: 50%;
  animation: croev-spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes croev-spin {
  to {
    transform: rotate(360deg);
  }
}

.croev-quiz__loading-label {
  font-size: 16px;
  color: var(--quiz-secondary);
}

/* Loading Checklist */
.croev-quiz__checklist {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
}

.croev-quiz__checklist-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
  color: var(--quiz-secondary-light);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.croev-quiz__checklist-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.croev-quiz__checklist-item.is-complete {
  color: var(--quiz-success);
}

.croev-quiz__checklist-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.croev-quiz__checklist-item.is-complete .croev-quiz__checklist-icon {
  background: var(--quiz-success);
  border-color: var(--quiz-success);
}

.croev-quiz__checklist-item.is-complete .croev-quiz__checklist-icon::after {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* --------------------------------------------------------------------------
   Loading Step - Reviews Carousel
   -------------------------------------------------------------------------- */
.croev-quiz__loading--reviews {
  padding: 24px 0;
}

.croev-quiz__loading--reviews .croev-quiz__loading-headline {
  font-size: 22px;
  margin-bottom: 8px;
}

@media (min-width: 741px) {
  .croev-quiz__loading--reviews .croev-quiz__loading-headline {
    font-size: 26px;
  }
}

.croev-quiz__loading-reviews {
  width: calc(100% + 2 * var(--quiz-container-padding));
  margin-left: calc(-1 * var(--quiz-container-padding));
  margin-right: calc(-1 * var(--quiz-container-padding));
  margin-top: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

/* Mobile: Prevent horizontal overflow */
@media (max-width: 740px) {
  .croev-quiz__loading-reviews {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Fade edges for seamless look */
.croev-quiz__loading-reviews::before,
.croev-quiz__loading-reviews::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.croev-quiz__loading-reviews::before {
  left: 0;
  background: linear-gradient(to right, var(--quiz-background), transparent);
}

.croev-quiz__loading-reviews::after {
  right: 0;
  background: linear-gradient(to left, var(--quiz-background), transparent);
}

.croev-quiz__loading-reviews-track {
  display: flex;
  gap: 16px;
  padding: 8px 20px;
  width: max-content;
  animation: croev-scroll-reviews 20s linear infinite;
  animation-play-state: paused;
}

.croev-quiz__step.is-active .croev-quiz__loading-reviews-track {
  animation-play-state: running;
}

/* Adjust animation speed based on number of cards */
.croev-quiz__loading-reviews[data-review-count="2"] .croev-quiz__loading-reviews-track {
  animation-duration: 10s;
}

.croev-quiz__loading-reviews[data-review-count="3"] .croev-quiz__loading-reviews-track {
  animation-duration: 15s;
}

.croev-quiz__loading-reviews[data-review-count="4"] .croev-quiz__loading-reviews-track {
  animation-duration: 20s;
}

@keyframes croev-scroll-reviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Info step autoscroll carousel */
.croev-quiz__reviews-carousel--autoscroll {
  overflow: hidden;
}

.croev-quiz__reviews-track--autoscroll {
  display: flex;
  gap: 16px;
  padding: 8px 20px;
  width: max-content;
  animation: croev-scroll-reviews 25s linear infinite;
  overflow: visible;
}

.croev-quiz__step.is-active .croev-quiz__reviews-track--autoscroll {
  animation-play-state: running;
}

.croev-quiz__reviews-carousel--autoscroll[data-review-count="4"] .croev-quiz__reviews-track--autoscroll {
  animation-duration: 20s;
}

.croev-quiz__reviews-carousel--autoscroll[data-review-count="5"] .croev-quiz__reviews-track--autoscroll {
  animation-duration: 25s;
}

.croev-quiz__reviews-carousel--autoscroll[data-review-count="6"] .croev-quiz__reviews-track--autoscroll {
  animation-duration: 30s;
}

.croev-quiz__reviews-carousel--autoscroll[data-review-count="7"] .croev-quiz__reviews-track--autoscroll {
  animation-duration: 35s;
}

.croev-quiz__reviews-carousel--autoscroll[data-review-count="8"] .croev-quiz__reviews-track--autoscroll {
  animation-duration: 40s;
}

.croev-quiz__reviews-track--autoscroll:hover {
  animation-play-state: paused;
}

.croev-quiz__loading-review-card {
  flex: 0 0 280px;
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-lg);
  overflow: hidden;
  box-shadow: var(--quiz-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .croev-quiz__loading-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--quiz-shadow-lg);
  }
}

@media (min-width: 741px) {
  .croev-quiz__loading-review-card {
    flex: 0 0 320px;
  }
}

.croev-quiz__loading-review-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.croev-quiz__loading-review-content {
  padding: 16px;
}

.croev-quiz__loading-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.croev-quiz__loading-review-stars svg {
  width: 16px;
  height: 16px;
  color: #ffc107;
}

.croev-quiz__loading-review-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--quiz-black);
  margin: 0 0 12px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.croev-quiz__loading-review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--quiz-secondary);
}

/* Loading Progress Bar */
.croev-quiz__loading-progress {
  max-width: 300px;
  height: 6px;
  background: var(--quiz-border);
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.croev-quiz__loading-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--quiz-primary), var(--quiz-primary-dark));
  border-radius: 3px;
  animation: croev-progress-fill var(--loading-duration, 5000ms) ease-out forwards;
  animation-play-state: paused;
}

.croev-quiz__step.is-active .croev-quiz__loading-progress-bar {
  animation-play-state: running;
}

@keyframes croev-progress-fill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.croev-quiz__loading--reviews .croev-quiz__loading-label {
  text-align: center;
  font-size: 14px;
  color: var(--quiz-secondary-light);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Results Summary Step - Redesigned
   -------------------------------------------------------------------------- */
/* Summary Results - Hair Growth Timeline */
.croev-quiz__step--results {
  padding-bottom: 90px;
}

/* Header with check icon */
.croev-quiz__results-header {
  text-align: center;
  margin-bottom: 24px;
}

.croev-quiz__results-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(5, 172, 46, 0.1);
  color: var(--quiz-success);
  display: none !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.croev-quiz__results-headline {
  font-family: var(--quiz-font-body);
  font-size: 14px;
  color: var(--quiz-secondary-light);
  margin-bottom: 4px;
  text-align: center;
  font-weight: 500;
}

.croev-quiz__results-subheadline {
  font-family: var(--quiz-font-heading);
  font-size: 24px;
  color: var(--quiz-black);
  margin-bottom: 0;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 741px) {
  .croev-quiz__results-subheadline {
    font-size: 28px;
  }
}

/* Timeline Cards */
.croev-quiz__timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.croev-quiz__timeline-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-xl);
  padding: 20px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  text-align: left;
}

.croev-quiz__timeline-card--highlight {
  background: linear-gradient(135deg, rgba(5, 172, 46, 0.04), rgba(5, 172, 46, 0.01));
  box-shadow: 0 1px 8px rgba(5, 172, 46, 0.1), 0 0 0 1px rgba(5, 172, 46, 0.12);
}

/* Icon circles */
.croev-quiz__timeline-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--quiz-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.croev-quiz__timeline-card-icon--teal {
  background: rgba(95, 159, 142, 0.1);
  color: var(--quiz-primary);
}

.croev-quiz__timeline-card-icon--green {
  background: rgba(46, 204, 64, 0.1);
  color: #2ecc40;
}

.croev-quiz__timeline-card-icon--success {
  background: rgba(5, 172, 46, 0.1);
  color: var(--quiz-success);
}

/* Card body */
.croev-quiz__timeline-card-body {
  flex: 1;
  min-width: 0;
}

.croev-quiz__timeline-card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--quiz-secondary-light);
  margin-bottom: 4px;
}

.croev-quiz__timeline-card-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--quiz-black);
  margin: 0;
}

.croev-quiz__timeline-card-body p strong {
  color: var(--quiz-primary);
  font-weight: 600;
}

.croev-quiz__timeline-card--highlight .croev-quiz__timeline-card-body p strong {
  color: var(--quiz-success);
}

/* Step number */
.croev-quiz__timeline-card-number {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--quiz-secondary-light);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.croev-quiz__timeline-card--highlight .croev-quiz__timeline-card-number {
  background: rgba(5, 172, 46, 0.1);
  color: var(--quiz-success);
}

/* Trust pills */
.croev-quiz__results-trust {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.croev-quiz__results-trust-pill {
  display: none !important;
  align-items: center;
  gap: 6px;
  background: var(--quiz-white);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--quiz-secondary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.croev-quiz__results-trust-pill svg {
  color: var(--quiz-success);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Comparison Cards - Redesigned
   -------------------------------------------------------------------------- */
.croev-quiz__step--comparison {
  padding-bottom: 90px;
  text-align: center;
}

.croev-quiz__comparison-intro {
  margin-bottom: 16px;
}

.croev-quiz__comparison-headline {
  font-family: var(--quiz-font-heading);
  font-size: 26px;
  color: var(--quiz-black);
  margin-bottom: 8px;
}

@media (min-width: 741px) {
  .croev-quiz__comparison-headline {
    font-size: 32px;
  }
}

.croev-quiz__comparison-subtext {
  font-size: 16px;
  color: var(--quiz-secondary);
}

.croev-quiz__comparison-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .croev-quiz__comparison-visual {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.croev-quiz__comparison-card {
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-lg);
  overflow: hidden;
  box-shadow: var(--quiz-shadow-md);
  position: relative;
}

.croev-quiz__comparison-card-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
  z-index: 2;
}

.croev-quiz__comparison-card--now .croev-quiz__comparison-card-badge {
  background: var(--quiz-error);
  color: var(--quiz-white);
}

.croev-quiz__comparison-card--goal .croev-quiz__comparison-card-badge {
  background: var(--quiz-success);
  color: var(--quiz-white);
}

.croev-quiz__comparison-card-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.croev-quiz__comparison-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-color: var(--quiz-background);
}

.croev-quiz__comparison-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--quiz-background);
}

.croev-quiz__comparison-card-placeholder svg {
  width: 60px;
  height: 60px;
  color: var(--quiz-border);
}

.croev-quiz__comparison-card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.croev-quiz__comparison-card-overlay--now {
  background: linear-gradient(to bottom, transparent 50%, rgba(228, 48, 68, 0.1));
}

.croev-quiz__comparison-card-overlay--goal {
  background: linear-gradient(to bottom, transparent 50%, rgba(5, 172, 46, 0.1));
}

.croev-quiz__comparison-card-sparkle {
  position: absolute;
  top: 50px;
  right: 12px;
  width: 24px;
  height: 24px;
  color: #ffd700;
  animation: croev-sparkle 2s ease-in-out infinite;
}

@keyframes croev-sparkle {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) rotate(15deg);
  }
}

.croev-quiz__comparison-card-info {
  padding: 16px;
}

.croev-quiz__comparison-card-age {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--quiz-border);
}

.croev-quiz__comparison-card-age-label {
  font-size: 12px;
  color: var(--quiz-secondary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.croev-quiz__comparison-card-age-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--quiz-error);
}

.croev-quiz__comparison-card-age-value--goal {
  color: var(--quiz-success);
}

.croev-quiz__comparison-card-indicators {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.croev-quiz__comparison-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.croev-quiz__comparison-indicator span {
  font-size: 12px;
  color: var(--quiz-secondary);
  width: 70px;
  flex-shrink: 0;
}

.croev-quiz__comparison-bar {
  flex: 1;
  height: 6px;
  background: var(--quiz-border);
  border-radius: 3px;
  overflow: hidden;
}

.croev-quiz__comparison-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease-out;
}

.croev-quiz__comparison-bar-fill--low {
  background: linear-gradient(90deg, var(--quiz-error), #ff6b6b);
}

.croev-quiz__comparison-bar-fill--high {
  background: linear-gradient(90deg, var(--quiz-success), #4caf50);
}

/* Arrow between cards */
.croev-quiz__comparison-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.croev-quiz__comparison-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.croev-quiz__comparison-arrow-icon {
  width: 32px;
  height: 32px;
  color: var(--quiz-primary);
  animation: croev-arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes croev-arrow-pulse {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

.croev-quiz__comparison-arrow-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--quiz-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .croev-quiz__comparison-arrow-wrap {
    padding: 8px 0;
  }

  .croev-quiz__comparison-arrow-icon {
    transform: rotate(90deg);
  }

  @keyframes croev-arrow-pulse {
    0%, 100% {
      transform: rotate(90deg) translateX(0);
      opacity: 0.7;
    }
    50% {
      transform: rotate(90deg) translateX(4px);
      opacity: 1;
    }
  }
}

.croev-quiz__comparison-message {
  background: linear-gradient(135deg, rgba(95, 159, 142, 0.08), rgba(95, 159, 142, 0.02));
  border: 1px solid rgba(95, 159, 142, 0.2);
  border-radius: var(--quiz-radius-lg);
  padding: 16px 20px;
  margin-bottom: 16px;
}

.croev-quiz__comparison-message p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--quiz-black);
  margin: 0;
}

.croev-quiz__comparison-message strong {
  color: var(--quiz-primary);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Offer Step (Redesigned)
   -------------------------------------------------------------------------- */
.croev-quiz__step--offer {
  padding-bottom: 140px;
}

/* Header */
.croev-quiz__offer-header {
  text-align: center;
  margin-bottom: 16px;
}

.croev-quiz__offer-badge {
  display: none !important;
  align-items: center;
  gap: 6px;
  background: rgba(5, 172, 46, 0.1);
  color: var(--quiz-success);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0;
  border-radius: 20px;
  margin-bottom: 10px;
}

.croev-quiz__offer-headline {
  font-family: var(--quiz-font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--quiz-black);
  margin: 0 0 6px;
}

@media (min-width: 741px) {
  .croev-quiz__offer-headline {
    font-size: 28px;
  }
}

.croev-quiz__offer-personalized {
  font-size: 15px;
  line-height: 1.5;
  color: var(--quiz-secondary);
  margin: 0;
}

.croev-quiz__offer-personalized strong {
  color: var(--quiz-primary);
  font-weight: 600;
}

/* Product image */
.croev-quiz__offer-image-wrap {
  position: relative;
  border-radius: var(--quiz-radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.croev-quiz__offer-image {
  width: 100%;
  object-fit: contain;
  display: block;
  max-height: 400px;
}

.croev-quiz__offer-image-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--quiz-primary);
  color: var(--quiz-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 20px;
}

/* Product info */
.croev-quiz__offer-info {
  text-align: center;
  margin-bottom: 16px;
}

.croev-quiz__offer-title {
  font-family: var(--quiz-font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--quiz-black);
  margin: 0 0 4px;
}

.croev-quiz__offer-subtitle {
  font-size: 14px;
  color: var(--quiz-secondary-light);
  margin: 0 0 12px;
}

/* Social proof */
.croev-quiz__offer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.croev-quiz__stars {
  display: flex;
  gap: 2px;
}

.croev-quiz__star {
  width: 16px;
  height: 16px;
  color: #ffc107;
}

.croev-quiz__offer-social-text {
  font-size: 13px;
  color: var(--quiz-secondary);
}

/* Personalized benefits */
.croev-quiz__offer-benefits {
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.croev-quiz__offer-benefits-title {
  font-family: var(--quiz-font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--quiz-secondary);
  margin: 0 0 12px;
}

.croev-quiz__offer-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
}

.croev-quiz__offer-benefit:not(:last-child) {
  border-bottom: 1px solid var(--quiz-border);
}

.croev-quiz__offer-benefit-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--quiz-success);
  margin-top: 1px;
}

.croev-quiz__offer-benefit-text {
  font-size: 15px;
  line-height: 1.45;
  color: var(--quiz-black);
  margin: 0;
}

.croev-quiz__offer-benefit-text strong {
  font-weight: 600;
}

/* Pricing */
.croev-quiz__offer-pricing {
  text-align: center;
  margin-bottom: 16px;
}

.croev-quiz__offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.croev-quiz__price-compare {
  font-size: 18px;
  color: var(--quiz-secondary-light);
  text-decoration: line-through;
}

.croev-quiz__price-current {
  font-size: 36px;
  font-weight: 700;
  color: var(--quiz-primary);
}

/* Trust signals */
.croev-quiz__offer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.croev-quiz__offer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-md);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--quiz-secondary);
}

.croev-quiz__offer-trust-item svg {
  flex-shrink: 0;
  color: var(--quiz-success);
}

.croev-quiz__offer-trust-item--urgency svg {
  color: var(--quiz-primary);
}

/* Fixed CTA bar */
.croev-quiz__offer-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--quiz-white);
  padding: 16px 20px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  text-align: center;
}

.croev-quiz__offer-cta {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: var(--quiz-primary);
  color: var(--quiz-white);
  font-family: var(--quiz-font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border: none;
  border-radius: var(--quiz-radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
  animation: croev-pulse 2s infinite;
}

@media (hover: hover) {
  .croev-quiz__offer-cta:hover {
    background: var(--quiz-primary-dark);
    animation: none;
  }
}

.croev-quiz__offer-cta-subtext {
  font-size: 13px;
  color: var(--quiz-secondary-light);
  margin: 8px 0 0;
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
.croev-quiz__option--image:focus-visible,
.croev-quiz__option--text:focus-visible,
.croev-quiz__btn:focus-visible {
  outline: 2px solid var(--quiz-primary);
  outline-offset: 2px;
}

.croev-quiz__option--image:focus:not(:focus-visible),
.croev-quiz__option--text:focus:not(:focus-visible),
.croev-quiz__btn:focus:not(:focus-visible) {
  outline: none;
}

.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;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes croev-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes croev-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* --------------------------------------------------------------------------
   Image-Only Carousel (Before/Afters) - Manual Scroll
   -------------------------------------------------------------------------- */
.croev-quiz__image-carousel {
  width: calc(100% + 2 * var(--quiz-container-padding));
  margin-left: calc(-1 * var(--quiz-container-padding));
  margin-right: calc(-1 * var(--quiz-container-padding));
  margin-top: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

/* Mobile: Prevent horizontal overflow */
@media (max-width: 740px) {
  .croev-quiz__image-carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.croev-quiz__image-carousel-track {
  display: flex;
  gap: 12px;
  padding: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-left: 20px;
}

.croev-quiz__image-carousel-track::-webkit-scrollbar {
  display: none;
}

.croev-quiz__image-carousel-item {
  flex: 0 0 auto;
  border-radius: var(--quiz-radius-lg);
  overflow: hidden;
  box-shadow: var(--quiz-shadow-md);
  scroll-snap-align: start;
}

.croev-quiz__image-carousel-item img {
  display: block;
  width: auto;
  height: 340px;
  object-fit: cover;
}

@media (min-width: 741px) {
  .croev-quiz__image-carousel-item img {
    height: 420px;
  }
}

/* Carousel Navigation Arrows */
.croev-quiz__carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--quiz-white);
  border: 1px solid var(--quiz-border);
  box-shadow: var(--quiz-shadow-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--quiz-black);
  transition: all var(--quiz-transition);
  padding: 0;
}

@media (min-width: 741px) {
  .croev-quiz__carousel-arrow {
    display: flex;
  }
}

.croev-quiz__carousel-arrow:hover {
  background: var(--quiz-primary);
  border-color: var(--quiz-primary);
  color: var(--quiz-white);
}

.croev-quiz__carousel-arrow:hover svg {
  stroke: var(--quiz-white);
}

.croev-quiz__carousel-arrow--prev {
  left: 8px;
}

.croev-quiz__carousel-arrow--next {
  right: 8px;
}

/* --------------------------------------------------------------------------
   Popup Modal
   -------------------------------------------------------------------------- */
.croev-quiz__popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.croev-quiz__popup[hidden] {
  display: none;
}

.croev-quiz__popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  animation: croev-popup-fade-in 0.3s ease;
}

.croev-quiz__popup-modal {
  position: relative;
  background: var(--quiz-white);
  border-radius: var(--quiz-radius-xl);
  padding: 32px 24px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: croev-popup-slide-up 0.3s ease;
}

.croev-quiz__popup-headline {
  font-family: var(--quiz-font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--quiz-primary);
  margin: 0 0 12px;
}

.croev-quiz__popup-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--quiz-black);
  margin: 0 0 24px;
}

.croev-quiz__popup-actions {
  display: flex;
  gap: 12px;
}

.croev-quiz__popup-btn {
  flex: 1;
  padding: 14px 24px;
  font-family: var(--quiz-font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--quiz-radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.croev-quiz__popup-btn--no {
  background: var(--quiz-white);
  color: var(--quiz-secondary);
  border-color: var(--quiz-border);
}

.croev-quiz__popup-btn--no:hover {
  border-color: var(--quiz-secondary);
}

.croev-quiz__popup-btn--yes {
  background: var(--quiz-primary);
  color: var(--quiz-white);
}

.croev-quiz__popup-btn--yes:hover {
  background: var(--quiz-primary-dark);
}

@keyframes croev-popup-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes croev-popup-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   Skip Quiz Bar
      ============================================================ */
      .croev-quiz__skip-bar {
        text-align: center;
          padding: 12px 16px;
            background: #ffffff;
              border-bottom: 1px solid var(--quiz-border);
              }

              .croev-quiz__skip-link {
                color: var(--quiz-primary);
                  font-size: 14px;
                    font-weight: 600;
                      text-decoration: underline;
                        text-transform: uppercase;
                          letter-spacing: 0.05em;
                            cursor: pointer;
                              font-family: var(--quiz-font-body);
                              }

                              .croev-quiz__skip-link:hover {
                                color: var(--quiz-primary-dark);
                                }

                                /* ============================================================
                                   Image Option Label - Colored Background (Peptonix style)
                                      ============================================================ */
                                      .croev-quiz__option--image {
                                        position: relative;
                                          overflow: hidden;
                                            padding: 0 !important;
                                              border-radius: var(--quiz-radius-md);
                                              }

                                              .croev-quiz__option--image .croev-quiz__option-label {
                                                display: block;
                                                  width: 100%;
                                                    background: var(--quiz-primary);
                                                      color: #ffffff;
                                                        font-size: 15px;
                                                          font-weight: 600;
                                                            padding: 14px 10px;
                                                              text-align: center;
                                                                font-family: var(--quiz-font-body);
                                                                }

                                                                .croev-quiz__option--image:hover .croev-quiz__option-label,
                                                                .croev-quiz__option--image.is-selected .croev-quiz__option-label {
                                                                  background: var(--quiz-primary-dark);
                                                                  }

                                                                  .croev-quiz__skip-bar { display: none !important; }
                                                                  .croev-quiz:has(.croev-quiz__step[data-step-index="0"].is-active) .croev-quiz__skip-bar { display: block !important; }

                                                                  /* Text Option Hover & Selected - Peptonix Style */
                                                                  .croev-quiz__option--text:hover {
                                                                      background: var(--quiz-primary) !important;
                                                                        color: #ffffff !important;
                                                                          border-color: var(--quiz-primary) !important;
                                                                            transform: translateY(-1px);
                                                                              box-shadow: 0 4px 12px rgba(95, 159, 142, 0.3);
                                                                  }

                                                                  .croev-quiz__option--text:hover .croev-quiz__option-text {
                                                                      color: #ffffff !important;
                                                                  }

                                                                  .croev-quiz__option--text.is-selected {
                                                                      background: var(--quiz-primary) !important;
                                                                        color: #ffffff !important;
                                                                          border-color: var(--quiz-primary) !important;
                                                                            box-shadow: 0 4px 12px rgba(95, 159, 142, 0.3);
                                                                  }

                                                                  .croev-quiz__option--text.is-selected .croev-quiz__option-text {
                                                                      color: #ffffff !important;
                                                                  }

                                                                  .croev-quiz__option--text {
                                                                      transition: all 0.25s ease !important;
                                                                  }

                                                                  /* Hide skip quiz bar on all steps */
                                                                  .croev-quiz:has(.croev-quiz__step[data-step-index="0"].is-active) .croev-quiz__skip-bar {
                                                                    display: none !important;
                                                                    }
                                                                  }
                                                                  }

                                                                  /* ============================================
                                                                     Results/CTA Page - Design Improvements
                                                                        ============================================ */

                                                                        /* Results page background */
                                                                        .croev-quiz__step--results {
                                                                          background: linear-gradient(180deg, #f0f7f5 0%, #ffffff 40%) !important;
                                                                            padding-bottom: 100px !important;
                                                                            }

                                                                            /* Bigger, more impactful checkmark */
                                                                            .croev-quiz__results-check {
                                                                              width: 72px !important;
                                                                                height: 72px !important;
                                                                                  background: linear-gradient(135deg, #5f9f8e, #4a8a7a) !important;
                                                                                    border-radius: 50% !important;
                                                                                      display: flex !important;
                                                                                        align-items: center !important;
                                                                                          justify-content: center !important;
                                                                                            margin: 0 auto 16px !important;
                                                                                              box-shadow: 0 8px 24px rgba(95, 159, 142, 0.3) !important;
                                                                                              }
                                                                                              .croev-quiz__results-check svg {
                                                                                                width: 36px !important;
                                                                                                  height: 36px !important;
                                                                                                    stroke: #ffffff !important;
                                                                                                      stroke-width: 3 !important;
                                                                                                      }

                                                                                                      /* Results headline styling */
                                                                                                      .croev-quiz__results-headline {
                                                                                                        font-size: 28px !important;
                                                                                                          font-weight: 800 !important;
                                                                                                            letter-spacing: -0.5px !important;
                                                                                                              line-height: 1.2 !important;
                                                                                                                margin-bottom: 8px !important;
                                                                                                                }
                                                                                                                .croev-quiz__results-subheadline {
                                                                                                                  font-size: 16px !important;
                                                                                                                    color: #666 !important;
                                                                                                                      margin-bottom: 32px !important;
                                                                                                                      }

                                                                                                                      /* Timeline cards - elevated design */
                                                                                                                      .croev-quiz__timeline {
                                                                                                                        max-width: 520px !important;
                                                                                                                          margin: 0 auto 24px !important;
                                                                                                                          }
                                                                                                                          .croev-quiz__timeline-card {
                                                                                                                            background: #ffffff !important;
                                                                                                                              border: 1px solid #e8f0ed !important;
                                                                                                                                border-left: 4px solid #5f9f8e !important;
                                                                                                                                  border-radius: 12px !important;
                                                                                                                                    padding: 18px 20px !important;
                                                                                                                                      margin-bottom: 12px !important;
                                                                                                                                        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
                                                                                                                                          transition: transform 0.2s ease, box-shadow 0.2s ease !important;
                                                                                                                                          }
                                                                                                                                          .croev-quiz__timeline-card:hover {
                                                                                                                                            transform: translateY(-2px) !important;
                                                                                                                                              box-shadow: 0 6px 16px rgba(95, 159, 142, 0.15) !important;
                                                                                                                                              }
                                                                                                                                              .croev-quiz__timeline-card--highlight {
                                                                                                                                                background: linear-gradient(135deg, #f0f7f5, #e8f5f0) !important;
                                                                                                                                                  border-left-color: #4a8a7a !important;
                                                                                                                                                    border-color: #5f9f8e !important;
                                                                                                                                                    }

                                                                                                                                                    /* Timeline card labels */
                                                                                                                                                    .croev-quiz__timeline-card-label {
                                                                                                                                                      font-size: 11px !important;
                                                                                                                                                        font-weight: 700 !important;
                                                                                                                                                          text-transform: uppercase !important;
                                                                                                                                                            letter-spacing: 1px !important;
                                                                                                                                                              color: #5f9f8e !important;
                                                                                                                                                              }

                                                                                                                                                              /* Timeline step numbers */
                                                                                                                                                              .croev-quiz__timeline-card-number {
                                                                                                                                                                background: #5f9f8e !important;
                                                                                                                                                                  color: #ffffff !important;
                                                                                                                                                                    font-weight: 700 !important;
                                                                                                                                                                      font-size: 13px !important;
                                                                                                                                                                        width: 28px !important;
                                                                                                                                                                          height: 28px !important;
                                                                                                                                                                            border-radius: 50% !important;
                                                                                                                                                                              display: flex !important;
                                                                                                                                                                                align-items: center !important;
                                                                                                                                                                                  justify-content: center !important;
                                                                                                                                                                                  }

                                                                                                                                                                                  /* Trust badges - more prominent */
                                                                                                                                                                                  .croev-quiz__results-trust {
                                                                                                                                                                                    display: flex !important;
                                                                                                                                                                                      justify-content: center !important;
                                                                                                                                                                                        gap: 16px !important;
                                                                                                                                                                                          margin-top: 24px !important;
                                                                                                                                                                                            margin-bottom: 20px !important;
                                                                                                                                                                                              flex-wrap: wrap !important;
                                                                                                                                                                                              }
                                                                                                                                                                                              .croev-quiz__results-trust-pill {
                                                                                                                                                                                                background: #f0f7f5 !important;
                                                                                                                                                                                                  border: 1px solid #d4e8e1 !important;
                                                                                                                                                                                                    border-radius: 24px !important;
                                                                                                                                                                                                      padding: 10px 20px !important;
                                                                                                                                                                                                        font-size: 14px !important;
                                                                                                                                                                                                          font-weight: 600 !important;
                                                                                                                                                                                                            color: #3d6b5e !important;
                                                                                                                                                                                                              display: flex !important;
                                                                                                                                                                                                                align-items: center !important;
                                                                                                                                                                                                                  gap: 8px !important;
                                                                                                                                                                                                                  }
                                                                                                                                                                                                                  .croev-quiz__results-trust-pill svg {
                                                                                                                                                                                                                    color: #5f9f8e !important;
                                                                                                                                                                                                                      stroke: #5f9f8e !important;
                                                                                                                                                                                                                      }

                                                                                                                                                                                                                      /* CTA Button - Results page specific */
                                                                                                                                                                                                                      .croev-quiz__step--results .croev-quiz__nav {
                                                                                                                                                                                                                        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 20%, #ffffff 100%) !important;
                                                                                                                                                                                                                          padding: 20px 24px 24px !important;
                                                                                                                                                                                                                            border-top: none !important;
                                                                                                                                                                                                                            }
                                                                                                                                                                                                                            .croev-quiz__step--results .croev-quiz__btn--primary {
                                                                                                                                                                                                                              background: linear-gradient(135deg, #5f9f8e, #4a8a7a) !important;
                                                                                                                                                                                                                                border: none !important;
                                                                                                                                                                                                                                  border-radius: 14px !important;
                                                                                                                                                                                                                                    padding: 18px 32px !important;
                                                                                                                                                                                                                                      font-size: 17px !important;
                                                                                                                                                                                                                                        font-weight: 700 !important;
                                                                                                                                                                                                                                          letter-spacing: 0.5px !important;
                                                                                                                                                                                                                                            text-transform: uppercase !important;
                                                                                                                                                                                                                                              box-shadow: 0 6px 20px rgba(95, 159, 142, 0.35) !important;
                                                                                                                                                                                                                                                animation: cta-pulse 2.5s ease-in-out infinite !important;
                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                .croev-quiz__step--results .croev-quiz__btn--primary:hover {
                                                                                                                                                                                                                                                  transform: translateY(-2px) !important;
                                                                                                                                                                                                                                                    box-shadow: 0 8px 28px rgba(95, 159, 142, 0.45) !important;
                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                    /* Pulse animation for CTA */
                                                                                                                                                                                                                                                    @keyframes cta-pulse {
                                                                                                                                                                                                                                                      0%, 100% { box-shadow: 0 6px 20px rgba(95, 159, 142, 0.35); }
                                                                                                                                                                                                                                                        50% { box-shadow: 0 6px 32px rgba(95, 159, 142, 0.55); }
                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                        /* Hide back button on results page */
                                                                                                                                                                                                                                                        .croev-quiz__step--results .croev-quiz__btn--back {

                                                                                                                                                                                                                                                          /* Fix whitespace - remove min-height when results page is showing */
                                                                                                                                                                                                                                                          .croev-quiz:has(.croev-quiz__step--results.is-active) {
                                                                                                                                                                                                                                                            min-height: auto !important;
                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                            /* Force background on results - higher specificity */
                                                                                                                                                                                                                                                            .croev-quiz .croev-quiz__step--results.is-active {
                                                                                                                                                                                                                                                              background: linear-gradient(180deg, #f0f7f5 0%, #ffffff 40%) !important;
                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                              /* Force checkmark styling - higher specificity */
                                                                                                                                                                                                                                                              .croev-quiz .croev-quiz__step--results .croev-quiz__results-check {
                                                                                                                                                                                                                                                                width: 72px !important;
                                                                                                                                                                                                                                                                  height: 72px !important;
                                                                                                                                                                                                                                                                    background: linear-gradient(135deg, #5f9f8e, #4a8a7a) !important;
                                                                                                                                                                                                                                                                      border-radius: 50% !important;
                                                                                                                                                                                                                                                                        display: flex !important;
                                                                                                                                                                                                                                                                          align-items: center !important;
                                                                                                                                                                                                                                                                            justify-content: center !important;
                                                                                                                                                                                                                                                                              margin: 0 auto 16px !important;
                                                                                                                                                                                                                                                                                box-shadow: 0 8px 24px rgba(95, 159, 142, 0.3) !important;
                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                .croev-quiz .croev-quiz__step--results .croev-quiz__results-check svg {
                                                                                                                                                                                                                                                                                  width: 36px !important;
                                                                                                                                                                                                                                                                                    height: 36px !important;
                                                                                                                                                                                                                                                                                      stroke: #ffffff !important;
                                                                                                                                                                                                                                                                                        stroke-width: 3 !important;
                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                        /* Force timeline card left border - higher specificity */
                                                                                                                                                                                                                                                                                        .croev-quiz .croev-quiz__step--results .croev-quiz__timeline-card {
                                                                                                                                                                                                                                                                                          border-left: 4px solid #5f9f8e !important;
                                                                                                                                                                                                                                                                                            border-radius: 12px !important;
                                                                                                                                                                                                                                                                                              box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                              /* Force trust pill styling - higher specificity */
                                                                                                                                                                                                                                                                                              .croev-quiz .croev-quiz__step--results .croev-quiz__results-trust-pill {
                                                                                                                                                                                                                                                                                                background: #f0f7f5 !important;
                                                                                                                                                                                                                                                                                                  border: 1px solid #d4e8e1 !important;
                                                                                                                                                                                                                                                                                                    border-radius: 24px !important;
                                                                                                                                                                                                                                                                                                      padding: 10px 20px !important;
                                                                                                                                                                                                                                                                                                        font-weight: 600 !important;
                                                                                                                                                                                                                                                                                                          color: #3d6b5e !important;
                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                          display: none !important;
                                                                                                                                                                                                                                                          }
                                                                  }
                                                                  }
                                                                  }

                                                                  /* Results page vertical centering - fixes whitespace gap */
                                                                  .croev-quiz:has(.croev-quiz__step--results.is-active) {
                                                                    display: flex !important;
                                                                      flex-direction: column !important;
                                                                      }
                                                                      .croev-quiz:has(.croev-quiz__step--results.is-active) .croev-quiz__wrapper {
                                                                        flex: 1 !important;
                                                                          display: flex !important;
                                                                            flex-direction: column !important;
                                                                              justify-content: center !important;
                                                                              }
                                                                              .croev-quiz:has(.croev-quiz__step--results.is-active) .croev-quiz__steps {
                                                                                display: flex !important;
                                                                                  flex-direction: column !important;
                                                                                    justify-content: center !important;
                                                                                      flex: 1 !important;
                                                                                      }

                                                                                      /* Center info-step text (400k women, busy schedule, etc.) */
                                                                                      .croev-quiz__step--info .croev-quiz__question,
                                                                                      .croev-quiz__step--info .croev-quiz__subheadline,
                                                                                      .croev-quiz__step--info .croev-quiz__info-content {
                                                                                        text-align: center;
                                                                                        }
                                                                                        .croev-quiz__step--info {
                                                                                          text-align: center;
                                                                                          }
                                                                                          .croev-quiz__step--info .croev-quiz__info-image,
                                                                                          .croev-quiz__step--info img {
                                                                                            margin-left: auto;
                                                                                              margin-right: auto;
                                                                                              }


                                                                                              /* Simplified results page - tighten headline on mobile */
                                                                                              @media (max-width: 768px) {
                                                                                                .croev-quiz__results-headline {
                                                                                                    font-size: 2.75rem !important; color: #1e3d2f !important; font-weight: 800 !important;
                                                                                                        line-height: 1.2 !important;
                                                                                                            margin-bottom: 0.5rem !important;
                                                                                                              }
                                                                                                                .croev-quiz__results-subheadline {
                                                                                                                    font-size: 1rem !important;
                                                                                                                        line-height: 1.4 !important;
                                                                                                                          }
                                                                                                                            .croev-quiz__step--results {
                                                                                                                                padding-top: 1rem !important;
                                                                                                                                  }
                                                                                                                                  }
                                                                                                                                  

                                                                                                                                  /* Hair profile image */ .croev-quiz__profile-image-wrap { margin: 0.5rem auto 1rem; text-align: center; max-width: 100%; } .croev-quiz__profile-image { width: 100%; max-width: 320px; height: auto; max-height: 220px; object-fit: contain; display: block; margin: 0 auto; } /* Eyebrow pill (replaces the big check circle on results page) */
                                                                                                                                  .croev-quiz__results-eyebrow {
                                                                                                                                    display: none !important;
                                                                                                                                      align-items: center;
                                                                                                                                        gap: 6px;
                                                                                                                                          background: transparent;
                                                                                                                                            color: #4a7c59;
                                                                                                                                              font-size: 0;
                                                                                                                                                font-weight: 700;
                                                                                                                                                  letter-spacing: 0.08em;
                                                                                                                                                    padding: 0;
                                                                                                                                                      border-radius: 0;
                                                                                                                                                        margin: 0 auto 1rem auto;
                                                                                                                                                        }
                                                                                                                                                        .croev-quiz__results-eyebrow svg {
                                                                                                                                                          flex-shrink: 0;
                                                                                                                                                          }
                                                                                                                                                          .croev-quiz__results-check {
                                                                                                                                                            display: none !important;
                                                                                                                                                            }
                                                                                                                                                            .croev-quiz__results-header {
                                                                                                                                                              text-align: center;
                                                                                                                                                              }

                                                                                                                                                              /* Center primary button text and fix mobile alignment */
                                                                                                                                                              .croev-quiz__btn--primary {
                                                                                                                                                                text-align: center !important;
                                                                                                                                                                  justify-content: center !important;
                                                                                                                                                                    display: flex !important;
                                                                                                                                                                      align-items: center !important;
                                                                                                                                                                        width: 100%;
                                                                                                                                                                        }
                                                                                                                                                                        

                                                                                                                                                                        /* Slider gradient + animation for Hair Profile summary */
                                                                                                                                                                        .croev-quiz__step--info[data-step-type="summary_profile"] .croev-quiz__level-bar { background: linear-gradient(to right, #5cb3e8 0%, #7fc99f 25%, #f4d35e 50%, #f29e4c 75%, #d63a3a 100%) !important; }
                                                                                                                                                                        .croev-quiz__step--info[data-step-type="summary_profile"].is-active .croev-quiz__level-tooltip { animation: slideToHigh 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
                                                                                                                                                                        @keyframes slideToHigh { 0% { left: 0%; } 100% { left: 85%; } }