/* ─── Dallas Store — Premium Dark UI ────────────────────────────────────────── */

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

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --bg:         #000000;
  --bg2:        #0a0a0a;
  --bg3:        #111111;
  --surface:    rgba(217,215,215,0.04);
  --surface2:   rgba(217,215,215,0.07);
  --border:     rgba(217,215,215,0.10);
  --border2:    rgba(217,215,215,0.18);
  --accent:     #d9d7d7;
  --accent2:    #a8a6a6;
  --accent-glow:rgba(217,215,215,0.15);
  --green:      #10b981;
  --green-glow: rgba(16,185,129,0.3);
  --red:        #ef4444;
  --xbox:       #107c10;
  --boost:      #d9d7d7;
  --text:       #d9d7d7;
  --text2:      #8a8888;
  --text3:      #555353;
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --shadow:     0 8px 32px rgba(0,0,0,0.6);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.8);
  --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::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);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Animated Background ───────────────────────────────────────────────────── */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-glow::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(217,215,215,0.06) 0%, transparent 70%);
  animation: drift1 18s ease-in-out infinite alternate;
}
.bg-glow::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(217,215,215,0.04) 0%, transparent 70%);
  animation: drift2 22s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(80px,60px) scale(1.1); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,-40px) scale(1.15); } }

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.container-sm { max-width: 680px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ─── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,11,20,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.navbar-logo {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #d9d7d7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.navbar-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.navbar-links a {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: var(--transition);
}
.navbar-links a:hover, .navbar-links a.active {
  color: var(--text);
  background: var(--surface2);
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.navbar-points {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.navbar-points svg { width: 14px; height: 14px; }
.navbar-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border2);
}
.navbar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
  font-size: 13px;
  font-weight: 500;
}
.navbar-user:hover { border-color: var(--border2); background: var(--surface2); }

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #818cf8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.hero-title .gradient {
  background: linear-gradient(135deg, #ffffff 0%, #d9d7d7 50%, #8a8888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* ─── Section titles ─────────────────────────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.section-link {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  transition: var(--transition);
}
.section-link:hover { color: #818cf8; }

/* ─── Product Grid ───────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: rgba(88,101,242,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(88,101,242,0.2);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(88,101,242,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.product-card:hover::before { opacity: 1; }

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg3);
}
.product-image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.product-desc {
  font-size: 13px;
  color: var(--text3);
  flex: 1;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.product-price .currency {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  vertical-align: super;
  margin-right: 1px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #d9d7d7, #a8a6a6);
  color: #000;
  box-shadow: 0 4px 15px rgba(217,215,215,0.2);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(217,215,215,0.3);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }

.btn-green {
  background: linear-gradient(135deg, var(--green), #059669);
  color: #fff;
  box-shadow: 0 4px 15px var(--green-glow);
}
.btn-green:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 6px 24px var(--green-glow); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
}
.btn-outline:hover { background: var(--surface2); border-color: rgba(255,255,255,0.25); }

.btn-danger { background: linear-gradient(135deg, var(--red), #dc2626); color: #fff; }
.btn-danger:hover { filter: brightness(1.1); }

.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ─── Discord Login Button ───────────────────────────────────────────────────── */
.btn-discord {
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  box-shadow: 0 4px 15px rgba(88,101,242,0.4);
  gap: 10px;
}
.btn-discord:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-discord svg { width: 20px; height: 20px; }

/* ─── Cards / Glass ──────────────────────────────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-glass {
  background: rgba(13,17,32,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* ─── Forms ──────────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text2); }
.form-input {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-input::placeholder { color: var(--text3); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--text3); }

/* ─── Coupon Input ───────────────────────────────────────────────────────────── */
.coupon-row {
  display: flex;
  gap: 10px;
}
.coupon-row .form-input { flex: 1; text-transform: uppercase; letter-spacing: 0.05em; }
.coupon-feedback {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  display: none;
}
.coupon-feedback.success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: var(--green); display: block; }
.coupon-feedback.error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: var(--red); display: block; }

/* ─── Order Summary ──────────────────────────────────────────────────────────── */
.order-summary {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.order-summary-product {
  display: flex;
  gap: 14px;
  padding: 18px;
  align-items: center;
}
.order-summary-img {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--bg2);
  flex-shrink: 0;
}
.order-summary-info { flex: 1; }
.order-summary-name { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.order-summary-cat { font-size: 12px; color: var(--text3); }
.order-lines { border-top: 1px solid var(--border); }
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.order-line:last-child { border-bottom: none; }
.order-line.total {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  background: rgba(88,101,242,0.06);
}
.order-line.discount { color: var(--green); }
.order-line .strike { text-decoration: line-through; color: var(--text3); font-size: 13px; }

/* ─── PIX ────────────────────────────────────────────────────────────────────── */
.pix-container {
  text-align: center;
  padding: 40px 24px;
}
.pix-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.pix-status-badge.pending { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: #f59e0b; }
.pix-status-badge.paid    { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: var(--green); }
.pix-status-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.pix-status-badge.pending .dot { animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.pix-qr {
  width: 200px; height: 200px;
  border-radius: var(--radius);
  border: 3px solid rgba(16,185,129,0.3);
  margin: 0 auto 24px;
  padding: 8px;
  background: #fff;
}
.pix-qr img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }

.pix-copy-group { display: flex; gap: 8px; max-width: 480px; margin: 0 auto 16px; }
.pix-copy-input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.pix-expires {
  font-size: 13px;
  color: var(--text3);
}
.pix-expires span { color: #f59e0b; font-weight: 600; }

.pix-paid-icon {
  width: 80px; height: 80px;
  background: rgba(16,185,129,0.1);
  border: 2px solid rgba(16,185,129,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

/* ─── Points Store ───────────────────────────────────────────────────────────── */
.points-hero {
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(5,150,105,0.04) 100%);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-bottom: 40px;
}
.points-balance {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}
.points-label { font-size: 15px; color: var(--text2); font-weight: 500; }

.exchange-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.exchange-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.exchange-card:hover { border-color: var(--border2); background: var(--bg3); }
.exchange-icon { font-size: 36px; margin-bottom: 14px; }
.exchange-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.exchange-rate { font-size: 13px; color: var(--text3); margin-bottom: 20px; }
.exchange-rate strong { color: var(--green); }

.history-table {
  width: 100%;
  border-collapse: collapse;
}
.history-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
  font-weight: 600;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.history-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
}
.history-table tr:last-child td { border-bottom: none; }
.history-table .amount-pos { color: var(--green); font-weight: 600; }
.history-table .amount-neg { color: var(--red); font-weight: 600; }

/* ─── Status badges ──────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-pending  { background: rgba(245,158,11,0.12); color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.badge-paid     { background: rgba(16,185,129,0.12); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.badge-rejected { background: rgba(239,68,68,0.12); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }
.badge-approved { background: rgba(88,101,242,0.12); color: #818cf8; border: 1px solid rgba(88,101,242,0.3); }

/* ─── Tabs ───────────────────────────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 28px;
}
.tab {
  flex: 1;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.tab.active { background: var(--bg2); color: var(--text); box-shadow: var(--shadow); }
.tab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.04); }

/* ─── Admin ──────────────────────────────────────────────────────────────────── */
.admin-sidebar {
  width: 220px;
  flex-shrink: 0;
}
.admin-layout { display: flex; gap: 28px; padding-top: 28px; }
.admin-content { flex: 1; min-width: 0; }
.admin-nav {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: var(--transition);
}
.admin-nav-item:hover, .admin-nav-item.active { background: var(--surface2); color: var(--text); }
.admin-nav-item svg { width: 16px; height: 16px; }

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text3);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.data-table tr:last-child td { border-bottom: none; }

/* ─── Alerts ─────────────────────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.alert-success { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); color: #34d399; }
.alert-error   { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #f87171; }
.alert-info    { background: rgba(88,101,242,0.08); border: 1px solid rgba(88,101,242,0.25); color: #818cf8; }

/* ─── Loading spinner ────────────────────────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Empty state ────────────────────────────────────────────────────────────── */
.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text3);
}
.empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty h3 { font-size: 18px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.empty p { font-size: 14px; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--text3);
  font-size: 13px;
  margin-top: 80px;
}
.footer a { color: var(--text2); transition: var(--transition); }
.footer a:hover { color: var(--text); }

/* ─── Utilities ──────────────────────────────────────────────────────────────── */
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-6  { margin-bottom: 24px; }
.gap-4 { gap: 16px; }
.flex  { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.text-sm  { font-size: 13px; }
.text-xs  { font-size: 11px; }
.text-muted { color: var(--text3); }
.text-green { color: var(--green); }
.text-red   { color: var(--red); }
.font-bold  { font-weight: 700; }
.w-full { width: 100%; }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .exchange-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .navbar-links { display: none; }
  .hero { padding: 50px 0 40px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
