.test-hero .shop-hero__image {
  object-position: center;
}

.test-shell {
  width: min(1040px, 92%);
  margin: 0 auto;
  padding: 74px 0 96px;
}

.test-paper {
  min-height: 560px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(192, 169, 92, 0.5);
  background:
    radial-gradient(circle at 12% 12%, rgba(211, 189, 122, 0.08), transparent 30%),
    linear-gradient(145deg, rgba(31, 32, 19, 0.98), rgba(12, 14, 8, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.test-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 42px;
  color: var(--moss-light);
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.test-progress__track {
  height: 1px;
  background: rgba(192, 169, 92, 0.28);
}

.test-progress__track span {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--gold-light);
  transition: width 0.35s ease;
}

.test-question {
  max-width: 820px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
}

.test-options {
  margin-top: 38px;
  display: grid;
  gap: 12px;
}

.test-option {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(192, 169, 92, 0.28);
  background: rgba(9, 11, 6, 0.56);
  color: rgba(216, 209, 174, 0.82);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.test-option span:first-child {
  color: var(--gold);
  letter-spacing: 1px;
}

.test-option:hover,
.test-option.is-selected {
  border-color: rgba(211, 189, 122, 0.72);
  background: rgba(182, 153, 83, 0.12);
  color: var(--cream);
}

.test-actions {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.test-button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(182, 153, 83, 0.75);
  background: var(--gold);
  color: #101108;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.test-button--ghost {
  background: transparent;
  color: var(--gold-light);
}

.test-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.test-result {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(192, 169, 92, 0.5);
  background: linear-gradient(145deg, rgba(31, 32, 19, 0.98), rgba(12, 14, 8, 0.98));
}

.test-result__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.test-result__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(192, 169, 92, 0.42);
  filter: brightness(0.9) saturate(0.94) contrast(1.04);
}

.test-result__icon {
  margin-bottom: 14px;
  font-size: 58px;
}

.test-result h2 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.95;
}

.test-result p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(216, 209, 174, 0.78);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.test-score {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(192, 169, 92, 0.28);
}

.test-score div {
  padding: 14px;
  border-right: 1px solid rgba(192, 169, 92, 0.28);
  border-bottom: 1px solid rgba(192, 169, 92, 0.28);
  color: var(--cream-muted);
  font-size: 12px;
  letter-spacing: 1px;
}

.test-score strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
}

.test-result__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 700px) {
  .test-shell {
    padding: 54px 0 70px;
  }

  .test-progress {
    grid-template-columns: 1fr;
  }

  .test-option {
    grid-template-columns: 28px 1fr;
  }

  .test-actions {
    flex-direction: column-reverse;
  }

  .test-button {
    width: 100%;
  }

  .test-result__actions {
    flex-direction: column;
  }

  .test-score {
    grid-template-columns: 1fr;
  }

  .test-result__layout {
    grid-template-columns: 1fr;
  }

  .test-result__image {
    aspect-ratio: 16 / 11;
  }
}
