/**
 * FlashMM - SMMXZ-Style Premium Dashboard & Theme Revamp
 * High-conversion, Multi-Tier, Modern SMM Design System
 */

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

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  
  --bg-dark: #0b0f19;
  --bg-page: #0c101d;
  
  --surface-card: #121829;
  --surface-card-hover: #161e33;
  --surface-input: #171f33;
  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-glass-hover: rgba(255, 255, 255, 0.08);
  
  --border-color: #1d263b;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-focus: #ff6b00;
  
  /* SMMXZ Signature Vibrant Orange Accent */
  --primary: #ff6b00;
  --primary-hover: #e55e00;
  --primary-glow: rgba(255, 107, 0, 0.35);
  --primary-gradient: linear-gradient(135deg, #ff7a18 0%, #ff5500 100%);
  
  --secondary: #6366f1;
  --accent-cyan: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border-color);
}

/* Global Reset & Base */
body, .body {
  font-family: var(--font-main) !important;
  background-color: var(--bg-page) !important;
  background: var(--bg-page) !important;
  color: var(--text-main) !important;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: var(--text-main) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0b0f19;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 0, 0.6);
}

/* ==========================================================================
   SIDEBAR PROFILE & GROUPED ACCORDION NAVIGATION
   ========================================================================== */
body .component-sidebar_wrapper,
.body .component-sidebar_wrapper,
body .component-sidebar,
.body .component-sidebar {
  width: 270px !important;
  flex-basis: 270px !important;
  background: #0f1526 !important;
  border-right: 1px solid var(--border-color) !important;
}

.sidebar-profile-card {
  background: #141b2e;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.sidebar-profile-avatar-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
}

.sidebar-profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ff6b00;
  object-fit: cover;
  background: #1a2238;
}

.sidebar-profile-verified {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 2px solid #141b2e;
}

.sidebar-profile-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.sidebar-profile-balance {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ff6b00;
  margin-bottom: 12px;
}

.sidebar-level-bar-wrap {
  text-align: left;
}

.sidebar-level-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.sidebar-level-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}

.sidebar-level-progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 4px;
}

.sidebar-next-level {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #64748b;
}

/* Sidebar Menu Groups */
.sidebar-group {
  margin-bottom: 8px;
}

.sidebar-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.sidebar-group-title:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.sidebar-group-title i.main-icon {
  width: 24px;
  color: #94a3b8;
  margin-right: 8px;
  font-size: 1.05rem;
}

.sidebar-group-title i.chevron-icon {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.sidebar-group.open .sidebar-group-title i.chevron-icon {
  transform: rotate(180deg);
}

.sidebar-submenu {
  list-style: none;
  padding-left: 32px;
  margin: 4px 0 8px;
}

.sidebar-submenu-item a {
  display: block;
  padding: 6px 12px;
  border-radius: 8px;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.15s ease;
  position: relative;
}

.sidebar-submenu-item a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(3px);
}

.sidebar-submenu-item.active a, .sidebar-submenu-item a.active {
  color: #ff6b00 !important;
  font-weight: 700;
  background: rgba(255, 107, 0, 0.1) !important;
}

/* ==========================================================================
   HERO STATS & PROMO BANNER (5 METRICS)
   ========================================================================== */
.smmxz-hero-card {
  background: #121829;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}

.smmxz-welcome-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.smmxz-welcome-title span.user-highlight {
  color: #ff6b00;
}

.smmxz-welcome-desc {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.smmxz-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.smmxz-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #151d30;
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.smmxz-stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 0, 0.3);
}

.smmxz-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.smmxz-stat-icon.balance { background: rgba(255, 107, 0, 0.15); color: #ff6b00; }
.smmxz-stat-icon.points { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.smmxz-stat-icon.spent { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.smmxz-stat-icon.orders { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.smmxz-stat-icon.level { background: rgba(99, 102, 241, 0.15); color: #818cf8; }

.smmxz-stat-info {
  overflow: hidden;
}

.smmxz-stat-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
}

.smmxz-stat-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

/* SMMXZ Giveaway / Promo Banner */
.smmxz-promo-card {
  background: linear-gradient(135deg, #161b33 0%, #101426 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.smmxz-promo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.smmxz-promo-desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.smmxz-btn-orange {
  display: inline-block;
  background: var(--primary-gradient);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px -2px var(--primary-glow);
  transition: all 0.2s ease;
  width: max-content;
}

.smmxz-btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -2px rgba(255, 107, 0, 0.5);
  filter: brightness(1.08);
}

/* ==========================================================================
   SELECT A SOCIAL NETWORK GRID
   ========================================================================== */
.smmxz-network-filter-card {
  background: #121829;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.smmxz-network-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smmxz-network-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.smmxz-network-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #171f33;
  border: 1px solid var(--border-color);
  color: #94a3b8;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.smmxz-network-pill i, .smmxz-network-pill svg {
  font-size: 1.05rem;
}

.smmxz-network-pill:hover {
  background: #1d2740;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.smmxz-network-pill.active {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 15px -2px var(--primary-glow) !important;
}

/* ==========================================================================
   DUAL COLUMN ORDER FORM & LIVE PREVIEW CARD
   ========================================================================== */
.smmxz-order-card {
  background: #121829 !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  margin-bottom: 24px !important;
}

.smmxz-form-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.smmxz-form-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s ease;
  background: #171f33;
  color: #94a3b8;
  border: 1px solid var(--border-color);
}

.smmxz-form-tab.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px -2px var(--primary-glow);
}

.smmxz-live-preview-card {
  background: #121829;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}

.smmxz-example-link-box {
  background: #171f33;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #06b6d4;
  font-size: 0.92rem;
  margin-bottom: 18px;
  word-break: break-all;
}

.smmxz-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.smmxz-metric-box {
  background: #171f33;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 14px;
}

.smmxz-metric-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 2px;
}

.smmxz-metric-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

/* Form Controls & Buttons Overrides */
body .form-control,
.body .form-control,
body input[type="text"],
.body input[type="text"],
body input[type="password"],
.body input[type="password"],
body input[type="email"],
.body input[type="email"],
body input[type="number"],
.body input[type="number"],
body select.form-control,
.body select.form-control,
body select,
.body select,
body textarea.form-control,
.body textarea.form-control,
.bootstrap-select > .dropdown-toggle,
.bootstrap-select .btn {
  background: #171f33 !important;
  border: 1px solid var(--border-color) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
  font-size: 0.95rem !important;
  height: auto !important;
  min-height: 48px !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
}

select.form-control option,
select option {
  background: #121829 !important;
  color: #ffffff !important;
  padding: 8px 12px !important;
}

body .form-control:focus,
.body .form-control:focus,
body select.form-control:focus,
.body select.form-control:focus {
  border-color: #ff6b00 !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.25) !important;
  outline: none !important;
}

body .btn-primary,
.body .btn-primary,
body .btn-big-primary,
.body .btn-big-primary {
  background: var(--primary-gradient) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  padding: 12px 24px !important;
  box-shadow: 0 4px 15px -2px var(--primary-glow) !important;
}

/* ==========================================================================
   SMMXZ STATUS TABS
   ========================================================================== */
.smmxz-status-tabs,
.component_status_tabs ul.nav-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
  list-style: none !important;
}

.smmxz-status-tab,
.component_status_tabs .nav-pills .nav-link,
.component_status_tabs .nav-item .nav-link {
  display: inline-flex !important;
  align-items: center !important;
  padding: 8px 18px !important;
  background: #171f33 !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-full) !important;
  color: #94a3b8 !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
}

.smmxz-status-tab:hover,
.component_status_tabs .nav-pills .nav-link:hover {
  background: #1e2842 !important;
  color: #fff !important;
}

.smmxz-status-tab.active,
.component_status_tabs .nav-pills .nav-link.active,
.component_status_tabs .nav-item .nav-link.active {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px -2px var(--primary-glow) !important;
}

/* ==========================================================================
   TABLES & RESPONSIVE SCROLL
   ========================================================================== */
body .table-responsive,
.body .table-responsive,
body .table-wr,
.body .table-wr {
  display: block !important;
  width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  border-radius: 16px !important;
  border: 1px solid var(--border-color) !important;
  background: #121829 !important;
  margin-bottom: 24px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

body .table-bg,
.body .table-bg,
body .component_table,
.body .component_table {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body .table,
.body .table {
  width: 100% !important;
  min-width: 950px !important;
  background: transparent !important;
  margin-bottom: 0 !important;
  border-collapse: collapse !important;
}

body .table thead tr th,
.body .table thead tr th,
body .table thead:first-child tr th,
.body .table thead:first-child tr th {
  background: #151d30 !important;
  color: #94a3b8 !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  padding: 16px 18px !important;
  border-bottom: 1px solid var(--border-color) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  white-space: nowrap !important;
}

body .table tbody tr td,
.body .table tbody tr td,
body .table tbody tr:nth-child(even) td,
.body .table tbody tr:nth-child(even) td,
body .table tbody tr:nth-child(odd) td,
.body .table tbody tr:nth-child(odd) td {
  background: #121829 !important;
  color: #f8fafc !important;
  padding: 14px 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  vertical-align: middle !important;
}

body .table tbody tr:hover td,
.body .table tbody tr:hover td {
  background: #171f33 !important;
}

/* Service cell safety across tables */
.table-service, body .table .table-service, .body .table .table-service {
  min-width: 280px !important;
  max-width: 500px !important;
  white-space: normal !important;
  word-break: normal !important;
  line-height: 1.4 !important;
}

/* Modal dark styling */
.modal-content {
  background: #121829 !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 20px !important;
  color: #f8fafc !important;
}
.modal-header {
  border-bottom: 1px solid var(--border-color) !important;
}
.modal-footer {
  border-top: 1px solid var(--border-color) !important;
}

/* Cards & Containers System-Wide */
body .card, .body .card, .component_card .card {
  background: #121829 !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

/* Interactive Search Highlight */
mark.smmxz-highlight, .smmxz-highlight {
  background: rgba(255, 107, 0, 0.35) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 2px 5px !important;
  border-radius: 4px !important;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.4) !important;
  text-decoration: none !important;
}

/* Favorite Star Button */
.btn-fav-star {
  background: transparent !important;
  border: none !important;
  color: #64748b !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 4px 8px !important;
  border-radius: 8px !important;
}
.btn-fav-star:hover {
  color: #f59e0b !important;
  transform: scale(1.15) !important;
}
.btn-fav-star.active {
  color: #f59e0b !important;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6) !important;
}

/* Order Progress Bar */
.order-progress-wrap {
  min-width: 140px;
  max-width: 200px;
}
.order-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}
.order-progress-track {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.order-progress-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.order-progress-fill.completed {
  background: linear-gradient(90deg, #10b981, #059669);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}
.order-progress-fill.processing, .order-progress-fill.inprogress {
  background: linear-gradient(90deg, #ff6b00, #ff8533);
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.5);
}
.order-progress-fill.pending {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}
.order-progress-fill.partial {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}
.order-progress-fill.canceled {
  background: #ef4444;
}

/* Quick Reorder Button */
.btn-quick-reorder {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ff8533;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-quick-reorder:hover {
  background: #ff6b00;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.4);
  transform: translateY(-1px);
/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-nav {
  display: none !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(20px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.6) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.6) !important;
  padding: 6px 12px calc(8px + env(safe-area-inset-bottom, 0px)) 12px !important;
}

@media (max-width: 991px) {
  .mobile-bottom-nav {
    display: block !important;
  }
  body, .body {
    padding-bottom: 75px !important;
  }
  .telegram-float {
    bottom: 85px !important;
  }
}

.mobile-nav-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 480px !important;
  margin: 0 auto !important;
  position: relative !important;
}

.mobile-nav-item {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 6px 4px !important;
  border-radius: 12px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  -webkit-tap-highlight-color: transparent !important;
}

.mobile-nav-item .mobile-nav-icon {
  font-size: 18px !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
  color: #cbd5e1 !important;
  text-decoration: none !important;
}

.mobile-nav-item.active {
  background: rgba(239, 68, 68, 0.16) !important;
  color: #ef4444 !important;
  font-weight: 700 !important;
}

.mobile-nav-item.active .mobile-nav-icon {
  color: #ef4444 !important;
  transform: translateY(-1px) !important;
}

.mobile-nav-center-wrap {
  flex: 0 0 56px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative !important;
}

.mobile-nav-center-btn {
  position: absolute !important;
  top: -24px !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 35% 30%, #ff5252, #dc2626 65%, #991b1b 100%) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  font-weight: bold !important;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.15) !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease !important;
  z-index: 10 !important;
  -webkit-tap-highlight-color: transparent !important;
}

.mobile-nav-center-btn:active {
  transform: scale(0.92) !important;
  box-shadow: 0 3px 10px rgba(220, 38, 38, 0.6) !important;
}

/* ==========================================================================
   FLASHMM LUXURY MOTION & ANIMATION SUITE
   ========================================================================== */

/* 1. Ambient Aurora Energy Orbs */
.flashmm-aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  -webkit-filter: blur(90px);
  will-change: transform, opacity;
  pointer-events: none;
}

.flashmm-aurora-orb.orb-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18), transparent 70%);
  animation: auroraFloat1 18s ease-in-out infinite alternate;
}

.flashmm-aurora-orb.orb-2 {
  width: 500px;
  height: 500px;
  top: 35%;
  left: -150px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
  animation: auroraFloat2 22s ease-in-out infinite alternate;
}

.flashmm-aurora-orb.orb-3 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: 15%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12), transparent 70%);
  animation: auroraFloat3 16s ease-in-out infinite alternate;
}

@keyframes auroraFloat1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-60px, 80px) scale(1.15); opacity: 0.85; }
  100% { transform: translate(40px, 120px) scale(0.95); opacity: 0.6; }
}

@keyframes auroraFloat2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(80px, -60px) scale(1.2); opacity: 0.75; }
  100% { transform: translate(40px, 50px) scale(0.9); opacity: 0.5; }
}

@keyframes auroraFloat3 {
  0% { transform: translate(0, 0) scale(0.9); opacity: 0.4; }
  50% { transform: translate(-70px, -40px) scale(1.1); opacity: 0.7; }
  100% { transform: translate(30px, -80px) scale(1); opacity: 0.4; }
}

/* 2. Luminous Shimmer Sheen on CTA Buttons */
.smmxz-promo-btn,
.smmxz-btn-signup,
#neworder_submit,
.btn-quick-reorder,
.btn-primary,
button[type="submit"],
.mobile-nav-center-btn {
  position: relative !important;
  overflow: hidden !important;
}

.smmxz-promo-btn::after,
.smmxz-btn-signup::after,
#neworder_submit::after,
.btn-quick-reorder::after,
.btn-primary::after,
button[type="submit"]::after,
.mobile-nav-center-btn::after {
  content: "" !important;
  position: absolute !important;
  top: -60% !important;
  left: -90% !important;
  width: 45% !important;
  height: 220% !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  ) !important;
  transform: rotate(30deg) !important;
  animation: flashmmShimmerSheen 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  pointer-events: none !important;
}

@keyframes flashmmShimmerSheen {
  0%, 55% {
    left: -90%;
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  85%, 100% {
    left: 150%;
    opacity: 0;
  }
}

/* 3. Tactile Ripple Wave Physics */
.flashmm-ripple-effect {
  position: absolute !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 107, 0, 0.5) 45%, transparent 70%) !important;
  pointer-events: none !important;
  transform: scale(0) !important;
  animation: flashmmRippleAnim 0.65s cubic-bezier(0.1, 0.8, 0.3, 1) forwards !important;
  z-index: 9999 !important;
}

@keyframes flashmmRippleAnim {
  0% {
    transform: scale(0);
    opacity: 0.85;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

/* 4. Smooth Staggered Scroll-Reveal */
.flashmm-reveal-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.flashmm-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 5. Smooth Pulse & Glow Badges */
.badge-pill-glow,
.label-api,
.order-badge-active {
  animation: badgeSoftPulse 3.5s ease-in-out infinite;
}

@keyframes badgeSoftPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.02); filter: brightness(1.12); }
}




