/* ============================================================
   MetaCloud City — "Neon Metropolis" Design System
   Cyber-luxe dark theme for a metaverse commerce platform
   ============================================================ */

/* --- Google Fonts are loaded in app.blade.php --- */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  /* Core Darks — layered depth */
  --mcc-void:        #06080F;
  --mcc-base:        #0B0F19;
  --mcc-surface:     #111827;
  --mcc-card:        #1A1F36;
  --mcc-card-hover:  #1F2544;
  --mcc-border:      rgba(123, 97, 255, 0.12);
  --mcc-border-subtle: rgba(255, 255, 255, 0.06);

  /* Brand */
  --mcc-purple:       #7B61FF;
  --mcc-purple-hover: #9580FF;
  --mcc-purple-muted: rgba(123, 97, 255, 0.15);
  --mcc-purple-glow:  rgba(123, 97, 255, 0.35);

  /* Accents */
  --mcc-cyan:         #06D6A0;
  --mcc-cyan-muted:   rgba(6, 214, 160, 0.15);
  --mcc-pink:         #FF6B9D;
  --mcc-amber:        #FFBE0B;
  --mcc-blue:         #4CC9F0;

  /* Text — softened white to reduce eye fatigue (dark mode) */
  --mcc-text:         rgba(255, 255, 255, 0.87);
  --mcc-text-strong:  rgba(255, 255, 255, 0.92);
  --mcc-text-muted:   #8892A8;
  --mcc-text-dim:     #4A5568;

  /* Sidebar surface — dark grey, not pure black */
  --mcc-sidebar-bg:   #121212;
  --mcc-sidebar-bg-2: #171717;

  /* Shadows & Effects */
  --mcc-shadow:       0 4px 24px rgba(0, 0, 0, 0.4);
  --mcc-shadow-lg:    0 8px 40px rgba(0, 0, 0, 0.5);
  --mcc-shadow-glow:  0 0 30px rgba(123, 97, 255, 0.2);
  --mcc-glass-bg:     rgba(17, 24, 39, 0.7);
  --mcc-glass-border: rgba(255, 255, 255, 0.08);

  /* Radius */
  --mcc-radius:       12px;
  --mcc-radius-lg:    20px;
  --mcc-radius-xl:    28px;

  /* Transitions */
  --mcc-ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --mcc-duration:     0.25s;
}

/* ============================================================
   2. Base Reset & Typography
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Mona Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background-color: var(--mcc-base);
  color: var(--mcc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Mona Sans', 'Outfit', 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--mcc-text-strong);
  letter-spacing: -0.02em;
}

h1, .h1 { font-size: 2.25rem; }
h2, .h2 { font-size: 1.75rem; }
h3, .h3 { font-size: 1.375rem; }

p { color: var(--mcc-text-muted); }

a {
  color: var(--mcc-purple);
  text-decoration: none;
  transition: color var(--mcc-duration) var(--mcc-ease);
}
a:hover {
  color: var(--mcc-purple-hover);
}

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

/* ============================================================
   3. Utility Classes
   ============================================================ */
.text-brand      { color: var(--mcc-purple) !important; }
.text-cyan       { color: var(--mcc-cyan) !important; }
.text-pink       { color: var(--mcc-pink) !important; }
.text-amber      { color: var(--mcc-amber) !important; }
.text-dim        { color: var(--mcc-text-dim) !important; }
.text-muted      { color: var(--mcc-text-muted) !important; }
.bg-brand        { background-color: var(--mcc-purple) !important; }
.bg-void         { background-color: var(--mcc-void) !important; }
.bg-surface      { background-color: var(--mcc-surface) !important; }

.glow-purple {
  box-shadow: var(--mcc-shadow-glow);
}

.gradient-text {
  background: linear-gradient(135deg, var(--mcc-purple), var(--mcc-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   4. Glass Card
   ============================================================ */
.glass-card {
  background: var(--mcc-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--mcc-glass-border);
  border-radius: var(--mcc-radius);
  box-shadow: var(--mcc-shadow);
  transition: all var(--mcc-duration) var(--mcc-ease);
}

.glass-card:hover {
  border-color: var(--mcc-border);
  box-shadow: var(--mcc-shadow), var(--mcc-shadow-glow);
  transform: translateY(-2px);
}

.glass-card-static {
  background: var(--mcc-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--mcc-glass-border);
  border-radius: var(--mcc-radius);
  box-shadow: var(--mcc-shadow);
}

/* ============================================================
   5. Stat Cards
   ============================================================ */
.stat-card {
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: var(--mcc-radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--mcc-duration) var(--mcc-ease);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mcc-purple), var(--mcc-cyan));
  opacity: 0;
  transition: opacity var(--mcc-duration) var(--mcc-ease);
}

.stat-card:hover {
  border-color: var(--mcc-border);
  transform: translateY(-2px);
  box-shadow: var(--mcc-shadow-glow);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.stat-card .stat-icon.purple {
  background: var(--mcc-purple-muted);
  color: var(--mcc-purple);
}

.stat-card .stat-icon.cyan {
  background: var(--mcc-cyan-muted);
  color: var(--mcc-cyan);
}

.stat-card .stat-icon.pink {
  background: rgba(255, 107, 157, 0.15);
  color: var(--mcc-pink);
}

.stat-card .stat-icon.amber {
  background: rgba(255, 190, 11, 0.15);
  color: var(--mcc-amber);
}

.stat-card .stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--mcc-text-strong);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-card .stat-label {
  font-size: 0.8125rem;
  color: var(--mcc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================================
   6. Buttons
   ============================================================ */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.625rem 1.5rem;
  transition: all var(--mcc-duration) var(--mcc-ease);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mcc-purple), #9B6BFF);
  color: white;
  box-shadow: 0 4px 15px rgba(123, 97, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--mcc-purple-hover), #B08AFF);
  box-shadow: 0 6px 25px rgba(123, 97, 255, 0.45);
  transform: translateY(-1px);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(123, 97, 255, 0.3);
}

.btn-outline-primary {
  border: 1.5px solid var(--mcc-purple);
  color: var(--mcc-purple);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--mcc-purple-muted);
  border-color: var(--mcc-purple-hover);
  color: var(--mcc-purple-hover);
  transform: translateY(-1px);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-secondary {
  border: 1.5px solid var(--mcc-border-subtle);
  color: var(--mcc-text-muted);
  background: transparent;
}

.btn-outline-secondary:hover {
  border-color: var(--mcc-text-muted);
  color: var(--mcc-text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--mcc-text-muted);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  color: var(--mcc-text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--mcc-cyan), #00F0B5);
  color: #0B0F19;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
}

.btn-cyan:hover {
  box-shadow: 0 6px 25px rgba(6, 214, 160, 0.45);
  transform: translateY(-1px);
  color: #0B0F19;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
  border-radius: 12px;
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  border-radius: 8px;
}

/* ============================================================
   7. Form Controls
   ============================================================ */
.form-control,
.form-select {
  background-color: var(--mcc-surface);
  border: 1.5px solid var(--mcc-border-subtle);
  border-radius: 10px;
  color: var(--mcc-text);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  transition: all var(--mcc-duration) var(--mcc-ease);
}

.form-control:focus,
.form-select:focus {
  background-color: var(--mcc-surface);
  border-color: var(--mcc-purple);
  box-shadow: 0 0 0 3px var(--mcc-purple-muted);
  color: var(--mcc-text);
}

.form-control::placeholder {
  color: var(--mcc-text-dim);
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mcc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.form-text {
  color: var(--mcc-text-dim);
  font-size: 0.8125rem;
}

.input-group-text {
  background-color: var(--mcc-card);
  border: 1.5px solid var(--mcc-border-subtle);
  color: var(--mcc-text-muted);
  font-size: 0.875rem;
}

/* Radio toggle (account type selector) */
.btn-check:checked + .btn-outline-primary {
  background: var(--mcc-purple);
  border-color: var(--mcc-purple);
  color: white;
  box-shadow: 0 0 15px rgba(123, 97, 255, 0.3);
}

.btn-check + .btn-outline-primary {
  border: 1.5px solid var(--mcc-border-subtle);
  color: var(--mcc-text-muted);
  background: var(--mcc-surface);
}

.btn-check + .btn-outline-primary:hover {
  background: var(--mcc-card);
  color: var(--mcc-text);
}

/* ============================================================
   8. Cards & Panels (Bootstrap overrides)
   ============================================================ */
.card {
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: var(--mcc-radius);
  color: var(--mcc-text);
}

.card-header {
  background: transparent !important;
  border-bottom: 1px solid var(--mcc-border-subtle);
  padding: 1.25rem 1.5rem;
}

.card-header h5,
.card-header h6 {
  color: var(--mcc-text-strong);
  margin-bottom: 0;
}

.card-body {
  padding: 1.5rem;
}

/* ============================================================
   9. Alerts
   ============================================================ */
.alert {
  border: none;
  border-radius: var(--mcc-radius);
  font-size: 0.9375rem;
}

.alert-success {
  background: rgba(6, 214, 160, 0.12);
  color: var(--mcc-cyan);
  border-left: 3px solid var(--mcc-cyan);
}

.alert-danger {
  background: rgba(255, 107, 157, 0.12);
  color: var(--mcc-pink);
  border-left: 3px solid var(--mcc-pink);
}

.alert-info {
  background: var(--mcc-purple-muted);
  color: var(--mcc-purple-hover);
  border-left: 3px solid var(--mcc-purple);
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* ============================================================
   10. Badges
   ============================================================ */
.badge {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.35em 0.7em;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.badge.bg-light {
  background: var(--mcc-purple-muted) !important;
  color: var(--mcc-purple-hover) !important;
  border: 1px solid rgba(123, 97, 255, 0.2);
}

.badge-plan {
  background: linear-gradient(135deg, var(--mcc-purple-muted), rgba(6, 214, 160, 0.1));
  color: var(--mcc-cyan);
  border: 1px solid rgba(6, 214, 160, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   11. Sidebar (Dashboard)
   ============================================================ */
#sidebar {
  background: linear-gradient(180deg, var(--mcc-sidebar-bg) 0%, var(--mcc-sidebar-bg-2) 100%);
  border-right: 1px solid var(--mcc-border-subtle);
  position: relative;
}

#sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(123, 97, 255, 0.3) 30%,
    rgba(6, 214, 160, 0.2) 70%,
    transparent 100%
  );
}

.sidebar-brand {
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid var(--mcc-border-subtle);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6040FF 0%, #00CDB8 100%);
  flex-shrink: 0;
}

.brand-icon img {
  width: 21px;
  height: 21px;
}

.sidebar-brand .brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sidebar-brand .brand-text small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--mcc-text-dim);
  letter-spacing: 0;
}

.sidebar-section-label {
  padding: 0.5rem 1.25rem 0.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mcc-text-dim);
  opacity: 0.6;
}

.sidebar-nav {
  padding: 0.25rem 0.75rem 0.5rem;
  list-style: none;
  margin: 0;
}

.sidebar-nav .nav-item {
  margin-bottom: 2px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: var(--mcc-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--mcc-duration) var(--mcc-ease);
  position: relative;
}

.sidebar-nav .nav-link:hover {
  color: var(--mcc-text);
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-nav .nav-link.active {
  color: white;
  background: var(--mcc-purple-muted);
}

.sidebar-nav .nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--mcc-purple);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(123, 97, 255, 0.5);
}

.sidebar-nav .nav-link .nav-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  flex-shrink: 0;
}

.sidebar-nav .nav-link.active .nav-icon {
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(123, 97, 255, 0.5));
}

.sidebar-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--mcc-border-subtle);
  margin-top: auto;
}

.sidebar-footer .tenant-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mcc-text);
  margin-bottom: 0.125rem;
}

.sidebar-footer .logout-link {
  font-size: 0.75rem;
  color: var(--mcc-text-dim);
  transition: color var(--mcc-duration) var(--mcc-ease);
}

.sidebar-footer .logout-link:hover {
  color: var(--mcc-pink);
}

/* ── Sidebar: client section (top) ── */
.sidebar-client {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--mcc-border-subtle);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: background var(--mcc-duration) var(--mcc-ease);
}
.sidebar-client:hover {
  background: rgba(255,255,255,0.03);
}
.sidebar-client-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--mcc-border-subtle);
}
.sidebar-client-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mcc-purple) 0%, var(--mcc-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.sidebar-client-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sidebar-client-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--mcc-text-strong);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.sidebar-client-sub {
  font-size: 0.6875rem;
  color: var(--mcc-text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

/* ── Sidebar: platform badge (bottom) ── */
.sidebar-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-platform-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, #6040FF 0%, #00CDB8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-platform-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mcc-text-dim);
  letter-spacing: 0.01em;
}
.sidebar-platform:hover .sidebar-platform-name {
  color: var(--mcc-text-muted);
}

/* ── Light mode overrides for new sidebar elements ── */
html[data-theme="light"] .sidebar-client-name { color: #1a1f36; }
html[data-theme="light"] .sidebar-client-sub  { color: #8892a8; }
html[data-theme="light"] .sidebar-platform-name { color: #8892a8; }
html[data-theme="light"] .sidebar-client:hover { background: rgba(0,0,0,0.03); }

/* ── Shop Switcher ── */
.sidebar-shop-switcher {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-shop-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mcc-text-muted);
  margin-bottom: 0.35rem;
}
.sidebar-shop-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #e2e8f0;
  transition: background 0.15s, border-color 0.15s;
}
.sidebar-shop-btn:hover,
.sidebar-shop-btn:focus {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  box-shadow: none;
}
.sidebar-shop-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar-shop-menu {
  background: #1e2030;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 0.35rem;
}
.sidebar-shop-option {
  font-size: 0.8rem;
  color: #cbd5e1;
  border-radius: 5px;
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
}
.sidebar-shop-option:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.sidebar-shop-option.active {
  color: #818cf8;
  font-weight: 600;
  background: rgba(129,140,248,0.08);
}
.sidebar-shop-manage {
  font-size: 0.75rem;
  color: var(--mcc-text-muted);
  border-radius: 5px;
  padding: 0.4rem 0.75rem;
}
.sidebar-shop-manage:hover {
  background: rgba(255,255,255,0.07);
  color: #e2e8f0;
}
.sidebar-shop-empty {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #818cf8;
  text-decoration: none;
}
.sidebar-shop-empty:hover { color: #a5b4fc; }
/* Light mode */
html[data-theme="light"] .sidebar-shop-btn {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: #1a1f36;
}
html[data-theme="light"] .sidebar-shop-btn:hover {
  background: rgba(0,0,0,0.07);
  color: #0f1120;
}
html[data-theme="light"] .sidebar-shop-menu {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
}
html[data-theme="light"] .sidebar-shop-option { color: #374151; }
html[data-theme="light"] .sidebar-shop-option:hover { background: rgba(0,0,0,0.04); color: #111; }
html[data-theme="light"] .sidebar-shop-option.active { color: #4f46e5; background: rgba(79,70,229,0.06); }
html[data-theme="light"] .sidebar-shop-manage { color: #6b7280; }
html[data-theme="light"] .sidebar-shop-manage:hover { background: rgba(0,0,0,0.04); color: #374151; }

/* ============================================================
   12. Top Header (Dashboard)
   ============================================================ */
.dash-header {
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mcc-border-subtle);
  padding: 1rem 1.75rem;
}

.dash-header .page-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.dash-header .page-context {
  color: var(--mcc-text-dim);
}

/* ============================================================
   13. Auth Pages (Login, Register, etc.)
   ============================================================ */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
  background: var(--mcc-void);
}
.auth-home-btn {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mcc-text-muted);
  background: var(--mcc-surface);
  border: 1px solid var(--mcc-border-subtle);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  z-index: 10;
}
.auth-home-btn:hover {
  color: var(--mcc-text);
  background: var(--mcc-surface-2);
  border-color: var(--mcc-border);
}

/* Subtle centred radial glow */
.auth-wrapper::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(123, 97, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes auth-fade-in {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--mcc-surface);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
  animation: auth-fade-in 0.5s var(--mcc-ease) both;
}

/* Logo mark */
.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6040FF 0%, #00CDB8 100%);
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(96, 64, 255, 0.35);
}

.auth-logo img {
  width: 34px;
  height: 34px;
}

/* Headings */
.auth-heading {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--mcc-text-strong);
  text-align: center;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.auth-sub {
  font-size: 0.9375rem;
  color: var(--mcc-text-dim);
  text-align: center;
  margin: 0 0 1.75rem;
}

/* Inputs */
.auth-input {
  height: 48px;
  font-size: 0.9375rem;
}

/* Primary auth button */
.auth-btn {
  height: 48px;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Field-level error */
.auth-field-error {
  font-size: 0.8125rem;
  color: var(--mcc-pink);
  margin-top: 0.375rem;
}

/* Server-side alert */
.auth-alert {
  background: rgba(255, 56, 100, 0.12);
  border: 1px solid rgba(255, 56, 100, 0.25);
  border-radius: 8px;
  color: #ff6b9d;
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  margin-bottom: 1rem;
}

.auth-alert.auth-alert-success {
  background: rgba(6, 214, 160, 0.1);
  border-color: rgba(6, 214, 160, 0.25);
  color: var(--mcc-cyan);
}

/* Email recap chip (step 2) */
.auth-email-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--mcc-text-muted);
}

.auth-email-chip-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-email-chip-back {
  background: none;
  border: none;
  padding: 0;
  color: var(--mcc-text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.auth-email-chip-back:hover { color: var(--mcc-text); }

/* Password step slide-in */
.auth-step { opacity: 0; transform: translateY(10px); transition: opacity 0.25s ease, transform 0.25s ease; }
.auth-step.auth-step-visible { opacity: 1; transform: translateY(0); }

/* OR Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--mcc-text-dim);
  font-size: 0.8125rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--mcc-border-subtle);
}

/* Social buttons */
.btn-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: 46px;
  padding: 0 1rem;
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: 8px;
  color: var(--mcc-text);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  transition: background 0.15s, border-color 0.15s;
}

.btn-social:hover {
  background: var(--mcc-surface-hover, rgba(255,255,255,0.06));
  border-color: var(--mcc-border);
  color: var(--mcc-text);
}

.btn-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  flex-shrink: 0;
}

/* Footer & links */
.auth-footer-text {
  font-size: 0.8125rem;
  color: var(--mcc-text-dim);
  text-align: center;
  margin: 0;
}

.auth-link {
  color: var(--mcc-purple);
  text-decoration: none;
}
.auth-link:hover { text-decoration: underline; color: var(--mcc-purple); }

.auth-link-dim {
  font-size: 0.8125rem;
  color: var(--mcc-text-dim);
  text-decoration: none;
}
.auth-link-dim:hover { color: var(--mcc-text); text-decoration: underline; }

/* Coming-soon toast */
.auth-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: 10px;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  color: var(--mcc-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  white-space: nowrap;
}

.auth-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Light mode overrides for auth */
html[data-theme="light"] .auth-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}
html[data-theme="light"] .btn-social {
  background: #f5f5f7;
  border-color: rgba(0,0,0,0.1);
  color: #1a1a2e;
}
html[data-theme="light"] .btn-social:hover {
  background: #ebebf0;
  border-color: rgba(0,0,0,0.18);
}
html[data-theme="light"] .auth-email-chip {
  background: #f5f5f7;
  border-color: rgba(0,0,0,0.1);
}
html[data-theme="light"] .auth-toast {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: #555;
}

/* ============================================================
   14. Landing Page
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: var(--mcc-void);
}

/* Grid pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 97, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 97, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(123, 97, 255, 0.12);
  top: -100px;
  left: 10%;
  animation: float-1 18s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(6, 214, 160, 0.08);
  bottom: -80px;
  right: 10%;
  animation: float-2 22s ease-in-out infinite alternate;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 157, 0.06);
  top: 40%;
  right: 25%;
  animation: float-3 15s ease-in-out infinite alternate;
}

@keyframes float-1 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(40px, 30px); }
}
@keyframes float-2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-30px, -40px); }
}
@keyframes float-3 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(20px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.hero-content .hero-lead {
  font-size: 1.25rem;
  color: var(--mcc-text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Feature cards on landing */
.feature-card {
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: var(--mcc-radius-lg);
  padding: 2.25rem;
  text-align: center;
  transition: all 0.35s var(--mcc-ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mcc-purple), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--mcc-ease);
}

.feature-card:hover {
  border-color: var(--mcc-border);
  transform: translateY(-4px);
  box-shadow: var(--mcc-shadow), var(--mcc-shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.feature-icon.purple {
  background: var(--mcc-purple-muted);
  color: var(--mcc-purple);
  box-shadow: 0 0 20px rgba(123, 97, 255, 0.15);
}

.feature-icon.cyan {
  background: var(--mcc-cyan-muted);
  color: var(--mcc-cyan);
  box-shadow: 0 0 20px rgba(6, 214, 160, 0.15);
}

.feature-icon.pink {
  background: rgba(255, 107, 157, 0.15);
  color: var(--mcc-pink);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.15);
}

.feature-card h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ============================================================
   15. Account Layout (Shopper)
   ============================================================ */
.account-nav {
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mcc-border-subtle);
}

.account-nav .navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: white !important;
  letter-spacing: -0.03em;
}

.account-nav .navbar-brand span {
  color: var(--mcc-purple);
}

.account-nav .nav-link {
  color: var(--mcc-text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all var(--mcc-duration) var(--mcc-ease);
}

.account-nav .nav-link:hover {
  color: var(--mcc-text);
  background: rgba(255, 255, 255, 0.04);
}

.account-nav .nav-link.active {
  color: white;
  background: var(--mcc-purple-muted);
}

/* ============================================================
   16. Public Navbar
   ============================================================ */
.public-nav {
  background: rgba(6, 8, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mcc-border-subtle);
  padding: 0.75rem 0;
}

.public-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white !important;
  text-decoration: none;
}

.public-nav .navbar-brand .nav-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, #6040FF 0%, #00CDB8 100%);
  flex-shrink: 0;
}

.public-nav .navbar-brand .nav-brand-icon img {
  width: 18px;
  height: 18px;
}

.public-nav .navbar-brand .nav-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: white;
}

/* ============================================================
   17. Footer
   ============================================================ */
.site-footer {
  background: var(--mcc-void);
  border-top: 1px solid var(--mcc-border-subtle);
  padding: 2.5rem 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 97, 255, 0.3), rgba(6, 214, 160, 0.2), transparent);
}

.site-footer p {
  color: var(--mcc-text-dim);
  font-size: 0.8125rem;
  margin: 0;
}

/* ============================================================
   18. Tenant Shop Page
   ============================================================ */
.shop-card {
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: var(--mcc-radius);
  overflow: hidden;
  transition: all 0.3s var(--mcc-ease);
}

.shop-card:hover {
  border-color: var(--mcc-border);
  transform: translateY(-3px);
  box-shadow: var(--mcc-shadow-glow);
}

.shop-card .shop-banner {
  height: 120px;
  background: linear-gradient(135deg, var(--mcc-purple-muted), rgba(6, 214, 160, 0.1));
  position: relative;
}

.shop-card .shop-body {
  padding: 1.5rem;
}

.shop-card .shop-zone {
  font-size: 0.75rem;
  color: var(--mcc-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ============================================================
   19. Quick Action Buttons (Dashboard)
   ============================================================ */
.quick-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  background: var(--mcc-surface);
  border: 1px solid var(--mcc-border-subtle);
  color: var(--mcc-text);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--mcc-duration) var(--mcc-ease);
  text-decoration: none;
}

.quick-action:hover {
  border-color: var(--mcc-border);
  background: var(--mcc-card);
  color: white;
  transform: translateX(4px);
}

.quick-action .qa-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.quick-action .qa-arrow {
  margin-left: auto;
  color: var(--mcc-text-dim);
  transition: all var(--mcc-duration) var(--mcc-ease);
}

.quick-action:hover .qa-arrow {
  color: var(--mcc-purple);
  transform: translateX(3px);
}

/* ============================================================
   20. Tables (future-proofing)
   ============================================================ */
.table {
  color: var(--mcc-text);
}

.table > :not(caption) > * > * {
  background-color: transparent;
  color: inherit;
}

.table thead th {
  background: var(--mcc-surface);
  color: var(--mcc-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-bottom: 1px solid var(--mcc-border-subtle);
  padding: 0.875rem 1rem;
}

.table tbody td {
  border-bottom: 1px solid var(--mcc-border-subtle);
  padding: 0.875rem 1rem;
  vertical-align: middle;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ============================================================
   21. Scrollbar
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--mcc-void);
}

::-webkit-scrollbar-thumb {
  background: var(--mcc-text-dim);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mcc-text-muted);
}

/* ============================================================
   22. Animations
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--mcc-ease), transform 0.6s var(--mcc-ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Pulse dot for online status */
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.5); }
  100% { box-shadow: 0 0 0 8px rgba(6, 214, 160, 0); }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mcc-cyan);
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

/* ============================================================
   23. Responsive — Mobile Sidebar
   ============================================================ */
@media (max-width: 991.98px) {
  #sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    z-index: 1050;
    transition: left 0.3s var(--mcc-ease);
    width: 280px !important;
  }

  #sidebar.show {
    left: 0;
  }

  #sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--mcc-ease);
  }

  #sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  .auth-card {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }
}

/* ============================================================
   24. Empty State
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
}

.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state p {
  color: var(--mcc-text-dim);
  font-size: 0.9375rem;
  max-width: 360px;
  margin: 0 auto;
}

/* ============================================================
   25. Sidebar Toggle Button
   ============================================================ */
.sidebar-toggle {
  background: var(--mcc-surface);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: 8px;
  color: var(--mcc-text-muted);
  padding: 0.5rem;
  line-height: 1;
  transition: all var(--mcc-duration) var(--mcc-ease);
}

.sidebar-toggle:hover {
  background: var(--mcc-card);
  color: var(--mcc-text);
  border-color: var(--mcc-border);
}

/* ============================================================
   26. Profile Info Rows
   ============================================================ */
.profile-row {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mcc-border-subtle);
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-row .profile-label {
  width: 140px;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mcc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-row .profile-value {
  color: var(--mcc-text);
}

/* ============================================================
   27. Navbar toggler override
   ============================================================ */
.navbar-toggler {
  border: 1px solid var(--mcc-border-subtle);
  padding: 0.375rem 0.625rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ============================================================
   28. Shop Management (Dashboard)
   ============================================================ */
.shop-card .shop-banner {
  height: 140px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-card .shop-banner-default {
  background: linear-gradient(135deg, var(--mcc-purple-muted), rgba(6, 214, 160, 0.1));
}

.shop-banner-lg {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.shop-card-available {
  border-style: dashed;
}

.shop-card-available:hover {
  border-color: var(--mcc-cyan);
  box-shadow: 0 0 20px rgba(6, 214, 160, 0.15);
}

.shop-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--mcc-text-dim);
}

.shop-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.shop-plan-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mcc-purple);
  background: var(--mcc-purple-muted);
  padding: 0.25em 0.75em;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shop-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid var(--mcc-border-subtle);
}

.shop-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--mcc-purple-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Shop status badges */
.shop-status-rented {
  background: var(--mcc-cyan-muted);
  color: var(--mcc-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.shop-status-available {
  background: var(--mcc-purple-muted);
  color: var(--mcc-purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.shop-status-suspended {
  background: rgba(255, 190, 11, 0.15);
  color: var(--mcc-amber);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.shop-status-archived {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mcc-text-dim);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

/* ============================================================
   29. Product Management (Dashboard)
   ============================================================ */
.product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--mcc-border-subtle);
}

.product-thumb-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--mcc-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product status badges */
.product-status-active {
  background: var(--mcc-cyan-muted);
  color: var(--mcc-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.product-status-draft {
  background: rgba(255, 190, 11, 0.15);
  color: var(--mcc-amber);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.product-status-archived {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mcc-text-dim);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.product-type-badge {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mcc-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
  text-transform: capitalize;
}

.product-price-display {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--mcc-text-strong);
}

/* Product gallery */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.product-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--mcc-border-subtle);
  aspect-ratio: 1;
  transition: all var(--mcc-duration) var(--mcc-ease);
}

.product-gallery-item:hover {
  border-color: var(--mcc-border);
  transform: scale(1.03);
}

.product-gallery-item.primary {
  border-color: var(--mcc-purple);
  box-shadow: 0 0 12px rgba(123, 97, 255, 0.2);
}

.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-primary-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: var(--mcc-purple);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Form switch override for dark theme */
.form-check-input:checked {
  background-color: var(--mcc-purple);
  border-color: var(--mcc-purple);
}

.form-check-input {
  background-color: var(--mcc-surface);
  border-color: var(--mcc-border-subtle);
}

.form-check-label {
  color: var(--mcc-text);
}

/* ============================================================
   Order Status Badges
   ============================================================ */
.order-status-pending {
  background: rgba(255, 190, 11, 0.15);
  color: var(--mcc-amber);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.order-status-confirmed,
.order-status-processing {
  background: rgba(76, 201, 240, 0.15);
  color: var(--mcc-blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.order-status-shipped {
  background: var(--mcc-purple-muted);
  color: var(--mcc-purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.order-status-delivered {
  background: var(--mcc-cyan-muted);
  color: var(--mcc-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.order-status-cancelled,
.order-status-refunded {
  background: rgba(255, 107, 157, 0.15);
  color: var(--mcc-pink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

/* ============================================================
   Transaction Status Badges
   ============================================================ */
.txn-status-succeeded {
  background: var(--mcc-cyan-muted);
  color: var(--mcc-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.txn-status-pending {
  background: rgba(255, 190, 11, 0.15);
  color: var(--mcc-amber);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.txn-status-failed {
  background: rgba(255, 107, 157, 0.15);
  color: var(--mcc-pink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

/* ============================================================
   Staff / Coupon Status Badges
   ============================================================ */
.badge-active {
  background: var(--mcc-cyan-muted);
  color: var(--mcc-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

.badge-suspended {
  background: rgba(255, 107, 157, 0.15);
  color: var(--mcc-pink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}

/* ============================================================
   Public Storefront — Product Cards
   ============================================================ */
.product-card {
  background: var(--mcc-card);
  border-radius: var(--mcc-radius);
  border: 1px solid var(--mcc-border-subtle);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mcc-shadow-glow);
  border-color: var(--mcc-border);
}

.product-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mcc-surface);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mcc-surface);
}

.product-card-body {
  padding: 0.875rem;
}

.product-card-name {
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-name-zh {
  color: var(--mcc-text-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-price {
  color: var(--mcc-cyan);
  font-weight: 700;
  font-size: 0.9375rem;
}

.product-card-compare {
  color: var(--mcc-text-dim);
  font-weight: 400;
  font-size: 0.8125rem;
  text-decoration: line-through;
  margin-left: 0.4rem;
}

/* ============================================================
   Product Detail — Gallery
   ============================================================ */
.product-gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: var(--mcc-radius);
  overflow: hidden;
  background: var(--mcc-surface);
  border: 1px solid var(--mcc-border-subtle);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
  opacity: 1;
  border-color: var(--mcc-purple);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Breadcrumb Override
   ============================================================ */
.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--mcc-text-dim);
}

/* ============================================================
   Shop Card (Public) — enhanced
   ============================================================ */
.shop-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mcc-shadow-glow);
}

/* ============================================================
   Theme Switcher — Light / Dark / System
   ============================================================
   Defaults above are DARK. Override tokens for light mode via
   [data-theme="light"] on <html>. "System" mode is handled in JS
   which sets data-theme to "dark" or "light" based on the user's
   OS preference.
   ============================================================ */
html[data-theme="light"] {
  --mcc-void:        #F6F7FB;
  --mcc-base:        #FFFFFF;
  --mcc-surface:     #F3F4F8;
  --mcc-card:        #FFFFFF;
  --mcc-card-hover:  #F7F7FB;
  --mcc-border:      rgba(123, 97, 255, 0.18);
  --mcc-border-subtle: rgba(15, 23, 42, 0.08);

  --mcc-text:        rgba(15, 23, 42, 0.92);
  --mcc-text-strong: #0F172A;
  --mcc-text-muted:  #475569;
  --mcc-text-dim:    #94A3B8;

  --mcc-shadow:      0 4px 24px rgba(15, 23, 42, 0.08);
  --mcc-shadow-lg:   0 8px 40px rgba(15, 23, 42, 0.10);
  --mcc-shadow-glow: 0 0 30px rgba(123, 97, 255, 0.18);
  --mcc-glass-bg:    rgba(255, 255, 255, 0.75);
  --mcc-glass-border: rgba(15, 23, 42, 0.08);

  /* Menu bar / sidebar stays elevated (light variant) */
  --mcc-sidebar-bg:   #FFFFFF;
  --mcc-sidebar-bg-2: #F3F4F8;
}

/* Selection + cosmetic tweaks in light mode */
html[data-theme="light"] ::selection {
  background: var(--mcc-purple);
  color: #fff;
}

html[data-theme="light"] body {
  background-color: var(--mcc-base);
  color: var(--mcc-text);
}

/* ---- Sidebar ---- */
html[data-theme="light"] #sidebar {
  border-right: 1px solid var(--mcc-border-subtle);
}
html[data-theme="light"] #sidebar::after {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(123, 97, 255, 0.12) 30%,
    rgba(6, 214, 160, 0.08) 70%,
    transparent 100%
  );
}

/* Brand text (logo name) */
html[data-theme="light"] .sidebar-brand .brand-text {
  color: var(--mcc-text-strong);
}
html[data-theme="light"] .sidebar-brand .brand-text small {
  color: var(--mcc-text-dim);
}

/* Nav link states */
html[data-theme="light"] .sidebar-nav .nav-link {
  color: var(--mcc-text-muted);
}
html[data-theme="light"] .sidebar-nav .nav-link:hover {
  color: var(--mcc-text-strong);
  background: rgba(15, 23, 42, 0.05);
}
html[data-theme="light"] .sidebar-nav .nav-link.active {
  color: var(--mcc-purple);
  background: rgba(123, 97, 255, 0.1);
}
html[data-theme="light"] .sidebar-nav .nav-link.active::before {
  box-shadow: 0 0 8px rgba(123, 97, 255, 0.25);
}
html[data-theme="light"] .sidebar-nav .nav-link.active .nav-icon {
  filter: drop-shadow(0 0 3px rgba(123, 97, 255, 0.35));
}
html[data-theme="light"] .sidebar-nav .nav-link .nav-icon {
  opacity: 0.55;
}

/* ---- Dashboard top header ---- */
html[data-theme="light"] .dash-header {
  background: rgba(255, 255, 255, 0.88);
}
html[data-theme="light"] .dash-header .page-title {
  color: var(--mcc-text-strong);
}
html[data-theme="light"] .dash-header .page-context {
  color: var(--mcc-text-dim);
}

/* ---- Sidebar footer ---- */
html[data-theme="light"] .sidebar-footer {
  border-top-color: var(--mcc-border-subtle);
}

/* Bootstrap components — light mode surface fixups */
html[data-theme="light"] .card,
html[data-theme="light"] .modal-content,
html[data-theme="light"] .dropdown-menu {
  background-color: var(--mcc-card);
  color: var(--mcc-text);
  border-color: var(--mcc-border-subtle);
}

html[data-theme="light"] .form-control,
html[data-theme="light"] .form-select {
  background-color: #FFFFFF;
  color: var(--mcc-text);
  border-color: var(--mcc-border-subtle);
}
html[data-theme="light"] .form-control::placeholder {
  color: var(--mcc-text-dim);
}

html[data-theme="light"] .table {
  color: var(--mcc-text);
}
html[data-theme="light"] .table > :not(caption) > * > * {
  background-color: transparent;
  color: var(--mcc-text);
}

html[data-theme="light"] .text-muted {
  color: var(--mcc-text-muted) !important;
}

/* ============================================================
   Theme Switcher widget
   ============================================================ */
.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--mcc-surface);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: 999px;
}

.theme-switcher button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--mcc-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--mcc-duration) var(--mcc-ease),
              color var(--mcc-duration) var(--mcc-ease);
}

.theme-switcher button:hover {
  color: var(--mcc-text);
}

.theme-switcher button[aria-pressed="true"] {
  background: var(--mcc-purple-muted);
  color: var(--mcc-purple);
}

.theme-switcher button svg,
.theme-switcher button i {
  width: 16px;
  height: 16px;
}

/* ============================================================
   Low Stock Alert (Dashboard)
   ============================================================ */
.low-stock-alert {
  background: linear-gradient(135deg,
    rgba(255, 190, 11, 0.10) 0%,
    rgba(255, 107, 157, 0.06) 100%);
  border: 1px solid rgba(255, 190, 11, 0.28);
  border-radius: var(--mcc-radius);
  padding: 1rem 1.25rem;
  color: var(--mcc-text);
}

html[data-theme="light"] .low-stock-alert {
  background: linear-gradient(135deg,
    rgba(255, 190, 11, 0.14) 0%,
    rgba(255, 107, 157, 0.08) 100%);
  border-color: rgba(255, 170, 0, 0.35);
}

.low-stock-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 190, 11, 0.18);
  color: var(--mcc-amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.low-stock-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.low-stock-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--mcc-text);
  transition: border-color var(--mcc-duration) var(--mcc-ease),
              transform var(--mcc-duration) var(--mcc-ease);
}

.low-stock-chip:hover {
  border-color: rgba(255, 190, 11, 0.5);
  transform: translateY(-1px);
  color: var(--mcc-text);
}

.low-stock-chip .ls-name { font-weight: 600; }
.low-stock-chip .ls-qty {
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 190, 11, 0.18);
  color: var(--mcc-amber);
  font-size: 0.75rem;
  font-weight: 600;
}
.low-stock-chip .ls-qty.out {
  background: rgba(255, 107, 157, 0.18);
  color: var(--mcc-pink);
}

/* ============================================================
   LANDING PAGE v2 — appended 2026-04-25
   ============================================================ */

/* Fix Bootstrap primary to match brand */
:root {
  --bs-primary: #7B61FF;
  --bs-primary-rgb: 123, 97, 255;
}

/* Public nav — transparent at top, opaque on scroll */
#publicNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  border-bottom-color: transparent;
}
#publicNav.nav-scrolled {
  background: rgba(6, 8, 15, 0.95) !important;
  border-bottom-color: var(--mcc-border-subtle) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
html[data-theme="light"] #publicNav.nav-scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}

/* Compensate for fixed nav height */
.hero-section {
  padding-top: 8rem; /* was 6rem — add nav height */
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mcc-purple-muted);
  border: 1px solid rgba(123,97,255,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.875rem;
  color: var(--mcc-purple-hover);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mcc-cyan);
  box-shadow: 0 0 8px var(--mcc-cyan);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero secondary CTA */
.btn-hero-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  border-radius: 10px;
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.45);
  color: white;
  background: rgba(255,255,255,0.06);
}
html[data-theme="light"] .btn-hero-secondary {
  border-color: rgba(15,23,42,0.25);
  color: rgba(15,23,42,0.75);
}
html[data-theme="light"] .btn-hero-secondary:hover {
  border-color: var(--mcc-purple);
  color: var(--mcc-purple);
  background: var(--mcc-purple-muted);
}

/* Hero stats bar */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 0.85rem 2rem;
  background: var(--mcc-glass-bg);
  border: 1px solid var(--mcc-glass-border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}
.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--mcc-text-strong);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--mcc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--mcc-border-subtle);
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    border-radius: 16px;
    gap: 1rem;
  }
  .hero-stat-divider { width: 40px; height: 1px; }
}

/* How it works section */
.how-section {
  background: var(--mcc-base);
  padding: 5rem 0;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mcc-purple);
  margin-bottom: 0.5rem;
}
.section-lead {
  color: var(--mcc-text-muted);
  max-width: 480px;
  margin: 0.5rem auto 0;
}

/* Step number on cards */
.feature-card {
  position: relative; /* already set — just ensure */
}
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(123,97,255,0.08);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}
html[data-theme="light"] .step-number {
  color: rgba(123,97,255,0.1);
}

/* Social proof section */
.proof-section {
  background: var(--mcc-void);
  padding: 5rem 0;
}
.testimonial-card {
  background: var(--mcc-card);
  border: 1px solid var(--mcc-border-subtle);
  border-radius: var(--mcc-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--mcc-purple);
  opacity: 0.2;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  border-color: var(--mcc-border);
  transform: translateY(-3px);
}
.testimonial-quote {
  color: var(--mcc-text);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--mcc-text-strong);
  line-height: 1.2;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--mcc-text-muted);
}

/* CTA section */
.cta-section {
  background: var(--mcc-void);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,97,255,0.07) 0%, rgba(6,214,160,0.04) 100%);
}

/* Footer rebuild */
.site-footer {
  /* existing rules preserved — just add: */
  padding: 4rem 0 2.5rem;
}
.footer-cols {
  margin-bottom: 2.5rem;
}
.footer-brand-tagline {
  color: var(--mcc-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0.75rem 0 1rem;
  max-width: 260px;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mcc-text-muted);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: var(--mcc-text-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--mcc-text);
}
.footer-divider {
  border-color: var(--mcc-border-subtle);
  margin-bottom: 1.5rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}
.footer-brand .nav-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--mcc-text-strong);
}

/* Light mode hero visibility fix */
html[data-theme="light"] .hero-section {
  background: linear-gradient(160deg, #EEF0FF 0%, #F6F7FB 50%, #EDF9F5 100%);
}
html[data-theme="light"] .hero-orb-1 {
  background: rgba(123, 97, 255, 0.18);
}
html[data-theme="light"] .hero-orb-2 {
  background: rgba(6, 214, 160, 0.14);
}
html[data-theme="light"] .hero-orb-3 {
  background: rgba(255, 107, 157, 0.1);
}
html[data-theme="light"] .proof-section {
  background: var(--mcc-surface);
}

/* Fade-up animation — base state */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--mcc-ease), transform 0.6s var(--mcc-ease);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
