/* ── VARIABLES ── */
:root {
  --bg: #0e0c0b;
  --bg2: #161412;
  --bg3: #1e1b18;
  --card: #1a1714;
  --border: #2a2520;
  --border2: #352f28;
  --text: #f0ebe3;
  --muted: #7a7068;
  --muted2: #5a5248;
  --accent: #e82d79;
  --accent2: #fa7141;
  --gold: #c8a96e;
  --green: #388e3c;
  --yellow: #f57c00;
  --red: #c62828;
  --vinyl: #c8a96e;
  --cd: #4a7fa5;
  --cass: #c4622d;
  --r: 8px;
  --r2: 12px;
  --r3: 16px;
  --hdr-h: 56px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'General Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

img { display: block; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }
a { text-decoration: none; }

/* ── HEADER ── */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(14,12,11,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--hdr-h);
}
.hdr-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap {
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-svg {
  height: 23px;
  width: auto;
  display: block;
}

.hnav {
  display: flex;
  gap: 2px;
  margin-left: auto;
  align-items: center;
  overflow-x: auto;
}

.nb {
  padding: 5px 10px;
  border: none;
  background: transparent;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--r);
  transition: all .15s;
  white-space: nowrap;
}
.nb:hover, .nb.active { color: var(--text); background: var(--bg3); }

/* ── PAGES ── */
.page {
  display: none;
  padding-top: var(--hdr-h);
  min-height: 100vh;
}
.page.active { display: block; }

/* ── DETAIL PAGES (album, artist, list) ── */
.fs-page {
  display: none;
  padding-top: var(--hdr-h);
  min-height: 100vh;
  background: var(--bg);
}
.fs-page.open { display: block; }

.fs-bar {
  position: sticky;
  top: var(--hdr-h);
  background: rgba(14,12,11,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 44px;
  z-index: 10;
}
.fs-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bk {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color .15s;
  padding: 0;
  white-space: nowrap;
}
.bk:hover { color: var(--text); }

.fs-crumb {
  font-size: 12px;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ── SECTION LABEL ── */
.sec-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-lbl::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.sec-lbl-center::before { content: ''; flex: 1; height: 1px; background: var(--border); }
.sec-lbl-center { justify-content: center; }

/* ── ALBUM CARD (shared) ── */
.alb-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .18s, transform .18s;
  will-change: transform;
  position: relative;
}
.alb-card:hover { border-color: var(--border2); transform: translateY(-2px); }

.alb-cover {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.alb-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.alb-card:hover .alb-cover img { transform: scale(1.04); }
.alb-cover .ni {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}

/* Format badge — solid dark bg, always readable */
.fmt-badge {
  position: absolute;
  top: 5px; right: 5px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(10,8,7,.85);
  color: #fff;
  letter-spacing: .02em;
}
.score-badge {
  position: absolute;
  top: 5px; left: 5px;
  width: 22px; height: 22px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
}
.edition-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.78);
  color: #fff;
  font-size: 11px;
  padding: 3px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.alb-info { padding: 7px 8px 9px; }
.alb-title {
  font-size: 13px; font-weight: 500; line-height: 1.3; margin-bottom: 2px;
  overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.alb-artist { font-size: 12px; color: var(--muted); }
.alb-year { font-size: 12px; color: var(--muted2); margin-top: 1px; }

.footer-mob-links { display: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 32px 0 22px;
  margin-top: 0;
}
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.footer-cta {
  background: linear-gradient(135deg, rgba(232,45,121,.1), rgba(250,113,65,.07));
  border: 1px solid rgba(232,45,121,.18);
  border-radius: var(--r3);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.footer-cta h3 { font-family: 'Satoshi', sans-serif; font-size: 15px; font-weight: 500; margin-bottom: 3px; }
.footer-cta p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 400px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: 12px; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.footer-col a {
  display: block; font-size: 12px; color: var(--muted);
  margin-bottom: 6px; cursor: pointer; transition: color .15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 7px;
}
.footer-bottom p { font-size: 11px; color: var(--muted2); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 9px 18px;
  border-radius: 20px;
  font-size: 13px; font-weight: 500;
  z-index: 9999;
  transition: transform .25s;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── SPINNER ── */
.spin {
  display: inline-block;
  width: 12px; height: 12px;
  border: 2px solid var(--border2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin-anim .7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes spin-anim { to { transform: rotate(360deg); } }

.lm { color: var(--muted); font-size: 13px; padding: 14px; text-align: center; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 42px 20px; }
.empty-state h3 { font-family: 'Satoshi', sans-serif; font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.empty-state p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; margin: 0 auto 16px; }
.empty-disc {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 50%, #3a3330 0%, #1a1a1a 40%, #2c2826 41%, #1a1a1a 55%, #c8a96e 56%, #c8a96e 60%, #1a1a1a 61%);
  margin: 0 auto 12px;
  opacity: .18;
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  border-radius: var(--r);
  color: #fff;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.btn-primary:hover { opacity: .9; }

.btn-secondary {
  padding: 7px 13px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  color: var(--text);
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  padding: 6px 13px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  transition: color .15s;
}
.btn-ghost:hover { color: var(--text); }

.btn-danger {
  padding: 6px 13px;
  background: rgba(198,40,40,.12);
  border: 1px solid rgba(198,40,40,.25);
  border-radius: var(--r);
  color: #ef5350;
  font-size: 12px;
  cursor: pointer;
}

.btn-wish {
  padding: 7px 13px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--r);
  color: var(--text);
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}
.btn-wish:hover { border-color: var(--gold); color: var(--gold); }

/* Large CTA button (hero) */
.btn-hero {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  border-radius: var(--r2);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: all .15s;
}
.btn-hero:hover { opacity: .9; transform: translateY(-1px); }

.btn-hero-outline {
  padding: 13px 22px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  font-size: 14px;
  cursor: pointer;
  transition: all .15s;
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── PRIVACY BANNER ── */
.privacy-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 405;
  background: var(--bg3);
  border-top: 1px solid var(--border2);
  padding: 0;
  transform: translateY(0);
  transition: transform .3s;
}
.privacy-banner.hidden { transform: translateY(100%); pointer-events: none; }
.privacy-banner-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.privacy-banner-text {
  flex: 1;
  min-width: 220px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.privacy-banner-text a { color: var(--gold); cursor: pointer; }
.privacy-banner-text a:hover { text-decoration: underline; }
.privacy-banner-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* ── PRIVACY MODAL ── */
.privacy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.privacy-overlay.open { display: flex; }
.privacy-box {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r3);
  padding: 28px 26px 22px;
  max-width: 540px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}
.privacy-box h2 { font-family: 'Satoshi', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.privacy-box .priv-date { font-size: 11px; color: var(--muted2); margin-bottom: 18px; }
.privacy-box h3 { font-size: 13px; font-weight: 600; color: var(--gold); margin: 16px 0 6px; }
.privacy-box p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 4px; }
.privacy-box ul { padding-left: 18px; margin-bottom: 4px; }
.privacy-box ul li { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── MOBILE HEADER BUTTONS (hamburger + lupa) ── */
.mob-hdr-btn {
  display: none;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r);
  -webkit-tap-highlight-color: transparent;
  transition: color .15s;
  flex-shrink: 0;
}
.mob-hdr-btn svg { width: 22px; height: 22px; display: block; }
.mob-hdr-btn:hover { color: var(--text); }

/* Search icon always visible on desktop */
#mob-hdr-search {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── STAR BADGE (collection card favorite) ── */
.star-badge {
  position: absolute;
  bottom: 6px; left: 6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(10,8,7,.80);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--muted2);
  transition: color .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}
.star-badge:hover { color: var(--gold); }
.star-badge.star-active { color: var(--gold); }

/* ── FAVORITE BUTTON ACTIVE ── */
.btn-fav-active {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ── HOME STATS BLOCK ── */
.home-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}
.home-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.home-stat-num {
  font-family: 'Satoshi', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--text); line-height: 1;
}
.home-stat-lbl {
  font-size: 11px; color: var(--muted); line-height: 1.4;
}
.home-stat-artist-name {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── COLLECTION PAGINATION ── */
.coll-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 0 4px;
}
.coll-page-info {
  font-size: 13px; color: var(--muted); min-width: 54px; text-align: center;
}

/* ── MOBILE BOTTOM NAV ── */
.mob-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(14,12,11,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 400;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mob-nav-inner {
  display: flex;
  height: 64px;
  align-items: center;
  padding: 0 4px;
}
.mob-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--muted2);
  font-family: inherit;
  cursor: pointer;
  padding: 6px 4px;
  -webkit-tap-highlight-color: transparent;
  transition: color .15s;
}
.mob-tab.active { color: var(--text); }

/* pill — o quadrado arredondado que aparece atrás do ícone ativo */
.mob-tab-pill {
  width: 48px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: background .2s, transform .12s;
}
.mob-tab-pill svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: stroke .15s;
}

/* estado ativo: pill rosa, ícone branco */
.mob-tab.active .mob-tab-pill {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  transform: scale(1.05);
}
.mob-tab.active .mob-tab-pill svg {
  stroke: #fff;
}

.mob-tab-label {
  font-size: 10px;
  letter-spacing: .01em;
  line-height: 1;
}

/* ── MOBILE DRAWER (left panel) ── */
.mob-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 495;
}
.mob-drawer-overlay.open { display: block; }
.mob-drawer {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: min(300px, 82vw);
  background: var(--bg2);
  border-right: 1px solid var(--border2);
  border-radius: 0 20px 20px 0;
  padding-top: calc(var(--hdr-h) + 12px);
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
}
.mob-drawer-overlay.open .mob-drawer { transform: translateX(0); }
.mob-drawer-header {
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mob-drawer-header span {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
/* remove old handle */
.mob-drawer-handle { display: none; }
.mob-drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background .12s;
  border-radius: 10px;
  margin: 1px 8px;
  -webkit-tap-highlight-color: transparent;
}
.mob-drawer-item:hover { background: var(--bg3); }
.mob-drawer-item:active { background: var(--bg3); }
.mob-drawer-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3);
  border-radius: 9px;
  flex-shrink: 0;
  color: var(--muted);
}
.mob-drawer-icon svg { width: 17px; height: 17px; }
.mob-drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 20px;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 900px) {
  /* Show bottom nav, hide top nav links */
  .mob-nav { display: block; }
  .hnav { display: none; }

  /* Pages need bottom padding for nav bar */
  .page, .fs-page { padding-bottom: 72px; }

  /* Header: hamburger | logo | lupa (login vai só no drawer) */
  .mob-hdr-btn { display: flex; align-items: center; justify-content: center; }
  .hdr-auth { display: none; }
  .hdr-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px 44px;
    align-items: center;
    gap: 0;
    padding: 0 8px;
  }
  .logo-wrap { justify-self: center; }
  #mob-hdr-search { justify-self: end; }
  #mob-hdr-login { justify-self: end; }

  /* Privacy banner: overlays bottom nav, user must accept to dismiss */
  .privacy-banner { bottom: 0; }

  /* Hero */
  .hero-trend-section { padding: 16px 16px 32px; }
  .hero-trend-section .sec-lbl { justify-content: center; }
  .home-layout { padding: 16px; }
  .home-section-title { text-align: center; }
  .home-section-title a { display: block; margin-top: 2px; }

  .trend-grid-centered { justify-content: unset; }

  /* Limit recent-added to 4 items on mobile */
  .home-recent-grid .trend-card:nth-child(n+5) { display: none; }

  /* Search */
  .search-layout { padding: 12px 16px; }

  /* Collection */
  .coll-layout { padding: 12px 16px; }
  .coll-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }

  /* Album page */
  .album-layout { padding: 16px 16px 56px; }
  .album-title { font-size: 17px; }

  /* Artist page */
  .artist-layout { padding: 16px 16px 56px; }

  /* Lists */
  .lists-layout { padding: 12px 16px; }
  .list-detail-layout { padding: 16px 16px 56px; }

  /* Feed */
  .feed-layout { padding: 12px 16px; }

  /* Wishlist */
  .wish-layout { padding: 12px 16px; }
  .wish-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

  /* FAQ */
  .faq-layout { padding: 16px 16px 0; }

  /* fs-bar inner on mobile */
  .fs-bar-inner { padding: 0 16px; }

  /* Footer mobile — versão enxuta */
  .site-footer { padding: 20px 0 16px; }
  .footer-inner { padding: 0 20px; }
  .footer-cta { display: none; }
  .footer-grid { display: none; }
  .footer-mob-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
  }
  .footer-mob-links a {
    font-size: 12px;
    color: var(--muted);
    cursor: pointer;
    padding: 4px 10px;
    transition: color .15s;
  }
  .footer-mob-links a:hover { color: var(--gold); }
  .footer-mob-links a + a {
    border-left: 1px solid var(--border2);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  /* Toast — sits above bottom nav, translateY large enough to hide below nav */
  .toast { bottom: calc(72px + 12px); transform: translateX(-50%) translateY(130px); }
  .toast.show { transform: translateX(-50%) translateY(0); }

  /* Prevent iOS zoom on input focus (font-size must be ≥ 16px) */
  input, select, textarea { font-size: 16px !important; }

  /* Pages bottom padding must account for safe-area-inset-bottom too */
  .page, .fs-page { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

  /* Modals — bottom sheet */
  .mo-overlay { align-items: flex-end; padding: 0; }
  .mo-box {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .mo-box.wide { max-width: 100%; }
  .confirm-box {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
  /* drag handle on modals for bottom-sheet feel */
  .mo-box::before, .confirm-box::before {
    content: '';
    display: block;
    width: 40px; height: 4px;
    background: var(--border2);
    border-radius: 2px;
    margin: -8px auto 12px;
  }
}
