:root {
  --bg: #f7f7f5;
  --panel: #ffffff;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --text: #111827;
  --muted: #6b7280;
  --soft: #f3f4f6;
  --chip: #eef2ff;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  --radius: 18px;
  --max: 1360px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { line-height: 1.55; }
body.ui-atlas-lock-scroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select { font: inherit; }

.nw-header,
.nw-main,
.nw-footer {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.nw-header {
  margin-top: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 20px 16px;
  box-shadow: var(--shadow);
}

.nw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
}

h1 {
  margin: 14px 0 8px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
}

.nw-tagline {
  margin: 0;
  max-width: 860px;
  color: #374151;
  font-size: 15px;
}

.nw-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.nw-points .pill {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 12px;
  color: #374151;
}

.nw-lang-switch {
  margin: 10px 0 6px;
  font-size: 12px;
  color: var(--muted);
}

.nw-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.nw-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: #374151;
  background: #fff;
  font-size: 12px;
}

.nw-main { padding: 12px 0 24px; }

.nw-intro {
  margin: 12px 0 20px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #fcfcfb;
  border: 1px solid var(--line);
  color: #374151;
  font-size: 14px;
}

.nw-intro h2,
.nw-card h2,
.nw-donate h2 { margin: 0 0 8px; }

.ad-slot {
  margin: 18px 0 16px;
  min-height: 94px;
  border-radius: var(--radius);
  border: 1px dashed var(--line-strong);
  background: linear-gradient(180deg, #ffffff, #fafafa);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.workspace {
  display: grid;
  grid-template-columns: 296px minmax(0, 1fr) 380px;
  gap: 16px;
  align-items: start;
}

.panel,
.compare-tray,
.nw-card,
.nw-donate {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.panel { overflow: hidden; }

.filters { position: sticky; top: 14px; }
.filters .filters-body { padding: 16px; }
.filters h2,
.results h2,
.detail h2 { margin: 0 0 10px; font-size: 21px; }
.filters h3 { margin: 14px 0 8px; font-size: 13px; text-transform: uppercase; color: var(--muted); }
.filters label { font-size: 13px; color: var(--muted); display: block; margin: 10px 0 6px; }

.search-input,
.filters select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 11px 12px;
  background: #fff;
}

.mobile-filter-toggle,
.detail-close { display: none; }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  color: #374151;
  font-size: 12px;
}
.filter-chip.active { background: var(--accent-soft); border-color: #93c5fd; color: #1d4ed8; }

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px 0;
}
.results h2 { margin: 0; }
.results-toolbar {
  padding: 8px 18px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
}

.pattern-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 12px;
}
.pattern-card h3 { margin: 0; font-size: 17px; }
.pattern-card p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.sample-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.card-sample-wrap { display: grid; gap: 6px; }
.card-sample,
.detail-sample {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfbfb;
  overflow: hidden;
}
.card-sample { min-height: 108px; }
.detail-sample { min-height: 180px; margin-bottom: 8px; }
.sample-shell { position: relative; min-height: inherit; padding: 10px; font-size: 12px; color: #374151; }
.sample-large { padding: 14px; font-size: 13px; }
.sample-fallback-shell { display: grid; align-items: center; }
.sample-fallback {
  border: 1px dashed #f59e0b;
  border-radius: 10px;
  background: #fff7ed;
  padding: 10px;
}
.sample-fallback strong { display: block; margin: 0 0 4px; color: #92400e; }
.sample-fallback p { margin: 0; color: #7c2d12; font-size: 12px; }
.sample-detail-guide {
  margin-bottom: 10px;
  border: 1px dashed #bfdbfe;
  border-radius: 10px;
  background: #eff6ff;
  padding: 8px;
}
.sample-detail-guide p { margin: 0 0 5px; }
.sample-detail-guide p:last-child { margin-bottom: 0; }
.sample-detail-tip { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.mini-btn { border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; padding: 6px 10px; font-size: 12px; cursor: pointer; }
.mini-badge { border-radius: 999px; border: 1px solid var(--line); padding: 2px 6px; font-size: 11px; margin-right: 6px; background: #fff; }
.sample-modal,.sample-sheet,.sample-drawer,.sample-ham,.sample-toast,.sample-popover { display: none; }
.sample-modal.is-open,.sample-sheet.is-open,.sample-drawer.is-open,.sample-ham.is-open,.sample-toast.is-open,.sample-popover.is-open { display: block; }
.sample-modal { position: absolute; inset: 0; background: rgba(17,24,39,.45); }
.sample-modal-card { width: min(280px, calc(100% - 20px)); margin: 18px auto; padding: 12px; background: #fff; border-radius: 12px; }
.sample-sheet { position: absolute; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid var(--line); border-radius: 12px 12px 0 0; padding: 10px; }
.sheet-handle { width: 36px; height: 4px; border-radius: 999px; background: var(--line-strong); margin: 0 auto 8px; }
.sample-drawer { position: absolute; left: 0; top: 0; bottom: 0; width: 140px; background: #fff; border-right: 1px solid var(--line); padding: 8px; }
.sample-ham { margin-top: 8px; border: 1px solid var(--line); border-radius: 10px; padding: 8px; display: grid; gap: 6px; }
.sample-popover { margin-top: 8px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 8px; width: max-content; }
.sample-toast { position: absolute; right: 10px; bottom: 10px; background: #111827; color: #fff; border-radius: 999px; padding: 6px 10px; }
.sample-acc { display: grid; gap: 6px; }
.sample-acc button { text-align: left; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 7px; }
.sample-acc div { display: none; border: 1px dashed var(--line); border-radius: 10px; padding: 7px; }
.sample-acc div.is-open { display: block; }
.sample-tabs button,.sample-segmented button,.sample-pagination button,.sample-carousel button,.sample-tabbar button { border: 1px solid var(--line); background:#fff; border-radius: 9px; padding: 6px 8px; }
.sample-tabs .is-on,.sample-segmented .is-on,.sample-pagination .is-on,.sample-tabbar .is-on { background: var(--accent-soft); border-color: #93c5fd; }
.sample-segmented,.sample-pagination,.sample-tabbar,.sample-navbar,.sample-footer { display: flex; gap: 6px; flex-wrap: wrap; }
.sample-tooltip { display: inline-block; margin-left: 6px; padding: 4px 8px; border-radius: 8px; border: 1px solid var(--line); background: #fff; }
.sample-pricing { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 6px; }
.sample-pricing article { border:1px solid var(--line); border-radius: 10px; padding: 8px; background:#fff; text-align:center; }
.sample-pricing .is-on { border-color: #93c5fd; background: #eff6ff; }
.sample-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.sample-table th,.sample-table td { border: 1px solid var(--line); padding: 4px 6px; text-align: left; }
.sample-hero,.sample-cta,.sample-empty,.sample-alert,.sample-contact,.sample-testimonial { border:1px solid var(--line); border-radius: 12px; padding: 10px; background:#fff; }
.sample-features,.sample-list,.sample-timeline { margin: 0; padding-left: 16px; display: grid; gap: 4px; }
.sample-progress { width: 100%; height: 10px; border-radius: 999px; background: #e5e7eb; overflow:hidden; }
.sample-progress > div { height: 100%; background: linear-gradient(90deg,#2563eb,#60a5fa); }
.sample-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 6px; }
.sample-grid span,.sample-spinner,.sample-skeleton span { display:block; background:#d1d5db; border-radius: 8px; }
.sample-grid span { height: 30px; }
.sample-spinner { width: 30px; height: 30px; margin: 14px auto; border:4px solid #dbeafe; border-top-color:#2563eb; border-radius:50%; animation: spin .8s linear infinite; background: transparent; }
.sample-skeleton span { height: 10px; margin-top: 8px; animation: pulse 1.3s ease-in-out infinite; }
.sample-split,.sample-sticky { display:grid; grid-template-columns: 36% 1fr; gap: 6px; }
.sample-split aside,.sample-sticky aside,.sample-sticky main,.sample-split section { border:1px solid var(--line); border-radius: 10px; padding: 8px; background:#fff; }
.sample-fixed { position: relative; min-height: 96px; border:1px dashed var(--line); border-radius: 10px; background:#fff; }
.sample-fab { position:absolute; right:10px; bottom:10px; width:34px; height:34px; border-radius: 50%; border:0; background:#2563eb; color:#fff; }
.sample-sticky-cta { position:absolute; left:8px; right:8px; bottom:8px; border:1px solid var(--line); border-radius: 10px; background:#fff; padding:6px; display:flex; justify-content:space-between; align-items:center; }
.otp { display:grid; grid-template-columns: repeat(6,1fr); gap: 4px; }
.otp input, .sample-shell input, .sample-shell textarea, .sample-shell select { width: 100%; border:1px solid var(--line-strong); border-radius: 8px; padding: 6px; font-size: 12px; }
.switch { width: 42px; height: 24px; border: 1px solid var(--line); border-radius: 999px; background: #e5e7eb; position: relative; }
.switch span { position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%; background:#fff; transition: transform .2s ease; }
.switch.is-on { background: #93c5fd; }
.switch.is-on span { transform: translateX(18px); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .4; } }
.card-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.meta-tag {
  font-size: 11px;
  color: #374151;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
}

.card-actions,
.detail-footer-actions,
.donation-links { display: flex; flex-wrap: wrap; gap: 8px; }

.btn {
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  padding: 9px 12px;
  cursor: pointer;
  font-size: 12px;
}
.btn.primary,
.btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.detail-btn { min-width: 108px; }
.compare-btn {
  border-color: #cbd5e1;
  color: #334155;
  background: #f8fafc;
}
.compare-btn:hover { background: #f1f5f9; }
.compare-btn.is-selected {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1e40af;
}

.compare-tray { margin: 0 18px 22px; }
.compare-dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8fbff;
  padding: 8px 10px;
}
.compare-dock-mobile { display: none; }
.compare-dock-text {
  margin: 0;
  font-size: 12px;
  color: #4b5563;
}
.compare-dock-actions { display: flex; gap: 8px; }
.compare-dock .btn { padding: 7px 10px; }
.compare-dock:not(.has-items) .compare-dock-actions { opacity: .9; }
.compare-dock-desktop {
  margin-top: 2px;
}
.compare-tray-header {
  padding: 14px 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.compare-tray h3 { margin: 0; font-size: 20px; }
.compare-clear-btn { padding: 7px 11px; }
.compare-hint {
  margin: 0;
  padding: 10px 18px 0;
  color: var(--muted);
  font-size: 13px;
}
.compare-status {
  margin: 8px 18px 0;
  min-height: 20px;
  color: #9a3412;
  font-size: 12px;
}
.compare-list { display: grid; gap: 10px; padding: 0 18px 14px; }
.compare-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.compare-item-main { display: grid; gap: 2px; }
.compare-item-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.compare-diff {
  margin: 0 18px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  padding: 12px;
  font-size: 13px;
}
.compare-diff ul { margin: 0; padding-left: 18px; }
.compare-diff li + li { margin-top: 6px; }

.local-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
}
.local-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}
.local-box h3 { margin: 0 0 8px; font-size: 15px; }
.mini-list { display: grid; gap: 8px; }
.mini-item {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
}
.muted-small { margin: 0; color: var(--muted); font-size: 13px; }

.detail { position: sticky; top: 14px; }
.detail {
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 8px;
}
.detail-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.detail > * { margin-left: 22px; margin-right: 22px; }
.detail .detail-close { margin-top: 16px; flex-shrink: 0; }
.detail h2 { padding-top: 16px; flex: 1; }
.detail h3 { margin: 14px 0 4px; font-size: 15px; color: var(--muted); }
.detail-empty-intro {
  margin-top: 8px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #f8fafc 100%);
}
.detail-empty-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}
.detail-empty-title {
  margin: 6px 0 8px;
  font-size: 15px;
  color: #1f2937;
}
.detail-empty-copy {
  margin: 0 0 10px;
  font-size: 13px;
  color: #475569;
}
.detail-empty-intro ul {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  font-size: 13px;
  display: grid;
  gap: 4px;
}
.detail .detail-body,
.copy-state {
  margin: 0;
  font-size: 14px;
  color: #374151;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafafa;
  padding: 10px;
}
.copy-state {
  margin: 8px 18px 0;
  min-height: 42px;
  border-style: dashed;
}
.detail [data-copy-prompt],
.detail [data-toggle-favorite] { margin-top: 10px; }
.detail [data-toggle-favorite] { margin-bottom: 18px; }

.nw-card { margin-top: 24px; padding: 18px; }
.faq-list { margin: 0; padding-left: 18px; color: #374151; }
.faq-list li { margin-top: 10px; }

.nw-donate { margin-top: 24px; padding: 18px; }
.nw-donate p { margin: 0 0 10px; color: #374151; font-size: 14px; }
.donation-links { margin-top: 12px; align-items: stretch; }
.donation-links .support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 124px;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #f8fafc;
  color: #1f2937;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
}
.donation-links .support-btn:hover {
  background: #f1f5f9;
  text-decoration: none;
}

.nw-footer {
  margin-top: 26px;
  padding: 0 0 24px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.nw-footer p { margin: 6px 0; }

@media (max-width: 1180px) {
  .workspace { grid-template-columns: 280px minmax(0, 1fr); }
  .detail { grid-column: 1 / -1; position: static; }
  .detail > * { margin-left: 16px; margin-right: 16px; }
}

@media (max-width: 820px) {
  .nw-header {
    margin-top: 10px;
    padding: 14px 14px 12px;
    border-radius: 18px;
  }
  .nw-eyebrow { font-size: 11px; padding: 4px 8px; }
  h1 { margin: 10px 0 6px; font-size: clamp(24px, 8vw, 30px); }
  .nw-tagline { font-size: 13px; line-height: 1.45; }
  .nw-points { margin-top: 10px; gap: 6px; }
  .nw-points .pill { font-size: 11px; padding: 6px 8px; }
  .nw-points .pill:nth-child(n+3) { display: none; }
  .nw-lang-switch { margin: 8px 0 4px; }
  .nw-nav { margin-top: 6px; gap: 8px; }
  .nw-nav a { padding: 6px 10px; font-size: 11px; }
  .nw-main { padding-top: 8px; }
  .nw-intro {
    margin: 10px 0 14px;
    padding: 11px 12px;
    font-size: 13px;
  }
  .ad-slot.ad-top {
    min-height: 72px;
    margin: 12px 0;
  }
  .workspace { grid-template-columns: 1fr; }
  .filters { position: static; }
  .result-grid,
  .local-blocks { grid-template-columns: 1fr; }
  .results-header {
    padding: 14px 14px 0;
  }
  .results h2 { font-size: 20px; }
  .results-toolbar { padding: 0 14px 10px; }
  .compare-dock-desktop { display: none; }
  .compare-dock-mobile {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  }
  .compare-dock-mobile .compare-dock-text {
    font-size: 12px;
    font-weight: 600;
  }
  .has-compare-items .compare-tray {
    margin-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .mobile-filter-toggle {
    display: block;
    width: calc(100% - 32px);
    margin: 14px 16px 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 10px 12px;
    cursor: pointer;
  }
  .filters .filters-body { display: none; }
  .filters-open .filters .filters-body { display: block; }

  .detail {
    position: fixed;
    inset: 0;
    z-index: 30;
    margin: 0;
    border-radius: 0;
    border: 0;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .2s ease;
    background: #fff;
    padding-top: max(14px, env(safe-area-inset-top));
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.18);
  }
  .detail > * {
    margin-left: clamp(14px, 4.5vw, 24px);
    margin-right: clamp(14px, 4.5vw, 24px);
  }
  .detail-close {
    display: inline-block;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 8px 12px;
    cursor: pointer;
  }
  .detail .detail-close,
  .detail h2,
  .detail .detail-sample,
  .detail h3,
  .detail .detail-body,
  .detail .copy-state,
  .detail .sample-detail-tip,
  .detail .detail-footer-actions {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
  }
  .detail-sheet-header {
    position: sticky;
    top: 0;
    background: #fff;
    padding-top: 2px;
    border-bottom: 1px solid var(--line);
    z-index: 2;
  }
  .detail .detail-close { margin-top: 0; margin-bottom: 12px; }
  .detail h2 {
    padding-top: 0;
    margin-bottom: 12px;
    line-height: 1.25;
  }
  .detail .detail-sample {
    margin-bottom: 16px;
    border-radius: 16px;
  }
  .detail h3 {
    margin-top: 18px;
    margin-bottom: 7px;
  }
  .detail-empty-intro {
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 12px;
  }
  .detail .detail-body {
    padding: 12px 13px;
    line-height: 1.65;
    background: #fcfcfc;
  }
  .detail .detail-footer-actions {
    margin-top: 12px;
  }
  .detail [data-toggle-favorite] {
    margin-bottom: 0;
  }
  .detail .copy-state {
    margin-top: 10px;
  }
  .card-sample { min-height: 82px; }
  .sample-shell { padding: 8px; }
  .compare-tray {
    margin: 0 14px 16px;
    border-radius: 16px;
  }
  .compare-tray-header { padding: 12px 14px 0; }
  .compare-tray h3 { font-size: 17px; }
  .compare-hint { padding: 8px 14px 0; font-size: 12px; }
  .compare-status { margin: 7px 14px 0; }
  .compare-list { padding: 0 14px 12px; }
  .compare-item { padding: 10px; border-radius: 12px; }
  .compare-diff { margin: 0 14px 14px; padding: 10px; }
  .compare-empty .compare-list,
  .compare-empty .compare-status,
  .compare-empty .compare-diff { display: none; }
  .compare-empty .compare-tray { margin-bottom: 12px; }
  .donation-links {
    flex-direction: column;
  }
  .donation-links .support-btn { width: 100%; }
  .detail-open .detail { transform: translateY(0); }
}
