/* ============================================================
   DATA-TOPUP — MyDataGigs-Inspired Theme
   ============================================================ */

:root {
  --bg-page:          #F5F7F9;
  --bg-white:         #FFFFFF;
  --bg-dark:          #202020;
  --bg-dark-alt:      #1a1a1a;
  --text-primary:     #222222;
  --text-secondary:   #666666;
  --text-light:       #999999;
  --text-white:       #FFFFFF;

  /* Brand Network Colors */
  --mtn-yellow:       #FFCC00;
  --mtn-dark:         #111111;
  --telecel-red:      #C8102E;
  --telecel-light:    #F5E0E3;
  --at-blue:          #0032A0;
  --at-light:         #E0E8FF;
  --green-step:       #40B04F;
  --cyan-step:        #00DAFF;

  --accent-success:   #27AE60;
  --accent-danger:    #E74C3C;
  --accent-warning:   #F39C12;

  --border-color:     #E5E7EB;
  --shadow-sm:        0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:        0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:        0 10px 30px rgba(0,0,0,.12);

  --font-heading:     'Montserrat', sans-serif;
  --font-body:        'Source Sans Pro', sans-serif;
  --font-nav:         'Lato', sans-serif;

  --max-width:        1180px;
  --radius:           6px;
  --radius-lg:        10px;
  --transition:       160ms ease;

  /* Legacy compat vars used in inline styles */
  --bg-primary:       #FFFFFF;
  --bg-secondary:     #F5F7F9;
  --bg-tertiary:      #F0F2F5;
  --glass-bg:         #FFFFFF;
  --glass-border:     #E5E7EB;
  --glass-shadow:     0 4px 12px rgba(0,0,0,.08);
  --accent-primary:   #222222;
  --accent-secondary: #FFCC00;
  --brand-yellow:     #FFCC00;
  --wallet-purple:    #7C3AED;
  --radius-sm:        6px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: min(100% - 32px, var(--max-width)); margin-inline: auto; }

/* ── Utility ── */
.glass-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.text-gradient, .text-gradient-accent { color: var(--text-primary); }
.eyebrow {
  color: var(--text-secondary);
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header-container {
  width: min(100% - 32px, var(--max-width));
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}
.logo-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--mtn-yellow);
  color: var(--mtn-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  border-radius: 4px;
}
.logo-text { color: var(--text-primary); }
.logo .text-gradient-accent { color: var(--mtn-dark); }

/* Nav links */
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 12px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--bg-page); }

/* Auth buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.wallet-nav-link {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 6px 12px;
  background: #F0F2F5;
  border-radius: 999px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border-color);
  background: transparent;
  border-radius: var(--radius);
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
.btn-primary:hover:not(:disabled) {
  background: #333;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--bg-white);
  color: var(--text-primary);
  border-color: var(--border-color);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--bg-page);
  border-color: #ccc;
  transform: translateY(-1px);
}
.btn-large { min-height: 52px; padding: 14px 28px; font-size: 14px; }
.btn-mtn {
  background: var(--mtn-yellow);
  color: var(--mtn-dark);
  border-color: var(--mtn-yellow);
  font-weight: 800;
}
.btn-mtn:hover:not(:disabled) { background: #e6b800; }

/* Header button overrides */
.header .btn-primary { min-height: 36px; padding: 7px 14px; font-size: 11px; }
.header .btn-secondary { min-height: 36px; padding: 7px 14px; font-size: 11px; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group { display: grid; gap: 6px; }
.form-group + .form-group { margin-top: 16px; }
.form-group label {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea,
.price-input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--text-primary);
  font-size: 15px;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.price-input:focus {
  border-color: #888;
  box-shadow: 0 0 0 3px rgba(0,0,0,.07);
}
.form-group input::placeholder { color: #bbb; }

/* Result messages */
.result-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #f0fbf4;
  border: 1px solid #b7e4c7;
  color: #1a6e3a;
  font-size: 14px;
}
.result-message.error, .error {
  background: #fff5f5;
  border-color: #fcc;
  color: var(--accent-danger);
}

/* Spinner */
.spinner-wrap { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 13px; }
.spinner {
  width: 18px; height: 18px;
  border: 2px solid #ddd;
  border-top-color: var(--bg-dark);
  border-radius: 50%;
  animation: spin .75s linear infinite;
  flex-shrink: 0;
}
.loading-text { color: var(--text-secondary); font-size: 14px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Stock status */
.stock-status {
  padding: 12px 16px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  color: #856404;
  font-size: 13px;
  margin-top: 8px;
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--bg-dark) url('/assets/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  backdrop-filter: blur(6px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mtn-yellow);
  box-shadow: 0 0 8px var(--mtn-yellow);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero-title .text-gradient-accent { color: var(--mtn-yellow); }
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  max-width: 520px;
}

/* Welcome strip */
.welcome-strip {
  margin: -28px auto 0;
  position: relative;
  z-index: 10;
  width: min(100% - 32px, var(--max-width));
  padding: 18px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 24px;
}
.welcome-strip > div:first-child { display: flex; align-items: center; gap: 12px; }
.welcome-strip p, .welcome-date { color: var(--text-secondary); font-size: 13px; }
.welcome-strip strong { display: block; font-size: 15px; font-weight: 700; }
.welcome-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #fff8d6;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}
.online-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--accent-success);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.online-status i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-success);
  box-shadow: 0 0 0 3px rgba(39,174,96,.2);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header { margin-bottom: 32px; }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin: 6px 0 10px;
  color: var(--text-primary);
}
.section-header p { color: var(--text-secondary); max-width: 560px; }

/* ============================================================
   HOW IT WORKS — 4 Steps
   ============================================================ */
.how-section { padding: 80px 0 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  padding: 28px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}
.step-card:nth-child(1) .step-num { background: var(--green-step); }
.step-card:nth-child(2) .step-num { background: var(--mtn-yellow); color: var(--mtn-dark); }
.step-card:nth-child(3) .step-num { background: var(--telecel-red); }
.step-card:nth-child(4) .step-num { background: var(--at-blue); }
.step-card h3 {
  margin: 14px 0 6px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}
.step-card p { color: var(--text-secondary); font-size: 14px; }

/* ============================================================
   NETWORK SERVICE LINKS
   ============================================================ */
.service-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.service-link {
  min-height: 130px;
  padding: 20px 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.service-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #ccc;
}
.service-link strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}
.service-link small { color: var(--text-secondary); font-size: 12px; }
.service-mark {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  padding: 8px;
}
.service-mark img { width: 100%; height: 100%; object-fit: contain; }
.service-mark.agent { background: var(--bg-dark); color: var(--mtn-yellow); font-size: 22px; border-color: var(--bg-dark); }

/* ============================================================
   FEATURES — WHY CHOOSE US
   ============================================================ */
.features-section { padding: 72px 0 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 28px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: #FFF8D6;
  font-size: 24px;
}
.feature-card h3 {
  margin: 14px 0 6px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}
.feature-card p { color: var(--text-secondary); font-size: 14px; }

/* ============================================================
   BUY / ORDER SECTION
   ============================================================ */
.buy-section {
  padding: 80px 0;
}
.buy-section.container { padding-left: 0; padding-right: 0; }
.buy-section .section-header { text-align: center; }
.form-container {
  width: min(100%, 560px);
  margin-inline: auto;
  padding: 32px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 72px 0 80px; }
.faq-list { max-width: 860px; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--text-secondary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 20px; color: var(--text-secondary); font-size: 14px; }

/* ============================================================
   HOURS SECTION
   ============================================================ */
.hours-section {
  background: var(--bg-dark);
  padding: 56px 0;
  margin-top: 0;
}
.hours-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  gap: 16px;
}
.hours-inner h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin-top: 6px;
}
.hours-inner .eyebrow { color: var(--mtn-yellow); }
.hours-card {
  padding: 22px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours-card span { color: rgba(255,255,255,.6); font-size: 13px; }
.hours-card strong { color: #fff; font-size: 17px; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #F0F2F5;
  border-top: 1px solid var(--border-color);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--text-secondary); font-size: 14px; margin-top: 12px; max-width: 260px; }
.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.footer-links-group a,
.footer-links-group span { display: block; color: var(--text-secondary); font-size: 14px; margin-bottom: 8px; transition: color var(--transition); }
.footer-links-group a:hover { color: var(--text-primary); }
.footer-hours strong { display: block; font-weight: 700; color: var(--text-primary); font-size: 14px; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: var(--text-light); font-size: 13px; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  position: relative;
  width: min(100%, 460px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  animation: modalIn .2s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(.95) translateY(10px); } to { opacity:1; transform: none; } }
.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.modal-content .eyebrow { margin-bottom: 4px; }
.modal-copy { color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; }
.modal-switch { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-secondary); }
.modal-switch a { color: var(--text-primary); font-weight: 700; text-decoration: underline; }
.close-btn {
  position: absolute;
  top: 14px; right: 16px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 18px;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}
.close-btn:hover { background: #e0e0e0; color: var(--text-primary); }
.topup-message, .upgrade-message {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-secondary);
  min-height: 24px;
}
.wallet-modal .modal-content { width: min(100%, 520px); }

/* ============================================================
   FLOATING ACTIONS (WhatsApp)
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-action:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.floating-whatsapp { background: #25D366; }
.floating-whatsapp img { width: 28px; height: 28px; }
.floating-bell { background: var(--mtn-yellow); color: var(--mtn-dark); font-size: 20px; position: relative; }
.floating-new {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--accent-danger);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 4px;
  border-radius: 999px;
  font-family: var(--font-nav);
  letter-spacing: .04em;
}

/* ============================================================
   CUSTOMER PRICES PAGE
   ============================================================ */
.customer-prices-page { background: var(--bg-page); }

.price-catalog {
  padding: 48px 0 80px;
}
.price-catalog h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.catalog-intro {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Notice box */
.catalog-notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14px;
}
.catalog-notice summary {
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: #7B5800;
}
.catalog-notice div { margin-top: 12px; color: var(--text-primary); }
.catalog-notice ul { padding-left: 18px; list-style: disc; margin-top: 6px; }
.catalog-notice li { margin-bottom: 4px; }

/* Network tab buttons */
.catalog-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.catalog-tabs button {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-white);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.catalog-tabs button:hover { border-color: #aaa; color: var(--text-primary); }
.catalog-tabs button[aria-pressed="true"] {
  background: var(--bg-page);
  border-color: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--accent-primary);
}

/* Bundle card grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
#catalog-status {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 20px 0;
}

/* Bundle cards */
.bundle-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bundle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.bundle-card-top {
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.bundle-card-top span {
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
}
.bundle-card-top h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

/* Network colour themes */
.bundle-mtn .bundle-card-top { background: var(--mtn-yellow); }
.bundle-mtn .bundle-card-top span { background: rgba(0,0,0,.12); color: var(--mtn-dark); }
.bundle-mtn .bundle-card-top h2 { color: var(--mtn-dark); }

.bundle-telecel .bundle-card-top { background: var(--telecel-red); }
.bundle-telecel .bundle-card-top span { background: rgba(255,255,255,.2); color: #fff; }
.bundle-telecel .bundle-card-top h2 { color: #fff; }

.bundle-at_ishare .bundle-card-top,
.bundle-at_bigdata .bundle-card-top { background: var(--at-blue); }
.bundle-at_ishare .bundle-card-top span,
.bundle-at_bigdata .bundle-card-top span { background: rgba(255,255,255,.2); color: #fff; }
.bundle-at_ishare .bundle-card-top h2,
.bundle-at_bigdata .bundle-card-top h2 { color: #fff; }

.bundle-card-bottom {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.bundle-card-bottom strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}
.bundle-card-bottom button {
  padding: 8px 14px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.bundle-card-bottom button:hover { background: #333; transform: scale(1.03); }

/* Simplified Bundle Card */
.simple-bundle-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition);
}
.simple-bundle-card:hover {
  transform: translateY(-2px);
  border-color: #aaa;
}
.simple-bundle-card.selected {
  border-color: var(--bg-dark);
  box-shadow: 0 0 0 1px var(--bg-dark);
}
.simple-bundle-card.selected button {
  background: var(--bg-white);
  color: var(--bg-dark);
  border: 1px solid var(--bg-dark);
}
.simple-bundle-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: var(--text-primary);
  width: 80px;
}
.simple-bundle-card .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-grow: 1;
}
.simple-bundle-card button {
  background: var(--bg-dark);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition);
}
.simple-bundle-card button:hover {
  transform: scale(1.05);
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.account-dashboard-page { background: var(--bg-page); }
.account-dashboard-page .header { background: var(--bg-white); }
.account-dashboard-page .logo { color: var(--text-primary); }
.account-dashboard-page .nav-links { display: flex; }

.account-main { min-height: calc(100vh - 68px); }
.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 32px 0 64px;
}

/* Sidebar */
.account-sidebar {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 84px;
}
.account-avatar {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--mtn-yellow);
  color: var(--mtn-dark);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}
.account-welcome {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.account-welcome strong { color: var(--text-primary); font-weight: 700; }

.account-menu { display: flex; flex-direction: column; gap: 2px; }
.account-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.account-menu a:hover, .account-menu a.active {
  background: var(--bg-page);
  color: var(--text-primary);
}
.account-menu a span:last-child:not(:first-child) {
  font-size: 11px;
  background: var(--bg-page);
  border-radius: 999px;
  padding: 2px 7px;
  color: var(--text-secondary);
}

/* Agent upgrade card */
.agent-upgrade-card {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  color: #fff;
}
.account-tier {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.agent-upgrade-card h2 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--mtn-yellow);
  margin-bottom: 6px;
}
.agent-upgrade-card p { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.agent-upgrade-card .btn-secondary {
  width: 100%;
  background: var(--mtn-yellow);
  color: var(--mtn-dark);
  border-color: var(--mtn-yellow);
  font-size: 11px;
  min-height: 36px;
  padding: 7px 12px;
  white-space: normal;
  line-height: 1.35;
}
.agent-upgrade-card .btn-secondary:hover { background: #e6b800; }

/* Dashboard content */
.account-content { min-width: 0; }
.account-page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.account-page-heading h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  margin: 4px 0;
}
.account-page-heading p { color: var(--text-secondary); font-size: 14px; }

/* Stat cards */
.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.account-stat {
  padding: 20px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.account-stat span { font-size: 12px; color: var(--text-secondary); font-family: var(--font-nav); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.account-stat strong { display: block; font-family: var(--font-heading); font-size: 24px; font-weight: 800; margin-top: 6px; }
.stat-purple strong { color: #7C3AED; }
.stat-pink strong { color: #DB2777; }
.stat-green strong { color: #059669; }

/* Panels */
.spending-panel, .orders-panel, .quick-order-panel, .account-details-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.account-details-panel { margin: 16px 0; }
.account-details-panel .panel-heading p { color: var(--text-secondary); font-size: 13px; margin-top: 4px; }
.account-details-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px; align-items: end; }
.account-details-form .form-group { margin: 0; }
.account-details-form button { width: fit-content; }
#account-details-status { font-size: 13px; color: var(--text-secondary); }
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
}
.panel-heading h2 { font-family: var(--font-heading); font-size: 17px; font-weight: 800; }
.panel-heading span { font-size: 12px; color: var(--text-light); font-family: var(--font-nav); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.panel-copy { padding: 0 20px 16px; color: var(--text-secondary); font-size: 14px; }
.panel-copy:first-of-type { padding-top: 16px; }

/* Spending chart */
.spending-chart {
  padding: 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-empty { color: var(--text-light); font-size: 14px; text-align: center; }
.chart-grid { display: flex; gap: 6px; align-items: flex-end; height: 60px; }

/* Shortcuts */
.account-shortcuts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 4px 0;
}
.shortcut-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  text-align: left;
  color: var(--text-primary);
}
.shortcut-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.shortcut-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text-secondary);
}
.shortcut-icon.orange { background: #FFF3E0; color: #E65100; }
.shortcut-icon.blue { background: #E3F2FD; color: #1565C0; }
.shortcut-icon.indigo { background: #EDE7F6; color: #4527A0; }
.shortcut-card strong { font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.shortcut-card small { font-size: 12px; }
.shortcut-card p { font-size: 12px; color: var(--text-secondary); }
button.shortcut-card { border: 1px solid var(--border-color); background: var(--bg-white); font: inherit; }
.shortcut-logout .shortcut-icon { background: #FFF5F5; color: var(--accent-danger); }

/* Orders table */
.orders-panel .table-responsive { overflow-x: auto; }
.orders-panel td:first-child { white-space: nowrap; font-size: 12px; }
.history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.history-table th {
  padding: 12px 16px;
  background: var(--bg-page);
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.history-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #F5F5F5;
  vertical-align: top;
}
.history-table tr:last-child td { border-bottom: 0; }
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.status-badge.delivered { background: #DCFCE7; color: #14532D; }
.status-badge.pending { background: #FEF9C3; color: #713F12; }
.status-badge.queued, .status-badge.processing { background: #FEF3C7; color: #92400E; }
.status-badge.failed { background: #FEE2E2; color: #7F1D1D; }

/* Wizard (quick order) */
#checkout-wizard { padding: 20px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-step h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.wizard-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: space-between;
}

/* Network cards in wizard */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.network-card {
  padding: 18px 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
}
.network-card:hover { border-color: #aaa; box-shadow: var(--shadow-sm); }
.network-card.selected { border-color: var(--bg-dark); box-shadow: 0 0 0 1px var(--bg-dark); }
.network-logo { width: 52px; height: 52px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.network-logo img { width: 100%; height: 100%; object-fit: contain; }
.logo-mtn { background: #FFF8D6; border-radius: 50%; padding: 6px; }
.logo-telecel { background: #FDE8EA; border-radius: 50%; padding: 6px; }
.logo-airteltigo { background: #E3EAFF; border-radius: 50%; padding: 6px; }

/* Package cards in wizard */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.package-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  cursor: pointer;
  text-align: center;
  padding: 16px 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.package-card:hover { border-color: #aaa; }
.package-card.selected { border-color: var(--bg-dark); box-shadow: 0 0 0 1px var(--bg-dark); }
.package-size { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: var(--text-primary); }
.package-price { font-family: var(--font-nav); font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-top: 4px; }
.package-card.selected .package-price { color: var(--text-primary); }

/* Account header additions */
.account-header-wallet {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 6px 12px;
  background: var(--bg-page);
  border-radius: 999px;
  text-decoration: none;
}
.account-header-user {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--mtn-yellow);
  color: var(--mtn-dark);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.account-header-menu {
  padding: 6px 10px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--text-primary);
}

/* ============================================================
   WALLET / PROFILE PAGE
   ============================================================ */
.wallet-main { min-height: calc(100vh - 68px); background: var(--bg-page); }
.wallet-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 32px 0 64px;
}
.wallet-content { min-width: 0; }
.wallet-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.wallet-page-heading h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  margin: 4px 0;
}
.wallet-page-heading p { color: var(--text-secondary); font-size: 14px; }

.wallet-balance-panel {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.wallet-card { flex: 1; }
.wallet-label {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.balance {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: var(--mtn-yellow);
}
.wallet-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.wallet-actions button, .wallet-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--mtn-yellow);
  color: var(--mtn-dark);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.wallet-actions a { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.wallet-actions button:hover { background: #e6b800; transform: translateY(-1px); }
.wallet-actions a:hover { background: rgba(255,255,255,.2); }

.wallet-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.wallet-stat {
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.wallet-stat-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.wallet-stat-icon.credit { background: #DCFCE7; color: #15803D; }
.wallet-stat-icon.debit { background: #FEE2E2; color: #B91C1C; }
.wallet-stat-icon.available { background: #EDE9FE; color: #6D28D9; }
.wallet-stat strong { font-family: var(--font-heading); font-size: 20px; font-weight: 800; display: block; }
.wallet-stat p { color: var(--text-secondary); font-size: 12px; font-family: var(--font-nav); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

.wallet-help {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  font-size: 14px;
}
.wallet-help span { font-size: 22px; }
.wallet-help strong { font-weight: 700; }

.wallet-transactions {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.transaction-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
}
.transaction-heading h2 { font-family: var(--font-heading); font-size: 17px; font-weight: 800; }
.transaction-count { font-size: 12px; color: var(--text-light); font-family: var(--font-nav); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.wallet-transactions table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.wallet-transactions th {
  padding: 12px 16px;
  background: var(--bg-page);
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.wallet-transactions td {
  padding: 14px 16px;
  border-bottom: 1px solid #F5F5F5;
}
.wallet-transactions tr:last-child td { border-bottom: 0; }

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-main {
  padding: 40px 0 80px;
}
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}
.admin-sidebar {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 84px;
}
.admin-nav { display: flex; flex-direction: column; gap: 4px; }
.admin-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active { background: var(--bg-page); color: var(--text-primary); }
.admin-content { min-width: 0; }
.admin-section {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.admin-section h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}
.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-bottom: 24px; }
.admin-stat {
  padding: 18px;
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}
.admin-stat span { font-size: 12px; font-family: var(--font-nav); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-secondary); }
.admin-stat strong { display: block; font-family: var(--font-heading); font-size: 22px; font-weight: 900; margin-top: 6px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { padding: 10px 12px; background: var(--bg-page); font-family: var(--font-nav); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--text-secondary); text-align: left; border-bottom: 1px solid var(--border-color); }
.admin-table td { padding: 12px; border-bottom: 1px solid #F0F0F0; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: 0; }

/* Claim / Track */
.claim-main, .track-main { padding: 60px 0 80px; }
.claim-card, .track-card {
  width: min(100%, 560px);
  margin-inline: auto;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
}
.claim-card h1, .track-card h1 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
}
.claim-card p, .track-card p { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }

/* Terms */
.terms-main { padding: 60px 0 80px; }
.terms-content {
  max-width: 780px;
  margin-inline: auto;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.terms-content h1 { font-family: var(--font-heading); font-size: 30px; font-weight: 900; margin-bottom: 8px; }
.terms-content h2 { font-family: var(--font-heading); font-size: 18px; font-weight: 800; margin: 28px 0 10px; }
.terms-content p, .terms-content li { color: var(--text-secondary); font-size: 15px; margin-bottom: 10px; }
.terms-content ul { padding-left: 20px; list-style: disc; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-up { animation: fadeUp .5s ease both; }
.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .2s; }
.delay-300 { animation-delay: .3s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .service-links { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hours-inner { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .account-stats, .wallet-stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .nav-links, .auth-buttons, .account-dashboard-page .nav-links, .account-dashboard-page .auth-buttons { display: none; }
  .nav-links.active, .auth-buttons.active, .account-dashboard-page .nav-links.active, .account-dashboard-page .auth-buttons.active { display: flex; flex-direction: column; align-items: flex-start; }
  .hamburger { display: flex; }
  .header-container { flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; padding: 12px 0; border-top: 1px solid var(--border-color); gap: 0; }
  .auth-buttons { order: 4; width: 100%; padding: 12px 0; border-top: 1px solid var(--border-color); gap: 8px; }
}
@media (max-width: 768px) {
  .account-dashboard-page .nav-links, .account-dashboard-page .auth-buttons { display: none; }
  .account-dashboard-page .nav-links.active, .account-dashboard-page .auth-buttons.active { display: flex; }
  .nav-links, .auth-buttons { display: none; }
  .nav-links.active, .auth-buttons.active { display: flex; flex-direction: column; align-items: flex-start; }
  .nav-link { padding: 10px 0; }
  .hamburger { display: flex; }
  .header-container { flex-wrap: wrap; padding-bottom: 0; }
  .nav-links {
    order: 3;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    gap: 0;
  }
  .auth-buttons { order: 4; width: 100%; padding: 12px 0; border-top: 1px solid var(--border-color); gap: 8px; }

  .hero-title { font-size: clamp(28px, 8vw, 48px); }
  .hero-content { gap: 14px; padding: 60px 0; }

  .steps-grid, .features-grid, .service-links { grid-template-columns: 1fr 1fr; }
  .account-stats, .wallet-stat-grid, .account-shortcuts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hours-inner { grid-template-columns: 1fr; }

  .modal-content { padding: 24px 20px; }

  .wallet-balance-panel { flex-direction: column; align-items: flex-start; }
  .wallet-actions { flex-direction: row; align-items: flex-start; }
  .account-details-form { grid-template-columns: 1fr; }
  .account-layout, .wallet-layout { grid-template-columns: 1fr; width: min(100% - 24px, 1200px); padding-top: 18px; }
  .account-content, .wallet-content { overflow: hidden; }
  .account-sidebar { position: static; padding: 10px; overflow: visible; }
  .account-sidebar .account-avatar, .account-sidebar .account-welcome { display: none; }
  .account-menu { flex-direction: row; min-width: max-content; }
  .account-menu a { white-space: nowrap; }
  .account-sidebar .account-menu { overflow-x: auto; padding-bottom: 3px; min-width: 0; }
  .account-sidebar .agent-upgrade-card { margin: 10px 0 0; }
}
@media (max-width: 480px) {
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .service-links { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .account-stats, .wallet-stat-grid { grid-template-columns: 1fr; }
  .account-shortcuts { grid-template-columns: 1fr 1fr; }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PROFESSIONAL COMMERCE SYSTEM — 2026 REFRESH
   ============================================================ */
:root {
  --bg-page: #f4f7fb;
  --bg-white: #ffffff;
  --bg-dark: #0b1728;
  --bg-dark-alt: #101e32;
  --text-primary: #102033;
  --text-secondary: #5f6f82;
  --text-light: #8795a8;
  --border-color: #dfe6ee;
  --accent-primary: #0f766e;
  --accent-secondary: #f4b942;
  --brand-yellow: #f4b942;
  --wallet-purple: #0f766e;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .05);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, .10);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, .18);
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-nav: 'Inter', sans-serif;
  --max-width: 1220px;
  --radius: 10px;
  --radius-lg: 18px;
}

body { font-size: 16px; background: var(--bg-page); }
.container { width: min(100% - 40px, var(--max-width)); }
.eyebrow { color: var(--accent-primary); font-size: 12px; letter-spacing: .11em; }

.header {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,230,238,.9);
  box-shadow: 0 6px 24px rgba(15,23,42,.05);
  backdrop-filter: blur(18px);
}
.header-container { min-height: 76px; }
.logo { gap: 11px; font-size: 19px; letter-spacing: -.03em; }
.logo-icon {
  width: 42px; height: 42px;
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #0b4f51);
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(15,118,110,.22);
}
.logo .text-gradient-accent { color: var(--accent-primary); }
.nav-link { padding: 10px 13px; font-size: 13px; letter-spacing: 0; text-transform: none; border-radius: 9px; }
.nav-link:hover, .nav-link.active { color: var(--accent-primary); background: #edf8f6; }
.wallet-nav-link { color: var(--accent-primary) !important; background: #e7f6f3; }
.btn-primary, .btn-secondary { min-height: 46px; border-radius: 10px; font-size: 13px; letter-spacing: 0; text-transform: none; }
.btn-primary { background: var(--accent-primary); border-color: var(--accent-primary); box-shadow: 0 8px 18px rgba(15,118,110,.18); }
.btn-primary:hover:not(:disabled) { background: #0b625d; border-color: #0b625d; box-shadow: 0 12px 24px rgba(15,118,110,.22); }
.btn-secondary { border-color: #cad5e1; }
.header .btn-primary, .header .btn-secondary { min-height: 40px; padding: 9px 16px; font-size: 13px; }

.hero {
  min-height: 590px;
  background:
    radial-gradient(circle at 78% 18%, rgba(45,212,191,.22), transparent 26%),
    radial-gradient(circle at 86% 78%, rgba(244,185,66,.18), transparent 30%),
    linear-gradient(135deg, #081421 0%, #102b38 55%, #0f524f 100%);
}
.hero::before {
  background: linear-gradient(90deg, rgba(4,15,27,.25), transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  right: max(5vw, 48px);
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 36px;
  transform: rotate(12deg);
  box-shadow: inset 0 0 0 22px rgba(255,255,255,.025), inset 0 0 0 70px rgba(255,255,255,.02);
  z-index: -1;
}
.hero-content { max-width: 760px; padding: 96px 0 110px; gap: 22px; }
.hero-badge { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); font-size: 13px; }
.badge-dot { background: #5eead4; box-shadow: 0 0 10px #5eead4; }
.hero-title { font-size: clamp(42px, 5.4vw, 72px); letter-spacing: -.045em; line-height: 1.03; }
.hero-title .text-gradient-accent { color: #6ee7d7; }
.hero-subtitle { max-width: 610px; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.74); }
.hero .btn-primary { background: #fff; border-color: #fff; color: #0b2731; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.hero .btn-primary:hover { background: #eafaf7; border-color: #eafaf7; }

.welcome-strip { margin-top: -36px; padding: 20px 24px; border: 0; border-radius: 18px; box-shadow: var(--shadow-md); }
.welcome-icon { background: #e7f6f3; }
.online-status { color: var(--accent-primary); }
.online-status i { background: #17b26a; }

.how-section, .features-section { padding-top: 96px; }
.section-header h2 { letter-spacing: -.035em; }
.steps-grid, .features-grid { gap: 18px; }
.step-card, .feature-card, .service-link {
  border: 1px solid rgba(223,230,238,.9);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.step-card, .feature-card { padding: 30px 24px; }
.step-card:hover, .feature-card:hover, .service-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #b9d9d5; }
.step-num { border-radius: 13px; background: #e7f6f3 !important; color: var(--accent-primary) !important; }
.feature-icon { background: #e7f6f3; border-radius: 13px; }
.service-mark { border-radius: 14px; }
.service-mark.agent { background: var(--accent-primary); border-color: var(--accent-primary); color: #fff; }

.buy-section { padding: 96px 0; }
.form-container, .claim-card, .track-card, .utility-card {
  border: 1px solid rgba(223,230,238,.9);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.form-container { padding: 34px; }
.form-group label { color: #42536a; font-size: 13px; letter-spacing: 0; text-transform: none; }
.form-group input, .form-group select, .form-group textarea, .price-input {
  min-height: 52px;
  border-color: #cfdae6;
  border-radius: 10px;
  font-size: 15px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .price-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(15,118,110,.11);
}
.faq-list { max-width: 920px; }
.faq-item { border-radius: 14px; box-shadow: none; }
.faq-item summary { padding: 20px 22px; }
.hours-section { background: linear-gradient(135deg, #091624, #12303c); }
.hours-card { border-radius: 15px; }

.footer { background: #eaf0f6; padding-top: 64px; }
.footer-grid { gap: 48px; }
.footer-links-group h4 { font-size: 12px; letter-spacing: .1em; }

.price-catalog { padding-top: 58px; }
.price-catalog > div:first-child { max-width: 720px; }
.price-catalog h1 { font-size: clamp(34px, 4.8vw, 54px); letter-spacing: -.045em; }
.catalog-intro { font-size: 17px; }
.catalog-notice { background: #fffaf0; border-color: #f6d893; border-radius: 14px; }
.agent-promo-banner {
  background: linear-gradient(120deg, #0b1728, #0f4f4d) !important;
  border-radius: 18px !important;
  padding: 28px 30px !important;
  box-shadow: var(--shadow-md);
}
.agent-promo-banner .btn-primary { background: #fff !important; color: #0b4f51 !important; border-color: #fff !important; }
.catalog-tabs { gap: 10px; padding: 8px; background: #e8eef5; border-radius: 16px; width: fit-content; max-width: 100%; }
.catalog-tabs button { min-height: 48px; border: 0; border-radius: 11px; padding: 10px 18px; background: transparent; font-size: 13px; letter-spacing: 0; }
.catalog-tabs button[aria-pressed='true'] { background: #fff; color: var(--accent-primary); border: 0; box-shadow: 0 5px 16px rgba(15,23,42,.1); }
.catalog-grid { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.simple-bundle-card { min-height: 124px; padding: 22px; display: grid; grid-template-columns: 1fr auto; border-radius: 16px; box-shadow: var(--shadow-sm); }
.simple-bundle-card h3 { width: auto; font-size: 27px; letter-spacing: -.03em; }
.simple-bundle-card .price { font-size: 15px; color: var(--accent-primary); font-weight: 700; }
.simple-bundle-card button { grid-column: 2; grid-row: 1 / span 2; align-self: center; background: #e7f6f3; color: var(--accent-primary); border-radius: 9px; padding: 10px 15px; }
.simple-bundle-card button:hover { background: var(--accent-primary); color: #fff; }

.account-main, .wallet-main { min-height: calc(100vh - 76px); }
.account-layout, .wallet-layout { grid-template-columns: 280px minmax(0, 1fr); gap: 28px; padding: 36px 0 72px; }
.account-sidebar { top: 96px; padding: 24px 18px; border: 0; border-radius: 20px; box-shadow: var(--shadow-sm); }
.account-avatar { width: 54px; height: 54px; border-radius: 15px; background: #e7f6f3; color: var(--accent-primary); }
.account-menu { gap: 6px; }
.account-menu a { min-height: 46px; padding: 11px 13px; border-radius: 10px; font-size: 14px; }
.account-menu a:hover, .account-menu a.active { background: #e7f6f3; color: var(--accent-primary); }
.agent-upgrade-card { margin-top: 22px; padding: 20px; background: linear-gradient(145deg, #0b1728, #164e50); border-radius: 16px; }
.agent-upgrade-card h2 { color: #6ee7d7; }
.agent-upgrade-card .btn-secondary { background: #fff; border-color: #fff; color: #0b4f51; border-radius: 9px; }
.account-page-heading h1, .wallet-page-heading h1 { font-size: 34px; letter-spacing: -.04em; }
.account-stats { gap: 16px; }
.account-stat, .wallet-stat, .shortcut-card, .spending-panel, .orders-panel, .quick-order-panel, .account-details-panel, .wallet-transactions {
  border: 1px solid rgba(223,230,238,.9);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.account-stat { min-height: 126px; padding: 23px; }
.account-stat strong { color: var(--text-primary); }
.account-shortcuts { gap: 14px; margin: 18px 0; }
.shortcut-card { min-height: 145px; padding: 20px; }
.shortcut-icon { border-radius: 11px; background: #e7f6f3 !important; color: var(--accent-primary) !important; }
.panel-heading, .transaction-heading { padding: 21px 23px; }
.history-table th, .wallet-transactions th { background: #f7f9fc; font-size: 12px; }
.history-table td, .wallet-transactions td { padding: 16px; }

.wallet-balance-panel { padding: 32px; border-radius: 20px; background: linear-gradient(120deg, #0b1728, #0f625d); box-shadow: 0 22px 50px rgba(12,45,52,.19); }
.balance { color: #fff; letter-spacing: -.04em; }
.wallet-actions button { background: #fff; color: #0b4f51; }
.wallet-actions a { background: rgba(255,255,255,.12); }
.wallet-help { background: #eaf9f5; border-color: #b7e6da; border-radius: 14px; }

.utility-page { min-height: calc(100vh - 76px); padding: 70px 0 90px; background: radial-gradient(circle at 50% 0%, #e6f4f2, transparent 40%), var(--bg-page); }
.utility-section, .status-section { max-width: 680px; }
.utility-card, .status-section .form-container { padding: 38px; }
.utility-card h1, .status-section h2 { font-size: 34px; letter-spacing: -.04em; margin: 6px 0 10px; }

.modal-overlay { background: rgba(5,15,28,.68); backdrop-filter: blur(8px); }
.modal-content { border: 0; border-radius: 20px; padding: 34px; }
.close-btn { border: 0; background: #edf2f7; }
.floating-action { width: 54px; height: 54px; box-shadow: 0 12px 28px rgba(15,23,42,.18); }
.floating-bell { background: #fff; color: #0f766e; }

/* Admin control centre */
.admin-page { min-height: 100vh; background: #eef3f8; }
.admin-login-wrap { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 40px 20px; }
.admin-login-card { width: min(100%, 440px); padding: 38px; border: 0; border-radius: 22px; box-shadow: var(--shadow-lg); }
.admin-login-mark { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 24px; color: #fff; background: var(--accent-primary); border-radius: 15px; font: 800 15px var(--font-heading); }
.admin-login-card h1 { margin: 6px 0 8px; font-size: 32px; letter-spacing: -.04em; }
.admin-login-card > p:not(.eyebrow) { color: var(--text-secondary); margin-bottom: 24px; }
.admin-login-card .btn-primary { width: 100%; margin-top: 20px; }
.admin-error { margin-top: 14px; padding: 12px; background: #fff0f0; border-radius: 9px; color: #b42318; }
.admin-shell { min-height: 100vh; grid-template-columns: 270px minmax(0, 1fr); }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 28px 20px; border: 0; border-radius: 0; background: #0b1728; color: #fff; display: flex; flex-direction: column; }
.admin-sidebar-brand { display: flex; align-items: center; gap: 12px; padding: 0 8px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-sidebar-brand > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #18a897; font: 800 13px var(--font-heading); }
.admin-sidebar-brand div { display: grid; }
.admin-sidebar-brand strong { font: 700 15px var(--font-heading); }
.admin-sidebar-brand small { color: rgba(255,255,255,.5); font-size: 12px; }
.admin-nav { margin-top: 28px; gap: 7px; }
.admin-nav p { padding: 0 10px 8px; color: rgba(255,255,255,.4); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sidebar-btn, .admin-store-link { width: 100%; min-height: 44px; padding: 11px 12px; border: 0; border-radius: 10px; background: transparent; color: rgba(255,255,255,.65); font: 600 14px var(--font-body); text-align: left; }
.sidebar-btn:hover, .sidebar-btn.active, .admin-store-link:hover { background: rgba(45,212,191,.12); color: #fff; }
.admin-sidebar-bottom { margin-top: auto; display: grid; gap: 6px; }
.admin-workspace { min-width: 0; padding: 30px clamp(20px, 3vw, 44px) 60px; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.admin-topbar h1 { font-size: 34px; letter-spacing: -.04em; }
.admin-live { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; background: #fff; border: 1px solid var(--border-color); border-radius: 999px; color: #16825d; font-size: 13px; font-weight: 700; }
.admin-live i { width: 8px; height: 8px; border-radius: 50%; background: #17b26a; box-shadow: 0 0 0 4px #d9f5e8; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
.admin-stat-card { min-height: 122px; padding: 22px; display: flex; align-items: center; gap: 15px; background: #fff; border: 1px solid var(--border-color); border-radius: 16px; box-shadow: var(--shadow-sm); }
.admin-stat-icon { width: 43px; height: 43px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: #e7f6f3; color: var(--accent-primary); font-size: 20px; }
.admin-stat-card div { min-width: 0; display: grid; gap: 5px; }
.admin-stat-card small { color: var(--text-secondary); font-size: 12px; font-weight: 600; }
.admin-stat-card strong { font: 800 20px var(--font-heading); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-panel { overflow: hidden; background: #fff; border: 1px solid var(--border-color); border-radius: 18px; box-shadow: var(--shadow-sm); }
.admin-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px; border-bottom: 1px solid var(--border-color); }
.admin-panel-heading h2 { margin: 4px 0; font-size: 21px; }
.admin-panel-heading p:not(.eyebrow) { color: var(--text-secondary); font-size: 13px; }
.admin-refresh { min-height: 40px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table-wrap table { width: 100%; min-width: 820px; border-collapse: collapse; }
.admin-table-wrap th { padding: 13px 16px; background: #f7f9fc; color: var(--text-secondary); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; text-align: left; }
.admin-table-wrap td { padding: 15px 16px; border-top: 1px solid #edf1f5; font-size: 13px; }
.table-state { color: var(--text-secondary); text-align: center; padding: 30px !important; }
.pricing-note { display: flex; gap: 12px; align-items: flex-start; margin: 20px 24px; padding: 14px 16px; border: 1px solid #b7e6da; background: #eaf9f5; border-radius: 11px; color: #265e56; font-size: 13px; }
.pricing-note span { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: var(--accent-primary); font-weight: 700; }

@media (max-width: 1100px) {
  .admin-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-shell { grid-template-columns: 230px minmax(0, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .hero { min-height: 520px; }
  .hero::after { display: none; }
  .hero-content { padding: 72px 0 88px; }
  .hero-title { font-size: clamp(36px, 10vw, 54px); }
  .account-layout, .wallet-layout { grid-template-columns: 1fr; width: min(100% - 28px, var(--max-width)); }
  .account-sidebar { position: static; padding: 12px; }
  .account-menu { display: grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); overflow-x: auto; }
  .account-menu a { justify-content: center; text-align: center; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; width: 100%; height: auto; padding: 16px; }
  .admin-sidebar-brand { padding-bottom: 14px; }
  .admin-nav { margin-top: 14px; display: flex; flex-direction: row; overflow-x: auto; }
  .admin-nav p { display: none; }
  .sidebar-btn { width: auto; min-width: max-content; }
  .admin-sidebar-bottom { display: none; }
  .admin-workspace { padding: 24px 16px 50px; }
}

@media (max-width: 560px) {
  .header-container { min-height: 68px; }
  .logo-text { font-size: 17px; }
  .nav-links.active, .auth-buttons.active { padding: 14px 0; }
  .nav-link { width: 100%; padding: 11px 10px; }
  .auth-buttons.active .btn-primary, .auth-buttons.active .btn-secondary, .auth-buttons.active a { width: 100%; }
  .hero { min-height: 500px; }
  .hero-content { padding: 60px 0 78px; }
  .hero-title { font-size: 37px; }
  .hero-subtitle { font-size: 16px; }
  .welcome-strip { align-items: flex-start; flex-wrap: wrap; }
  .welcome-date { order: 3; width: 100%; }
  .online-status { margin-left: auto; }
  .catalog-tabs { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .catalog-tabs button { padding-inline: 10px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .simple-bundle-card { min-height: 108px; }
  .service-links { grid-template-columns: 1fr 1fr; }
  .wallet-actions { width: 100%; flex-direction: column; }
  .wallet-actions button, .wallet-actions a { width: 100%; justify-content: center; }
  .wallet-stat-grid, .account-stats { grid-template-columns: 1fr; }
  .account-page-heading, .wallet-page-heading, .admin-topbar { align-items: flex-start; flex-direction: column; }
  .account-page-heading .btn-primary { width: 100%; }
  .account-menu { grid-template-columns: repeat(2, minmax(130px, 1fr)); }
  .account-shortcuts { grid-template-columns: 1fr; }
  .form-container, .modal-content, .utility-card, .status-section .form-container { padding: 24px 20px; }
  .admin-stat-grid { grid-template-columns: 1fr; }
  .admin-workspace { padding-inline: 12px; }
  .floating-actions { bottom: 18px; right: 14px; }
}

.admin-settings-panel { max-width: 820px; }
.site-announcement { display: block; padding: 9px 16px; text-align: center; background: var(--primary, #111827); color: #fff; font-size: .85rem; font-weight: 700; text-decoration: none; }
.admin-settings-form { display: grid; gap: 1rem; padding: 0 1.5rem 1.5rem; }
.admin-settings-form .btn-primary { width: max-content; min-width: 160px; }
.admin-error-cell { max-width: 300px; color: var(--text-secondary); white-space: normal; }
.admin-table-wrap code { font: 600 .76rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; word-break: break-all; }
.status-badge.manual { background: rgba(245, 158, 11, .13); color: #b45309; }
.status-badge.processing, .status-badge.queued { background: rgba(59, 130, 246, .12); color: #2563eb; }
