/* ============================================================
   UIKIT.CSS — Tebex Theme Design System
   Tech-Noir Gaming Aesthetic
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  --accent:       #5665C2;
  --accent-light: #7585e0;
  --accent-dim:   rgba(86, 101, 194, 0.15);
  --accent-glow:  rgba(86, 101, 194, 0.4);

  --bg-base:      #0d0f1a;
  --bg-surface:   #13162d;
  --bg-raised:    #1a1e38;
  --bg-overlay:   rgba(13, 15, 26, 0.85);

  --text-primary:   #ffffff;
  --text-secondary: #a8b2d8;
  --text-muted:     #6b7699;

  --border-subtle: rgba(86, 101, 194, 0.25);
  --border-accent: #5665C2;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-pill: 9999px;

  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Urbanist', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover, a:focus { outline: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50%       { box-shadow: 0 0 20px 6px var(--accent-glow); }
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes borderPulse {
  0%, 100% { border-color: var(--accent); }
  50%       { border-color: var(--accent-light); }
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(1deg); }
  66%       { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes gridScan {
  0%   { background-position: 0 0; }
  100% { background-position: 0 60px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

/* Animations */
.anim-fadeup   { animation: fadeInUp var(--transition-normal) both; }
.anim-fadein   { animation: scaleIn var(--transition-normal) both; }
.anim-fadeleft { animation: fadeInLeft var(--transition-normal) both; }

/* Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* Intersection-based reveal (JS handles .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* Glow Pulse on card hover */
.glow-on-hover {
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-spring);
}
.glow-on-hover:hover {
  box-shadow: 0 0 24px 4px var(--accent-glow);
  border-color: var(--accent-light);
  transform: translateY(-4px) scale(1.01);
}

/* ============================================================
   COMPONENTS
   ============================================================ */

/* ---- Navbar ---- */
.navbar-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background var(--transition-normal), backdrop-filter var(--transition-normal), border-bottom-color var(--transition-normal);
  border-bottom: 1px solid transparent;
}
.navbar-glass.scrolled {
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  transform: translateX(-50%);
  transition: width var(--transition-normal);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 60%; }
.nav-link.active {
  color: var(--text-primary);
  background: var(--accent-dim);
}
.nav-link.active::after { width: 60%; }

/* ---- Icon Buttons (Navbar) ---- */
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-accent);
  background: var(--bg-surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-spring);
  cursor: pointer;
  position: relative;
}
.icon-btn:hover {
  color: var(--accent-light);
  background: var(--accent-dim);
  transform: scale(1.08);
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseGlow 2s infinite;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent);
  transition: background var(--transition-fast), transform var(--transition-spring), box-shadow var(--transition-fast);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
  color: white;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-spring);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--accent-dim);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* ---- Section Label ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid var(--border-subtle);
  background: var(--accent-dim);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ---- Stats Cards ---- */
.stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-normal), transform var(--transition-spring);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- Product Cards ---- */
.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-normal), transform var(--transition-spring), box-shadow var(--transition-normal);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(86, 101, 194, 0.2);
}
.product-card .img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.product-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .img-wrapper img {
  transform: scale(1.06);
}
.product-card .category-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--bg-overlay);
  border: 1px solid var(--border-subtle);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.product-card .card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card .card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.price-badge {
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent-light);
}
.price-old {
  font-size: 0.8rem;
  color: #ef4444;
  text-decoration: line-through;
  margin-right: 4px;
}
.card-action-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  background: transparent;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-spring);
}
.card-action-btn:hover {
  color: var(--text-primary);
  background: var(--accent-dim);
  transform: scale(1.1);
}
.card-look-btn {
  flex: 1;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: transparent;
  text-align: center;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.card-look-btn:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ---- Product Tag Pills ---- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 2px 0 4px;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 3px 9px;
  white-space: nowrap;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  cursor: default;
}
.tag-pill:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ---- Featured Package Card ---- */
.featured-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-normal), transform var(--transition-spring), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(86, 101, 194, 0.25);
}
.featured-card .thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.featured-card .meta {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- Recent Payments Slider ---- */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  white-space: nowrap;
  min-width: 220px;
  transition: border-color var(--transition-fast);
}
.payment-item:hover { border-color: var(--accent); }
.payment-item .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border-subtle);
}
.payment-item .avatar img { width: 100%; height: 100%; object-fit: cover; }
.payment-item .pname { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.payment-item .ppkg  { font-size: 0.78rem; color: var(--accent-light); }
.payment-item .ptime { font-size: 0.72rem; color: var(--text-muted); }

/* ---- Cart Drawer ---- */
#cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#cart-drawer.open { transform: translateX(0); }
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
#cart-overlay.open { opacity: 1; pointer-events: all; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.drawer-title { font-size: 1.2rem; font-weight: 700; }
.drawer-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.drawer-close:hover { border-color: var(--accent); color: var(--accent-light); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
}

/* ---- Discord CTA ---- */
.discord-cta {
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-raised) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.discord-cta:hover {
  border-color: #5865F2;
  box-shadow: 0 0 40px rgba(88, 101, 242, 0.15);
}

.discord-icon {
  font-size: 4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.4));
}

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}
.faq-item.open,
.faq-item:hover { border-color: var(--accent); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--bg-surface);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition-normal);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.2s ease;
  background: var(--bg-raised);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 16px 20px;
}

/* ---- Search Input ---- */
.search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.search-wrapper:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.search-wrapper input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  width: 100%;
}
.search-wrapper input::placeholder { color: var(--text-muted); }

/* ---- Category Hero ---- */
.cat-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 24px 32px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}
.cat-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ---- Package Detail ---- */
.pkg-gallery {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}
.gallery-main { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.gallery-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px;
  background: var(--bg-surface);
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-subtle);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-spring);
}
.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.gallery-thumb {
  width: 80px;
  height: 55px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast), transform var(--transition-spring);
  flex-shrink: 0;
}
.gallery-thumb:hover { transform: scale(1.05); }
.gallery-thumb.active { border-color: var(--accent); }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  z-index: 2;
}
.gallery-nav:hover { border-color: var(--accent); background: var(--accent-dim); }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }

/* ---- Footer ---- */
.footer-main {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 3px 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.footer-link:hover { color: var(--accent-light); transform: translateX(4px); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Grid Scan Background ---- */
.grid-bg {
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScan 4s linear infinite;
}

/* ---- Divider ---- */
.accent-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .footer-bottom { padding: 16px 24px; }
  .discord-cta { flex-direction: column; padding: 32px 24px; }
  .stat-number { font-size: 2rem; }
}

/* ---- Nav Visibility (bulletproof, no Tailwind dependency) ---- */
/* Mobile nav bar: visible only on small screens */
#mobile-nav-bar { display: flex; }
@media (min-width: 769px) {
  #mobile-nav-bar { display: none !important; }
  #mobile-menu  { display: none !important; }
}

/* Desktop nav: visible only on larger screens */
.desktop-nav { display: none; }
@media (min-width: 769px) {
  .desktop-nav { display: flex; }
}

/* ============================================================
   LEGACY COMPAT (Tebex Bootstrap classes)
   ============================================================ */
.btn-success {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: white;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-spring);
}
.btn-success:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: white;
  transform: translateY(-1px);
}
.input-group {
  display: flex;
  gap: 1rem;
}
.input-group > .btn { font-weight: 700; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Style Tebex compliance bar ---- */
#tebexFooter,
.tebex-footer,
.tebex-footer-wrapper,
.tebex-footer-wrapper-dark,
.tebex-footer-inner,
.tebex-compliance,
.tebex-compliance-dark,
div[class*="tebex-footer"],
div[id*="tebexFooter"],
div[class*="tebex-compliance"] {
  display: flex !important;
  visibility: visible !important;
  height: auto !important;
  background: #0d0f1a !important;
  background-color: #0d0f1a !important;
  color: #6b7699 !important;
  border-top: 1px solid rgba(86, 101, 194, 0.25) !important;
}

#tebexFooter a,
.tebex-footer a,
.tebex-footer-wrapper a,
.tebex-compliance a,
div[class*="tebex-footer"] a,
div[class*="tebex-compliance"] a,
div[id*="tebexFooter"] a {
  color: #a8b2d8 !important;
  transition: color 150ms ease !important;
}

#tebexFooter a:hover,
.tebex-footer a:hover,
.tebex-footer-wrapper a:hover,
.tebex-compliance a:hover,
div[class*="tebex-footer"] a:hover,
div[class*="tebex-compliance"] a:hover,
div[id*="tebexFooter"] a:hover {
  color: #7585e0 !important;
}

#tebexFooter svg,
.tebex-footer svg,
.tebex-footer-wrapper svg,
.tebex-compliance svg,
div[class*="tebex-footer"] svg,
div[class*="tebex-compliance"] svg,
div[id*="tebexFooter"] svg {
  fill: #6b7699 !important;
  color: #6b7699 !important;
}