@import 'base.css';

/* ── Quiz Wrapper ────────────────────────────────────────────────────────── */
.vdx-quiz-wrapper {
  background: #fff;
  border-radius: var(--vdx-radius-lg);
  box-shadow: var(--vdx-shadow-lg);
  max-width: 720px;
  margin: 40px auto;
  overflow: hidden;
  font-family: var(--vdx-font-body);
}

/* ── Progress Bar ─────────────────────────────────────────────────────── */
.vdx-quiz-progress {
  background: var(--vdx-green-light);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.vdx-quiz-progress-bar-track {
  flex: 1;
  background: #c8e6c9;
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
}
.vdx-quiz-progress-bar {
  height: 100%;
  background: var(--vdx-green);
  border-radius: 99px;
  width: 0%;
  transition: width .4s ease;
}
.vdx-quiz-progress-text {
  font-size: 13px;
  color: var(--vdx-green-dark);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Step Container ──────────────────────────────────────────────────── */
.vdx-quiz-step {
  padding: 44px 40px 24px;
  animation: vdx-slide-in .3s ease;
}
@keyframes vdx-slide-in {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.vdx-quiz-step-emoji {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.vdx-quiz-question {
  font-family: var(--vdx-font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--vdx-green-dark);
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.3;
}
.vdx-quiz-subtitle {
  font-size: 15px;
  color: var(--vdx-text-muted);
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.5;
}

/* ── Options Grid ─────────────────────────────────────────────────── */
.vdx-quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}
.vdx-quiz-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 2px solid var(--vdx-border);
  border-radius: var(--vdx-radius);
  background: #fff;
  cursor: pointer;
  font-family: var(--vdx-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--vdx-text);
  text-align: center;
  transition: all var(--vdx-transition);
  line-height: 1.4;
}
.vdx-quiz-option:hover {
  border-color: var(--vdx-green);
  background: var(--vdx-green-light);
  transform: translateY(-2px);
}
.vdx-quiz-option.selected {
  border-color: var(--vdx-green);
  background: var(--vdx-green-light);
  color: var(--vdx-green-dark);
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(46,125,50,.15);
}
.vdx-quiz-option-icon { font-size: 32px; line-height: 1; }
.vdx-quiz-option-label { font-size: 14px; }

/* ── Lead Capture Step ────────────────────────────────────────────── */
.vdx-quiz-lead-form { display: flex; flex-direction: column; gap: 12px; max-width: 440px; margin: 0 auto; }
.vdx-quiz-lead-form .vdx-input { font-size: 15px; }

/* ── Navigation ────────────────────────────────────────────────── */
.vdx-quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px 32px;
  gap: 12px;
}

/* ── Results Panel ─────────────────────────────────────────────── */
.vdx-quiz-results {
  padding: 40px;
  animation: vdx-slide-in .4s ease;
}
.vdx-results-header { text-align: center; margin-bottom: 32px; }
.vdx-results-header h2 {
  font-family: var(--vdx-font-display);
  font-size: 32px;
  color: var(--vdx-green-dark);
  margin: 0 0 8px;
}
.vdx-results-header p { color: var(--vdx-text-muted); font-size: 16px; }

.vdx-discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--vdx-gold) 0%, #e65100 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  margin: 12px 0 28px;
  letter-spacing: 1px;
}

.vdx-recommended-products { display: flex; flex-direction: column; gap: 16px; }
.vdx-rec-product {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--vdx-border);
  border-radius: var(--vdx-radius);
  background: var(--vdx-cream);
  text-decoration: none;
  color: inherit;
  transition: all var(--vdx-transition);
}
.vdx-rec-product:hover {
  border-color: var(--vdx-green);
  background: var(--vdx-green-light);
  transform: translateX(4px);
}
.vdx-rec-product-img {
  width: 72px;
  height: 72px;
  border-radius: var(--vdx-radius-sm);
  object-fit: cover;
  background: var(--vdx-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.vdx-rec-product-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--vdx-gold);
  margin-bottom: 4px;
}
.vdx-rec-product-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--vdx-green-dark);
  margin: 0 0 4px;
}
.vdx-rec-product-price { font-size: 14px; color: var(--vdx-text-muted); }
.vdx-rec-product-arrow { margin-left: auto; font-size: 20px; color: var(--vdx-green); }

/* ── Popup Variant ─────────────────────────────────────────────── */
.vdx-quiz--popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.vdx-quiz--popup .vdx-quiz-wrapper {
  max-height: 90vh;
  overflow-y: auto;
  margin: 0;
  width: 100%;
  max-width: 680px;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .vdx-quiz-step    { padding: 28px 20px 16px; }
  .vdx-quiz-nav     { padding: 12px 20px 24px; }
  .vdx-quiz-results { padding: 28px 20px; }
  .vdx-quiz-options { grid-template-columns: 1fr 1fr; }
}
