This is my css @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --bg:           #0d0d0f;
  --surface:      #141418;
  --card:         rgba(20,20,28,0.95);
  --card-solid:   #141420;
  --border:       rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.04);
  --blue:         #0A84FF;
  --blue-glow:    rgba(10,132,255,0.35);
  --blue-subtle:  rgba(10,132,255,0.10);
  --text:         #f0f0f5;
  --muted:        #7a7a8c;
  --muted2:       #55556a;
  --success:      #30d158;
  --danger:       #ff453a;
  --warning:      #ffd60a;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-xs:    5px;
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);

  /* Spacing scale */
  --sp-xs: 6px;
  --sp-sm: 12px;
  --sp-md: 20px;
  --sp-lg: 32px;
  --sp-xl: 48px;

  /* Touch targets */
  --touch: 44px;

  /* Sidebar width */
  --sidebar-w: 240px;
  --sidebar-collapsed: 0px;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%,   rgba(10,132,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 100%,  rgba(10,132,255,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: #4da6ff; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* ── Safe area / notch support ─────────────────────────── */
.safe-bottom { padding-bottom: max(16px, env(safe-area-inset-bottom)); }

/* ============================================================
   NAVBAR
   ============================================================ */
.vx-navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(13,13,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.vx-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 16px;
  gap: 12px;
}
.vx-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text) !important;
  text-decoration: none;
  flex-shrink: 0;
}
.vx-navbar .navbar-brand img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.vx-navbar .navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  min-width: var(--touch);
  min-height: var(--touch);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vx-navbar .navbar-toggler-icon { filter: invert(1); width: 18px; }

/* Desktop nav links */
.vx-navbar .navbar-collapse .nav-link {
  color: var(--muted) !important;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 7px 12px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.vx-navbar .navbar-collapse .nav-link:hover,
.vx-navbar .navbar-collapse .nav-link.active {
  color: var(--text) !important;
  background: var(--blue-subtle);
}
.vx-navbar .btn-nav-login {
  background: var(--blue-subtle);
  color: var(--blue) !important;
  border: 1px solid rgba(10,132,255,0.28);
  border-radius: 30px;
  padding: 6px 16px !important;
  font-size: 0.82rem;
  font-weight: 600;
}
.vx-navbar .btn-nav-login:hover {
  background: var(--blue);
  color: #fff !important;
  box-shadow: 0 0 14px var(--blue-glow);
}

/* Mobile: collapse menu draws below */
@media (max-width: 991px) {
  .vx-navbar .navbar-collapse {
    background: rgba(13,13,15,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 12px 16px 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 899;
  }
  .vx-navbar .navbar-collapse .nav-link {
    padding: 11px 14px !important;
    font-size: 0.95rem;
    margin-bottom: 3px;
    display: block;
  }
}

/* ============================================================
   SITE BANNER
   ============================================================ */
.vx-site-banner {
  position: relative;
  z-index: 850;
}
.vx-site-banner .container {
  padding: 8px 16px;
  font-size: 0.82rem;
}
@media (max-width: 480px) {
  .vx-site-banner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.vx-hero {
  position: relative;
  padding: clamp(50px, 10vw, 100px) 0 clamp(40px, 8vw, 80px);
  text-align: center;
  overflow: hidden;
}
.vx-hero::before {
  content: '';
  position: absolute;
  width: min(600px, 100vw);
  height: min(600px, 100vw);
  background: radial-gradient(circle, rgba(10,132,255,0.12), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.vx-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-subtle);
  border: 1px solid rgba(10,132,255,0.3);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.vx-hero h1 {
  font-size: clamp(1.9rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #8ab8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vx-hero p.lead {
  color: var(--muted);
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  max-width: 520px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* ── Hero Search ───────────────────────────────────────── */
.vx-search-wrap {
  max-width: 540px;
  margin: 0 auto 24px;
  position: relative;
}
.vx-search-wrap .form-control {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50px;
  padding: 13px 120px 13px 46px;
  font-size: 0.9rem;
  width: 100%;
  transition: all var(--transition);
}
.vx-search-wrap .form-control::placeholder { color: var(--muted); }
.vx-search-wrap .form-control:focus {
  background: rgba(20,20,28,0.98);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-subtle), 0 0 18px var(--blue-glow);
  outline: none;
}
.vx-search-wrap .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.88rem;
  pointer-events: none;
}
.vx-search-wrap .btn-search {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  min-height: 36px;
}
.vx-search-wrap .btn-search:hover {
  background: #1a94ff;
  box-shadow: 0 0 16px var(--blue-glow);
}
@media (max-width: 480px) {
  .vx-search-wrap .form-control { padding: 12px 80px 12px 42px; font-size: 0.85rem; }
  .vx-search-wrap .btn-search { padding: 7px 14px; font-size: 0.78rem; }
}

/* ── Category pills ────────────────────────────────────── */
.vx-cat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  padding: 0 8px;
}
.vx-cat-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
}
.vx-cat-pill:hover, .vx-cat-pill.active {
  background: var(--blue-subtle);
  border-color: rgba(10,132,255,0.4);
  color: var(--blue);
  text-decoration: none;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.vx-section { padding: clamp(32px,6vw,60px) 0; position: relative; z-index: 1; }
.vx-section-title  { font-size: clamp(1.25rem,3.5vw,1.6rem); font-weight: 800; margin-bottom: 4px; }
.vx-section-sub    { color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.vx-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vx-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10,132,255,0.32);
  box-shadow: 0 8px 36px rgba(10,132,255,0.12), 0 2px 10px rgba(0,0,0,0.35);
}
/* Disable hover transform on touch devices */
@media (hover: none) { .vx-card:hover { transform: none; } }

.vx-card .card-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 58%;
  overflow: hidden;
  background: #1a1a22;
  flex-shrink: 0;
}
.vx-card .card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vx-card:hover .card-img-wrap img { transform: scale(1.04); }
.vx-card .card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a28, #12121e);
  color: var(--muted);
  font-size: 2.2rem;
}
.vx-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vx-card .card-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 6px;
}
.vx-card .card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}
.vx-card .card-desc {
  font-size: 0.79rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.vx-card .card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.vx-card .card-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}
.vx-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(48,209,88,0.1);
  border: 1px solid rgba(48,209,88,0.28);
  color: var(--success);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

/* Save heart btn */
.btn-save {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(13,13,15,0.78);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}
.btn-save:hover { color: var(--danger); border-color: rgba(255,69,58,0.4); }
.btn-save.saved { color: var(--danger); border-color: rgba(255,69,58,0.4); background: rgba(255,69,58,0.1); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-vx,
.btn-vx-outline,
.btn-vx-ghost,
.btn-vx-danger,
.btn-vx-success,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: var(--touch);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.btn-vx         { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-vx:hover   { background: #1a94ff; color: #fff; box-shadow: 0 0 18px var(--blue-glow); transform: translateY(-1px); }
.btn-vx-outline { background: transparent; color: var(--blue); border-color: rgba(10,132,255,0.38); }
.btn-vx-outline:hover { background: var(--blue-subtle); border-color: var(--blue); color: var(--blue); }
.btn-vx-ghost   { background: rgba(255,255,255,0.05); color: var(--muted); border-color: var(--border); }
.btn-vx-ghost:hover { background: rgba(255,255,255,0.09); color: var(--text); }
.btn-vx-danger  { background: rgba(255,69,58,0.12); color: var(--danger); border-color: rgba(255,69,58,0.28); }
.btn-vx-danger:hover { background: rgba(255,69,58,0.24); color: var(--danger); }
.btn-vx-success { background: rgba(48,209,88,0.12); color: var(--success); border-color: rgba(48,209,88,0.28); }
.btn-vx-success:hover { background: rgba(48,209,88,0.22); color: var(--success); }
.btn-wa         { background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; border-color: transparent; }
.btn-wa:hover   { opacity: 0.9; color: #fff; box-shadow: 0 0 18px rgba(37,211,102,0.32); transform: translateY(-1px); }

/* Disable hover transform on touch */
@media (hover: none) {
  .btn-vx:hover, .btn-wa:hover { transform: none; }
}

/* Full width helper */
.btn-vx.w-100, .btn-vx-outline.w-100 { width: 100%; }

/* ============================================================
   FORMS
   ============================================================ */
.vx-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 5vw, 36px);
}
.form-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  display: block;
}
.vx-input {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm) !important;
  padding: 11px 14px !important;
  font-size: 0.9rem !important;
  font-family: 'DM Sans', sans-serif !important;
  transition: all var(--transition) !important;
  width: 100%;
  min-height: var(--touch);
  -webkit-appearance: none;
  appearance: none;
}
.vx-input::placeholder { color: var(--muted) !important; }
.vx-input:focus {
  background: rgba(255,255,255,0.06) !important;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px var(--blue-subtle) !important;
  outline: none !important;
}
.vx-input option { background: #1a1a22; color: var(--text); }
textarea.vx-input { resize: vertical; min-height: 100px; }
select.vx-input { padding-right: 36px !important; }

/* ── Alerts ─────────────────────────────────────────────── */
.vx-alert {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.vx-alert i { flex-shrink: 0; margin-top: 1px; }
.vx-alert-success { background: rgba(48,209,88,0.09);  border: 1px solid rgba(48,209,88,0.24);  color: var(--success); }
.vx-alert-danger  { background: rgba(255,69,58,0.09);   border: 1px solid rgba(255,69,58,0.24);  color: var(--danger); }
.vx-alert-info    { background: var(--blue-subtle);     border: 1px solid rgba(10,132,255,0.24); color: var(--blue); }
.vx-alert-warning { background: rgba(255,214,10,0.09);  border: 1px solid rgba(255,214,10,0.24); color: var(--warning); }

/* ── Badges / Status ─────────────────────────────────────── */
.badge-status {
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: capitalize;
  white-space: nowrap;
}
.badge-pending    { background: rgba(255,214,10,0.1);  color: var(--warning); border: 1px solid rgba(255,214,10,0.28); }
.badge-processing { background: var(--blue-subtle);    color: var(--blue);    border: 1px solid rgba(10,132,255,0.28); }
.badge-completed  { background: rgba(48,209,88,0.1);   color: var(--success); border: 1px solid rgba(48,209,88,0.28); }
.badge-cancelled  { background: rgba(255,69,58,0.1);   color: var(--danger);  border: 1px solid rgba(255,69,58,0.28); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.vx-product-img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}
.vx-product-img-placeholder {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1a1a28, #12121e);
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(200px, 45vw, 320px);
  font-size: 3.5rem;
  color: var(--muted);
}
.vx-price-tag {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
}

/* ============================================================
   DASHBOARD / CARDS
   ============================================================ */
.vx-dash-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 4vw, 24px);
}
.vx-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.vx-stat-card .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.vx-stat-card .stat-val   { font-family: 'Syne', sans-serif; font-size: 1.45rem; font-weight: 800; line-height: 1; }
.vx-stat-card .stat-label { font-size: 0.74rem; color: var(--muted); margin-top: 3px; }

/* ============================================================
   TABLES — responsive card-on-mobile approach
   ============================================================ */
.table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.vx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  min-width: 600px; /* triggers scroll on mobile */
}
.vx-table thead th {
  background: rgba(255,255,255,0.025);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 13px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.vx-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.vx-table tbody tr:last-child { border-bottom: none; }
.vx-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.vx-table td { padding: 11px 13px; vertical-align: middle; }
.vx-table .thumb {
  width: 42px;
  height: 34px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}
/* Horizontal scroll wrapper */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Scroll indicator shadow */
  background:
    linear-gradient(to right, var(--card-solid) 30%, rgba(20,20,28,0)),
    linear-gradient(to right, rgba(20,20,28,0), var(--card-solid) 70%) 100% 0,
    linear-gradient(to right, rgba(0,0,0,0.15), rgba(0,0,0,0)) left center,
    linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.15)) right center;
  background-repeat: no-repeat;
  background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}

/* ============================================================
   MODAL
   ============================================================ */
.vx-modal .modal-dialog {
  max-width: 500px;
  margin: 16px auto;
}
.vx-modal .modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}
.vx-modal .modal-header { border-bottom: 1px solid var(--border); padding: 18px 22px; }
.vx-modal .modal-body   { padding: 22px; }
.vx-modal .modal-footer { border-top: 1px solid var(--border); padding: 14px 22px; }
.vx-modal .btn-close    { filter: invert(1) opacity(0.5); }
@media (max-width: 575px) {
  .vx-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
    min-height: 100dvh;
    align-items: flex-end;
  }
  .vx-modal .modal-content {
    border-radius: var(--radius) var(--radius) 0 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .modal.show .modal-dialog { transform: none; }
}

/* ============================================================
   ADMIN LAYOUT
   ============================================================ */
.vx-admin-wrap {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Sidebar */
.vx-sidebar {
  width: var(--sidebar-w);
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 20px 0 32px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
  transition: transform var(--transition);
  z-index: 800;
}
.vx-sidebar .sidebar-brand {
  padding: 0 18px 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vx-sidebar .brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  flex-shrink: 0;
}
.vx-sidebar .sidebar-section {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted2);
  padding: 14px 18px 5px;
}
.vx-sidebar .sidebar-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  color: var(--muted);
  font-size: 0.855rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
  border-left: 2px solid transparent;
  min-height: var(--touch);
}
.vx-sidebar .sidebar-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.vx-sidebar .sidebar-link.active {
  color: var(--blue);
  background: var(--blue-subtle);
  border-left-color: var(--blue);
}
.vx-sidebar .sidebar-link i { width: 15px; text-align: center; font-size: 0.9rem; }

/* Admin main */
.vx-admin-main {
  flex: 1;
  padding: clamp(16px, 3vw, 28px);
  overflow-x: hidden;
  min-width: 0; /* prevent flex overflow */
}

/* Admin header row */
.vx-admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.vx-admin-header h1 { font-size: clamp(1.2rem, 4vw, 1.5rem); }
.vx-admin-header p  { font-size: 0.83rem; color: var(--muted); margin: 0; }

/* Mobile admin hamburger */
.admin-mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 810;
  background: rgba(13,13,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.admin-mobile-bar .brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.btn-sidebar-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

/* Sidebar overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 799;
  backdrop-filter: blur(2px);
}

/* Mobile: sidebar becomes a drawer */
@media (max-width: 991px) {
  .admin-mobile-bar    { display: flex; }
  .vx-admin-wrap       { flex-direction: column; }
  .vx-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    transform: translateX(-100%);
    box-shadow: 4px 0 32px rgba(0,0,0,0.5);
    padding-top: 16px;
  }
  .vx-sidebar.open     { transform: translateX(0); }
  .sidebar-overlay.open { display: block; }
  .vx-admin-main       { padding: 16px; }
}

/* ============================================================
   BOTTOM NAV (mobile only)
   ============================================================ */
.vx-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 880;
  background: rgba(13,13,15,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 6px 0 max(8px, env(safe-area-inset-bottom));
}
.vx-bottom-nav .bnav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.vx-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  min-width: 52px;
  min-height: 46px;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.vx-bottom-nav a i { font-size: 1.1rem; }
.vx-bottom-nav a:hover,
.vx-bottom-nav a.active { color: var(--blue); background: var(--blue-subtle); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.vx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.vx-breadcrumb a { color: var(--muted); }
.vx-breadcrumb a:hover { color: var(--text); }
.vx-breadcrumb .sep { color: rgba(255,255,255,0.15); }

/* ============================================================
   PAGINATION
   ============================================================ */
.vx-pag { display: flex; gap: 5px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.vx-pag a, .vx-pag span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
  min-height: var(--touch);
}
.vx-pag a     { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--muted); }
.vx-pag a:hover { background: var(--blue-subtle); border-color: var(--blue); color: var(--blue); }
.vx-pag span  { background: var(--blue); color: #fff; border: 1px solid var(--blue); }

/* ============================================================
   EMPTY STATES
   ============================================================ */
.vx-empty {
  text-align: center;
  padding: clamp(40px, 8vw, 60px) 20px;
  color: var(--muted);
}
.vx-empty i    { font-size: 2.8rem; margin-bottom: 14px; opacity: 0.35; display: block; }
.vx-empty h4   { font-size: 1.05rem; color: var(--text); margin-bottom: 7px; }
.vx-empty p    { font-size: 0.84rem; }

/* ============================================================
   FILE UPLOAD
   ============================================================ */
.vx-file-input {
  background: rgba(255,255,255,0.03);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: block;
}
.vx-file-input:hover { border-color: var(--blue); background: var(--blue-subtle); }
.vx-file-input input[type="file"] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.vx-footer {
  border-top: 1px solid var(--border);
  padding: clamp(24px, 5vw, 36px) 0 clamp(20px, 4vw, 28px);
  color: var(--muted);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider { border-top: 1px solid var(--border); margin: 20px 0; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-blue       { color: var(--blue); }
.text-muted-vx   { color: var(--muted); }
.text-success-vx { color: var(--success); }
.text-danger-vx  { color: var(--danger); }
.no-wrap         { white-space: nowrap; }
.z1              { position: relative; z-index: 1; }

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

/* Large tablets (992px → 1199px) */
@media (max-width: 1199px) {
  .vx-sidebar { width: 200px; }
}

/* Tablets (768px → 991px) */
@media (max-width: 991px) {
  body { padding-bottom: 72px; } /* space for bottom nav */
  .vx-bottom-nav { display: block; }
}

/* Mobile landscape / small tablets (576px → 767px) */
@media (max-width: 767px) {
  .vx-admin-header { flex-direction: column; align-items: flex-start; }
  .vx-stat-card .stat-val { font-size: 1.25rem; }
  .vx-table { font-size: 0.8rem; }
  .vx-table td, .vx-table thead th { padding: 9px 10px; }
  .row.g-3 > * { padding-left: 8px; padding-right: 8px; }
}

/* Mobile portrait (< 576px) */
@media (max-width: 575px) {
  body { font-size: 14px; }
  .container { padding-left: 14px; padding-right: 14px; }
  .vx-price-tag { font-size: 1.5rem; }
  .vx-form-card { padding: 18px 16px; }
  .vx-dash-card { padding: 16px 14px; }

  /* Stack product action buttons */
  .product-action-row {
    flex-direction: column;
  }
  .product-action-row .btn-vx,
  .product-action-row .btn-wa { min-width: 100%; }

  /* Admin header actions below title */
  .vx-admin-header > *:last-child { width: 100%; }
  .vx-admin-header > *:last-child .btn-vx,
  .vx-admin-header > *:last-child .btn-vx-outline,
  .vx-admin-header > *:last-child .btn-vx-success { width: 100%; }

  /* Stat cards 2-col on small */
  .stat-grid-2 { grid-template-columns: 1fr 1fr; }

  /* FAQ items */
  .faq-item button { padding: 14px 16px; }
}

/* Very small (< 375px — older iPhones etc.) */
@media (max-width: 374px) {
  body { font-size: 13.5px; }
  .vx-bottom-nav a { min-width: 44px; font-size: 0.56rem; }
  .vx-hero h1 { font-size: 1.7rem; }
  .vx-cat-pill { font-size: 0.72rem; padding: 5px 10px; }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .vx-hero { padding: 36px 0 28px; }
  .vx-bottom-nav { display: none; } /* hide on landscape phone */
  body { padding-bottom: 0; }
}

/* Dark mode media query (already dark, kept for completeness) */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; }
}

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

/* Print */
@media print {
  .vx-navbar, .vx-bottom-nav, .vx-sidebar, .admin-mobile-bar, .vx-footer { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .vx-admin-main { padding: 0; }
  .table-wrap { border: 1px solid #ccc; }
}
