/* ==========================================================================
   COMPONENTS - reusable UI: buttons, cards, badges, alerts, navigation,
   modals, loaders, and other reusable interface elements.
   ========================================================================== */

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.theme-toggle-btn:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.mobile-sheet-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

img {
  max-width: 100%;
  display: block;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-dark);
}

/* Why Us + Bundles + Contact share one wrapper so the animated gradient
   is a single continuous background spanning all three sections, instead
   of each section independently re-starting its own copy of the
   animation. (Uiverse.io by jaykdoe, background swapped in for the
   original banner photo.) */
.gradient-wrap {
  position: relative;
}

.gradient-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    -45deg,
    #fcb901,
    #f8030b,
    #f8b703
  );
  background-size: 400% 400%;
  animation: gradient-wrap-shift 30s ease infinite;
}

.gradient-wrap > * {
  position: relative;
  z-index: 1;
}

@keyframes gradient-wrap-shift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-wrap #why-us {
  background: transparent;
}

#bundles .bundle-grid {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn-danger {
  background: var(--red);
  color: var(--white);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  flex: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-name small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10.5px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.brand-break {
  display: none;
}

/* ---------- nav "More" dropdown ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle:hover {
  color: var(--text);
}

.nav-dropdown-toggle.active {
  color: var(--yellow);
}

.nav-dropdown-caret {
  width: 11px;
  height: 11px;
  transition: transform 0.18s ease;
  flex: none;
}

.nav-dropdown.open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 168px;
  padding: 8px;
  background: var(--header-bg);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 60;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(128, 128, 128, 0.12);
  color: var(--text);
}

.nav-dropdown-menu a.active {
  color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg {
  height: 26px;
  width: 26px;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle .line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle .line-top-bottom {
  stroke-dasharray: 12 63;
}

/* The generic .theme-toggle-btn is designed for permanently-dark surfaces
   (mobile sheet, footer) - white circle always, flipped to black only in
   dark mode. The header itself now flips with the theme, so its toggle
   needs to track --surface/--text instead of that fixed pair. Matches the
   specificity of the dark-mode override below and wins on source order. */
.theme-toggle-btn--header {
  background: var(--surface);
  color: var(--text);
  border-color: var(--surface-border);
}

/* ---------- mobile slide-in menu ---------- */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 15, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sheet {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  /* svh (small viewport height) instead of dvh - dvh recalculates live as
     the browser's address bar shows/hides, which was making this fixed
     panel's height (and therefore its content) visibly jump/shake while
     scrolling inside it. svh is fixed to the smallest possible viewport,
     so it doesn't move once set. */
  height: 100svh;
  /* Flips with the site theme now, same as .site-header, instead of
     always being var(--charcoal) regardless of light/dark mode. */
  background: var(--surface);
  border-left: 1px solid var(--surface-border);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  /* The sheet's own content can be taller than the viewport (long nav
     list + CTA buttons on a short phone screen) - let it scroll inside
     itself instead of overflowing invisibly. Paired with the html/body
     .mobile-menu-open lock below, which stops that scroll gesture from
     also scrolling/bouncing the page underneath the overlay. */
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  /* Promotes this to its own compositor layer, so scrolling its content
     doesn't force the browser to repaint the (blurred) backdrop sitting
     behind it every frame - a common source of visible jitter/shake on
     iOS Safari for a fixed-position panel layered over a backdrop-filter. */
  will-change: transform;
}

.mobile-sheet.open {
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.55, 0, 1, 0.45);
}

/* Hero page only: give the hamburger sheet the same frosted-glass
   treatment and opacity as the Choose Your Bundle cards (.net-card /
   .feature-card), using the same --glass-* tokens so it still flips with
   light/dark mode. Scoped to #pageHome (index.html's <body> id) instead
   of changing .mobile-sheet globally, since every other page keeps the
   plain solid sheet. */
#pageHome .mobile-sheet {
  background: var(--glass-bg);
  border-left: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 22px;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(128, 128, 128, 0.14);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.15s ease;
  flex: none;
}

.mobile-close:active {
  transform: scale(0.9);
}

.mobile-sheet-divider {
  height: 1px;
  background: var(--surface-border);
  margin: 0 22px;
}

.mobile-sheet-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 16px;
  gap: 2px;
}

.mobile-sheet-nav a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  padding: 11px 12px;
  border-radius: 12px;
  opacity: 0;
  transform: translateX(24px);
  transition: none;
}

.mobile-sheet-nav a:hover {
  background: rgba(128, 128, 128, 0.12);
}

.mobile-sheet.open .mobile-sheet-nav a {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(0.18s + (var(--i)) * 0.07s);
}

.mobile-sheet-cta {
  margin-top: auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-sheet-cta .btn {
  width: 100%;
  padding: 16px 20px;
  font-size: 0.95rem;
}

/* Same specificity-matching trick as .theme-toggle-btn--header: the
   generic .theme-toggle-btn assumes a fixed-dark backdrop (white circle,
   flipped to black only in dark mode) - now that the sheet itself flips,
   its toggle needs a subtle chip that stays visible against either. */
.theme-toggle-btn--mobile {
  background: rgba(128, 128, 128, 0.14);
  color: var(--text);
  border-color: transparent;
}

/* ---------- hero ---------- */@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fade-up-1 { animation-delay: 0s; }

.fade-up-2 { animation-delay: 0.15s; }

.fade-up-3 { animation-delay: 0.3s; }

.fade-up-4 { animation-delay: 0.45s; }

.btn-hero {
  min-width: 210px;
  justify-content: space-between;
  gap: 32px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.btn-hero:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.btn-hero:active {
  transform: scale(0.96);
}

/* signature: SIM-slot panel next to the headline */
.sim-panel {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  position: relative;
}

.sim-panel::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: inset 0 0 0 4px var(--charcoal-2);
}

.live-dot {
  position: absolute;
  top: 31px;
  right: 31px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  z-index: 1;
  animation: live-blink 1.4s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(31, 174, 92, 0.6);
  }
  50% {
    opacity: 0.35;
    box-shadow: 0 0 0 5px rgba(31, 174, 92, 0);
  }
}

.sim-panel h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}

.sim-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px dashed var(--line);
  font-size: 14.5px;
}

.sim-row:first-of-type {
  border-top: none;
}

.sim-row b {
  font-family: var(--font-mono);
  color: var(--white);
}

.bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.bars span {
  width: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.bars span:nth-child(1) { height: 30%; }

.bars span:nth-child(2) { height: 55%; }

.bars span:nth-child(3) { height: 75%; }

.bars span:nth-child(4) { height: 100%; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Glassmorphism (Uiverse.io by joe-watson-sbf), applied to the Why Us,
   Choose Your Bundle and Contact cards so they sit as frosted panels on
   top of the .gradient-wrap animated background. Uses the --glass-*
   tokens so the tint/text flip with the site's light/dark theme toggle. */
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all ease 0.3s;
}

.feature-card:hover {
  border-color: var(--glass-border);
}

/* Contact cards use the same glass treatment as Why Us/Bundles, tinted
   and colored by the active theme via the --glass-* tokens. */
#contact .feature-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--glass-text);
  box-shadow: none;
}

#contact .feature-card:hover {
  border-color: var(--glass-border);
}

#contact .feature-card h3 {
  color: var(--glass-text);
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 8px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
  color: var(--glass-text);
}

.feature-card p {
  color: var(--glass-text-soft);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

/* ---------- card carousel (shared by Why Us + Contact) ----------
   Desktop keeps each section's original static grid (4-up for Why Us,
   3-up for Contact). On phones (<=900px, the same breakpoint that used
   to stack these cards into one column) the cards become a swipeable,
   centered carousel with a peek of the next card, dot pagination and
   arrow controls - mirroring the Preline "hs-carousel" pattern the rest
   of the site doesn't otherwise depend on, reimplemented in plain JS so
   no extra framework is loaded. One script (js/card-carousel.js) drives
   every ".card-carousel-block" on the page. */
.card-carousel {
  overflow: visible;
}

.card-carousel-track {
  display: grid;
  gap: 20px;
}

#why-us .card-carousel-track {
  grid-template-columns: repeat(4, 1fr);
}

#contact .card-carousel-track {
  grid-template-columns: repeat(3, 1fr);
}

.card-carousel-slide {
  min-width: 0;
}

.card-carousel-controls {
  display: none;
}

/* The JS clones the first/last card for the infinite-loop swipe effect;
   those clones should stay invisible and out of layout on the desktop
   static grid, where only the real cards should show. */
.card-carousel-track [aria-hidden="true"] {
  display: none;
}

/* ---------- network tabs ---------- */
.network-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.network-tab {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.network-tab.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

/* ---------- compact icon-tile bundle cards (signature) ---------- */
.social-boost-home-card {
  width: 220px;
  min-height: 190px;
  margin: 28px auto 0 !important;
  padding: 16px 8px !important;
  border-radius: 16px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  overflow: hidden;
}

.social-boost-home-card .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 !important;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.social-boost-home-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.social-boost-home-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  max-width: 200px;
}

.social-boost-home-card .btn {
  margin-top: 2px !important;
  font-size: 11px;
  padding: 9px 12px;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 14px;
  max-width: 440px;
}

.net-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all ease 0.3s;
}

.net-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border);
}

.net-card--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.net-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: var(--off-white);
}

.scratch-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 300px;
}

.scratch-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background: var(--off-white);
  border-bottom: 1px solid var(--surface-border);
  border-left: 1px solid var(--surface-border);
}

.scratch-top {
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.scratch-banner {
  height: 92px;
  background: var(--off-white) center/cover no-repeat;
  position: relative;
}

.scratch-banner .network-chip {
  position: absolute;
  top: 12px;
  left: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.scratch-banner + .scratch-top {
  padding-top: 14px;
}

/* clean photo-top variant - image fills the top portion of the card with
   no text over it; name/price sit below on plain white, like a product card */
.scratch-photo {
  flex: 2 1 0;
  min-height: 0;
  background: var(--off-white) center/cover no-repeat;
}

.scratch-info {
  padding: 16px 20px 2px;
}

.scratch-info b {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
}

.scratch-photo + .scratch-tear {
  margin-top: 16px;
}

.network-chip {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--white);
  flex: none;
}

.chip-mtn { background: #ffcc08; color: #000; }

.chip-telecel { background: #e2001a; }

.chip-airteltigo { background: #0e3f8a; }

.scratch-top div b {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
}

.scratch-top div span {
  font-size: 12px;
  color: var(--grey);
}

.scratch-tear {
  border-top: 2px dashed #e2ddce;
  margin: 0 20px;
  flex: none;
}

.scratch-bottom {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.scratch-bottom .btn {
  margin-top: auto;
}

.scratch-size {
  font-family: var(--font-numeric);
  font-size: 28px;
  font-weight: 700;
}

.scratch-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4px 0 16px;
  font-size: 12.5px;
  color: var(--grey);
}

.badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.badge-in {
  background: rgba(31, 174, 92, 0.12);
  color: var(--green);
  animation: badge-in-pulse 1.5s ease-out infinite;
}

.badge-out { background: rgba(229, 72, 77, 0.12); color: var(--red); }

@keyframes badge-in-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 174, 92, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(31, 174, 92, 0); }
}

.scratch-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.scratch-price {
  font-family: var(--font-numeric);
  font-size: 22px;
  font-weight: 700;
}

.scratch-price small {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
}

.slogan-tag {
  font-family: var(--font-mono);
  color: var(--yellow);
}

/* ---------- forms / auth cards ---------- */
.auth-wrap {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 60px 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.auth-card > p {
  color: var(--grey);
  font-size: 14.5px;
  margin: 0 0 26px;
}

.password-field {
  position: relative;
}

.auth-switch {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  color: var(--grey);
}

.auth-switch a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 16px;
  color: var(--grey);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line, var(--surface-border));
}

/* ---------- login page: single-column auth card
   (banner photo removed) ---------- */
.auth-split {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.auth-split-form {
  padding: 44px 40px;
  min-width: 0;
}

#googleSignInDiv {
  max-width: 100%;
  overflow: hidden;
}

.auth-split-form h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.auth-split-form > p {
  color: var(--grey);
  font-size: 14.5px;
  margin: 0 0 26px;
}

/* ---------- dashboard shell (customer + admin) ---------- */
.danger-zone {
  border: 1px solid rgba(229, 72, 77, 0.35);
  background: rgba(229, 72, 77, 0.06);
  border-radius: var(--radius);
  padding: 22px 24px;
  max-width: 560px;
}

.danger-zone h3 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--red);
  margin-bottom: 8px;
}

.danger-zone p {
  font-size: 13.5px;
  color: var(--grey);
  margin: 0 0 16px;
  line-height: 1.6;
}

.profile-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.greeting {
  font-size: 12.5px;
  color: var(--grey);
  margin: 0;
}

.profile-card h2 {
  font-size: 17px;
  margin: 4px 0 2px;
  overflow-wrap: break-word;
}

.phone {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--grey);
  margin: 0 0 12px;
}

.member-badge {
  display: inline-block;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}

.stat-icon {
  font-size: 20px;
  margin-bottom: 10px;
}

.stat-value {
  font-family: var(--font-numeric);
  font-size: 22px;
  font-weight: 700;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.quick-action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  min-width: 0;
}

.quick-action-card:hover {
  border-color: var(--yellow-dark);
}

.quick-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: none;
}

.quick-action-card b {
  display: block;
  font-size: 14px;
}

.quick-action-card span {
  display: block;
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}

/* ---------- mobile-card dashboard additions ---------- */
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.hide-on-mobile {
  display: inline-flex;
}

.avatar--hero {
  width: 48px;
  height: 48px;
  font-size: 15px;
  margin: 0;
  flex: none;
}

.stat-grid--compact {
  margin-bottom: 8px;
}

.quick-actions--tiles {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
}

.quick-tile:hover {
  border-color: var(--yellow-dark);
}

.quick-tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.order-preview-empty {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
}

.order-preview-empty .order-preview-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.order-preview-empty h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.order-preview-empty p {
  font-size: 13px;
  color: var(--grey);
  margin: 0 0 18px;
}

.order-preview-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 13px;
}

.order-preview-row .op-network {
  font-weight: 700;
}

.order-preview-row .op-meta {
  color: var(--grey);
  font-size: 12px;
}

.mobile-sheet-panel-link {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 10px;
  border-radius: 12px;
  opacity: 0;
  transform: translateX(24px);
  cursor: pointer;
}

.mobile-sheet-panel-link:hover {
  background: rgba(128, 128, 128, 0.12);
}

.mobile-sheet.open .mobile-sheet-panel-link {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(0.18s + (var(--i)) * 0.07s);
}

.mobile-sheet-contact {
  padding: 4px 20px 8px;
}

.mobile-sheet-contact-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 14px 0 10px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text);
  font-size: 13px;
}

.mobile-contact-item small {
  display: block;
  color: var(--grey);
  font-size: 11px;
  margin-bottom: 2px;
}

.mobile-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 198, 41, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: none;
}

/* ---------- app-home (logged-in dashboard on index.html) ---------- *//*
 * Which of .guest-only vs #appHome shows is decided by the inline script
 * in index.html's <head>, before first paint - not by JS after the page
 * has already rendered. That's what stops a returning logged-in customer
 * from seeing the full marketing homepage flash on screen before getting
 * replaced by their dashboard (the old js/home-dashboard.js only made this
 * swap after everything had already painted). #appHome is hidden by
 * default here so a no-JS visitor (or the split second before that head
 * script runs) always falls back to the safe, guest-visible state.
 */
#appHome { display: none; }

.network-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.network-quick-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 14px 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.network-quick-tile:hover {
  border-color: var(--yellow-dark);
}

.network-quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--white);
}

.chip-all {
  background: var(--black);
}

.pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  /* Status pills must never split words such as "Processing" across lines. */
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.pill-pending { background: rgba(255, 198, 41, 0.18); color: #9a6c00; }

.pill-paid { background: rgba(31, 174, 92, 0.12); color: var(--green); }

.pill-fulfilled { background: rgba(31, 100, 174, 0.12); color: #1f6ea1; }

.pill-cancelled { background: rgba(229, 72, 77, 0.12); color: var(--red); }

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--grey);
  font-size: 14.5px;
}

.inline-form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
  background: var(--off-white);
  border-radius: 12px;
}

.bg-upload-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.group-card {
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 18px;
  background: var(--off-white);
}

.group-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.group-card-info {
  flex: 1;
  min-width: 160px;
}

.group-card-info b {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
}

.group-card-info span {
  font-size: 12.5px;
  color: var(--grey);
}

.group-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bg-upload-card {
  flex: 1;
  min-width: 260px;
  border: 1.5px dashed #dcd8c9;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.bg-preview {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  background: var(--charcoal) center/cover no-repeat;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8f;
  font-size: 12.5px;
  font-family: var(--font-mono);
}

.editable-price {
  width: 90px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1.5px solid #e3e0d5;
  font-family: var(--font-numeric);
  font-weight: 700;
  font-size: 13.5px;
}

.bundle-thumb {
  width: 64px;
  height: 44px;
  border-radius: 8px;
  background: var(--off-white) center/cover no-repeat;
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--grey);
  font-family: var(--font-mono);
}

/* ---------- bundle detail page ---------- */
.breadcrumb {
  font-size: 13.5px;
  color: var(--grey);
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--grey);
}

.breadcrumb a:hover {
  color: var(--text);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text);
  font-weight: 600;
}

.breadcrumb .badge {
  margin-left: 8px;
  vertical-align: middle;
}

/* .breadcrumb span above would otherwise win on specificity and repaint
   the stock badge in the plain breadcrumb text color instead of green/red. */
.breadcrumb .badge-in { color: var(--green); }

.breadcrumb .badge-out { color: var(--red); }

.bundle-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.bundle-detail-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.bundle-price-range {
  font-family: var(--font-numeric);
  font-size: 17px;
  font-weight: 700;
  color: var(--yellow-dark);
  margin: 0 0 28px;
}

/* ---------- live delivery status terminal ---------- */
.delivery-terminal {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.delivery-terminal[hidden] {
  display: none;
}

.delivery-terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
}

.delivery-terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.delivery-terminal-dot.dot-red {
  background: var(--red);
}

.delivery-terminal-dot.dot-yellow {
  background: var(--yellow);
}

.delivery-terminal-dot.dot-green {
  background: var(--green);
}

.delivery-terminal-title {
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.02em;
}

.delivery-terminal-body {
  padding: 14px 16px 16px;
  font-family: var(--font-mono);
}

.delivery-terminal-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 6px;
  line-height: 1.5;
}

.delivery-terminal-prompt {
  color: var(--green);
  font-weight: 700;
  flex: none;
}

.delivery-status-icon {
  font-size: 14px;
  line-height: 1.5;
  flex: none;
}

.delivery-status-headline {
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
  margin: 0;
}

.delivery-status-headline::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 13px;
  margin-left: 3px;
  background: var(--yellow);
  vertical-align: -2px;
  animation: delivery-cursor-blink 1s step-end infinite;
}

@keyframes delivery-cursor-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.delivery-speed-badge {
  display: inline-block;
  margin: 0 0 8px 20px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delivery-speed-badge.hidden {
  display: none;
}

.delivery-speed-badge.speed-fast {
  color: var(--green);
  background: rgba(46, 160, 67, 0.14);
  border: 1px solid rgba(46, 160, 67, 0.35);
}

.delivery-speed-badge.speed-slow {
  color: var(--red);
  background: rgba(229, 72, 77, 0.14);
  border: 1px solid rgba(229, 72, 77, 0.35);
}

.delivery-status-link {
  display: inline-block;
  margin-left: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: underline;
  width: fit-content;
}

.delivery-lane-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 10px 20px;
}

.delivery-lane-row {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.delivery-lane-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.delivery-lane-label {
  font-size: 12px;
  font-weight: 700;
}

.delivery-lane-row.lane-fast .delivery-lane-label {
  color: var(--green);
}

.delivery-lane-row.lane-standard .delivery-lane-label {
  color: var(--yellow);
}

.delivery-lane-row.lane-neutral .delivery-lane-label {
  color: var(--off-white);
}

.delivery-lane-ref {
  font-size: 11px;
  color: var(--grey);
  flex: none;
}

.delivery-lane-meta {
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--grey);
}

.delivery-disclaimer-bar {
  background: rgba(229, 72, 77, 0.08);
  border: 1px solid rgba(229, 72, 77, 0.25);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
}

.delivery-disclaimer-bar a {
  color: var(--red);
  text-decoration: underline;
}

/* .status-dot is also used standalone by track-order.html's live-tracking row */
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--grey);
}

.status-dot.is-active {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 174, 92, 0.18);
}

.status-dot.is-waiting {
  background: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(224, 168, 0, 0.18);
}

.status-dot.is-down {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.18);
}

/* ---------- verify a number first ---------- */
.verify-number-box {
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  background: var(--surface);
  margin-bottom: 20px;
  overflow: hidden;
}

.verify-number-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
}

.verify-number-icon {
  font-size: 18px;
}

.verify-number-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.verify-number-copy strong {
  font-size: 14px;
}

.verify-number-copy small {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
}

.verify-number-arrow {
  font-size: 16px;
  color: var(--grey);
  transition: transform 0.15s ease;
}

.verify-number-box.is-open .verify-number-arrow {
  transform: rotate(90deg);
}

.verify-number-panel {
  padding: 0 16px 16px;
}

.verify-number-row {
  display: flex;
  gap: 8px;
}

.verify-number-result {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  display: none;
}

.verify-number-result.show {
  display: block;
}

.verify-number-result.is-ok {
  background: rgba(31, 174, 92, 0.12);
  color: var(--green);
}

.verify-number-result.is-warn {
  background: rgba(224, 168, 0, 0.14);
  color: var(--yellow-dark);
}

/* ---------- bundle size cards ----------
   Each size (1GB, 2GB, 5GB...) gets its own full-width card - a bigger,
   more scannable format than a row of small pills, matching how customers
   already expect a "choose your bundle" screen to look. */
.size-pill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.size-pill {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
  transition: box-shadow 0.12s ease;
}

.size-pill-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.size-pill-head:disabled {
  cursor: not-allowed;
}

.size-pill.is-selected {
  /* Selection is shown by the expanded accordion state; no glowing
     outline should appear around the bundle-size card. */
  box-shadow: none;
}

.size-pill-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(13, 13, 15, 0.6);
}

.size-pill-price {
  font-family: var(--font-numeric);
  font-size: 20px;
  font-weight: 800;
}

.size-pill-validity {
  position: absolute;
  top: 8px;
  right: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(13, 13, 15, 0.55);
}

.size-pill-chevron {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.15s ease;
  flex: none;
}

.size-pill.is-selected .size-pill-chevron {
  transform: rotate(180deg);
}

/* The expanded accordion body - beneficiary number, the per-card "verify a
   number first" pill, and the Buy button, all scoped to this one size so
   there's no ambiguity about which bundle you're about to pay for. */
.size-pill-panel {
  padding: 4px 22px 22px;
  background: var(--surface);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.size-pill-panel .verify-number-box {
  margin-bottom: 0;
}

.size-pill.is-out,
.size-pill-head:disabled {
  background: var(--surface);
  border: 1.5px solid var(--surface-border);
  color: var(--grey);
}

.size-pill.is-out .size-pill-price,
.size-pill-head:disabled .size-pill-price {
  color: var(--red);
}

.size-pill.is-out .size-pill-validity,
.size-pill-head:disabled .size-pill-validity {
  color: var(--grey);
}

/* Network-specific card color, matching the same brand colors already
   used for the network chips (.chip-mtn / .chip-telecel / .chip-airteltigo)
   elsewhere on the site. MTN keeps the default yellow above; only Telecel
   and AirtelTigo need an override since they're not yellow-on-black. The
   is-out/disabled rule above still wins regardless of network - an
   out-of-stock card should never look purchasable. */
.size-pill--telecel:not(.is-out) {
  background: #e2001a;
  color: var(--white);
}

.size-pill--telecel:not(.is-out) .size-pill-sub,
.size-pill--telecel:not(.is-out) .size-pill-validity {
  color: rgba(255, 255, 255, 0.75);
}

.size-pill--telecel.is-selected:not(.is-out) {
  box-shadow: none;
}

.size-pill--airteltigo:not(.is-out) {
  background: #0e3f8a;
  color: var(--white);
}

.size-pill--airteltigo:not(.is-out) .size-pill-sub,
.size-pill--airteltigo:not(.is-out) .size-pill-validity {
  color: rgba(255, 255, 255, 0.75);
}

.size-pill--airteltigo.is-selected:not(.is-out) {
  box-shadow: none;
}

/* ---------- checkout modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 15, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: var(--surface);
  border-radius: 18px;
  width: 100%;
  max-width: 460px;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--grey);
  line-height: 1;
}

.modal-footer-btn {
  min-width: 0;
  padding: 13px 10px;
  font-size: 14px;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}

.pay-options {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.size-option {
  border: 1.5px solid #e3e0d5;
  border-radius: 10px;
  padding: 12px 6px;
  text-align: center;
  cursor: pointer;
  background: var(--surface);
}

.size-option b {
  display: block;
  font-family: var(--font-numeric);
  font-weight: 700;
  font-size: 14px;
  font-weight: 700;
}

.size-option span {
  display: block;
  font-size: 11px;
  color: var(--grey);
  margin-top: 3px;
}

.size-option.is-selected {
  border-color: var(--yellow-dark);
  background: rgba(255, 198, 41, 0.12);
}

.size-option.is-out {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-back {
  background: none;
  border: none;
  color: var(--grey);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 8px;
}

.btn-back:hover {
  color: var(--text);
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid #e3e0d5;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.pay-option .tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--grey);
  font-weight: 500;
}

.pay-option.is-checked {
  border-color: var(--yellow);
  background: rgba(255, 198, 41, 0.08);
}

.pay-option.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.details-box {
  background: var(--off-white);
  color: var(--black);
  border-radius: 12px;
  padding: 16px;
  font-size: 13.5px;
  margin-top: 4px;
}

.details-box div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed #e3e0d5;
}

.details-box div:last-child { border-bottom: none; }

.details-box span { color: #6b6a63; }

.details-box b { font-family: var(--font-numeric); font-weight: 700; color: var(--black); }

/* ---------- utility ---------- */
.center { text-align: center; }

.mt-24 { margin-top: 24px; }

.hidden { display: none !important; }

.spinner {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.15);
  border-top-color: var(--text);
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

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

/* ---------- floating support + WhatsApp buttons ---------- *//* fixed to the viewport, bottom-right corner, sits above all page content -
   this NEVER takes up space in the page's normal flow *//* Each floating icon is now its own independently fixed & draggable
   element (previously a shared flex stack that all moved together).
   Default stacked positions - support above whatsapp, bottom-right -
   are set per class below and are only overridden inline once a
   customer actually drags that specific icon. */
.fab {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, left 0.25s ease, top 0.25s ease, right 0.25s ease, bottom 0.25s ease;
  text-decoration: none;
  z-index: 300;
  touch-action: none;
}

.fab.is-dragging {
  transition: transform 0.15s ease;
  cursor: grabbing;
}

.fab:hover {
  transform: translateY(-2px);
}

/* Blinking attention ring - a soft halo that expands and fades on loop,
   same visual language as the .dot / .status-dot pulses used elsewhere.
   Sits behind the icon (z-index -1) so it never blocks clicks/taps. */
.fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: fab-blink 2.2s ease-out infinite;
}

@keyframes fab-blink {
  0% { box-shadow: 0 0 0 0 var(--pulse-color); }
  70% { box-shadow: 0 0 0 14px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.fab-support {
  background: #2563eb;
  color: var(--white);
  --pulse-color: rgba(37, 99, 235, 0.55);
  right: 20px;
  bottom: 88px;
}

.fab-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 4px;
  --pulse-color: rgba(37, 211, 102, 0.55);
  right: 20px;
  bottom: 22px;
}

.fab-whatsapp::after { animation-delay: 0.25s; }

.fab-whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.support-popover {
  display: none;
  position: fixed;
  width: 230px;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  padding: 14px;
  z-index: 300;
}

.support-popover.show {
  display: block;
}

.support-popover-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
  margin: 2px 6px 8px;
}

.support-popover a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 8px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.support-popover a:hover {
  background: var(--off-white);
}

/* ---------- receipt page ---------- */
.receipt-shell {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.receipt-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
}

.receipt-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.receipt-subtitle {
  color: var(--grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 320px;
}

.receipt-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

#receiptQr {
  display: inline-flex;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

#receiptQr img,
#receiptQr canvas {
  display: block;
}

.receipt-qr-code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}

.receipt-title {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin: 4px 0 22px;
}

.receipt-card .details-box {
  text-align: left;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-color: #eae7dc;
}

.receipt-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--yellow);
  color: var(--black);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 15px;
}

.receipt-total-row span {
  font-weight: 600;
}

.receipt-total-row b {
  font-family: var(--font-numeric);
  font-size: 17px;
}

.receipt-note {
  text-align: left;
  background: var(--off-white);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 24px;
}

.receipt-note h3 {
  margin: 0 0 6px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
}

.receipt-note p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: #55555a;
}

.receipt-powered {
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--grey);
}

.receipt-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

/* ---------- copy-to-clipboard buttons ---------- */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
  vertical-align: middle;
}

.copy-btn:hover {
  background: var(--off-white);
}

.copy-btn:active {
  transform: scale(0.95);
}

.copy-btn.is-copied {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.copy-btn:disabled {
  cursor: default;
  opacity: 1;
}

/* DataMart-style order status card (see js/delivery-status.js's
   orderStatusCardHtml) - used on the account dashboard's Order History
   and the public order tracker. */
.dm-order-card {
  width: 100%;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.dm-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dm-order-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dm-order-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.dm-order-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.dm-order-dot {
  color: var(--grey);
}

.dm-order-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  white-space: nowrap;
}

.dm-order-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dm-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: var(--off-white);
  border-radius: 12px;
  font-size: 14px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

:root[data-theme="dark"] .dm-order-row {
  background: rgba(255, 255, 255, 0.05);
}

.dm-order-row-label {
  color: var(--grey);
  font-weight: 600;
  flex: none;
}

.dm-order-row-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-weight: 600;
  min-width: 0;
}

.dm-order-row-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}

.dm-order-row-value .copy-btn {
  flex: none;
  white-space: nowrap;
}

/* Small inline spinner used next to a plain loading label, e.g.
   "<span class="spinner spinner-inline"></span> Loading receipt…" */
.spinner-inline {
  margin-right: 8px;
  vertical-align: -3px;
}

.link-sm {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
}

/* ---------- FAQ page ---------- */
.faq-page {
  padding: 56px 0 96px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.is-open {
  border-color: var(--yellow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.faq-question .chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  color: var(--text);
}

.faq-item.is-open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
}

.faq-cta {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.faq-cta p {
  margin: 0 0 16px;
  color: var(--grey);
  font-size: 15px;
}

/* ---------- Track order page ---------- */
.track-page {
  padding: 40px 0 96px;
}

.track-banner {
  max-width: 720px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--black), var(--charcoal-2));
  border-radius: 20px;
  padding: 36px 28px;
  color: var(--white);
}

.track-banner .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.track-banner h1 {
  color: var(--white);
  font-size: 30px;
  margin: 0 0 12px;
}

.track-banner p {
  color: #cfcfd2;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.track-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 28px;
}

.track-card .eyebrow {
  margin-bottom: 16px;
}

.track-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.track-hint {
  font-size: 12.5px;
  color: var(--grey);
  margin: 0;
}

.track-results {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-results .empty-state {
  padding: 20px 0 0;
}

.track-result-card {
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 16px 18px;
}

.track-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.track-result-top strong {
  font-size: 15px;
}

.track-result-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.track-result-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
}

.track-result-rows div span:first-child {
  color: var(--grey);
}

.track-result-rows div span:last-child {
  font-weight: 600;
}

.track-live-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--surface-border);
  font-size: 13px;
  color: var(--grey);
}

/* ---------- delivery status update card ----------
   Used wherever a customer checks on an order - the account dashboard's
   recent-orders list and full orders table, and the public order tracker. */
.delivery-update {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--surface-border);
  font-size: 13px;
}

.delivery-update-title {
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 3px;
}

.delivery-update p {
  margin: 0;
  color: var(--grey);
  line-height: 1.5;
}

.delivery-update.tone-good {
  background: rgba(31, 174, 92, 0.08);
  border-color: rgba(31, 174, 92, 0.28);
}

.delivery-update.tone-good .delivery-update-title {
  color: var(--green);
}

.delivery-update.tone-bad {
  background: rgba(229, 72, 77, 0.08);
  border-color: rgba(229, 72, 77, 0.28);
}

.delivery-update.tone-bad .delivery-update-title {
  color: var(--red);
}

.delivery-update.tone-neutral {
  background: var(--off-white);
}

.delivery-update.tone-neutral .delivery-update-title {
  color: var(--text);
}

.topup-form {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.topup-form .btn {
  height: 48px;
  white-space: nowrap;
}

/* ---------- Data delivery notice (bundle detail page) ---------- */
.delivery-notice {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--surface-border);
}

.delivery-notice h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.delivery-notice h2 + p {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.6;
}

.delivery-notice h2 + p a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
}

.delivery-divider {
  height: 1px;
  background: var(--surface-border);
  margin: 22px 0;
}

.delivery-notice h3 {
  font-size: 15px;
  margin-bottom: 14px;
}

.unsupported-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.unsupported-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--charcoal-2);
}

.unsupported-list .x-mark {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.notice-callout {
  background: rgba(255, 198, 41, 0.12);
  border: 1px solid rgba(224, 168, 0, 0.35);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #7a4a00;
}

.notice-callout strong {
  color: #5c3800;
}

/* ---------- shiny sweep removed ----------
   Previously a diagonal highlight band swept across .btn-primary (Sign
   Up, Log In, Buy, Deposit, Deposit Now) on a 3.4s loop. Already removed
   from the Browse Bundles button (.btn-hero) and the network picker
   cards (.net-card) earlier; now dropped from .btn-primary too so no
   button or card carries a glow/sweep effect. Each keeps only its plain
   hover treatment (scale/brightness on .btn-hero, lift/border-color on
   .net-card, translateY on .btn-primary). */
/* ---------- PennyworthLoader (branded P-logo loading animation) ----------
   Reuses the exact .brand-mark "P" (yellow rounded square, black glyph,
   Archivo Black) as the site-wide loading indicator instead of a generic
   spinner. See js/pennyworth-loader.js for the component that renders this
   markup for buttons, inline states, and the full-page overlay. */
.pw-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  line-height: 0;
}

.pw-loader-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  flex: none;
  animation: pw-loader-pulse 1.35s ease-in-out infinite;
}

/* small - buttons (matches header .brand-mark proportions) */
.pw-loader--sm .pw-loader-mark {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  font-size: 4px;
}

/* medium - inline page/section loading states */
.pw-loader--md .pw-loader-mark {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  font-size: 6px;
}

/* large - full-page loading */
.pw-loader--lg .pw-loader-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  font-size: 13px;
}

@keyframes pw-loader-pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.65; }
  50% { transform: scale(1); opacity: 1; }
}

/* small P mark inline next to text, e.g. buttons/inline states -
   replaces the old .spinner / .spinner-inline pattern */
.pw-loader--inline {
  margin-right: 8px;
  vertical-align: -3px;
}

/* full-page overlay */
.pw-page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--bg, #fff);
}

.pw-page-loader .pw-loader-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 15px;
}

.pw-page-loader-text {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--black);
}

/* ---------- PennyworthLoader splash (initial full-page load, index.html only) ----------
   The real logo asset (assets/pennyworth-p-logo.png), not a CSS-redrawn P -
   see js/pennyworth-loader.js (initSplash) for the show/hide timing. Fixed
   solid-black background regardless of the site's light/dark theme, so it
   always matches the logo artwork's own black backdrop. */
.pw-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease;
}

.pw-splash--hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

.pw-splash-mark {
  position: relative;
  width: clamp(50px, 10vw, 73px);
  height: clamp(50px, 10vw, 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* Thin rotating ring - sized to the wrapper (.pw-splash-mark) so there's
   always a visible gap between it and the logo below, never touching. */
.pw-splash-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 198, 41, 0.16);
  border-top-color: var(--yellow, #ffc629);
  animation: pw-splash-spin 1.1s linear infinite;
}

.pw-splash-logo {
  position: relative;
  z-index: 1;
  width: clamp(37px, 6vw, 50px);
  height: clamp(37px, 6vw, 50px);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.85);
  animation:
    pw-splash-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    pw-splash-pulse 2.4s ease-in-out 0.6s infinite;
}

/* Stage 4: stop the ring + pulse and settle the logo before the fade-out
   (.pw-splash--hide, applied a beat later) takes over. */
.pw-splash--done .pw-splash-ring {
  animation: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pw-splash--done .pw-splash-logo {
  animation: none;
  opacity: 1;
  transform: scale(1.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pw-splash-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pw-splash-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

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

/* ---------- circle-reveal theme transition (js/theme.js) ----------
   On a manual toggle, the JS starts a View Transition and animates the
   *new* theme's snapshot growing from a circle at the exact point that
   was pressed - the old theme just sits underneath unclipped, so it reads
   as a wipe rather than a cross-fade. --pdh-theme-vt-clip is set by the
   JS right before the transition starts (so the new theme is invisible
   from frame one) and cleared once it finishes; the fallback value only
   matters for the brief window between a browser that doesn't support
   View Transitions ignoring all of this entirely - browsers that do will
   always have the variable set for the transition's lifetime. */
::view-transition-old(root) {
  animation: none;
}

::view-transition-new(root) {
  animation: none;
  clip-path: var(--pdh-theme-vt-clip, circle(0px at 50% 50%));
}

:root[data-theme="dark"] .btn-outline {
  border-color: var(--text);
  color: var(--text);
}

:root[data-theme="dark"] .modal-backdrop {
  background: rgba(0, 0, 0, 0.7);
}

/* Toggle button mirrors the site's current mode: white background in
   light mode, black in dark mode - instead of the same translucent
   white circle in both. */
:root[data-theme="dark"] .theme-toggle-btn {
  background: var(--black);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

:root[data-theme="dark"] .theme-toggle-btn--header {
  background: var(--surface);
  color: var(--text);
  border-color: var(--surface-border);
}

:root[data-theme="dark"] .theme-toggle-btn--mobile {
  background: rgba(128, 128, 128, 0.14);
  color: var(--text);
  border-color: transparent;
}

:root[data-theme="dark"] .pw-page-loader {
  background: var(--bg, #0d0d0f);
}

:root[data-theme="dark"] .pw-page-loader-text {
  color: #fff;
}


@media (max-width: 520px) {
  .social-boost-home-card {
    width: 220px;
    min-height: 190px;
  }
}


