/* Шаг 3 — выбор номинального тока (плитки как шаги 1–2) */

.ms-wizard #quest03 #Al-tok,
.ms-wizard #quest03 #Cu-tok {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1rem;
  width: 100%;
}

@media (max-width: 992px) {
  .ms-wizard #quest03 #Al-tok,
  .ms-wizard #quest03 #Cu-tok {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .ms-wizard #quest03 #Al-tok,
  .ms-wizard #quest03 #Cu-tok {
    grid-template-columns: 1fr;
  }
}

.ms-wizard #quest03 #Al-tok > .ms-col-3,
.ms-wizard #quest03 #Cu-tok > .ms-col-3 {
  flex: none;
  max-width: none;
  width: auto;
  padding: 0;
}

.ms-wizard #quest03 .quest-answer {
  padding: 0;
  max-width: none;
  margin: 0;
  height: 100%;
}

.ms-wizard #quest03 .responsive-box::before {
  display: none;
}

.ms-wizard #quest03 .responsive-box {
  position: static;
  overflow: visible;
  height: 100%;
}

.ms-wizard #quest03 .product-content {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 11rem;
  height: 100%;
  padding: 1.1rem 1rem;
  background: var(--site-glass-bg, #fff);
  border: 1px solid var(--site-glass-border, var(--border));
  border-radius: var(--site-radius-sm);
  box-shadow: var(--site-glass-shadow, var(--shadow));
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ms-wizard #quest03 .product-content:hover {
  border-color: var(--primary);
  box-shadow: var(--site-shadow-hover);
  transform: translateY(-1px);
}

.ms-wizard #quest03 .picture,
.ms-wizard #quest03 .picture img {
  display: none !important;
}

.ms-wizard #quest03 .title {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent !important;
  color: var(--text) !important;
}

.ms-wizard #quest03 .title h4 {
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--text);
  line-height: 1.2;
}

.ms-wizard #quest03 .title .text {
  width: auto;
  font-family: "PT Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.45;
}

.ms-wizard #quest03 .ramka {
  margin: 0;
  border: none;
  height: 100%;
}

.ms-wizard #quest03 .quest-answer:hover .ramka {
  border: none;
  margin: 0;
}

.ms-wizard #quest03 .quest-hint {
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin: 1.25rem 0 0.5rem;
}

.ms-wizard #quest03 .question h3 {
  text-align: left;
}

/* скрыть подсказки-заглушки под кнопками */
.ms-wizard #quest01 .quest-hint,
.ms-wizard #quest02 .quest-hint,
.ms-wizard #quest03 .quest-hint {
  display: none;
}
