/* configurator.css — стили для страниц молний и конфигуратора */

/* ══════════════════════════════════════════════════════════
   СТРАНИЦА МОЛНИЙ (page-zippers.php) — новый дизайн
   ══════════════════════════════════════════════════════════ */

/* ─── HERO ─────────────────────────────────────────────── */
.zp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}
.zp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.zp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.15) 100%);
}
.zp-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 80px) 44px 80px;
  max-width: 700px;
}
.zp-hero-title {
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #f5f5f7;
  margin: 16px 0 20px;
}
.zp-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  font-weight: 400;
}

/* ─── МЕТАЛЛЫ ───────────────────────────────────────────── */
.zp-metals {
  padding: 100px 0;
  background: #fff;
}
.zp-metals-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zp-metals-preview-col { position: relative; }
.zp-metals-preview {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  background: #f2f2f7;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.zp-metal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.zp-metal-img.active { opacity: 1; }
.zp-metal-label {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

.zp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.zp-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sc, #ccc);
  border: 2.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  flex-shrink: 0;
}
.zp-swatch:hover { transform: scale(1.12); }
.zp-swatch.active {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--sc, #999);
  transform: scale(1.08);
}

/* ─── КАТАЛОГ ───────────────────────────────────────────── */
.zp-catalog {
  padding: 100px 0;
  background: #f5f5f7;
}
.zp-catalog-head { margin-bottom: 52px; }

.zp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.zp-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  cursor: default;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.zp-card--dark { background: #1d1d1f; }
.zp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.zp-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e8e8ed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zp-card--dark .zp-card-img { background: #2c2c2e; }
.zp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
  transition: transform 0.5s var(--ease-out);
}
.zp-card:hover .zp-card-img img { transform: scale(1.04); }

.zp-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--apple-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 980px;
  letter-spacing: 0.02em;
}

.zp-card-body {
  padding: 20px;
}
.zp-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.zp-card--dark .zp-card-title { color: #f5f5f7; }
.zp-card-sub {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 14px;
}
.zp-card--dark .zp-card-sub { color: rgba(255,255,255,0.45); }
.zp-card-link {
  font-size: 13px;
  color: var(--apple-blue);
  font-weight: 500;
}
.zp-card-link:hover { text-decoration: underline; }

/* ─── ТИПЫ ──────────────────────────────────────────────── */
.zp-types {
  padding: 100px 0;
  background: #fff;
}
.zp-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.zp-type-card {
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f7;
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.zp-type-icon {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.zp-type-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zp-type-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 20px 20px 8px;
  color: var(--text-primary);
}
.zp-type-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 20px 20px;
  line-height: 1.5;
}

/* ─── CTA ───────────────────────────────────────────────── */
.zp-cta {
  padding: 120px 0;
  background: #000;
  text-align: center;
}
.zp-cta-inner { max-width: 680px; margin: 0 auto; }
.zp-cta .section-title { color: #f5f5f7; }
.zp-cta .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto 36px; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1000px) {
  .zp-grid { grid-template-columns: repeat(2, 1fr); }
  .zp-types-grid { grid-template-columns: repeat(3, 1fr); }
  .zp-metals-inner { grid-template-columns: 1fr; gap: 40px; }
  .zp-metals-preview { max-width: 400px; margin: 0 auto; aspect-ratio: 1/1; }
}
@media (max-width: 768px) {
  .zp-hero { min-height: 70vh; }
  .zp-hero-content { padding: calc(var(--nav-height) + 40px) 20px 60px; }
  .zp-metals { padding: 60px 0; }
  .zp-catalog { padding: 60px 0; }
  .zp-types { padding: 60px 0; }
  .zp-cta { padding: 80px 0; }
  .zp-types-grid { grid-template-columns: 1fr; gap: 14px; }
  .zp-type-icon { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .zp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .zp-card-body { padding: 14px; }
  .zp-hero-overlay { background: rgba(0,0,0,0.55); }
}

/* palvini-label (используется и в конфиге) */
.palvini-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  background: rgba(255,255,255,0.08);
  padding: 8px 4px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   КОНФИГУРАТОР (page-configurator.php)
   ══════════════════════════════════════════════════════════ */

/* ─── HERO ─────────────────────────────────────────────── */
.cfg-hero {
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}

.cfg-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 80px) 44px 60px;
  max-width: 900px;
}

.cfg-hero-content .section-label { color: var(--apple-blue); }

.cfg-hero-title {
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: #f5f5f7;
  margin: 16px 0 24px;
}

.cfg-hero-sub {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 36px;
}

.cfg-hero-zips {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  height: 320px;
  position: relative;
  z-index: 1;
}

.cfg-zip {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
}

/* ─── FEATURE CARDS ─────────────────────────────────────── */
.cfg-feat-section {
  padding: 80px 0 0;
  background: #fff;
  overflow: hidden;
}

.cfg-feat-head {
  padding: 0 44px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.cfg-feat-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 80px;
}
.cfg-feat-track-wrap::-webkit-scrollbar { display: none; }
.cfg-feat-track-wrap.is-grabbing { cursor: grabbing; }

.cfg-feat-track {
  display: flex;
  gap: 12px;
  padding: 0 44px;
  width: max-content;
  scroll-snap-type: x mandatory;
}

.cfg-feat-card {
  flex-shrink: 0;
  width: 300px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 28px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cfg-feat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.18); }

.cfg-feat-card--dark  { background: #111; }
.cfg-feat-card--blue  { background: #0071e3; }
.cfg-feat-card--navy  { background: #1a2b4a; }
.cfg-feat-card--light { background: #f5f5f7; }

.cfg-feat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cfg-feat-card--dark  .cfg-feat-label,
.cfg-feat-card--blue  .cfg-feat-label,
.cfg-feat-card--navy  .cfg-feat-label { color: rgba(255,255,255,0.55); }
.cfg-feat-card--light .cfg-feat-label { color: var(--apple-blue); }

.cfg-feat-title {
  font-size: clamp(24px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
}
.cfg-feat-card--dark .cfg-feat-title,
.cfg-feat-card--blue .cfg-feat-title,
.cfg-feat-card--navy .cfg-feat-title { color: #fff; }
.cfg-feat-card--light .cfg-feat-title { color: #1d1d1f; }

.cfg-feat-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.cfg-feat-dots span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.cfg-feat-nums {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.25);
}

.cfg-feat-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 980px;
  background: rgba(0,0,0,0.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--apple-blue);
  align-self: flex-start;
}

/* ─── ТЕЛО КОНФИГУРАТОРА ────────────────────────────────── */

.cfg-body {
  padding: 80px 0 100px;
  background: #fff;
}

.cfg-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: start;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Превью (sticky) */
.cfg-preview-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.cfg-preview {
  border-radius: 20px;
  overflow: hidden;
  background: #f2f2f7;
  aspect-ratio: 3/4;
  position: relative;
}

.cfg-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.cfg-preview-mock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cfg-mock-zipper {
  width: 70px;
  height: 75%;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--metal-color, #A8A9AD) 70%, #000) 0%,
    var(--metal-color, #A8A9AD) 40%,
    color-mix(in srgb, var(--metal-color, #A8A9AD) 70%, #fff) 60%,
    var(--metal-color, #A8A9AD) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.3);
  transition: background 0.4s ease;
}

.cfg-preview-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-secondary);
}

.badge-sep { color: var(--gray-mid); }

/* Шаги */
.cfg-steps { display: flex; flex-direction: column; gap: 0; }

.cfg-step {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.cfg-step:last-of-type { border-bottom: none; }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--apple-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body { flex: 1; }

.step-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* Свотчи в конфигураторе */
.cfg-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cfg-swatch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 980px;
  border: 1.5px solid var(--gray-mid);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: nowrap;
  outline: none;
}

.cfg-swatch:hover { border-color: var(--black); }

.cfg-swatch.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.swatch-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--swatch-color, #ccc);
  flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4) inset;
}

/* Карточки типа молнии / звена */
.type-options,
.chain-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cfg-option-card,
.cfg-chain-btn {
  border: 1.5px solid var(--gray-mid);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  padding: 16px 20px;
  min-width: 120px;
  box-sizing: border-box;
  outline: none;
}

.cfg-option-card:hover,
.cfg-chain-btn:hover { border-color: var(--black); }

.cfg-option-card.active,
.cfg-chain-btn.active {
  border-color: var(--apple-blue);
  background: rgba(0,113,227,0.06);
  box-shadow: 0 0 0 2px var(--apple-blue);
}

.option-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 2px;
}

.option-sub {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
}

/* Кнопки номера */
.num-options { display: flex; gap: 8px; flex-wrap: wrap; }

.cfg-num-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-mid);
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
  outline: none;
}

.cfg-num-btn:hover { border-color: var(--black); }

.cfg-num-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cfg-num-btn:disabled,
.cfg-num-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Поле ввода длины + ползунок */
.length-slider-wrap  { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 420px; }
.length-slider-row   { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.length-input-row    { display: flex; align-items: center; gap: 10px; }
.length-input-wrap   { display: flex; align-items: center; gap: 10px; }

.length-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 0 2px;
}

/* Range slider — Apple-style */
.cfg-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-mid);
  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 8px 0 2px;
}
.cfg-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--apple-blue, #0071e3);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,113,227,.35);
  transition: transform .15s ease;
}
.cfg-range::-webkit-slider-thumb:hover  { transform: scale(1.15); }
.cfg-range::-webkit-slider-thumb:active { transform: scale(1.05); }
.cfg-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--apple-blue, #0071e3);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,113,227,.35);
}

.cfg-input {
  padding: 13px 18px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
  max-width: 240px;
  -webkit-appearance: none;
}
.cfg-input--sm { max-width: 110px; text-align: center; }

.cfg-input:focus { border-color: var(--black); }

.input-unit {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Подсказка */
.step-hint {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 10px;
  line-height: 1.5;
}

.hint-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--gray-mid);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-right: 4px;
}

/* Полировка */
.polish-options { display: flex; gap: 10px; }

.cfg-option-pill {
  padding: 10px 20px;
  border-radius: 980px;
  border: 1.5px solid var(--gray-mid);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
  white-space: nowrap;
  outline: none;
}

.cfg-option-pill:hover { border-color: var(--black); }

.cfg-option-pill.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ─── ЦЕНА ─────────────────────────────────────────────── */
.cfg-price-block {
  background: #f5f5f7;
  border-radius: 20px;
  padding: 36px 32px;
  margin: 8px 0 32px;
}

.price-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.price-per { font-weight: 400; }

.price-value {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--apple-blue);
}

.price-note {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ─── ФОРМА ЗАКАЗА ─────────────────────────────────────── */
.cfg-order-form {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 24px;
}

.order-form-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.order-form-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Подсказки (заметки) ──────────────────────────────── */
.cfg-notes { display: flex; flex-direction: column; gap: 10px; }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1000px) {
  .cfg-layout {
    grid-template-columns: 1fr;
  }

  .cfg-preview-wrap {
    position: static;
    width: 260px;
    margin: 0 auto 28px;
  }

  /* Жёсткие px — размер никогда не меняется */
  .cfg-preview {
    aspect-ratio: unset;
    width: 260px;
    height: 347px;
  }
}

@media (max-width: 400px) {
  .cfg-preview-wrap { width: 200px; }
  .cfg-preview { width: 200px; height: 267px; }
}

@media (max-width: 768px) {
  .cfg-hero { min-height: auto; }
  .cfg-hero-content { padding: calc(var(--nav-height) + 60px) 20px 40px; }
  .cfg-hero-title { font-size: clamp(48px, 12vw, 90px); }
  .cfg-hero-sub { font-size: 17px; }
  .cfg-hero-zips { height: 200px; max-width: 500px; }

  .cfg-feat-section { padding: 60px 0 0; }
  .cfg-feat-head { padding: 0 20px 36px; }
  .cfg-feat-track { padding: 0 20px; }
  .cfg-feat-card { width: 220px; height: 300px; padding: 20px; }
  .cfg-feat-title { font-size: 20px; }

  .cfg-body { padding: 60px 0 80px; }

  .type-options, .chain-options { flex-wrap: wrap; }

  .zippers-hero-text { padding: 60px 20px; }
  .metals-section { padding: 60px 20px; }
  .types-section { padding: 60px 0; }
  .types-section .container { padding: 0 20px; }

  .price-value { font-size: 44px; }
  .cfg-order-form { padding: 24px 20px; }
  .cfg-price-block { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .cfg-hero-title { font-size: clamp(40px, 13vw, 72px); }
  .cfg-hero-zips { height: 160px; max-width: 400px; }
  .cfg-feat-card { width: 175px; height: 260px; padding: 16px; }
  .cfg-feat-title { font-size: 17px; }
  .type-options, .chain-options { gap: 8px; }
  .cfg-option-card, .cfg-chain-btn { min-width: calc(50% - 4px); }
  .cfg-num-btn { width: 44px; height: 44px; font-size: 15px; }
}
