/* ===== PLAKORO 資訊網站 ===== */
:root {
  --yellow: #ffcb05;
  --yellow-dark: #e6b400;
  --blue: #2a6ebb;
  --blue-dark: #1d4e86;
  --red: #ee4035;
  --green: #4caf7d;
  --ink: #1c2540;
  --ink-soft: #4a5473;
  --paper: #fffdf5;
  --card: #ffffff;
  --line: #e8e3d2;
  --radius: 18px;
  --shadow: 0 4px 16px rgba(28, 37, 64, 0.10);
  --shadow-lg: 0 10px 32px rgba(28, 37, 64, 0.18);
  font-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "PingFang TC", "Heiti TC", "Microsoft JhengHei", "Noto Sans TC", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- 骰仔點點背景 ---- */
.dotted-bg {
  background-image: radial-gradient(rgba(42, 110, 187, 0.08) 2.5px, transparent 2.5px);
  background-size: 26px 26px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
  box-shadow: var(--shadow);
}
.site-header .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 46px; width: auto; }
.site-logo .site-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 12px;
  white-space: nowrap;
}
.site-nav { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  font-weight: 700;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
}
.site-nav a:hover { background: #fff; text-decoration: none; border-color: var(--ink); }
.site-nav a.active { background: var(--ink); color: var(--yellow); }

/* ---- Layout ---- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.section-title .dice {
  width: 40px; height: 40px;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  transform: rotate(-8deg);
  flex-shrink: 0;
}
.section-sub { color: var(--ink-soft); margin-bottom: 28px; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(160deg, var(--yellow) 0%, #ffe27a 55%, #fff3c4 100%);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}
.hero .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
.hero h1 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-weight: 900; line-height: 1.3; }
.hero h1 .accent { color: var(--red); }
.hero p.lead { margin-top: 14px; font-size: 1.05rem; color: var(--ink); }
.hero .kv {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: #fff;
  transform: rotate(1.5deg);
}
.hero .cta-row { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); text-decoration: none; }
.btn.primary { background: var(--red); color: #fff; }
.btn.blue { background: var(--blue); color: #fff; }

/* ---- 骰仔跑馬燈 ---- */
.dice-strip {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 22px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.dice-strip figure { text-align: center; width: 96px; }
.dice-strip img {
  width: 88px; height: 88px;
  object-fit: contain;
  background: #f7f4e8;
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 6px;
  transition: transform 0.2s;
}
.dice-strip figure:hover img { transform: rotate(-8deg) scale(1.06); }
.dice-strip figcaption { font-size: 0.85rem; font-weight: 700; margin-top: 6px; }

/* ---- 卡片 ---- */
.card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card .pad { padding: 20px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.series-card img { background: #fff; padding: 12px; height: 190px; object-fit: contain; width: 100%; }
.series-card h3 { font-size: 1.2rem; font-weight: 900; }
.series-card .tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: 2px 12px;
  margin-bottom: 8px;
}
.series-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---- 步驟 ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.steps.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .steps.four { grid-template-columns: repeat(2, 1fr); } }
.step { position: relative; }
.step .num {
  position: absolute;
  top: -16px; left: -10px;
  width: 44px; height: 44px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  transform: rotate(-8deg);
  z-index: 2;
}
.step img { height: 180px; width: 100%; object-fit: contain; background: #fff; padding: 10px; }
.step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---- 表格 ---- */
.table-scroll { overflow-x: auto; border: 3px solid var(--ink); border-radius: var(--radius); background: #fff; }
table.matrix { border-collapse: collapse; width: 100%; font-size: 0.88rem; min-width: 760px; }
table.matrix th, table.matrix td { border: 1px solid var(--line); padding: 8px 10px; text-align: center; }
table.matrix thead th {
  background: var(--ink);
  color: var(--yellow);
  position: sticky;
  top: 0;
  font-size: 0.82rem;
  white-space: nowrap;
}
table.matrix tbody th {
  text-align: left;
  background: #fffbe8;
  font-weight: 700;
  white-space: nowrap;
  position: sticky;
  left: 0;
}
table.matrix td.hit { background: #e3f2e9; font-weight: 800; color: var(--ink); }
table.matrix td.miss { color: #c9c4b2; }

/* ---- 商品頁 ---- */
.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 26px;
}
.toolbar input[type="search"], .toolbar select {
  font: inherit;
  padding: 10px 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  min-width: 200px;
}
.chip {
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 16px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  background: #fff;
  cursor: pointer;
  transition: all 0.12s;
}
.chip:hover { background: #fff3c4; }
.chip.on { background: var(--ink); color: var(--yellow); }
.chip .cnt { opacity: 0.65; font-size: 0.8em; margin-left: 4px; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.product-card { cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .thumb { aspect-ratio: 1; object-fit: contain; background: #fff; padding: 10px; width: 100%; }
.product-card .body { padding: 14px 16px 16px; border-top: 3px solid var(--ink); background: #fffbe8; flex: 1; }
.product-card .cat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 6px;
}
.product-card h3 { font-size: 0.98rem; font-weight: 800; line-height: 1.4; }
.product-card .meta { margin-top: 6px; font-size: 0.85rem; color: var(--ink-soft); display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.product-card .price { font-weight: 900; color: var(--red); font-size: 1rem; }

.cat-啟程套組 { background: var(--blue); }
.cat-探險盒組 { background: var(--green); }
.cat-進化套組 { background: var(--red); }
.cat-DX啟程套組 { background: #8e44ad; }
.cat-收納配件 { background: #7a8699; }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 37, 64, 0.6);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  z-index: 200;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 22px;
  max-width: 860px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal .close-btn {
  position: absolute;
  top: -16px; right: -14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 5;
}
.modal .modal-body { padding: 26px; }
.modal .gallery { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.modal .gallery img {
  height: 200px;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  flex: 1 1 200px;
}
.modal h2 { font-size: 1.35rem; font-weight: 900; margin-bottom: 10px; }
.spec-list { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 14px 0; font-size: 0.95rem; }
.spec-list dt { font-weight: 800; color: var(--blue-dark); white-space: nowrap; }
.contents-box {
  background: #fff;
  border: 3px dashed var(--blue);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 12px;
}
.contents-box h4 { font-size: 1rem; font-weight: 900; color: var(--blue-dark); margin-bottom: 8px; }
.contents-box ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 6px; }
.contents-box li {
  background: #f2f7ff;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.contents-box li .qty { font-weight: 900; color: var(--red); white-space: nowrap; }

/* ---- 道具搜尋器 ---- */
.finder-panel {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.finder-panel .row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.finder-panel input[type="search"] {
  font: inherit;
  flex: 1 1 260px;
  padding: 12px 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
}
.item-group { margin-top: 16px; }
.item-group h4 {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.item-group .chips { display: flex; gap: 8px; flex-wrap: wrap; }

.hint-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0;
  font-size: 0.95rem;
}
.hint-bar .pill {
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 14px;
  font-weight: 800;
}

.result-list { display: grid; gap: 14px; }
.result-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 12px 18px 12px 12px;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
}
.result-row:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.result-row img { width: 92px; height: 92px; object-fit: contain; background: #fffbe8; border-radius: 10px; border: 2px solid var(--line); }
.result-row h3 { font-size: 1rem; font-weight: 800; }
.result-row .sub { font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }
.result-row .qty-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.qty-badge {
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.qty-badge.zero { background: #ccc; }

.empty-note {
  text-align: center;
  color: var(--ink-soft);
  padding: 40px 20px;
  background: #fff;
  border: 3px dashed var(--line);
  border-radius: var(--radius);
}

.view-toggle { display: flex; gap: 0; border: 3px solid var(--ink); border-radius: 999px; overflow: hidden; }
.view-toggle button {
  font: inherit;
  font-weight: 800;
  border: none;
  background: #fff;
  padding: 9px 18px;
  cursor: pointer;
}
.view-toggle button.on { background: var(--ink); color: var(--yellow); }

/* ---- 屬性搜尋 ---- */
.attr-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  background: #fff;
  cursor: pointer;
  transition: all 0.12s;
}
.attr-chip:hover { background: #fff3c4; }
.attr-chip.on { background: var(--ink); color: #fff; box-shadow: 0 3px 0 var(--ink-soft); }
.attr-chip .cnt { opacity: 0.6; font-size: 0.8em; }

.energy-sq {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,0.18);
}
.energy-sq.sm { width: 20px; height: 20px; font-size: 0.65rem; border-radius: 5px; }
.energy-sq.dual { position: relative; overflow: hidden; }
.energy-sq.dual span {
  position: absolute;
  font-size: 0.55rem;
  line-height: 1;
  text-shadow: 0 0 2px rgba(0,0,0,0.35);
}
.energy-sq.dual span:first-child { top: 2px; left: 3px; }
.energy-sq.dual span:last-child { bottom: 2px; right: 3px; }

.attr-草 { background: #2fa84c; }
.attr-火 { background: #d5304a; }
.attr-水 { background: #1a6fc4; }
.attr-雷 { background: #f0bd00; }
.attr-超 { background: #c2418f; }
.attr-格 { background: #e07020; }
.attr-惡 { background: #14606d; }
.attr-鋼 { background: #7d8ba0; }
.attr-龍 { background: #7a6c2f; }
.attr-飛 { background: #58b5e6; }
.attr-無 { background: #b9b4ad; }

.total-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  border-radius: 12px;
  padding: 8px 16px;
  white-space: nowrap;
}
.breakdown { display: flex; gap: 6px 14px; flex-wrap: wrap; margin-top: 8px; font-size: 0.85rem; color: var(--ink-soft); }
.breakdown .bd { display: inline-flex; align-items: center; gap: 5px; }
.breakdown .bd b { color: var(--ink); }

.chip-wall { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; }

.rank-tag {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  font-weight: 900;
  font-size: 1.05rem;
  transform: rotate(-6deg);
  flex-shrink: 0;
}
.rank-tag.r1 { background: var(--red); color: #fff; }
.rank-tag.r2 { background: var(--blue); color: #fff; }
.rank-tag.r3 { background: var(--green); color: #fff; }

.result-row.attr-mode { grid-template-columns: 44px 92px 1fr auto; }
.result-row.attr-mode.no-rank { grid-template-columns: 92px 1fr auto; }
.result-row.dim { opacity: 0.55; cursor: default; }
.result-row.dim:hover { transform: none; box-shadow: none; }

.mech-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  background: #f2f7ff;
  border: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: 0.92rem;
}
.mech-note .die {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: #fff;
  border: 3px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 5px;
  gap: 4px;
  transform: rotate(-6deg);
}
.mech-note .die i {
  border-radius: 5px;
  border: 2px dashed var(--ink-soft);
}
.mech-note .die i.fx { background: var(--yellow); border-style: solid; }
.mech-note .die i.rd { border-radius: 50%; }

@media (max-width: 860px) {
  .result-row.attr-mode { grid-template-columns: 44px 64px 1fr; }
  .result-row.attr-mode.no-rank { grid-template-columns: 64px 1fr; }
  /* 明細/數量佔成行，唔好逼入窄欄 */
  .result-row.attr-mode > div:last-child { grid-column: 1 / -1; }
  .result-row.attr-mode .total-badge { font-size: 0.92rem; padding: 6px 12px; }
  .result-row.attr-mode .breakdown { font-size: 0.78rem; gap: 4px 10px; }
}

/* ---- 首頁統計/時間軸 ---- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.stat-tile {
  display: block;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 12px 16px;
  text-align: center;
  color: var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.stat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; }
.stat-tile .num { font-size: 2.4rem; font-weight: 900; color: var(--red); line-height: 1.1; }
.stat-tile .num small { font-size: 1.1rem; }
.stat-tile .lbl { font-weight: 800; color: var(--ink-soft); margin-top: 4px; }

.month-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.05rem;
  border-radius: 12px;
  padding: 5px 16px;
  transform: rotate(-2deg);
  margin-bottom: 12px;
}
.upcoming-list { display: grid; gap: 10px; margin-bottom: 26px; }
.upcoming-row {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 8px 14px 8px 8px;
  color: var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}
.upcoming-row:hover { transform: translateX(4px); box-shadow: var(--shadow); text-decoration: none; }
.upcoming-row img { width: 52px; height: 52px; object-fit: contain; background: #fffbe8; border-radius: 8px; border: 2px solid var(--line); flex-shrink: 0; }
.upcoming-row .t { font-weight: 800; font-size: 0.95rem; flex: 1; }
.upcoming-row .p { font-weight: 900; color: var(--red); white-space: nowrap; }

/* ---- 玩法頁 ---- */
.guide-item { display: grid; grid-template-columns: 320px 1fr; gap: 26px; align-items: start; }
.guide-item .pic { border: 3px solid var(--ink); border-radius: var(--radius); background: #fff; padding: 12px; }
.guide-item h3 { font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; }
.guide-item h3 .mini {
  font-size: 0.75rem;
  vertical-align: middle;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 8px;
}
.guide-item ul { margin: 8px 0 0 1.2em; font-size: 0.95rem; }
.guide-item + .guide-item { margin-top: 34px; padding-top: 34px; border-top: 2px dashed var(--line); }

.flow-pics { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 18px; }
.flow-pics img { border: 3px solid var(--ink); border-radius: 14px; background: #fff; }

.callout {
  background: #fff3c4;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 22px;
  font-size: 0.95rem;
}
.callout strong { color: var(--red); }

.video-frame {
  aspect-ratio: 16 / 9;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer ---- */
.site-footer {
  margin-top: 60px;
  background: var(--ink);
  color: #cfd6e8;
  padding: 34px 0 40px;
  font-size: 0.85rem;
}
.site-footer a { color: var(--yellow); }
.site-footer .wrap { display: grid; gap: 8px; }

/* ---- RWD ---- */
/* ---- 手機：商品一行兩個 ---- */
@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-card .body { padding: 10px 10px 12px; }
  .product-card h3 { font-size: 0.82rem; }
  .product-card .meta { font-size: 0.72rem; }
  .product-card .price { font-size: 0.88rem; }
  .product-card .cat-badge { font-size: 0.6rem; padding: 1px 8px; }
}

@media (max-width: 860px) {
  .hero .inner { grid-template-columns: 1fr; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .guide-item { grid-template-columns: 1fr; }
  .guide-item .pic { max-width: 420px; }
  .result-row { grid-template-columns: 72px 1fr; }
  .result-row .qty-badges { grid-column: 1 / -1; justify-content: flex-start; }
  .site-nav { margin-left: 0; }
}
