/* Miniatur Wunderland booking — pixel-close static clone */
:root {
  --mw-navy: #002040;
  --mw-ink: #1a2b49;
  --mw-red: #f94c2c;
  --mw-red-deep: #c82a0d;
  --mw-blue: #58a6d8;
  --mw-sky: #e8f4f8;
  --mw-muted: #6a7682;
  --mw-line: #d9e0e6;
  --mw-card: #ffffff;
  --font: "Roboto", "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body.mw-book {
  font-family: var(--font);
  color: var(--mw-ink);
  background: #2a2f36 url("/assets/img/worlds/hamburg.jpg") center/cover fixed;
  background-color: #2a2f36;
}
body.mw-book::before {
  content: "";
  position: fixed; inset: 0;
  background: rgba(30, 34, 40, .55);
  backdrop-filter: grayscale(1) contrast(1.05);
  pointer-events: none;
  z-index: 0;
}
.mw-top {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
}
.mw-top a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 10px; font-weight: 700; }
.mw-top img { height: 42px; width: auto; }
.mw-lang { font-size: 14px; letter-spacing: .04em; }
.mw-lang strong { color: #fff; }
.mw-lang span { color: rgba(255,255,255,.7); margin: 0 4px; }

.mw-wrap {
  position: relative; z-index: 1;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 48px;
}

.mw-top a { color: #fff; }
.mw-top a:hover { opacity: .92; }

.mw-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, .95fr);
  gap: 18px;
  align-items: stretch;
}
.mw-grid > * { min-width: 0; }
@media (max-width: 920px) {
  .mw-grid { grid-template-columns: 1fr; }
}

.mw-card {
  background: var(--mw-card);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  padding: 22px 24px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mw-card--sky { background: var(--mw-sky); }
.mw-card__media {
  margin: 18px -24px -26px;
  height: 170px;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  flex: 0 0 auto;
  background: #d9e6ee;
  position: relative;
  z-index: 0;
}
.mw-card--hub-main .mw-center {
  margin-top: 18px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.mw-card--hub-main .mw-card__media {
  margin-top: 12px;
  height: 190px;
}
.mw-card__media img,
.mw-card > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mw-card > img {
  margin-top: 14px;
  border-radius: 12px;
  height: 140px;
}
.mw-ribbon {
  display: inline-block;
  background: var(--mw-blue);
  color: #111;
  border: 2px solid #111;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 8px 14px;
  transform: rotate(-3deg);
  margin: 0 0 16px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.15);
}
.mw-h-red {
  margin: 0 0 18px;
  color: var(--mw-red);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-align: center;
}
.mw-h-navy {
  margin: 0 0 10px;
  color: var(--mw-navy);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}
.mw-lead { margin: 0 0 12px; line-height: 1.45; font-size: 15px; }
.mw-lead strong { font-weight: 700; }

.mw-btn {
  appearance: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.mw-btn--pill {
  color: #fff;
  background: linear-gradient(180deg, #f94c2c 0%, #f94c2c 33%, #c82a0d 100%);
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: 0 4px 0 #4b0600;
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
  font-size: 17px;
}
.mw-btn--pill:active { transform: translateY(2px); box-shadow: 0 2px 0 #4b0600; }
.mw-btn--pill:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.mw-btn--ghost {
  background: #fff;
  color: var(--mw-navy);
  border: 2px solid var(--mw-navy);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
}
.mw-btn--navy {
  background: var(--mw-navy);
  color: #fff;
  border-radius: 8px;
  padding: 12px 18px;
}
.mw-center { display: flex; justify-content: center; margin-top: 18px; }

/* Date calendar */
.mw-cal__nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.mw-cal__month { font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.mw-cal__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: var(--mw-navy); color: #fff;
  font-size: 22px; cursor: pointer;
}
.mw-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.mw-cal__dow {
  text-align: center; font-size: 12px; font-weight: 700; color: var(--mw-muted);
  padding: 4px 0;
}
.mw-cal__day {
  min-height: 64px;
  border: 1px solid var(--mw-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 6px 4px;
  font: inherit;
  color: var(--mw-ink);
}
.mw-cal__day:disabled { opacity: .35; cursor: not-allowed; background: #f3f5f7; }
.mw-cal__day.is-on {
  border-color: var(--mw-red);
  box-shadow: inset 0 0 0 2px var(--mw-red);
}
.mw-cal__day strong { display: block; font-size: 15px; }
.mw-cal__day small { display: block; font-size: 10px; color: var(--mw-muted); margin-top: 2px; line-height: 1.2; }

/* Price categories */
.mw-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 14px;
  padding-bottom: 8px;
}
@media (max-width: 720px) {
  .mw-cats { grid-template-columns: 1fr 1fr; }
}
.mw-cat { text-align: center; position: relative; z-index: 1; }
#step-persons .mw-card {
  padding-bottom: 36px;
}
#step-persons .mw-center {
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
#step-persons #btn-select-tickets {
  position: relative;
  z-index: 2;
}
.mw-cat__icon {
  width: 64px; height: 64px; margin: 0 auto 10px;
  display: grid; place-items: center;
}
.mw-cat__icon img {
  width: 56px; height: 56px; object-fit: contain; display: block;
}
.mw-cat__title { font-weight: 800; font-size: 14px; margin: 0 0 2px; }
.mw-cat__info {
  display: inline-grid; place-items: center;
  width: 16px; height: 16px; margin-left: 4px;
  border-radius: 50%; background: var(--mw-navy); color: #fff;
  font-size: 11px; font-weight: 700; vertical-align: middle;
}
.mw-cat__price { color: var(--mw-muted); font-size: 13px; margin: 0 0 10px; }
.mw-stepper {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  max-width: 150px;
  margin: 0 auto;
  border: 1px solid var(--mw-line);
  border-radius: 10px;
  overflow: hidden;
  background: #f4f6f8;
}
.mw-stepper button {
  border: 0; height: 40px; cursor: pointer; font-size: 20px; font-weight: 700;
}
.mw-stepper button:first-child { background: #dfe4ea; color: #555; }
.mw-stepper button:last-child { background: var(--mw-navy); color: #fff; }
.mw-stepper span {
  display: grid; place-items: center;
  background: #fff; font-weight: 700;
}

/* Ticket type cards */
/* ---- Ticket type step (official layout) ---- */
.mw-tickets-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px) {
  .mw-tickets-layout { grid-template-columns: 1fr; }
}
.mw-card--date { position: relative; overflow: visible; padding-top: 28px; }
.mw-card__figur {
  position: absolute; right: 12%; top: -52px;
  width: 150px; height: auto; pointer-events: none; z-index: 3;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
}
@media (max-width: 640px) {
  .mw-card__figur { width: 110px; right: 8px; top: -40px; }
}
.mw-h-red--left {
  text-align: left !important;
  margin-bottom: 14px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.mw-datebar {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin: 4px 0 14px;
}
.mw-datebar__center { text-align: center; }
.mw-datebar__day {
  margin: 0; font-weight: 800; font-size: 22px;
  color: var(--mw-navy); text-transform: uppercase; letter-spacing: .02em;
}
.mw-datebar__hours { margin: 4px 0 0; color: var(--mw-navy); font-size: 14px; font-weight: 600; }
.mw-chev {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  color: var(--mw-navy); font-size: 42px; line-height: 1; padding: 0 6px;
  font-weight: 300;
}
.mw-chev:hover { color: var(--mw-red); }

.mw-wait { margin-top: 6px; }
.mw-wait__label { font-size: 13px; color: #5a6570; margin-bottom: 8px; }
.mw-wait__chart {
  position: relative;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef1f4 0%, #e4e9ee 100%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.mw-wait__chart svg { width: 100%; height: 100%; display: block; }
.mw-wait__tip {
  position: absolute; left: 16%; top: 4px;
  background: #edf1f5; border: 1px solid #c9d2db;
  border-radius: 999px; padding: 3px 11px;
  font-size: 12px; font-weight: 700; color: var(--mw-navy);
  white-space: nowrap; z-index: 2;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.mw-wait__axis {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--mw-muted); margin-top: 6px;
  padding: 0 2px;
}

.mw-tickets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 860px) {
  .mw-tickets { grid-template-columns: 1fr; }
}

.mw-ticket {
  border: 0;
  border-radius: 16px;
  padding: 0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
}
.mw-ticket__media {
  height: 140px;
  background: #dfe6ee;
  overflow: hidden;
}
.mw-ticket__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.mw-ticket__body { padding: 14px 16px 14px; display: flex; flex-direction: column; flex: 1; }
.mw-ticket h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.25;
  color: var(--mw-navy);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 800;
}
.mw-ticket ul {
  margin: 0 0 12px; padding-left: 18px;
  color: #222; font-size: 13px; line-height: 1.4;
  flex: 1 1 auto;
}
.mw-avail {
  background: #eef1f4;
  border-radius: 10px;
  padding: 10px 12px 8px;
}
.mw-avail__label { font-size: 12px; color: #666; margin: 0 0 8px; }
.mw-avail__bar {
  display: grid; grid-template-columns: repeat(36, 1fr); gap: 2px; height: 16px;
}
.mw-avail__bar i { display: block; border-radius: 2px; background: #f2a89a; }
.mw-avail__bar i.on { background: #3aa66a; }
.mw-ticket__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: 12px; flex-wrap: wrap;
}
.mw-ticket__price {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 17px; color: var(--mw-navy);
}
.mw-ticket__price img { width: 20px; height: 20px; }
.mw-ticket__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.mw-btn--book {
  color: #fff;
  background: linear-gradient(180deg, #f94c2c 0%, #f94c2c 40%, #c82a0d 100%);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 3px 0 #4b0600;
  font-size: 12px;
  white-space: nowrap;
}
.mw-btn--infos {
  background: #fff;
  color: var(--mw-navy);
  border: 2px solid var(--mw-navy);
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 11px;
}

/* Orange CART sidebar (official) */
.mw-cart-panel {
  position: sticky; top: 16px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  display: none;
}
.mw-cart-panel.is-on { display: block; }
.mw-cart-panel__head {
  background: #ff5030;
  color: #fff;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 12px 14px;
  font-size: 15px;
}
.mw-cart-panel__body { padding: 12px 14px 16px; }
.mw-cart-panel__timer { margin: 0 0 12px; font-size: 13px; color: #555; }
.mw-cart-panel__item {
  display: grid; grid-template-columns: 64px 1fr; gap: 10px;
  margin-bottom: 8px; font-size: 13px;
}
.mw-cart-panel__item img {
  width: 64px; height: 48px; object-fit: cover; border-radius: 6px;
}
.mw-cart-panel__del {
  appearance: none; border: 0; background: transparent;
  color: #a00; font-size: 12px; cursor: pointer; margin: 0 0 10px; padding: 0;
  text-decoration: underline;
}

/* Slot modal */
.mw-slot-panel { max-width: 560px; padding: 0; overflow: hidden; }
.mw-slot-panel__head {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  align-items: center;
  background: var(--mw-sky);
  padding: 16px 18px;
  position: relative;
}
.mw-slot-panel__head h2 {
  margin: 0; font-size: 18px; color: #111; text-transform: uppercase;
}
.mw-slot-panel__head img {
  width: 120px; height: 70px; object-fit: cover; border-radius: 8px;
}
.mw-slot-panel__x {
  position: absolute; right: 10px; top: 8px;
  border: 0; background: transparent; font-size: 28px; cursor: pointer; line-height: 1;
}
.mw-slot-panel__tabs {
  display: flex; gap: 18px; padding: 10px 18px 0;
  border-bottom: 1px solid #e4e9ee;
}
.mw-slot-panel__tabs span { color: #999; padding-bottom: 8px; }
.mw-slot-panel__tabs strong {
  color: var(--mw-navy); border-bottom: 3px solid var(--mw-navy); padding-bottom: 8px;
}
.mw-slot-panel__hint { padding: 12px 18px; margin: 0; font-size: 14px; color: #444; }
.mw-slot-list { padding: 0 18px 12px; display: grid; gap: 8px; max-height: 360px; overflow: auto; }
.mw-slot {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 8px; align-items: center;
  width: 100%; text-align: left;
  border: 1px solid #d9e0e6; border-radius: 10px;
  background: #fff; padding: 12px; font: inherit; cursor: pointer;
}
.mw-slot.is-sold { opacity: .7; cursor: not-allowed; background: #f7f8fa; }
.mw-slot.is-ok:hover { border-color: var(--mw-navy); }
.mw-slot__time { font-weight: 800; color: var(--mw-navy); }
.mw-slot__note { font-size: 13px; color: #666; }
.mw-slot.is-sold .mw-slot__note { color: #c0392b; }
.mw-slot.is-ok .mw-slot__note { color: #1e7a45; font-weight: 700; }
.mw-slot__price { color: var(--mw-navy); }
#slot-back { margin: 8px 18px 16px; }

.mw-link {
  color: var(--mw-navy); font-weight: 800; text-decoration: none;
  text-transform: uppercase; font-size: 14px;
  display: inline-block;
  margin: 8px 0 4px;
}

/* Cart dock */
.mw-cart {
  position: sticky; bottom: 12px; z-index: 5;
  margin-top: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  padding: 14px 16px;
  display: none;
}
.mw-cart.is-on { display: block; }
.mw-cart__row { display: flex; justify-content: space-between; gap: 12px; margin: 4px 0; font-size: 14px; }
.mw-cart__total { font-size: 18px; font-weight: 800; color: var(--mw-navy); }

/* Modal checkout + PAYONE */
.mw-modal {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(10,16,24,.55);
  display: none; align-items: flex-start; justify-content: center;
  padding: 40px 14px; overflow: auto;
}
.mw-modal.is-open { display: flex; }
.mw-modal__panel {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.mw-modal__panel h2 {
  margin: 0 0 6px; color: var(--mw-navy); font-size: 24px; font-weight: 800;
}
.mw-modal__lead { margin: 0 0 14px; color: var(--mw-muted); font-size: 14px; }
.mw-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; min-width: 0; }
.mw-field label { font-size: 12px; color: var(--mw-muted); font-weight: 600; }
.mw-field input, .mw-field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 42px; border: 1px solid #cfd6dd; border-radius: 6px;
  padding: 0 12px; font: inherit; background: #f7f9fb;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}
.mw-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.mw-errors {
  background: #fff1f0; border: 1px solid #f5c2c0; color: #8a1f1a;
  border-radius: 8px; padding: 10px 12px; margin-bottom: 12px; font-size: 13px;
}
.mw-errors ul { margin: 0; padding-left: 18px; }
.mw-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 8px; }

.mw-pay__h {
  margin: 16px 0 10px; font-size: 18px; font-weight: 800; color: var(--mw-navy);
}
.mw-pay__h::after {
  content: ""; display: block; height: 1px; background: #e4e9ee; margin-top: 10px;
}
.mw-pay__methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.mw-pay__method { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.mw-pay__method input { accent-color: var(--mw-navy); width: 18px; height: 18px; flex: 0 0 auto; }
.mw-pay__fields { display: grid; gap: 12px; min-width: 0; width: 100%; }
.mw-pay__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 12px;
  min-width: 0;
  align-items: end;
}
.mw-pay__exp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
}
.mw-pay__exp input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid #cfd6dd;
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
  background: #f7f9fb;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}
.mw-field--cvc { max-width: 160px; }
.mw-pay__summary { margin-top: 16px; padding-top: 12px; border-top: 1px solid #e4e9ee; min-width: 0; }
.mw-pay__summary-line { margin: 0 0 8px; font-size: 14px; word-break: break-word; }
.mw-pay__summary-row {
  display: flex; justify-content: space-between; gap: 12px;
  font-weight: 700; min-width: 0;
}
.mw-pay__summary-row span { min-width: 0; flex: 1 1 auto; }
.mw-pay__summary-row strong { flex: 0 0 auto; white-space: nowrap; }
.mw-pay__summary-unit { text-align: right; font-size: 12px; color: var(--mw-muted); font-style: italic; }

.mw-splash { display: none; text-align: center; padding: 24px 8px; }
.mw-splash.is-on,
.mw-splash:not([hidden]) { display: block !important; }
.mw-spin {
  width: 42px; height: 42px; margin: 0 auto 14px;
  border: 3px solid #dfe6ee; border-top-color: var(--mw-navy);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mw-otp { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.mw-otp input {
  width: 42px; height: 48px; text-align: center; font-size: 20px; font-weight: 700;
  border: 2px solid var(--mw-navy); border-radius: 8px;
}
[hidden] { display: none !important; }

.mw-more {
  margin-top: 28px;
  background: rgba(232,244,248,.92);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .mw-more { grid-template-columns: 1fr; } }
.mw-more h3 { margin: 0 0 8px; color: var(--mw-navy); font-size: 15px; text-transform: uppercase; }
.mw-more p { margin: 0 0 10px; font-size: 14px; color: #333; }

.mw-step { display: none; }
.mw-step.is-on { display: block; }


/* —— Visitor survey (official /tickets/survey) —— */
.mw-survey-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.mw-survey {
  position: relative;
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  padding: 28px 24px 22px;
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
}
.mw-survey__figur {
  position: absolute;
  top: -52px;
  right: 10px;
  width: 92px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}
.mw-survey__title {
  margin: 0 0 10px;
  color: var(--mw-red);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mw-survey__person {
  margin: 0 0 4px;
  color: var(--mw-navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.mw-survey__slot {
  margin: 0 0 18px;
  color: var(--mw-navy);
  font-size: 14px;
  line-height: 1.4;
}
.mw-survey__field { margin-bottom: 18px; }
.mw-survey__field > label,
.mw-survey__q {
  display: block;
  margin: 0 0 8px;
  color: var(--mw-navy);
  font-size: 15px;
  font-weight: 700;
}
.mw-survey__field select {
  width: 100%;
  height: 46px;
  border: 1px solid #c5ced6;
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  background: #fff;
  color: var(--mw-navy);
}
.mw-survey__radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}
.mw-survey__radio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mw-navy);
  cursor: pointer;
}
.mw-survey__radio input { position: absolute; opacity: 0; pointer-events: none; }
.mw-survey__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #c5ced6;
  background: #eef2f5;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.06);
  position: relative;
}
.mw-survey__radio input:checked + .mw-survey__dot {
  border-color: #222;
}
.mw-survey__radio input:checked + .mw-survey__dot::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #111;
}
.mw-survey__continue {
  width: 100%;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}
.mw-survey__why {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: 0;
  background: rgba(232,244,248,.95);
  color: var(--mw-navy);
  font: inherit;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 16px 12px;
  border-radius: 10px;
  cursor: pointer;
}
.mw-survey-why-panel { max-width: 480px; }
.mw-survey-why-panel__img {
  width: 100%;
  border-radius: 10px;
  margin: 8px 0 14px;
  display: block;
}

/* —— Full-page PAYONE checkout —— */
.mw-paypage-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.mw-paypage {
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,.32);
  overflow-x: hidden;
  max-width: 100%;
  min-width: 0;
}
.mw-paypage__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f5;
}
.mw-paypage__brand strong {
  color: var(--mw-navy);
  font-size: 15px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.mw-paypage__brand span {
  font-size: 12px;
  color: var(--mw-muted);
}
.mw-pay__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mw-navy);
}
.mw-pay__sub {
  margin: 4px 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--mw-navy);
}
.mw-pay__delivery {
  margin: 8px 0 18px;
  padding: 14px 0 4px;
  border-top: 1px solid #e8eef3;
}
.mw-pay__delivery p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mw-muted);
}
.mw-pay__reqnote {
  font-size: 12px !important;
  color: #8a96a3 !important;
}
.mw-field--zip {
  max-width: 140px;
}
@media (max-width: 520px) {
  .mw-field-row { grid-template-columns: 1fr; }
  .mw-field--zip { max-width: none; }
  .mw-pay__row { grid-template-columns: 1fr; }
  .mw-field--cvc { max-width: none; }
}
.mw-paypage__submit {
  width: 100%;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 800;
}
.mw-paypage__back {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--mw-muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  padding: 8px;
}
.mw-paypage-wrap .mw-splash {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.32);
  padding: 28px 22px;
}
.mw-paypage-wrap .mw-splash.is-on,
.mw-paypage-wrap .mw-splash:not([hidden]) {
  display: block !important;
}
