.ix-c { background: var(--cream); padding: 96px 0 120px; }
.ix-c__head { text-align: center; margin-bottom: 48px; }
.ix-c__head h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(32px, 5vw, 60px); margin: 0; }

.ix-c__quiz {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  min-height: 440px;
}
.ix-c__q {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ix-c__q.is-active { display: block; opacity: 1; transform: translateY(0); }

.ix-c__q-label { color: var(--teal); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.ix-c__q h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(24px, 3vw, 34px); margin: 0 0 28px; line-height: 1.15; }
.ix-c__options { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 769px) { .ix-c__options { grid-template-columns: repeat(3, 1fr); } }

.ix-c__opt {
  text-align: left;
  padding: 20px 22px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  line-height: 1.25;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.ix-c__opt:hover { border-color: var(--teal); transform: translateY(-2px); background: var(--white); }
.ix-c__opt span { display: block; color: var(--ink-muted); font-family: var(--font-sans); font-size: 13px; font-weight: 400; margin-top: 6px; }

.ix-c__result p { color: var(--ink-muted); font-size: 16px; margin: 0 0 24px; max-width: 560px; }
.ix-c__result-product {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  max-width: 420px;
}
.ix-c__result-product img { width: 70px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; }
.ix-c__result-product h4 { font-family: var(--font-serif); font-weight: 400; font-size: 20px; margin: 0; color: var(--navy); }
.ix-c__price { font-size: 15px; color: var(--ink-muted); }

.ix-c__restart {
  display: inline-block;
  margin-left: 20px;
  background: none;
  border: 0;
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}
.ix-c__restart:hover { text-decoration: underline; }
