/** Shopify CDN: Minification failed

Line 740:0 Unexpected "}"

**/
/**
 * ============================================================================
 * VINPOP — Taste Profile Quiz Styles
 * ============================================================================
 *
 * Styles for the multi-step quiz modal overlay, step indicators,
 * slider inputs, and submit button.
 *
 * Loaded from: layout/theme.liquid (preloaded)
 * JS: taste-profile-quiz.js
 * ============================================================================
 */

/* Popup Container */
.taste-profile-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.taste-profile-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.taste-profile-popup-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
  margin: auto;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Close Button */
.taste-profile-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.taste-profile-close:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}

/* Header */
.taste-profile-header {
  text-align: center;
  margin-bottom: 40px;
}

.taste-profile-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.taste-profile-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Questions */
.taste-profile-questions {
  min-height: 300px;
}

.taste-profile-question {
  animation: questionFadeIn 0.3s ease-out;
}

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

.taste-profile-question h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #1a1a1a;
  line-height: 1.4;
}

/* Answers */
.taste-profile-answers {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.taste-profile-answer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f8f8;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
  font-size: 16px;
}

.taste-profile-answer:hover {
  background: #fff;
  border-color: #8B4513;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
}

.taste-profile-answer.selected {
  background: #8B4513;
  border-color: #8B4513;
  color: white;
  transform: scale(0.98);
}

.answer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  color: #8B4513;
}

.taste-profile-answer.selected .answer-label {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.answer-text {
  flex: 1;
  line-height: 1.5;
}

/* ──── Card layout with images ──── */
/* Desktop: horizontal grid */
.taste-profile-answers--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.taste-profile-answers--grid.taste-profile-answers--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 420px;
  margin: 0 auto;
}

.taste-profile-answer--card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 14px;
  gap: 12px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid #e8e0d8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.taste-profile-answer--card:hover {
  transform: translateY(-4px);
  border-color: #8B4513;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.12);
}

.taste-profile-answer--card.selected {
  transform: translateY(-2px) scale(0.98);
}

.answer-img {
  width: 140px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  pointer-events: none;
}

.taste-profile-answer--card .answer-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
}

/* Mobile: vertical stack with image left + text right */
@media (max-width: 600px) {
  .taste-profile-answers--grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .taste-profile-answers--grid.taste-profile-answers--two {
    max-width: none;
  }
  .taste-profile-answer--card {
    flex-direction: row;
    text-align: left;
    padding: 12px 14px;
    gap: 14px;
    border-radius: 12px;
  }
  .answer-img {
    width: 80px;
    height: 80px;
  }
  .taste-profile-answer--card .answer-text {
    font-size: 14px;
  }
  .taste-profile-answer--card:hover {
    transform: translateX(4px);
  }
}

/* Progress Bar — modernized, prominent at bottom */
.taste-profile-progress {
  margin-top: 1.5rem;
  padding: 1rem 0 0;
  border-top: 2px solid rgba(var(--color-scheme-text, 18,18,18), 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.taste-profile-progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(var(--color-scheme-text, 18,18,18), 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(var(--color-scheme-text, 18,18,18), 0.12);
}

.taste-profile-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgb(var(--color-scheme-accent-1)), rgb(var(--color-scheme-accent-2, var(--color-scheme-accent-1))));
  border-radius: 9999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.taste-profile-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  border-radius: 9999px;
}

.taste-profile-progress-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  font-family: var(--heading-font-stack);
  font-weight: var(--heading-font-weight, 700);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(var(--color-scheme-text, 18,18,18), 0.6);
  background: rgba(var(--color-scheme-text, 18,18,18), 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.taste-profile-progress-text .current-question {
  color: rgb(var(--color-scheme-accent-1));
  font-size: 0.9rem;
}

/* Loading State */
.taste-profile-loading {
  text-align: center;
  padding: 60px 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #8B4513;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.taste-profile-loading p {
  font-size: 16px;
  color: #666;
}

/* Reveal Screen */
.taste-profile-reveal {
  text-align: center;
  padding: 29px 20px;
}

.taste-profile-reveal-content {
  max-width: 600px;
  margin: 0 auto;
}

.taste-profile-reveal h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.taste-profile-reveal p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 12px;
}

.taste-profile-reveal-btn {
  /* Styles handled by push-btn classes */
}

/* Error State */
.taste-profile-error {
  text-align: center;
  padding: 40px 20px;
}

.taste-profile-error p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* Taste Score Badge */
.taste-score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #8B4513, #D2691E);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.taste-score-badge span {
  display: block;
}

/* Product Grid Styles */
.collection-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card-inner {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.product-card:hover .product-card-inner {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f8f8f8;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-info {
  padding: 20px;
}

.product-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card-price .price {
  font-size: 18px;
  font-weight: 700;
  color: #8B4513;
}

.product-card-price .compare-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

/* Loading Wines */
.loading-wines {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.loading-wines .spinner {
  margin: 0 auto 20px;
}

.loading-wines p {
  font-size: 16px;
  color: #666;
}

/* No Results / Error */
.no-results,
.error {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #666;
  grid-column: 1 / -1;
}

.error {
  color: #d32f2f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .taste-profile-popup-content {
    padding: 30px 20px;
    max-height: 95vh;
  }

  .taste-profile-header h2 {
    font-size: 24px;
  }

  .taste-profile-header p {
    font-size: 14px;
  }

  .taste-profile-question h3 {
    font-size: 18px;
  }

  .taste-profile-answer {
    padding: 15px;
    font-size: 14px;
  }

  .answer-label {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .collection-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }

  .product-card-info {
    padding: 15px;
  }

  .product-card-title {
    font-size: 14px;
  }

  .product-card-price .price {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .collection-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Taste score badge - simple theme style */
.taste-score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  border-radius: var(--button-border-radius, 50px);
  font-size: 0.875rem;
  font-weight: var(--heading-font-weight, 700);
  font-family: var(--heading-font-stack);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


#facets-results .banner-left {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.125rem !important;
}

#facets-results .banner-title {
  font-size: calc(var(--font-size-ratio-sm, 0.891) * 1rem) !important;
  font-weight: var(--heading-font-weight, 900) !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
}

#facets-results .banner-subtitle {
  font-size: calc(var(--font-size-ratio-xs, 0.749) * 1rem) !important;
  font-weight: var(--main-font-weight, 500) !important;
  opacity: 0.85 !important;
  line-height: 1 !important;
  text-transform: none !important;
  font-family: var(--main-font-stack) !important;
}

#facets-results .banner-price {
  font-size: calc(var(--font-size-ratio-lg, 1.335) * 1rem) !important;
  font-weight: var(--heading-font-weight, 900) !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
}

/* ===== Pre-LP Intro Step ===== */
.taste-profile-intro {
  text-align: center;
  padding: 1rem 0 0;
}

.taste-profile-intro h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.quiz-intro-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.quiz-intro-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  max-width: 120px;
}

.quiz-intro-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.quiz-intro-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFCC37;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.85rem;
}

.quiz-intro-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.quiz-intro-desc {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.3;
  text-align: center;
}

.quiz-intro-arrow {
  font-size: 1.4rem;
  color: #bbb;
  margin-top: 1rem;
  user-select: none;
}

.quiz-intro-start-btn {
  margin: 0 auto;
}

@media (max-width: 600px) {
  .quiz-intro-steps {
    gap: 0.3rem;
  }
  .quiz-intro-step {
    max-width: 95px;
  }
  .quiz-intro-icon {
    font-size: 1.8rem;
  }
  .quiz-intro-num {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
  }
  .quiz-intro-label {
    font-size: 0.82rem;
  }
  .quiz-intro-desc {
    font-size: 0.68rem;
  }
  .quiz-intro-arrow {
    font-size: 1.1rem;
    margin-top: 0.8rem;
  }
}
}

/* ===== Quiz Product Carousel ===== */
.quiz-product-carousel {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.quiz-slide {
  animation: questionFadeIn 0.3s ease-out;
}

/* ── Product slide ── */
.quiz-slide--product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.quiz-slide__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  pointer-events: none;
}

.quiz-slide__badge .sticker__container {
  position: relative;
}

.quiz-slide__badge .sticker__bg {
  position: absolute;
  inset: 0;
  clip-path: circle(50%);
  background: #E07A5F;
  color: #000;
}

.quiz-slide__badge .sticker__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--heading-font-stack, inherit);
  font-weight: var(--heading-font-weight, 700);
  font-size: var(--font-size-base, 1rem);
  line-height: 1;
}

.quiz-slide__badge svg {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
}

.quiz-slide__card {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  background: #faf8f6;
  border-radius: 16px;
  overflow: visible;
  border: 1px solid #ece5dc;
}

.quiz-slide__image-wrap {
  position: relative;
  width: 42%;
  flex-shrink: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0ebe4;
}

.quiz-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-slide__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.25rem 1.25rem 0;
  gap: 0.4rem;
}

.quiz-slide__counter {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B4513;
  opacity: 0.7;
}

.quiz-slide__title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quiz-slide__vendor {
  font-size: 0.8rem;
  color: #666;
}

.quiz-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: #888;
}

.quiz-slide__justification {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

.quiz-slide__justif-score {
  font-size: 0.82rem;
  font-weight: 700;
  color: #E07A5F;
  line-height: 1.4;
}

.quiz-slide__justif-line {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #5a4a3a;
}

.quiz-slide__price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.quiz-slide__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #8B4513;
}

.quiz-slide__compare-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.quiz-carousel-atc {
  align-self: flex-start;
  margin-top: 0.25rem;
  position: relative;
  z-index: 0;
  margin-bottom: 6px;
  margin-right: 6px;
}
/* ── Button color overrides ── */
.quiz-btn--yellow {
  background: #ffcc37 !important;
  color: #000 !important;
}
.quiz-btn--yellow:hover {
  background: #e6b82e !important;
}

.quiz-btn--green {
  background: #81B29A !important;
  color: #fff !important;
}
.quiz-btn--green:hover {
  background: #6a9a82 !important;
}

.quiz-carousel-atc .push-btn__surface {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

.quiz-carousel-atc--added {
  opacity: 0.7;
  pointer-events: none;
}

.quiz-carousel-next--bottom {
  width: 100%;
}
.quiz-carousel-next--bottom .push-btn__surface {
  width: 100%;
}

/* ── Starter Pack slide ── */
.quiz-slide--pack {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.quiz-slide__pack-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.quiz-slide__pack-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.quiz-slide__pack-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  max-width: 480px;
  margin: 0;
}

.quiz-pack__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 480px;
}

.quiz-pack__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #faf8f6;
  border-radius: 12px;
  border: 1px solid #ece5dc;
  text-align: left;
}

.quiz-pack__thumb {
  width: 48px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f0ebe4;
}

.quiz-pack__item-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.quiz-pack__item-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.quiz-pack__item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #8B4513;
  white-space: nowrap;
}

.quiz-slide__pack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 480px;
  padding: 0.75rem 0;
  border-top: 2px solid #ece5dc;
  font-size: 1rem;
  font-weight: 600;
}

.quiz-slide__pack-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8B4513;
}

.quiz-slide__pack-shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 480px;
  padding: 0.4rem 0 0.2rem;
  font-size: 0.9rem;
  color: #555;
}

.quiz-slide__pack-shipping-old {
  color: #999;
  font-size: 0.85rem;
  margin-right: 0.4rem;
}

.quiz-slide__pack-shipping-free {
  color: #2e7d32;
  font-size: 0.95rem;
}

.quiz-slide__pack-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  width: 100%;
  max-width: 480px;
  background: #f0faf3;
  border: 1px solid #c8e6c9;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  margin-top: 0.25rem;
}

.quiz-slide__pack-guarantee-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.quiz-slide__pack-guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.quiz-slide__pack-guarantee-text strong {
  font-size: 0.85rem;
  color: #1a1a1a;
}

.quiz-slide__pack-guarantee-text span {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

.quiz-carousel-add-all {
  width: 100%;
  max-width: 480px;
}
.quiz-carousel-add-all .push-btn__surface {
  width: 100%;
  font-size: 1rem;
}

.quiz-carousel-next--link {
  background: none;
  border: none;
  color: #8B4513;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quiz-carousel-next--link:hover {
  opacity: 0.7;
}

/* ── Final CTA slide (video + text) ── */
.quiz-slide--final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.quiz-final__video {
  width: 100%;
  max-height: 45vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: #000;
}

.quiz-final__text {
  max-width: 520px;
  background: #fdf6ee;
  border-left: 4px solid #E07A5F;
  border-radius: 8px;
  padding: 1rem 1.2rem;
}

.quiz-final__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.quiz-final__desc {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.quiz-carousel-close {
  width: 100%;
  max-width: 480px;
}
.quiz-carousel-close .push-btn__surface {
  width: 100%;
  font-size: 1rem;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .quiz-slide__card {
    flex-direction: column;
  }
  .quiz-slide__image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .quiz-slide__badge svg {
    width: 58px;
    height: 58px;
  }
  .quiz-slide__badge .sticker__text {
    font-size: 0.85rem;
  }
  .quiz-slide__info {
    padding: 1rem;
  }
  .quiz-slide__title {
    font-size: 1rem;
  }
  .quiz-slide__price {
    font-size: 1.1rem;
  }
  .quiz-pack__thumb {
    width: 40px;
    height: 52px;
  }
  .quiz-slide--final {
    gap: 0.75rem;
  }
  .quiz-final__video {
    border-radius: 8px;
  }
  .quiz-final__title {
    font-size: 1.1rem;
  }
  .quiz-final__desc {
    font-size: 0.85rem;
  }
  .quiz-carousel-close .push-btn__surface {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}