/* ================================================================
   Viralize Social — SMM Panel
   Design: Clean White & Blue
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* White & Blue palette */
  --bg-deep:      #eef2f8;
  --bg-main:      #f5f7fb;
  --bg-card:      #ffffff;
  --bg-glass:     rgba(255,255,255,.96);
  --bg-input:     #f3f6fb;

  /* Blue */
  --blue:         #0082fb;
  --blue-dark:    #0064d2;
  --blue-light:   #4599ff;

  --grad:         linear-gradient(135deg, #0082fb, #0064d2);
  --grad-subtle:  linear-gradient(135deg, rgba(0,130,251,.08), rgba(0,100,210,.04));
  --glow-blue:    rgba(0, 130, 251, .2);

  --text-pri:     #111827;
  --text-sec:     #4b5563;
  --text-muted:   #9ca3af;

  --success:      #16a34a;
  --warning:      #d97706;
  --danger:       #dc2626;

  --border:       #e2e8f0;
  --border-strong:#cbd5e1;

  /* Zero radius — straight corners */
  --radius:       0px;
  --radius-sm:    0px;
  --radius-xs:    0px;
  --transition:   .2s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text-pri);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,130,251,.3); border-radius: 4px; }

/* ================================================================
   HEADER
   ================================================================ */
.header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 130px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-self: center;
}

.logo img {
  height: 90px;
  width: auto;
  border-radius: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name  { font-size: 1.2rem; font-weight: 800; color: var(--text-pri); letter-spacing: .3px; }
.logo-sub   {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-right { display: flex; flex-direction: column; align-items: stretch; gap: 8px; width: 160px; margin-left: auto; }

.balance-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 9px 18px;
  font-size: .85rem;
  color: var(--text-sec);
  cursor: pointer;
  transition: var(--transition);
  height: 34px;
  box-sizing: border-box;
}
.balance-pill:hover { border-color: var(--blue); color: var(--text-pri); }
.balance-pill i {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.balance-value { font-weight: 800; color: var(--success); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  text-align: center;
  padding: 52px 24px 36px;
  background: linear-gradient(160deg, #0082fb 0%, #0064d2 100%);
  border-bottom: 1px solid #005bb8;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -.3px;
  line-height: 1.15;
}

.hero h1 span {
  color: #a8d4ff;
}

.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 400;
}

/* ================================================================
   MAIN LAYOUT
   ================================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px 72px; }

/* ================================================================
   STAT CARDS (strip below hero)
   ================================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  border-top: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.stat-card {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  position: relative;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
}
.stat-card:last-child { border-right: none; }

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue);
}

.stat-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-pri);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: .72rem;
  color: var(--text-muted);
}

.stat-icon {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 1.1rem;
  color: var(--blue);
  opacity: .4;
}

/* ================================================================
   NETWORK TABS
   ================================================================ */
.network-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.network-tabs::-webkit-scrollbar { display: none; }

.net-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 84px;
  padding: 14px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.net-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tab-color, transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.net-tab:hover { background: var(--bg-input); border-color: var(--border-strong); }
.net-tab.active { background: var(--bg-input); border-color: var(--tab-color, var(--blue)); }
.net-tab.active::after { transform: scaleX(1); }

.net-tab .net-icon {
  width: 38px; height: 38px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: var(--bg-deep);
  color: var(--text-sec);
  transition: var(--transition);
  overflow: hidden;
}

.net-tab span { font-size: .7rem; font-weight: 600; color: var(--text-muted); transition: color var(--transition); }
.net-tab.active span { color: var(--text-pri); }

/* Network colors */
.net-tab[data-net="instagram"]  { --tab-color: #e1306c; }
.net-tab[data-net="tiktok"]     { --tab-color: #ff0050; }
.net-tab[data-net="facebook"]   { --tab-color: #1877f2; }
.net-tab[data-net="youtube"]    { --tab-color: #ff0000; }
.net-tab[data-net="threads"]    { --tab-color: #000000; }
.net-tab[data-net="kwai"]       { --tab-color: #ff6b00; }
.net-tab[data-net="x"]          { --tab-color: #000000; }
.net-tab[data-net="spotify"]    { --tab-color: #1db954; }
.net-tab[data-net="pinterest"]  { --tab-color: #e60023; }
.net-tab[data-net="discord"]    { --tab-color: #5865f2; }
.net-tab[data-net="linkedin"]   { --tab-color: #0a66c2; }

/* ================================================================
   PANEL CARD
   ================================================================ */
.panel-card {
  background: #ffffff;
  border: 3px solid var(--blue);
  border-radius: 0;
  padding: 28px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.panel-card::before {
  display: none;
}

.panel-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.panel-title i {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
}

/* ================================================================
   FORM ELEMENTS
   ================================================================ */
.form-group { margin-bottom: 22px; }

label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}

label i {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

input[type="text"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-pri);
  padding: 13px 16px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,130,251,.12);
  background: #fff;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

option { background: #fff; color: #111827; }

/* ================================================================
   PROFILE SECTION
   ================================================================ */
.profile-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.profile-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 92px;
}

.avatar-wrap {
  width: 86px; height: 86px;
  border-radius: 0;
  border: 2px solid var(--border);
  overflow: hidden;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s;
  flex-shrink: 0;
}

.avatar-wrap.loaded { border-color: var(--blue); }

.avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.avatar-wrap .avatar-placeholder { color: var(--text-muted); font-size: 2rem; }
.avatar-username { font-size: .75rem; color: var(--text-muted); max-width: 86px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ================================================================
   QUANTITY & RANGE
   ================================================================ */
.qty-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.range-wrap { position: relative; }

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(0,130,251,.15);
  border: none;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  margin-top: 12px;
  padding: 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 0;
  background: var(--blue);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--blue);
}

input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 0;
  background: var(--blue);
  border: 2px solid #fff;
  cursor: pointer;
}

.qty-limits {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ================================================================
   PRICE BOX
   ================================================================ */
.price-box {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 0;
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  position: relative;
}

.price-brl {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-pri);
  letter-spacing: -1px;
  position: relative;
}

.price-brl span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-sec);
  letter-spacing: 0;
}

/* ================================================================
   SERVICE BADGES
   ================================================================ */
.service-info {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 0;
  font-size: .7rem;
  font-weight: 600;
}

.badge-blue   { background: rgba(0,130,251,.1);   color: var(--blue-dark);  border: 1px solid rgba(0,130,251,.25); }
.badge-green  { background: rgba(22,163,74,.1);   color: var(--success);    border: 1px solid rgba(22,163,74,.25); }
.badge-yellow { background: rgba(217,119,6,.1);   color: var(--warning);    border: 1px solid rgba(217,119,6,.25); }
.badge-red    { background: rgba(220,38,38,.1);   color: var(--danger);     border: 1px solid rgba(220,38,38,.25); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 0;
  font-size: .95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}
.btn-primary:hover { background: var(--blue-light); }
.btn-primary:active { background: var(--blue-dark); }

.btn-pix {
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  width: 100%;
  padding: 18px;
  letter-spacing: .3px;
}
.btn-pix:hover { background: var(--blue-light); }

.btn-outline {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-sec);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,130,251,.04); }

.btn-sm { padding: 8px 16px; font-size: .8rem; }

.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }

/* ================================================================
   ORDERS TABLE
   ================================================================ */
.table-wrap { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; font-size: .85rem; }

th {
  padding: 12px 16px;
  text-align: left;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  background: var(--bg-input);
}

td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-sec);
  vertical-align: middle;
}

tr:hover td { background: rgba(0,130,251,.03); }
.td-link { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.status-pending    { background: rgba(217,119,6,.1);  color: var(--warning); border: 1px solid rgba(217,119,6,.25); }
.status-inprogress { background: rgba(0,130,251,.1);  color: var(--blue);    border: 1px solid rgba(0,130,251,.25); }
.status-completed  { background: rgba(22,163,74,.1);  color: var(--success); border: 1px solid rgba(22,163,74,.25); }
.status-partial    { background: rgba(217,119,6,.1);  color: var(--warning); border: 1px solid rgba(217,119,6,.25); }
.status-cancelled  { background: rgba(220,38,38,.1);  color: var(--danger);  border: 1px solid rgba(220,38,38,.25); }

/* ================================================================
   MODAL (PIX - preview.html)
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 0;
  width: 100%;
  max-width: 460px;
  transform: translateY(20px);
  transition: transform .25s ease;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-header {
  background: var(--bg-input);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-pri);
}

.modal-title i { color: var(--blue); }

.modal-close {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-sec);
  cursor: pointer;
  font-size: 1rem;
  padding: 6px 10px;
  transition: var(--transition);
}
.modal-close:hover { border-color: var(--blue); color: var(--blue); }

.modal-body { padding: 26px; }

.pix-amount {
  text-align: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}

.pix-amount-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.pix-amount-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--success);
  letter-spacing: -1px;
}

.pix-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pix-qr img {
  border-radius: 0;
  background: #fff;
  padding: 8px;
  border: 2px solid var(--blue);
}

.pix-copy-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  align-items: stretch;
}

.pix-code {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-sec);
  font-size: .7rem;
  padding: 10px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
  display: flex;
  align-items: center;
}

/* ================================================================
   LOADER / SPINNER
   ================================================================ */
.spinner {
  width: 22px; height: 22px;
  border: 2.5px solid rgba(0,130,251,.15);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg, #f0f4ff 25%, #e2eaf8 50%, #f0f4ff 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius-xs);
  height: 20px;
}

@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ================================================================
   TOAST
   ================================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 0;
  padding: 14px 20px;
  font-size: .88rem;
  color: var(--text-pri);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform .25s ease;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show { transform: translateX(0); }

/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state {
  text-align: center;
  padding: 56px 20px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 2.8rem;
  margin-bottom: 16px;
  opacity: .4;
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.empty-state p { font-size: .9rem; }

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 680px) {

  /* ── Header ── */
  .header { padding: 0 12px; }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: 8px;
    position: relative;
  }
  .logo {
    position: static;
    transform: none;
    justify-self: unset;
    flex: 0 0 auto;
  }
  .logo-img { height: 70px !important; }
  .header-left { display: none; }
  .header-right { gap: 6px; flex-direction: row; align-items: center; width: auto; margin-left: auto; flex: 0 0 auto; }
  .deposit-btn {
    font-size: .72rem;
    padding: 8px 12px;
    letter-spacing: 0;
    height: 36px;
    min-width: unset;
    position: static;
    transform: none;
    order: -1;
  }
  .balance-pill {
    font-size: .72rem;
    padding: 8px 12px;
    gap: 4px;
    height: 36px;
  }

  /* ── Hero ── */
  .hero { padding: 28px 16px 20px; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: .88rem; }

  /* ── Stats strip ── */
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Network tabs — grade no mobile ── */
  .network-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: unset;
    gap: 0;
  }
  .net-tab {
    min-width: unset;
    width: 100%;
    padding: 10px 4px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .tab-img { width: 32px; height: 32px; }
  .net-icon-telegram { width: 32px !important; height: 32px !important; }
  .net-tab span { font-size: .62rem; }

  /* ── Panel cards ── */
  .panel-card { padding: 18px 14px; margin-bottom: 14px; }
  .section-title { font-size: .72rem; }

  /* ── Profile/link row ── */
  .profile-row { grid-template-columns: 1fr; }
  .avatar-wrap { width: 68px; height: 68px; margin: 0 auto; }

  /* ── Profile preview image (viralizesocial) ── */
  .profile-preview {
    display: none;
  }

  /* ── Qty row ── */
  .qty-row { grid-template-columns: 1fr; }

  /* ── Comprar / PIX buttons ── */
  .btn-pix { font-size: .95rem; padding: 16px; }
  #btn-gerar-pix { font-size: 1rem; padding: 16px; }

  /* ── Orders table — oculta colunas Link / QTD / Data no mobile ── */
  .orders-section th,
  .orders-section td { padding: 10px 10px; font-size: .76rem; }
  .td-link, th:nth-child(3),
  .orders-section td:nth-child(4), .orders-section th:nth-child(4),
  .orders-section td:nth-child(5), .orders-section th:nth-child(5) { display: none; }
  .orders-section table { width: 100%; }

  /* ── Check row ── */
  .check-row { flex-direction: column; gap: 8px; }
  .check-row input { width: 100%; }
  .check-row button { width: 100%; }

  /* ── Footer ── */
  footer { padding: 28px 16px; font-size: .72rem; }
  footer div { line-height: 1.8; }
}
