/* ==========================================================================
   ORBITAL LOG STORE — Design System
   Display: Space Grotesk · Body: Inter · Utility: JetBrains Mono
   ========================================================================== */

:root {
  --space-navy: #0b0e1a;
  --space-navy-2: #141a2e;
  --space-navy-3: #1c2340;
  --cloud: #f6f7fb;
  --white: #ffffff;
  --ink: #10131f;
  --slate: #67708a;
  --slate-light: #a2a9be;
  --indigo: #5b3df5;
  --indigo-dark: #4527d1;
  --indigo-soft: rgba(91, 61, 245, 0.1);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.12);
  --coral: #ff6b6b;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--indigo);
  color: var(--white);
}

/* Focus visibility (accessibility floor) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------
   Utility: eyebrow / orbit-dot marker
   Signature motif reused everywhere instead of numbered steps —
   a small ring with an orbiting dot, echoing the hero.
   -------------------------------------------------------------------- */
.orb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}

.orb-eyebrow--light {
  color: var(--cyan);
}

.orb-eyebrow .ring {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.55;
  flex: none;
}

.orb-eyebrow .ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: currentColor;
  animation: orbit-dot 3.2s linear infinite;
  transform-origin: 2px 8px;
}

@keyframes orbit-dot {
  from {
    transform: rotate(0deg) translateX(7px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(7px) rotate(-360deg);
  }
}

/* --------------------------------------------------------------------
   Spinner
   -------------------------------------------------------------------- */
#spinner {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--space-navy);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.45s var(--ease),
    visibility 0s linear 0.45s;
}

#spinner.show {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.45s var(--ease),
    visibility 0s linear 0s;
}

.orb-loader {
  position: relative;
  width: 56px;
  height: 56px;
}

.orb-loader span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--cyan);
  animation: orb-spin 1s linear infinite;
}

.orb-loader span:nth-child(2) {
  inset: 10px;
  border-top-color: var(--indigo);
  animation-duration: 0.7s;
  animation-direction: reverse;
}

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

/* --------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------- */
.orb-topbar {
  background: var(--space-navy);
  color: var(--slate-light);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 9px 0;
}

.orb-topbar a {
  color: var(--slate-light);
  transition: color 0.3s var(--ease);
}
.orb-topbar a:hover {
  color: var(--cyan);
}

.orb-topbar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  margin-left: 8px;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.orb-topbar .social-links a:hover {
  background: var(--indigo);
  transform: translateY(-2px);
}

.orb-topbar .social-links img {
  height: 15px;
  filter: brightness(0) invert(1);
}

/* --------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------- */
.orb-navbar {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 19, 31, 0.06);
  transition:
    box-shadow 0.3s var(--ease),
    padding 0.3s var(--ease);
}

.orb-navbar.is-stuck {
  box-shadow: 0 8px 30px rgba(16, 19, 31, 0.08);
  padding: 12px 0;
}

.orb-navbar .navbar-brand img {
  max-height: 38px;
}

.orb-navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink) !important;
  padding: 8px 16px !important;
  margin: 0 2px;
  border-radius: var(--radius-sm);
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.orb-navbar .nav-link:hover,
.orb-navbar .nav-link.active {
  color: var(--indigo) !important;
  background: var(--indigo-soft);
}

.orb-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  padding: 10px 22px;
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

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

.orb-btn--primary {
  background: var(--indigo);
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(91, 61, 245, 0.25);
}
.orb-btn--primary:hover {
  background: var(--indigo-dark);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.orb-btn--ghost {
  background: transparent;
  border-color: rgba(16, 19, 31, 0.14);
  color: var(--ink) !important;
}
.orb-btn--ghost:hover {
  border-color: var(--indigo);
  color: var(--indigo) !important;
  transform: translateY(-2px);
}

.orb-btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white) !important;
}
.orb-btn--outline-light:hover {
  border-color: var(--cyan);
  color: var(--cyan) !important;
}

.orb-btn--sm {
  padding: 7px 16px;
  font-size: 13.5px;
}

.orb-btn--disabled,
.orb-btn--faded,
.orb-btn.is-submitting,
.orb-btn:disabled,
.orb-btn[disabled] {
  opacity: 0.7;
  box-shadow: none !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.orb-spinner-sm {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.15em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: orb-btn-spin 0.65s linear infinite;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

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

.orb-navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(16, 19, 31, 0.14);
  padding: 10px;
  margin-top: 12px;
  max-height: 60vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.orb-navbar .dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 14.5px;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}

.orb-navbar .dropdown-item:hover,
.orb-navbar .dropdown-item:focus {
  background: var(--indigo-soft);
  color: var(--indigo);
}

.orb-navbar .navbar-toggler {
  border: 1.5px solid rgba(16, 19, 31, 0.14);
  border-radius: 10px;
}

.orb-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.orb-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816, 19, 31, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --------------------------------------------------------------------
   Hero — signature orbital system
   -------------------------------------------------------------------- */
.orb-hero {
  position: relative;
  background: var(--space-navy);
  overflow: hidden;
  padding: 110px 0 90px;
}

.orb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 400px at 82% 12%,
      rgba(91, 61, 245, 0.35),
      transparent 60%
    ),
    radial-gradient(
      500px 400px at 8% 90%,
      rgba(34, 211, 238, 0.18),
      transparent 60%
    );
  pointer-events: none;
}

.orb-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .orb-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .orb-hero {
    padding: 150px 0 60px;
  }
}

.orb-hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}

.orb-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--cyan), var(--indigo) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.orb-hero p.lead {
  color: var(--slate-light);
  font-size: 17.5px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 34px;
}

@media (max-width: 992px) {
  .orb-hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.orb-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .orb-hero__actions {
    justify-content: center;
  }
}

.orb-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 46px;
  font-family: var(--font-mono);
}
@media (max-width: 992px) {
  .orb-hero__stats {
    justify-content: center;
  }
}

.orb-hero__stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
}
.orb-hero__stats .stat span {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--slate-light);
  text-transform: uppercase;
}

/* orbital visual */
.orb-hero__system {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.orb-hero__system .core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  margin: -46px 0 0 -46px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #8a6fff, var(--indigo) 65%);
  box-shadow:
    0 0 60px rgba(91, 61, 245, 0.65),
    0 0 0 14px rgba(91, 61, 245, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.orb-hero__system .core img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
}

.orb-hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orb-hero__ring--1 {
  width: 62%;
  height: 62%;
  animation: spin 18s linear infinite;
}
.orb-hero__ring--2 {
  width: 84%;
  height: 84%;
  animation: spin 28s linear infinite reverse;
}
.orb-hero__ring--3 {
  width: 100%;
  height: 100%;
  animation: spin 40s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orb-hero__satellite {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-left: -21px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  animation: counter-spin-1 18s linear infinite;
}
.orb-hero__ring--2 .orb-hero__satellite {
  animation: counter-spin-2 28s linear infinite reverse;
}
.orb-hero__ring--3 .orb-hero__satellite {
  animation: counter-spin-3 40s linear infinite;
}

@keyframes counter-spin-1 {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes counter-spin-2 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes counter-spin-3 {
  to {
    transform: rotate(-360deg);
  }
}

.orb-hero__satellite img {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------
   Reveal-on-scroll (replaces WOW.js data attributes with IntersectionObserver)
   -------------------------------------------------------------------- */
.orb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.orb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------
   Section shells
   -------------------------------------------------------------------- */
.orb-section {
  padding: 96px 0;
}
.orb-section--tight {
  padding: 70px 0;
}
.orb-section--dark {
  background: var(--space-navy);
  color: var(--white);
}
.orb-section--dark h2,
.orb-section--dark h1 {
  color: var(--white);
}
.orb-section--dark p {
  color: var(--slate-light);
}

.orb-heading {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}
.orb-subtext {
  color: var(--slate);
  font-size: 16.5px;
  line-height: 1.75;
}
.orb-section--dark .orb-subtext {
  color: var(--slate-light);
}

/* --------------------------------------------------------------------
   About
   -------------------------------------------------------------------- */
.orb-about__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(16, 19, 31, 0.14);
}
.orb-about__visual img {
  width: 100%;
  display: block;
}

.orb-about__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 14, 26, 0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.orb-about__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.orb-about ul.orb-checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 14px;
}
.orb-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink);
}
.orb-checklist li .icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}

/* --------------------------------------------------------------------
   Services
   -------------------------------------------------------------------- */
.orb-services {
  background: var(--cloud);
}

.orb-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  box-shadow: 0 2px 0 rgba(16, 19, 31, 0.03);
  border: 1px solid rgba(16, 19, 31, 0.06);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.orb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(16, 19, 31, 0.12);
  border-color: transparent;
}

.orb-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.orb-card:hover .orb-card__icon {
  background: var(--indigo);
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
}

.orb-card h4 {
  font-size: 19px;
  margin-bottom: 6px;
}
.orb-card .tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: 14px;
}
.orb-card p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------- */
.orb-cta {
  position: relative;
  background: linear-gradient(135deg, var(--indigo) 0%, #3b1fb8 100%);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.orb-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px 220px at 85% 15%,
    rgba(34, 211, 238, 0.35),
    transparent 65%
  );
  z-index: -1;
}

.orb-cta h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.orb-cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 30px;
}

/* --------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------- */
.orb-footer {
  background: var(--space-navy-2);
  color: var(--slate-light);
  padding: 70px 0 30px;
}

.orb-footer h5 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 20px;
}

.orb-footer p {
  color: var(--slate-light);
  font-size: 14.5px;
  line-height: 1.8;
}

.orb-footer a.link {
  color: var(--slate-light);
  display: block;
  font-size: 14.5px;
  padding: 6px 0;
  transition:
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.orb-footer a.link:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.orb-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  margin-right: 8px;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.orb-footer .social-links a:hover {
  background: var(--indigo);
  transform: translateY(-3px);
}
.orb-footer .social-links img {
  height: 16px;
  filter: brightness(0) invert(1);
}

.orb-copyright {
  background: var(--space-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  color: var(--slate-light);
  font-size: 14px;
}
.orb-copyright a {
  color: var(--white);
  font-weight: 600;
}

/* --------------------------------------------------------------------
   Chat launcher
   -------------------------------------------------------------------- */
.orb-chat {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1040;
}

.orb-chat__label {
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  box-shadow: 0 4px 15px rgba(16, 19, 31, 0.08);
  white-space: nowrap;
}

.orb-chat__label:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 19, 31, 0.12);
}

.orb-chat__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(91, 61, 245, 0.4);
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.orb-chat__btn:hover {
  transform: scale(1.08);
  background: var(--indigo-dark);
}
.orb-chat__btn .icon-close {
  display: none;
}
.orb-chat.is-open .orb-chat__btn .icon-open {
  display: none;
}
.orb-chat.is-open .orb-chat__btn .icon-close {
  display: block;
}

.orb-chat__panel {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 250px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(16, 19, 31, 0.22);
  padding: 10px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.orb-chat.is-open .orb-chat__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.orb-chat__panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.2s var(--ease);
}
.orb-chat__panel a:hover {
  background: var(--cloud);
}
.orb-chat__panel a i {
  color: #0088cc;
  font-size: 18px;
}

/* --------------------------------------------------------------------
   Modal (dashboard popup)
   -------------------------------------------------------------------- */
.orb-modal .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.orb-modal .modal-header {
  background: var(--space-navy);
  border: none;
  padding: 22px 26px;
}
.orb-modal .modal-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
}
.orb-modal .modal-body {
  padding: 26px;
}

.orb-modal__channel {
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--cloud);
  margin-bottom: 16px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.orb-modal__channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(16, 19, 31, 0.1);
}
.orb-modal__channel img {
  height: 22px;
}
.orb-modal__channel strong {
  font-family: var(--font-display);
  font-size: 15.5px;
}
.orb-modal__channel p {
  color: var(--slate);
  font-size: 13.5px;
  margin: 6px 0 14px;
}

@media (max-width: 576px) {
  .orb-section {
    padding: 64px 0;
  }
  .orb-cta {
    padding: 46px 22px;
  }
}

/* ==========================================================================
   Dashboard / internal pages
   ========================================================================== */

.orb-page {
  background: var(--cloud);
  min-height: 100vh;
  padding-bottom: 40px;
}

.orb-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 40px 0 30px;
}

.orb-page__header h1 {
  font-size: 1.7rem;
  margin: 0;
}

.orb-page__header .orb-eyebrow {
  margin-bottom: 6px;
}

/* Stat cards */
.orb-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 19, 31, 0.06);
  padding: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.orb-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent, var(--indigo));
}

.orb-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 19, 31, 0.1);
  border-color: transparent;
}

a.orb-stat,
a.orb-stat:hover {
  color: inherit;
}

.orb-stat__icon {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: color-mix(in srgb, var(--accent, var(--indigo)) 12%, transparent);
  color: var(--accent, var(--indigo));
}

.orb-stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.orb-stat__value {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
}

.orb-stat--primary {
  --accent: var(--indigo);
}
.orb-stat--success {
  --accent: #16a34a;
}
.orb-stat--danger {
  --accent: var(--coral);
}
.orb-stat--info {
  --accent: var(--cyan);
}
.orb-stat--warning {
  --accent: #f59e0b;
}
.orb-stat--secondary {
  --accent: #64748b;
}

/* Referral box */
.orb-referral {
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.06);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 30px;
}

.orb-referral label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: 10px;
}

.orb-referral .input-group {
  max-width: 560px;
}

.orb-referral .form-control {
  border-radius: 999px 0 0 999px !important;
  border: 1.5px solid rgba(16, 19, 31, 0.12);
  border-right: none;
  font-family: var(--font-mono);
  font-size: 13.5px;
  padding: 10px 18px;
  background: var(--cloud);
  color: var(--ink);
}

.orb-referral .form-control:focus {
  box-shadow: none;
  border-color: var(--indigo);
}

.orb-referral .btn-copy {
  border-radius: 0 999px 999px 0 !important;
  border: 1.5px solid var(--indigo);
  background: var(--indigo);
  color: var(--white);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 20px;
  transition: background 0.25s var(--ease);
}
.orb-referral .btn-copy:hover {
  background: var(--indigo-dark);
}
.orb-referral .btn-copy:disabled {
  opacity: 1;
  background: #16a34a;
  border-color: #16a34a;
}

/* Table cards */
.orb-table-card {
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  overflow: hidden;
}

.orb-table-card__header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(16, 19, 31, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.orb-table-card__header h6 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

.orb-table-card__header i {
  color: var(--indigo);
}

.orb-table-card__body {
  padding: 8px 24px 20px;
}

.orb-table-card .table,
.orb-table-card table.dataTable {
  font-size: 13.5px;
  margin-bottom: 0;
}

.orb-table-card .table thead th,
.orb-table-card table.dataTable thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 2px solid rgba(16, 19, 31, 0.08) !important;
  background: #fbfcfe;
  vertical-align: middle;
  padding: 12px 14px;
}

.orb-table-card .table tbody td,
.orb-table-card table.dataTable tbody td {
  border-color: rgba(16, 19, 31, 0.06);
  vertical-align: middle;
  color: var(--ink);
  padding: 12px 14px;
}

.orb-table-card .table tbody tr:hover,
.orb-table-card table.dataTable tbody tr:hover {
  background: rgba(91, 61, 245, 0.02);
}

/* Long Item Names formatting */
.orb-table-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 220px;
  max-width: 440px;
  text-align: left;
}

.orb-table-item__name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  transition: color 0.15s ease;
}

.orb-table-item:hover .orb-table-item__name,
a:hover .orb-table-item__name {
  color: var(--indigo);
}

.orb-table-item__caption {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--slate);
  background: rgba(16, 19, 31, 0.04);
  padding: 2px 8px;
  border-radius: 6px;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid rgba(16, 19, 31, 0.07);
}

.orb-table-nowrap {
  white-space: nowrap !important;
}

.orb-table-card a {
  color: var(--indigo);
  font-weight: 500;
}
.orb-table-card a:hover {
  color: var(--indigo-dark);
}

/* DataTable Controls & Pagination */
.orb-datatable-wrapper {
  position: relative;
}

.orb-datatable-wrapper .dataTables_filter input {
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.12);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 13px;
  transition: all 0.2s ease;
}

.orb-datatable-wrapper .dataTables_filter input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(91, 61, 245, 0.15);
  outline: none;
}

.orb-datatable-wrapper .dataTables_length select {
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.12);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
}

.orb-datatable-wrapper .pagination .page-item .page-link {
  color: var(--slate);
  border-color: rgba(16, 19, 31, 0.1);
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  margin: 0 2px;
}

.orb-datatable-wrapper .pagination .page-item.active .page-link {
  background-color: var(--indigo) !important;
  border-color: var(--indigo) !important;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(91, 61, 245, 0.3);
}

.orb-datatable-wrapper .pagination .page-item.disabled .page-link {
  color: rgba(16, 19, 31, 0.25);
  background-color: transparent;
  border-color: rgba(16, 19, 31, 0.06);
}

.orb-datatable-wrapper .pagination .page-item:not(.active):not(.disabled) .page-link:hover {
  background-color: rgba(91, 61, 245, 0.06);
  color: var(--indigo);
  border-color: rgba(91, 61, 245, 0.2);
}

.orb-datatable-no-matches {
  font-style: italic;
}

.orb-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  background: var(--cyan-soft);
  color: #0e7490;
}

.orb-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}
.orb-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.orb-status--success {
  color: #16a34a;
}
.orb-status--success::before {
  background: #16a34a;
}
.orb-status--pending {
  color: #f59e0b;
}
.orb-status--pending::before {
  background: #f59e0b;
}
.orb-status--failed {
  color: var(--coral);
}
.orb-status--failed::before {
  background: var(--coral);
}

/* Alert */
.orb-alert {
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  padding: 15px 20px;
  margin-bottom: 24px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.orb-alert i {
  font-size: 17px;
  flex: none;
}
.orb-alert--success {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.22);
  color: #15803d;
}
.orb-alert--danger {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.26);
  color: #c43737;
}
.orb-alert--primary {
  background: var(--indigo-soft);
  border-color: rgba(91, 61, 245, 0.22);
  color: var(--indigo-dark);
}

@media (max-width: 576px) {
  .orb-stat {
    padding: 18px;
  }
  .orb-table-card__body {
    padding: 6px 14px 14px;
  }
  .orb-table-card__header {
    padding: 16px;
  }
}

/* ==========================================================================
   Carousel (promo banners)
   ========================================================================== */

.orb-carousel-wrap {
  padding: 22px 0 6px;
  background: var(--white);
}

.orb-page .orb-carousel-wrap {
  background: transparent;
  padding: 0 0 28px;
}

.orb-page .orb-carousel {
  width: 100%;
}

.orb-carousel {
  position: relative;
  width: 88%;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--space-navy-2);
  box-shadow: 0 14px 32px rgba(16, 19, 31, 0.12);
  height: clamp(110px, 22vh, 230px);
}

@media (max-width: 992px) {
  .orb-carousel {
    width: 92%;
    height: clamp(100px, 18vh, 190px);
  }
}

@media (max-width: 576px) {
  .orb-carousel {
    width: 94%;
    border-radius: var(--radius-md);
    height: clamp(90px, 15vh, 150px);
  }
}

.orb-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.orb-carousel__slide {
  flex: 0 0 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.orb-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.orb-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(11, 14, 26, 0.45);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  opacity: 0;
  transition:
    background 0.25s var(--ease),
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
  z-index: 3;
}

.orb-carousel:hover .orb-carousel__nav,
.orb-carousel:focus-within .orb-carousel__nav {
  opacity: 1;
}

.orb-carousel__nav:hover {
  background: var(--indigo);
}
.orb-carousel__nav--prev {
  left: 16px;
}
.orb-carousel__nav--next {
  right: 16px;
}

@media (max-width: 576px) {
  .orb-carousel__nav {
    opacity: 1;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

.orb-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.orb-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s var(--ease),
    width 0.25s var(--ease);
}

.orb-carousel__dot.is-active {
  background: var(--white);
  width: 22px;
  border-radius: 999px;
}

.orb-carousel__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--indigo));
  width: 0%;
  z-index: 3;
}

.orb-carousel__empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-light);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Sub-page hero (About, and any inner page needing a compact header)
   ========================================================================== */

.orb-subhero {
  position: relative;
  background: var(--space-navy);
  overflow: hidden;
  padding: 130px 0 64px;
  text-align: center;
  color: var(--white);
}

.orb-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 320px at 85% 10%,
      rgba(91, 61, 245, 0.32),
      transparent 60%
    ),
    radial-gradient(
      420px 320px at 10% 95%,
      rgba(34, 211, 238, 0.16),
      transparent 60%
    );
  pointer-events: none;
}

.orb-subhero .orb-eyebrow {
  justify-content: center;
}
.orb-subhero h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 0;
  z-index: 2;
}
.orb-subhero p {
  position: relative;
  z-index: 2;
  color: var(--slate-light);
  max-width: 560px;
  margin: 14px auto 0;
}

@media (max-width: 992px) {
  .orb-subhero {
    padding: 120px 0 50px;
  }
}

/* ==========================================================================
   Forms (admin + customer pages)
   ========================================================================== */

.orb-page .form-control,
.orb-page .form-select,
.orb-page textarea,
.orb-auth-wrap .form-control,
.orb-auth-wrap .form-select,
.orb-auth-wrap textarea {
  border-radius: 12px;
  border: 1.5px solid rgba(16, 19, 31, 0.12);
  font-size: 14.5px;
  padding: 11px 16px;
  color: var(--ink);
  background-color: var(--white);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.orb-page .form-control:focus,
.orb-page .form-select:focus,
.orb-page textarea:focus,
.orb-auth-wrap .form-control:focus,
.orb-auth-wrap .form-select:focus,
.orb-auth-wrap textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-soft);
  outline: none;
}

.orb-page .form-floating > label,
.orb-auth-wrap .form-floating > label {
  color: var(--slate);
  font-weight: 500;
  font-size: 14px;
  padding: 11px 16px;
}

.orb-page .form-floating > .form-control:focus ~ label,
.orb-page .form-floating > .form-control:not(:placeholder-shown) ~ label,
.orb-page .form-floating > .form-select ~ label,
.orb-auth-wrap .form-floating > .form-control:focus ~ label,
.orb-auth-wrap .form-floating > .form-control:not(:placeholder-shown) ~ label,
.orb-auth-wrap .form-floating > .form-select ~ label {
  color: var(--indigo);
  opacity: 1;
}

.orb-page .input-group .orb-btn {
  border-radius: 0 12px 12px 0 !important;
}
.orb-page .input-group .form-control {
  border-radius: 12px 0 0 12px;
}

/* Neutralize the browser's blue/yellow autofill tint so autofilled fields
   still match the design instead of looking like a plain unstyled input */
.orb-auth-wrap input:-webkit-autofill,
.orb-auth-wrap input:-webkit-autofill:hover,
.orb-auth-wrap input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
  box-shadow: 0 0 0 1000px var(--white) inset;
  transition: background-color 9999s ease-in-out 0s;
}

/* ==========================================================================
   Product / item cards (customer account listing)
   ========================================================================== */

.orb-item-card {
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.orb-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 19, 31, 0.09);
  border-color: transparent;
}

.orb-item-card__info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.orb-item-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--cloud);
  padding: 6px;
  flex: none;
}

.orb-item-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}
.orb-item-card__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate);
  margin-top: 2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.orb-item-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================================================
   Stock status indicators (in stock vs out of stock)
   ========================================================================== */

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 13px;
}

.stock-badge--in {
  color: #10b981;
}

.stock-badge--out {
  color: #ef4444;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.stock-dot--in {
  background-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.stock-dot--out {
  background-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

/* Sold badge (displayed when stock is 0) */
.orb-badge-sold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fde8e8;
  color: #ef4444;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  user-select: none;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Full-Width Category / Section Title Banner
   ========================================================================== */

.orb-category-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.22);
}

.orb-category-banner__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.orb-category-banner__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.orb-category-banner__link {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 16px;
  border-radius: 9999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.orb-category-banner__link:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #ffffff !important;
  transform: translateX(2px);
}

.orb-details-toggle {
  background: transparent;
  border: 1.5px solid rgba(16, 19, 31, 0.14);
  color: var(--indigo);
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  padding: 7px 16px;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.orb-details-toggle:hover {
  border-color: var(--indigo);
  background: var(--indigo-soft);
}

.orb-details-panel {
  background: var(--cloud);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ==========================================================================
   Order cards (admin manual-payment approvals)
   ========================================================================== */

.orb-order-card {
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.06);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 16px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.orb-order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 19, 31, 0.1);
}

.orb-order-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.orb-order-card h5 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 12px;
}

.orb-order-card__items {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.85;
  margin: 6px 0 14px;
}

.orb-order-card__total {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--indigo);
}

/* ==========================================================================
   Banner list (admin-banners)
   ========================================================================== */

.orb-banner-item {
  border: 1px solid rgba(16, 19, 31, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.orb-banner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 19, 31, 0.1);
}

.orb-banner-item img {
  width: 100%;
  display: block;
  max-height: 220px;
  object-fit: cover;
  background: var(--cloud);
}

.orb-banner-item__footer {
  padding: 14px 16px;
  background: var(--white);
  display: flex;
  justify-content: flex-end;
}

.orb-banner-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 13px;
}

/* ==========================================================================
   Key-value list (referral detail, etc.)
   ========================================================================== */

.orb-kv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.orb-kv-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cloud);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
}

.orb-kv-list li strong {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}

.orb-kv-list li span,
.orb-kv-list li .val {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.orb-empty-row {
  text-align: center;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 24px !important;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.orb-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.06);
  margin-bottom: 18px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.orb-contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 19, 31, 0.08);
}

.orb-contact-item__icon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.orb-contact-item h4 {
  font-size: 16.5px;
  margin-bottom: 2px;
}
.orb-contact-item p {
  margin: 0;
  color: var(--slate);
}

.orb-social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.orb-social-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.orb-social-circle:hover {
  transform: translateY(-4px);
  background: var(--indigo-dark);
  color: var(--white);
}

/* ==========================================================================
   Category grid (categories.php)
   ========================================================================== */

.orb-category-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.06);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  height: 100%;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.orb-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 19, 31, 0.1);
  border-color: transparent;
  background: var(--indigo);
}
.orb-category-card:hover .orb-category-card__name,
.orb-category-card:hover .orb-category-card__arrow {
  color: var(--white);
}
.orb-category-card:hover .stock-badge,
.orb-category-card:hover .stock-badge--in,
.orb-category-card:hover .stock-badge--out {
  color: rgba(255, 255, 255, 0.92);
}
.orb-category-card:hover .stock-dot--in,
.orb-category-card:hover .stock-dot--out {
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.orb-category-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.orb-category-card__arrow {
  color: var(--indigo);
  transition:
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.orb-category-card:hover .orb-category-card__arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Cart / checkout summary
   ========================================================================== */

.orb-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--cloud);
  border-radius: var(--radius-md);
  margin: 20px 0;
}
.orb-summary-total .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}
.orb-summary-total .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}

/* ==========================================================================
   Auth pages (login, register, forgot-password, etc.)
   ========================================================================== */

.orb-auth-wrap {
  background: var(--cloud);
  min-height: calc(100dvh - 75px);
  min-height: calc(100vh - 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 16px 64px;
}

@media (min-width: 992px) {
  .orb-auth-wrap {
    min-height: calc(100dvh - 115px);
    min-height: calc(100vh - 115px);
    padding: 32px 16px 80px;
  }
}

.orb-auth-wrap > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}

.orb-auth-card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 55px rgba(16, 19, 31, 0.09);
  overflow: hidden;
}

.orb-auth-card__header {
  background: var(--space-navy);
  padding: 34px 34px 26px;
  position: relative;
  overflow: hidden;
}
.orb-auth-card__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    320px 200px at 90% 0%,
    rgba(91, 61, 245, 0.4),
    transparent 65%
  );
}
.orb-auth-card__header * {
  position: relative;
  z-index: 2;
}
.orb-auth-card__header h1 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
}
.orb-auth-card__header p {
  color: var(--slate-light);
  font-size: 14px;
  margin: 8px 0 0;
}

.orb-auth-card__body {
  padding: 30px 34px 34px;
}

@media (max-width: 576px) {
  .orb-auth-card {
    border-radius: var(--radius-md);
  }
  .orb-auth-card__header {
    padding: 26px 22px 20px;
  }
  .orb-auth-card__body {
    padding: 24px 22px 26px;
  }
}

.orb-auth-card .form-floating {
  margin-bottom: 16px;
}

.orb-auth-links {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: var(--slate);
}
.orb-auth-links a {
  color: var(--indigo);
  font-weight: 600;
}
.orb-auth-links a:hover {
  color: var(--indigo-dark);
}

/* ==========================================================================
   Order tiles (user's order-grid page)
   ========================================================================== */

.orb-order-tile {
  background: var(--white);
  border: 1px solid rgba(16, 19, 31, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 100%;
  display: block;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.orb-order-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(16, 19, 31, 0.1);
  border-color: transparent;
}
.orb-order-tile h6 {
  font-family: var(--font-display);
  color: var(--indigo);
  font-size: 15.5px;
  margin-bottom: 6px;
}
.orb-order-tile .caption {
  color: var(--slate);
  font-size: 13px;
  margin-bottom: 8px;
}
.orb-order-tile .meta {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.orb-order-tile .meta strong {
  font-weight: 600;
}
.orb-order-tile .time {
  color: var(--slate-light);
  font-size: 12px;
  font-family: var(--font-mono);
  margin-top: 8px;
  display: block;
}

/* ==========================================================================
   Payment page
   ========================================================================== */

.orb-payment-method {
  position: relative;
}
.orb-payment-method input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.orb-payment-method label {
  display: block;
  cursor: pointer;
  border: 1.5px solid rgba(16, 19, 31, 0.1);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  background: var(--white);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
  margin: 0;
}
.orb-payment-method label:hover {
  transform: translateY(-2px);
}
.orb-payment-method input[type="radio"]:checked + label {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-soft);
}
.orb-payment-method .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.orb-payment-method h6 {
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 2px;
}
.orb-payment-method small {
  color: var(--slate);
}

.orb-bank-card {
  border: 1px solid rgba(16, 19, 31, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  height: 100%;
}
.orb-bank-card h6 {
  font-family: var(--font-display);
  color: var(--indigo);
  font-size: 14.5px;
  margin-bottom: 12px;
}
.orb-bank-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.orb-bank-card li {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--ink);
}
.orb-bank-card li strong {
  color: var(--slate);
  font-weight: 600;
}

/* Ensure sticky navbar sits above chat launcher (z-index 1040) so dropdowns don't get blocked */
.orb-nav-wrap.sticky-top {
  z-index: 1050;
}
