/* Kategorie, karty i widok szczegółów ofert */

/* ---------- Zakładki kategorii ---------- */
.category-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 26px;
  padding: 5px;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid #e2e0eb;
  border-radius: 999px;
  background: #fff;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  min-height: 44px;
  padding: 0 8px 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #545d6d;
  font: 700 .9rem Manrope, sans-serif;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .22s ease, color .22s ease;
}
.category-tab:hover { background: #f3f1fb; color: #25283a; }
.category-tab[aria-selected="true"] { background: #25283a; color: #fff; }
.category-tab:focus-visible { outline: 3px solid #9d8bff; outline-offset: 2px; }
.tab-count {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #efedf8;
  color: #5b4ca8;
  font-size: .78rem;
}
.category-tab[aria-selected="true"] .tab-count { background: #fff; color: #17191e; }
.tab-label-short { display: none; }

:root[data-theme="dark"] .category-tabs { border-color: #2f3140; background: #181a23; }
:root[data-theme="dark"] .category-tab { color: #b7b8c5; }
:root[data-theme="dark"] .category-tab:hover { background: #232533; color: #f4f5fa; }
:root[data-theme="dark"] .category-tab[aria-selected="true"] { background: #f4f5fa; color: #16181f; }
:root[data-theme="dark"] .tab-count { background: #2a2c3a; color: #c9c0ff; }
:root[data-theme="dark"] .category-tab[aria-selected="true"] .tab-count { background: #16181f; color: #fff; }

.empty-note { padding: 40px 0; color: #8a9099; font-size: .95rem; }

/* ---------- Opis kategorii pod nagłówkiem listy ---------- */
.category-intro {
  max-width: 820px;
  margin: -6px 0 22px;
  color: #60666f;
  font-size: .95rem;
  line-height: 1.6;
  text-wrap: pretty;
}
:root[data-theme="dark"] .category-intro { color: #a9adba; }
@media (max-width: 760px) {
  .category-intro { margin: 0 0 18px; font-size: .9rem; }
}

/* ---------- Informacja o linkach partnerskich pod listą ---------- */
.affiliate-note-bottom { max-width: 820px; }
.affiliate-note-bottom strong { color: #60666f; }
:root[data-theme="dark"] .affiliate-note-bottom strong { color: #c9ccd6; }

/* ---------- Sortowanie: napis, który przełącza tryby po kolei ---------- */
.sort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.sort-toggle b { font-weight: 800; color: #545d6d; text-decoration: underline dotted; text-underline-offset: 3px; }
.sort-toggle:hover b { color: #25283a; text-decoration-style: solid; }
.sort-toggle:focus-visible { outline: 3px solid #9d8bff; outline-offset: 4px; border-radius: 6px; }
:root[data-theme="dark"] .sort-toggle b { color: #d8d8e4; }
:root[data-theme="dark"] .sort-toggle:hover b { color: #fff; }

@media (max-width: 760px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .sort-toggle { display: inline-flex; }
}

/* ---------- Karty ---------- */
.card-top { flex-wrap: wrap; justify-content: flex-start; gap: 8px 16px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px 16px; min-width: 0; }
.card-top .card-deadline { flex: none; margin-left: auto; white-space: nowrap; }
@media (max-width: 760px) {
  .card-tags { order: 3; flex-basis: 100%; }
}
.card-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #d8d8e4;
  font: 700 .74rem Manrope, sans-serif;
  white-space: nowrap;
}
:root[data-theme="light"] .card-chip { border-color: #e3e0ef; background: #fff; color: #414a5c; }

.effort-meter { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.effort-meter i { display: block; width: 4px; border-radius: 2px; background: rgba(255, 255, 255, .22); }
.effort-meter i:nth-child(1) { height: 4px; }
.effort-meter i:nth-child(2) { height: 7px; }
.effort-meter i:nth-child(3) { height: 10px; }
.effort-meter i:nth-child(4) { height: 12px; }
.effort-meter[data-level="1"] i:nth-child(-n+1),
.effort-meter[data-level="2"] i:nth-child(-n+2),
.effort-meter[data-level="3"] i:nth-child(-n+3) { background: #c8fa69; }
.effort-meter[data-level="4"] i { background: #ff9a6b; }
:root[data-theme="light"] .effort-meter i { background: #dcd8ea; }
:root[data-theme="light"] .effort-meter[data-level="1"] i:nth-child(-n+1),
:root[data-theme="light"] .effort-meter[data-level="2"] i:nth-child(-n+2),
:root[data-theme="light"] .effort-meter[data-level="3"] i:nth-child(-n+3) { background: #7964e9; }
:root[data-theme="light"] .effort-meter[data-level="4"] i { background: #d9480f; }

.erste-logo { width: 150px; height: 64px; }
.bnp-logo { width: 240px; height: 58px; }
.pko-logo { width: 150px; height: 88px; }
.velo-logo { width: 110px; height: 78px; }
.unicredit-logo { width: 210px; height: 44px; }
.pocztowy-logo { width: 250px; height: 40px; }
.nest-logo { width: 120px; height: 66px; }
.scb-logo { width: 190px; height: 58px; }

@media (max-width: 760px) {
  .category-tabs { width: 100%; }
  .category-tab { flex: 1 0 auto; justify-content: center; padding: 0 6px 0 14px; font-size: .84rem; }
  .card-offer-info { gap: 18px; }
}
@media (max-width: 520px) {
  .tab-label-long { display: none; }
  .tab-label-short { display: inline; }
}
@media (max-width: 420px) {
  .erste-logo { width: 130px; height: 56px; }
  .bnp-logo { width: 205px; height: 50px; }
  .pko-logo { width: 110px; height: 66px; }
  .velo-logo { width: 94px; height: 66px; }
  .unicredit-logo { width: 180px; height: 38px; }
  .pocztowy-logo { width: 215px; height: 34px; }
  .nest-logo { width: 104px; height: 57px; }
  .scb-logo { width: 165px; height: 50px; }
  .category-tabs { gap: 2px; padding: 4px; }
  .category-tab { flex: 1 1 auto; padding: 0 10px; }
  .tab-count { display: none; }
}

/* ---------- Szczegóły: jedna kolumna, duży i czytelny tekst ---------- */
.offer-dialog { width: min(860px, calc(100% - 32px)); }
.detail-hero { display: block; }
.detail-hero h2 { margin: 24px 0 14px; }
.hero-summary {
  max-width: 640px;
  margin-top: 16px;
  font-size: 1.12rem;
  line-height: 1.6;
}
.detail-hero .hero-summary { color: #dcdde6; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: 22px; }
.hero-actions .glow-link { flex: 0 1 340px; max-width: 340px; margin-top: 0; }
.hero-rules {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c9c0ff;
  font: 700 .98rem Manrope, sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.hero-rules:hover { color: #fff; }
.hero-rules:focus-visible { outline: 3px solid #9d8bff; outline-offset: 4px; border-radius: 6px; }
:root[data-theme="light"] .hero-rules { color: #5b4ca8; }
:root[data-theme="light"] .hero-rules:hover { color: #25283a; }
.glow-link span { justify-content: center; text-align: center; }
.detail-hero .glow-link span,
.offer-page .detail-page-cta .glow-link span { padding: 18px 20px; font-size: 1.125rem; }
.detail-hero .partner-note { margin-top: 12px; font-size: .84rem; line-height: 1.5; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #eceef5;
  font: 700 .92rem Manrope, sans-serif;
}
.hero-badge.is-urgent { border-color: rgba(255, 154, 107, .55); background: rgba(255, 154, 107, .16); color: #ffd2b8; }
:root[data-theme="light"] .detail-hero .hero-summary { color: #3d4350; }
:root[data-theme="light"] .hero-badge { border-color: #e0ddec; background: #fff; color: #2b2f37; }
:root[data-theme="light"] .hero-badge.is-urgent { border-color: #f5b48d; background: #fff1e7; color: #9a3c0c; }
:root[data-theme="light"] .detail-hero .partner-note { color: #697082; }

.detail-body { padding: 6px 28px 104px; }
.detail-heading {
  margin: 34px 0 16px;
  font: 800 1.55rem/1.2 Manrope, sans-serif;
  letter-spacing: -.045em;
}

/* Kroki */
.todo-steps { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.todo-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid #e3e5ea;
  border-radius: 20px;
  background: #fff;
}
.todo-step.is-repeat { border: 2px solid #9d8bff; background: #fbfaff; }
.todo-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0edff;
  color: #5b4ca8;
  font: 800 1.35rem Manrope, sans-serif;
}
.todo-step.is-repeat .todo-number { background: #786afa; color: #fff; }
.todo-body h4 { margin: 12px 0 8px; font: 800 1.22rem/1.3 Manrope, sans-serif; letter-spacing: -.02em; }
.todo-body p { margin: 0; color: #3d4350; font-size: 1.06rem; line-height: 1.6; }
.todo-check { display: grid; gap: 10px; margin: 14px 0; padding: 0; list-style: none; }
.todo-check li {
  position: relative;
  padding: 12px 14px 12px 52px;
  border-radius: 14px;
  background: #f1eefc;
  color: #20232d;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
}
.todo-check li::before {
  content: "✓";
  position: absolute;
  top: 11px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #786afa;
  border-radius: 7px;
  color: #786afa;
  font-size: .85rem;
  font-weight: 800;
}
.todo-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.todo-when,
.todo-get {
  padding: 7px 12px;
  border-radius: 999px;
  font: 700 .92rem Manrope, sans-serif;
}
.todo-when { background: #f1f2f5; color: #3d4350; }
.todo-get { background: #e8f8d1; color: #2f4a17; }

:root[data-theme="dark"] .todo-step { border-color: #363945; background: #1c1f29; }
:root[data-theme="dark"] .todo-step.is-repeat { border-color: #8f7eff; background: #1f1d2d; }
:root[data-theme="dark"] .todo-number { background: #2c2940; color: #d4ccff; }
:root[data-theme="dark"] .todo-step.is-repeat .todo-number { background: #c8fa69; color: #16181f; }
:root[data-theme="dark"] .todo-body p { color: #c9ccd6; }
:root[data-theme="dark"] .todo-check li { background: #292741; color: #f4f5fa; }
:root[data-theme="dark"] .todo-check li::before { border-color: #c8fa69; color: #c8fa69; }
:root[data-theme="dark"] .todo-when { background: #272a36; color: #dcdde6; }
:root[data-theme="dark"] .todo-get { background: #2d3825; color: #d8f7aa; }

/* Uważaj */
.detail-warning {
  margin-top: 22px;
  padding: 20px 22px;
  border: 2px solid #f5b48d;
  border-radius: 20px;
  background: #fff4ec;
}
.detail-warning h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #8a3a0e;
  font: 800 1.2rem Manrope, sans-serif;
  letter-spacing: -.02em;
}
.detail-warning h3 span {
  display: grid;
  place-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8590c;
  color: #fff;
  font-size: 1rem;
}
.detail-warning ul { margin: 0; padding-left: 22px; }
.detail-warning li { margin-top: 6px; color: #5c2a0a; font-size: 1.06rem; line-height: 1.55; }
:root[data-theme="dark"] .detail-warning { border-color: #7a4a2e; background: #2b201b; }
:root[data-theme="dark"] .detail-warning h3 { color: #ffc59e; }
:root[data-theme="dark"] .detail-warning h3 span { background: #ff9a6b; color: #1b1d26; }
:root[data-theme="dark"] .detail-warning li { color: #f3dccd; }

/* Ile i za co dostaniesz */
.reward-list ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e3e5ea;
  border-radius: 20px;
  background: #fff;
  list-style: none;
}
.reward-list li {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: baseline;
  gap: 14px;
  padding: 15px 20px;
  border-top: 1px solid #eceef2;
  color: #2b2f37;
  font-size: 1.05rem;
  line-height: 1.5;
}
.reward-list li:first-child { border-top: 0; }
.reward-list strong { font: 800 1.2rem Manrope, sans-serif; letter-spacing: -.03em; white-space: nowrap; }
.reward-list li.is-optional,
.reward-list li.is-hard { color: #555d6b; }
.reward-list em {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #eceaf5;
  color: #5b4ca8;
  font: 700 .8rem Manrope, sans-serif;
  font-style: normal;
  vertical-align: 1px;
}
.reward-list li.is-hard em { background: #fde8da; color: #9a3c0c; }
.reward-list .reward-list-total { background: #f6f7f9; }
.reward-list .reward-list-total span { color: #555d6b; }
:root[data-theme="dark"] .reward-list ul { border-color: #363945; background: #1c1f29; }
:root[data-theme="dark"] .reward-list li { border-top-color: #2e313c; color: #e4e5ed; }
:root[data-theme="dark"] .reward-list li.is-optional,
:root[data-theme="dark"] .reward-list li.is-hard,
:root[data-theme="dark"] .reward-list .reward-list-total span { color: #b7bac6; }
:root[data-theme="dark"] .reward-list em { background: #2c2940; color: #d4ccff; }
:root[data-theme="dark"] .reward-list li.is-hard em { background: #3d2a20; color: #ffc59e; }
:root[data-theme="dark"] .reward-list .reward-list-total { background: #20232e; }

/* Kalkulator oszczędności */
.savings-calc {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid #e3e5ea;
  border-radius: 20px;
  background: #fff;
}
.savings-calc .detail-heading { margin-top: 0; }
:root[data-theme="dark"] .savings-calc { border-color: #363945; background: #1c1f29; }

/* ---------- Szczegóły: kalkulator oszczędności ---------- */
.calc-input { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin: 8px 0 12px; color: #3d4350; font-size: 1.02rem; font-weight: 600; }
.calc-input output { color: #20232d; font: 800 clamp(1.6rem, 4vw, 2.2rem) Manrope, sans-serif; letter-spacing: -.06em; }
#calc-range {
  --fill: 15%;
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}
#calc-range::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ab97ff, #c8fa69) 0 / var(--fill) 100% no-repeat, #e9ebf2;
}
#calc-range::-moz-range-track { height: 10px; border-radius: 999px; background: #e9ebf2; }
#calc-range::-moz-range-progress { height: 10px; border-radius: 999px; background: linear-gradient(90deg, #ab97ff, #c8fa69); }
#calc-range::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  margin-top: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #786afa;
  box-shadow: 0 3px 12px rgba(80, 60, 200, .35);
  appearance: none;
}
#calc-range::-moz-range-thumb { width: 22px; height: 22px; border: 3px solid #fff; border-radius: 50%; background: #786afa; box-shadow: 0 3px 12px rgba(80, 60, 200, .35); }
#calc-range:focus-visible { outline: 3px solid #9d8bff; outline-offset: 4px; border-radius: 999px; }
.calc-scale { display: flex; justify-content: space-between; margin-top: 4px; color: #697082; font-size: .85rem; }
.calc-results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 20px; }
.calc-result {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 15px;
  border: 1px solid #eef0f3;
  border-radius: 15px;
  background: #f7f8fa;
}
.calc-result span { color: #555d6b; font-size: .95rem; }
.calc-result strong { font: 800 1.35rem Manrope, sans-serif; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.calc-result.is-net { border-color: #c9ec93; background: #eefbdc; }
.calc-result.is-net strong { color: #2f4a17; }
.calc-bar { display: flex; gap: 3px; height: 10px; margin-top: 14px; overflow: hidden; border-radius: 999px; }
.calc-bar span { min-width: 3px; transition: flex-grow .25s ease; }
.calc-bar-net { background: #c8fa69; }
.calc-bar-tax { background: #f2ba91; }
.calc-note { margin: 14px 0 0; color: #697082; font-size: .9rem; line-height: 1.55; }

:root[data-theme="dark"] .calc-input { color: #dcdde6; }
:root[data-theme="dark"] .calc-input output { color: #f4f5fa; }
:root[data-theme="dark"] #calc-range::-webkit-slider-runnable-track { background: linear-gradient(90deg, #ab97ff, #c8fa69) 0 / var(--fill) 100% no-repeat, #2c2f3b; }
:root[data-theme="dark"] #calc-range::-moz-range-track { background: #2c2f3b; }
:root[data-theme="dark"] #calc-range::-webkit-slider-thumb { border-color: #191b25; background: #c8fa69; }
:root[data-theme="dark"] #calc-range::-moz-range-thumb { border-color: #191b25; background: #c8fa69; }
:root[data-theme="dark"] .calc-result { background: #20232e; border-color: #363945; }
:root[data-theme="dark"] .calc-result span { color: #bcc0cc; }
:root[data-theme="dark"] .calc-result.is-net { background: #26311f; border-color: #4a6232; }
:root[data-theme="dark"] .calc-result.is-net strong { color: #d8f7aa; }
:root[data-theme="dark"] .calc-scale,
:root[data-theme="dark"] .calc-note { color: #a9adba; }

/* Więcej o promocji */
.detail-more {
  margin-top: 22px;
  border: 1px solid #e3e5ea;
  border-radius: 20px;
  background: #fff;
}
.detail-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font: 800 1.06rem Manrope, sans-serif;
  letter-spacing: -.01em;
  list-style: none;
  cursor: pointer;
}
.detail-more summary::-webkit-details-marker { display: none; }
.detail-more summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f2f5;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform .2s ease;
}
.detail-more[open] summary::after { transform: rotate(45deg); }
.detail-more summary:focus-visible { outline: 3px solid #9d8bff; outline-offset: 2px; border-radius: 20px; }
.detail-more-body { padding: 0 22px 20px; }
.detail-more-body h4 { margin: 18px 0 6px; font: 800 1rem Manrope, sans-serif; }
.detail-more-body h4:first-child { margin-top: 4px; }
.detail-more-body p,
.detail-more-body li { margin: 0; color: #3d4350; font-size: 1rem; line-height: 1.6; }
.detail-more-body ul { margin: 0; padding-left: 20px; }
.detail-more-body li + li { margin-top: 4px; }
.detail-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 20px !important; }
.detail-links a { color: #5b4ca8; font: 700 .98rem Manrope, sans-serif; }
.detail-more-body .detail-checked { margin-top: 12px; color: #697082; font-size: .88rem; }
:root[data-theme="dark"] .detail-more { border-color: #363945; background: #1c1f29; }
:root[data-theme="dark"] .detail-more summary::after { background: #2a2d39; }
:root[data-theme="dark"] .detail-more-body p,
:root[data-theme="dark"] .detail-more-body li { color: #c9ccd6; }
:root[data-theme="dark"] .detail-links a { color: #c9c0ff; }
:root[data-theme="dark"] .detail-more-body .detail-checked { color: #9298a7; }

/* Pływający przycisk: pojawia się, gdy górny „Przejdź do promocji” zniknie z widoku */
.detail-float-cta {
  position: sticky;
  bottom: 0;
  z-index: 6;
  height: 0;
  pointer-events: none;
}
.detail-float-cta .glow-link {
  position: absolute;
  bottom: calc(20px + env(safe-area-inset-bottom));
  left: 50%;
  width: min(360px, calc(100% - 30px));
  margin: 0;
  opacity: 0;
  transform: translate(-50%, 24px) scale(.96);
  transition: opacity .3s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 14px 36px rgba(8, 9, 16, .45);
}
.detail-float-cta .glow-link span { padding: 17px 20px; font-size: 1.125rem; }
.detail-float-cta.is-visible .glow-link {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}
.detail-float-cta.is-visible .glow-link:hover { transform: translate(-50%, -2px) scale(1); }
:root[data-theme="light"] .detail-float-cta .glow-link {
  color: #25283a;
  background:
    linear-gradient(#fbfaff, #fbfaff) padding-box,
    conic-gradient(from var(--orbit-angle), #cfc7ec 0deg 287deg, #9179e9 311deg, #a1cf5a 334deg, #a996ee 350deg, #cfc7ec 360deg) border-box;
  box-shadow: 0 14px 34px rgba(43, 33, 105, .18);
}
@media (prefers-reduced-motion: reduce) {
  .detail-float-cta .glow-link { transition: none; }
}

@media (max-width: 730px) {
  .hero-summary { font-size: 1.05rem; }
  .hero-actions { gap: 14px; }
  .hero-actions .glow-link { flex-basis: 100%; max-width: none; }
  .hero-rules { margin: 0 auto; }
  .detail-body { padding: 4px 15px 100px; }
  .detail-heading { margin: 28px 0 14px; font-size: 1.35rem; }
  .todo-step { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 16px; }
  .todo-number { width: 40px; height: 40px; font-size: 1.1rem; }
  .todo-body h4 { margin: 7px 0 8px; font-size: 1.12rem; }
  .todo-body p { font-size: 1rem; }
  .todo-check li { padding-left: 46px; font-size: 1.02rem; }
  .todo-check li::before { left: 12px; }
  .detail-warning { padding: 16px 18px; }
  .detail-warning li { font-size: 1rem; }
  .reward-list li { grid-template-columns: 92px minmax(0, 1fr); gap: 10px; padding: 13px 16px; font-size: 1rem; }
  .reward-list strong { font-size: 1.08rem; }
  .savings-calc { padding: 18px; }
  .calc-results { grid-template-columns: minmax(0, 1fr); }
  .calc-result { flex-direction: row; justify-content: space-between; align-items: baseline; }
  .calc-result strong { font-size: 1.2rem; }
  .detail-more summary { padding: 16px 18px; }
  .detail-more-body { padding: 0 18px 18px; }
}
