/* ========== VARIABLES ========== */
:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface-2: #2c2c2e;
  --surface-3: #3a3a3c;
  --text: #ffffff;
  --text-secondary: #b0b0b8;
  --text-tertiary: #9a9aa6;
  --accent: #0a84ff;
  --accent-light: rgba(10,132,255,0.12);
  --green: #30d158;
  --green-light: rgba(48,209,88,0.12);
  --red: #ff453a;
  --red-light: rgba(255,69,58,0.12);
  --yellow: #ffd60a;
  --yellow-light: rgba(255,214,10,0.12);
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ========== LIGHT THEME ========== */
:root[data-theme="light"] {
  --bg: #f2f2f7;
  --surface: #ffffff;
  --surface-2: #e5e5ea;
  --surface-3: #d1d1d6;
  --text: #000000;
  --text-secondary: #3c3c43;
  --text-tertiary: #636366;
  --accent: #007aff;
  --accent-light: rgba(0,122,255,0.1);
  --green: #34c759;
  --green-light: rgba(52,199,89,0.1);
  --red: #ff3b30;
  --red-light: rgba(255,59,48,0.1);
  --yellow: #ff9f0a;
  --yellow-light: rgba(255,159,10,0.1);
  --border: rgba(0,0,0,0.08);
}
:root[data-theme="light"] .balance-card {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%), url('/img/banner.webp') center/cover no-repeat;
}
:root[data-theme="light"] .sheet { background: var(--surface); }
:root[data-theme="light"] .sheet-handle { background: var(--surface-3); }
:root[data-theme="light"] .col-side { border-left-color: var(--border); }

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; -webkit-text-size-adjust: 100%; }
body {
  height: 100%;
  font: 400 16px/1.4 -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.hidden { display: none !important; }

/* ========== TICKER ========== */
.ticker {
  width: 100%;
  height: 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-inner {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  padding: 0 20px;
  animation: tickerScroll 20s linear infinite;
}
.ticker-inner:empty::after {
  content: '';
  display: none;
}
.ticker:has(.ticker-inner:empty) {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticker:has(.ticker-inner:empty)::after {
  content: '';
}
@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ========== APP LAYOUT ========== */
#app {
  display: flex;
  min-height: 100vh;
}

/* Mobile: single column */
.col-nav { display: none; }
.col-main {
  flex: 1;
  min-width: 0;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
  padding-bottom: calc(80px + var(--safe-bottom));
}
.col-side { display: none; }
.mobile-only { display: flex; }

/* Desktop: 3 columns */
@media (min-width: 1080px) {
  body { background: #111; }
  :root[data-theme="light"] body { background: #e5e5ea; }

  #app {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--bg);
    min-height: 100vh;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .mobile-only { display: none !important; }
  .col-nav {
    display: flex;
    flex-direction: column;
    width: 200px;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
    background: var(--surface);
    height: 100vh;
    position: sticky;
    top: 0;
    padding-top: 12px;
  }
  .col-main {
    flex: 1;
    max-width: none;
    margin: 0;
    padding: 16px 20px 20px;
    overflow-y: auto;
    height: 100vh;
  }
  .col-side {
    display: block;
    width: 340px;
    flex-shrink: 0;
    border-left: 1px solid var(--border);
    background: var(--bg);
    overflow-y: auto;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  .side-inner { padding: 16px; padding-top: 28px; }
  .cart-fab { display: none !important; }
}
/* Tablet: 2 columns (no sidebar) */
@media (min-width: 840px) and (max-width: 1079px) {
  body { background: #111; }
  :root[data-theme="light"] body { background: #e5e5ea; }
  #app {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg);
    min-height: 100vh;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .mobile-only { display: none !important; }
  .col-nav { display: none !important; }
  .col-main {
    flex: 1;
    max-width: none;
    margin: 0;
    padding: 16px 20px 20px;
    overflow-y: auto;
    height: 100vh;
  }
  .col-side {
    display: block;
    width: 340px;
    flex-shrink: 0;
    border-left: 1px solid var(--border);
    background: var(--bg);
    overflow-y: auto;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  .side-inner { padding: 16px; }
  .cart-fab { display: none !important; }
  .bottom-nav { display: none !important; }
}

/* ========== TOP BAR ========== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
}
.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.theme-toggle:active { background: var(--surface-2); }

/* ========== BALANCE CARD (BANNER) ========== */
.balance-card {
  margin: 4px 0 16px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%), url('/img/banner.webp') center/cover no-repeat;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.balance-label { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.balance-sub { font-size: 15px; color: #fff; margin-top: 2px; opacity: 0.85; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.balance-hint { margin-top: 12px; font-size: 14px; color: #fff; padding: 8px 12px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border-radius: var(--radius-xs); display: inline-block; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }

/* ========== OFFICIAL BADGE ========== */
.official-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--green-light);
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 16px;
}

/* ========== SECTIONS ========== */
.section { margin-bottom: 20px; }
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-tertiary);
  padding: 0 4px;
  margin-bottom: 10px;
}

/* ========== PRODUCT LIST ========== */
.product-list { display: flex; flex-direction: column; gap: 10px; }
.product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.product-item:active { background: var(--surface-2); }

.product-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #ffd60a 0%, #ff9f0a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #1c1c1e;
  flex-shrink: 0;
}
.product-info { flex: 1; min-width: 0; }
.product-name { font-size: 16px; font-weight: 600; }
.product-coins { font-size: 13px; color: var(--text-tertiary); margin-top: 1px; }
.product-price-wrap { text-align: right; flex-shrink: 0; }
.product-price { font-size: 16px; font-weight: 600; }
.product-per { font-size: 11px; color: var(--text-tertiary); }

.btn-add-cart {
  margin-top: 4px;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}
.btn-add-cart:active { transform: scale(0.95); background: #0070e0; }

/* ========== INFO CARD ========== */
.info-card {
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.info-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}
.info-card strong { color: var(--text); }

/* ========== FAQ ========== */
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-q::after { content: '+'; font-size: 18px; color: var(--text-tertiary); transition: transform 0.2s; }
.faq-item[open] .faq-q::after { content: '-'; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a {
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-a p { margin-top: 6px; }
.faq-a strong { color: var(--text); }

/* ========== LINK BTN ========== */
.link-btn {
  width: 100%;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
}
.link-btn:active { background: var(--surface-2); }

/* ========== FOOTER ========== */
.footer {
  padding: 20px 4px 10px;
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.6;
}
.footer-company { font-weight: 500; }

/* ========== SIDE PANEL ========== */
.side-section { margin-bottom: 20px; }
.side-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-subtitle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* ========== CART ========== */
.cart-empty {
  padding: 24px;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 14px;
}
.cart-items { display: flex; flex-direction: column; gap: 8px; }
.cart-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--surface);
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
}
.cart-row-info { flex: 1; min-width: 0; }
.cart-row-name { font-size: 14px; font-weight: 500; }
.cart-row-price { font-size: 13px; color: var(--text-tertiary); }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: inherit;
}
.qty-btn:active { background: var(--surface-3); }
.qty-val { font-size: 15px; font-weight: 600; min-width: 18px; text-align: center; }
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: var(--surface);
  border-radius: var(--radius-xs);
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  border: 1px solid var(--border);
}

/* ========== FORM ========== */
.field { margin-bottom: 12px; }
.field-label {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 5px;
  padding-left: 2px;
}
.field-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.field-input:focus { border-color: var(--accent); }
.field-input::placeholder { color: var(--text-tertiary); opacity: 0.6; }
.field-divider { height: 1px; background: var(--border); margin: 16px 0; }

.error-msg {
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  background: var(--red-light);
  color: var(--red);
  font-size: 14px;
  margin-bottom: 12px;
}

/* ========== BUTTONS ========== */
.btn-accent {
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, opacity 0.15s, transform 0.1s;
}
.btn-accent:active { transform: scale(0.98); }
.btn-accent:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-full { width: 100%; }
.btn-secondary {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--surface-2);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-top: 12px;
}
.btn-loading { position: relative; color: transparent !important; }
.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ========== TRACKING ========== */
.tracking-card { text-align: center; padding: 24px 16px; }
.tracking-icon { font-size: 44px; margin-bottom: 12px; }
.tracking-title { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.tracking-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 4px; }
.tracking-status {
  font-size: 14px; font-weight: 500;
  margin-top: 10px; padding: 8px 14px;
  border-radius: var(--radius-xs);
  display: inline-block;
}
.tracking-status.paid { background: var(--green-light); color: var(--green); }
.tracking-status.waiting { background: var(--yellow-light); color: var(--yellow); }
.tracking-status.failed { background: var(--red-light); color: var(--red); }

/* ========== MOBILE CART FAB ========== */
.cart-fab {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(10,132,255,0.4);
  z-index: 50;
  transition: transform 0.15s;
}
.cart-fab:active { transform: scale(0.9); }
.cart-fab-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 20px; height: 20px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ========== SHEETS (MOBILE MODALS) ========== */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
}
.sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-height: 90vh;
  background: var(--surface);
  border-radius: var(--radius) var(--radius) 0 0;
  z-index: 101;
  overflow-y: auto;
  padding-bottom: calc(16px + var(--safe-bottom));
  animation: slideUp 0.25s ease-out;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.sheet-handle {
  width: 36px; height: 4px;
  border-radius: 2px;
  background: var(--surface-3);
  margin: 10px auto;
}
.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 16px 12px;
}
.sheet-title { font-size: 18px; font-weight: 600; }
.sheet-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--surface-2);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sheet-content { padding: 0 16px; }

/* ========== OFFER TEXT ========== */
.offer-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-bottom: 20px;
}
.offer-text h2 { font-size: 16px; color: var(--text); margin: 16px 0 8px; }
.offer-text h3 { font-size: 14px; color: var(--text); margin: 12px 0 6px; }
.offer-text p { margin-bottom: 6px; }
.offer-text strong { color: var(--text); }

/* ========== LOADING ========== */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 12px;
  color: var(--text-tertiary);
  font-size: 14px;
}
.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--surface-2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== LEFT SIDEBAR (Discord-style) ========== */
.nav-header {
  padding: 16px 14px 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-tertiary);
}
.nav-channels {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
}
.channel-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-xs);
  border: none;
  background: transparent;
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
  text-align: left;
  width: 100%;
}
.channel-btn:hover { background: rgba(255,255,255,0.06); color: var(--text-secondary); }
:root[data-theme="light"] .channel-btn:hover { background: rgba(0,0,0,0.04); }
.channel-btn.active { background: rgba(255,255,255,0.1); color: var(--text); font-weight: 600; }
:root[data-theme="light"] .channel-btn.active { background: rgba(0,0,0,0.06); }
.channel-btn svg { flex-shrink: 0; opacity: 0.6; }
.channel-btn.active svg { opacity: 1; }
.nav-footer {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

/* ========== PAGES ========== */
.page { display: none; }
.page.active { display: block; }

/* ========== BOTTOM NAV (mobile) ========== */
.bottom-nav {
  display: none; /* shown only on mobile */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(56px + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 60;
  justify-content: space-around;
  align-items: center;
}
.bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: none;
  background: none;
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 16px;
  font-family: inherit;
  transition: color 0.15s;
}
.bnav-btn.active { color: var(--accent); }
.bnav-btn svg { stroke: currentColor; }

/* ========== INFO TABS (sub-menu) ========== */
.info-tabs {
  display: flex;
  gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.info-tab-btn {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.15s;
}
.info-tab-btn:hover { color: var(--text-secondary); }
.info-tab-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.info-tab { display: none; }
.info-tab.active { display: block; }

/* ========== INFO PAGE ========== */
.info-img-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.info-img {
  width: 100%;
  display: block;
  cursor: zoom-in;
}
.officer-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
}
.officer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  white-space: nowrap;
}
.officer-table th {
  background: var(--surface-2);
  padding: 8px 10px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-secondary);
  position: sticky;
  top: 0;
}
.officer-table td {
  padding: 6px 10px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}
.officer-table tr:hover td { background: var(--surface); }

/* Calculator */
.calc-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.calc-half { flex: 1; min-width: 70px; }
.calc-result {
  margin-top: 12px;
  padding: 12px;
  background: var(--surface-2);
  border-radius: var(--radius-xs);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.calc-result strong { color: var(--text); }

/* Image fullscreen */
.img-full-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.img-full-overlay img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 0; height: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 839px) {
  .col-nav { display: none !important; }
  .col-side { display: none !important; }
  .col-main {
    max-width: 480px;
    padding-bottom: calc(56px + var(--safe-bottom) + 10px);
  }
  .bottom-nav { display: flex; }
}
@media (min-width: 1080px) {
  .bottom-nav { display: none !important; }
  .mobile-only { display: none !important; }
}
