/* =============================================
   ESCORT ZIMBABWE — Premium Dark Theme
   ============================================= */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c56d;
  --gold-dark: #a07830;
  --bg: #0d0d0d;
  --bg-card: #161616;
  --bg-card2: #1e1e1e;
  --bg-input: #111111;
  --border: #2a2a2a;
  --border-gold: rgba(201, 168, 76, 0.35);
  --text: #e8e8e8;
  --text-muted: #777;
  --text-dim: #aaa;
  --danger: #c0392b;
  --success: #27ae60;
  --info: #2980b9;
}

/* ─── Reset & Base ─────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 { font-weight: 600; }

/* ─── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── Navbar ─────────────────────────────────── */

.navbar {
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar-brand .brand-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand .brand-icon {
  font-size: 1.4rem;
}

.nav-link {
  color: var(--text-dim) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.4rem 0.9rem !important;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.08);
}

.nav-link.active {
  color: var(--gold) !important;
}

.navbar-badge {
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 3px;
}

.navbar-toggler {
  border-color: var(--border-gold);
}

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

/* ─── Hero ───────────────────────────────────── */

.hero {
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.hero-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ─── Filter Bar ─────────────────────────────── */

.filter-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.filter-bar .form-select,
.filter-bar .form-control {
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  border-radius: 8px;
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
  background: var(--bg-input);
  color: var(--text);
}

/* ─── Profile Cards ──────────────────────────── */

.profiles-grid {
  padding: 2.5rem 0;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.profile-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.profile-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

/* Blur overlay for unauthenticated */
.blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.blur-overlay .lock-icon {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}

.blur-overlay .lock-text {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  padding: 0 1rem;
}

.card-vip-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 1px;
  z-index: 3;
}

.card-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.card-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.card-bio-preview {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-action {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.btn-view-profile {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.btn-view-profile:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* No results */
.no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}

.no-results .no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

/* ─── Profile Page ───────────────────────────── */

.profile-page {
  padding: 2.5rem 0 4rem;
}

.profile-gallery {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.profile-gallery .carousel-item img {
  width: 100%;
  max-height: 560px;
  min-height: 260px;
  object-fit: contain;   /* show full image, no cropping */
  background: #0a0a0a;   /* dark fill behind portrait images */
}

.profile-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
}

.profile-name {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-vip-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.profile-stat-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.profile-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.profile-stat .stat-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

.profile-bio-section {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  margin-top: 1.2rem;
}

.profile-bio-section h5 {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.profile-bio-section p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-reveal {
  background: var(--bg-card2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
}

.contact-reveal .contact-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-reveal .contact-number {
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
}

.contact-locked {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
  margin-top: 1.2rem;
  text-align: center;
}

.contact-locked .lock-icon { font-size: 1.6rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.contact-locked p { color: var(--text-muted); font-size: 0.85rem; margin: 0 0 0.75rem; }

.profile-video-section {
  margin-top: 2rem;
}

.profile-video-section h5 {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.profile-video-section video {
  width: 100%;
  border-radius: 10px;
  background: #000;
  border: 1px solid var(--border);
}

/* ─── Auth Forms ─────────────────────────────── */

.auth-page {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2.2rem;
  width: 100%;
  max-width: 480px;
}

.auth-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.form-label {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 0.4rem;
}

.form-control, .form-select, textarea.form-control {
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 9px;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus, textarea.form-control:focus {
  background: var(--bg-input);
  border-color: var(--gold-dark);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  outline: none;
}

.form-control::placeholder { color: #444; }

.form-select option { background: #1a1a1a; color: var(--text); }

/* Role tabs */
.role-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-input);
  border-radius: 10px;
  padding: 4px;
}

.role-tab {
  flex: 1;
  text-align: center;
  padding: 0.55rem;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: transparent;
  transition: all 0.2s ease;
}

.role-tab.active {
  background: var(--bg-card2);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

/* Escort extra fields */
#escort-fields {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* Photo upload zone */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-input);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.upload-zone:hover { border-color: var(--gold-dark); }
.upload-zone.drag-over { border-color: var(--gold); background: rgba(201,168,76,0.05); }

.upload-zone input[type="file"] {
  display: none;
}

.upload-zone .upload-icon { font-size: 2rem; margin-bottom: 0.4rem; display: block; }
.upload-zone .upload-hint { font-size: 0.75rem; color: #555; margin-top: 0.25rem; }

#photo-preview {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.photo-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ─── Buttons ─────────────────────────────────── */

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #000;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-gold:active { transform: translateY(0); }

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-weight: 600;
  border-radius: 10px;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-danger-custom {
  background: linear-gradient(135deg, #8b1a1a, var(--danger));
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.btn-danger-custom:hover { filter: brightness(1.1); color: #fff; }

.btn-success-custom {
  background: linear-gradient(135deg, #1a5c2a, var(--success));
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.btn-success-custom:hover { filter: brightness(1.1); color: #fff; }

/* ─── Alerts / Flash ────────────────────────── */

.flash-messages { position: relative; z-index: 100; }

.alert-custom {
  border-radius: 10px;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.alert-success { background: rgba(39,174,96,0.15); color: #2ecc71; border-left: 3px solid #2ecc71; }
.alert-danger { background: rgba(192,57,43,0.15); color: #e74c3c; border-left: 3px solid #e74c3c; }
.alert-warning { background: rgba(230,126,34,0.12); color: #e67e22; border-left: 3px solid #e67e22; }
.alert-info { background: rgba(41,128,185,0.12); color: #3498db; border-left: 3px solid #3498db; }

/* ─── Dashboard ──────────────────────────────── */

.dashboard-page {
  padding: 2.5rem 0;
}

.user-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.user-role-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.role-regular { background: rgba(41,128,185,0.15); color: #3498db; border: 1px solid rgba(41,128,185,0.3); }
.role-vip { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid var(--border-gold); }

.profile-status-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
}

.status-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.status-pending { background: rgba(230,126,34,0.15); color: #e67e22; border: 1px solid rgba(230,126,34,0.3); }
.status-active { background: rgba(39,174,96,0.15); color: #27ae60; border: 1px solid rgba(39,174,96,0.3); }
.status-rejected { background: rgba(192,57,43,0.15); color: #e74c3c; border: 1px solid rgba(192,57,43,0.3); }

/* ─── Admin Layout ───────────────────────────── */

.admin-wrapper {
  display: flex;
  min-height: calc(100vh - 61px);
}

.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #0f0f0f;
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
}

.sidebar-logo {
  padding: 0 1.3rem 1.3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.8rem;
}

.sidebar-logo .logo-text {
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-logo .logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sidebar-nav { padding: 0 0.7rem; flex: 1; }

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 9px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-bottom: 2px;
  position: relative;
}

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

.sidebar-link.active {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.sidebar-link .sidebar-icon { font-size: 1rem; width: 20px; text-align: center; }

.sidebar-badge {
  margin-left: auto;
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 20px;
}

.sidebar-section-label {
  color: #444;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem 0.3rem;
}

.sidebar-logout {
  padding: 0.7rem 1.3rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.admin-content {
  flex: 1;
  padding: 2rem 2.5rem;
  overflow-y: auto;
}

/* Admin page title */
.admin-page-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.admin-page-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

/* Stat cards */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s ease;
}

.stat-card:hover { border-color: var(--border-gold); }

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-gold { background: rgba(201,168,76,0.15); color: var(--gold); }
.stat-success { background: rgba(39,174,96,0.15); color: #27ae60; }
.stat-danger { background: rgba(192,57,43,0.15); color: #e74c3c; }
.stat-info { background: rgba(41,128,185,0.15); color: #3498db; }
.stat-purple { background: rgba(142,68,173,0.15); color: #9b59b6; }
.stat-teal { background: rgba(26,188,156,0.15); color: #1abc9c; }

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

/* Admin tables */
.admin-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}

.admin-table th {
  background: #111;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #1a1a1a;
  color: var(--text);
  vertical-align: middle;
}

.admin-table tbody tr:last-child td { border-bottom: none; }

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

.admin-table .thumb {
  width: 48px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Profile Review */
.review-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}

.review-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.review-photo {
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-info-item {
  background: var(--bg-card2);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
}

.review-info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.review-info-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.action-panel {
  background: var(--bg-card2);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

/* VIP toggle switch */
.vip-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.form-switch .form-check-input {
  background-color: #333;
  border-color: #444;
  width: 2.5em;
}

.form-switch .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* Reject form */
.reject-form { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }

/* Admin login */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #070707 0%, #0f0f0f 100%);
  padding: 2rem;
}

.admin-login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.admin-shield-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.4));
}

.admin-login-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.admin-login-sub {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 2rem;
}

/* MFA setup */
.qr-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  display: inline-block;
  margin: 1rem 0;
}

.qr-wrap img { display: block; }

.secret-code {
  font-family: 'Courier New', monospace;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--gold);
  word-break: break-all;
}

/* ─── Footer ─────────────────────────────────── */

.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-brand {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.footer-dots {
  margin: 0 0.5rem;
  opacity: 0.3;
}

/* ─── Misc Utilities ────────────────────────── */

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold { color: var(--gold); }
.text-dim { color: var(--text-muted); }

.badge-pending { background: rgba(230,126,34,0.2); color: #e67e22; border: 1px solid rgba(230,126,34,0.35); }
.badge-active { background: rgba(39,174,96,0.2); color: #2ecc71; border: 1px solid rgba(39,174,96,0.35); }
.badge-rejected { background: rgba(192,57,43,0.2); color: #e74c3c; border: 1px solid rgba(192,57,43,0.35); }
.badge-vip { background: rgba(201,168,76,0.2); color: var(--gold); border: 1px solid var(--border-gold); }

.custom-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Password strength */
.pw-strength { height: 3px; border-radius: 2px; margin-top: 6px; transition: all 0.3s ease; }
.pw-weak { background: var(--danger); width: 25%; }
.pw-fair { background: #e67e22; width: 50%; }
.pw-good { background: #f1c40f; width: 75%; }
.pw-strong { background: var(--success); width: 100%; }

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.83rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.back-link:hover { color: var(--gold); }

/* ---- Services ---- */
.profile-services-section {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.profile-services-section h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-tag {
  display: inline-block;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: #c9a84c;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.service-tag-sm {
  display: inline-block;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  color: #b8933d;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}
.card-services-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.35rem 0 0.5rem;
}

/* ---- Admin services checklist ---- */
.services-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s;
}
.service-check-item:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.25);
}
.service-check-item input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* ---- Card thumbnail strip ---- */
.card-thumb-strip {
  display: flex;
  gap: 3px;
  padding: 0 3px 3px;
  background: #0d0d0d;
  overflow: hidden;
}
.card-thumb {
  flex: 1;
  height: 48px;
  overflow: hidden;
  border-radius: 3px;
  opacity: 0.55;
  transition: opacity 0.2s;
  cursor: pointer;
}
.card-thumb.active { opacity: 1; }
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-thumb-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  flex: 0 0 36px;
}
.card-suburb {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- Profile suburb tag ---- */
.profile-suburb-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ---- Profile page thumbnail strip ---- */
.photo-thumb-strip {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.photo-thumb-strip .thumb-item {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.photo-thumb-strip .thumb-item.active,
.photo-thumb-strip .thumb-item:hover {
  opacity: 1;
  border-color: var(--gold);
}
.photo-thumb-strip .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Search / Filter Panel ---- */
.search-section {
  background: #0f0f0f;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0.85rem 0;
  position: sticky;
  top: 62px;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.search-bar-row {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 140px;
  min-width: 120px;
}
.search-field-narrow { flex: 0 1 160px; }
.search-field-btn    { flex: 0 0 auto; }
.search-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.search-input,
.search-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font-size: 0.83rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.search-input:focus,
.search-select:focus {
  border-color: rgba(201,168,76,0.5);
}
.search-input::placeholder { color: #444; }
.search-select option { background: #1a1a1a; color: #fff; }
.age-range-inputs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.age-range-inputs .search-input { flex: 1; }
.btn-search {
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  padding: 0.48rem 1.1rem;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.btn-search:hover  { background: #e0bf5e; }
.btn-search:active { transform: scale(0.97); }
.search-active-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.clear-filters-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.clear-filters-link:hover { color: var(--gold); }

/* ─── VIP Card Badge (listing grid) ────────────── */
.profile-card-vip {
  border-color: rgba(201,168,76,0.55) !important;
  box-shadow: 0 0 18px rgba(201,168,76,0.18), 0 2px 8px rgba(0,0,0,0.4);
}
.profile-card-vip:hover {
  border-color: rgba(201,168,76,0.9) !important;
  box-shadow: 0 0 28px rgba(201,168,76,0.28), 0 4px 16px rgba(0,0,0,0.5);
}
.card-vip-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #a07830, #c9a84c);
  color: #0d0d0d;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 3;
}
.card-video-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* ─── VIP Profile Page Banner ───────────────────── */
.profile-vip-banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(160,120,48,0.08));
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.2rem;
}
.vip-banner-crown {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.vip-banner-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.vip-banner-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── VIP Upgrade Box (on VIP profile for regular users) ─── */
.vip-upgrade-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(160,120,48,0.04));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  margin-top: 1rem;
  text-align: center;
}
.vip-upgrade-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.vip-upgrade-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.vip-upgrade-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.vip-upgrade-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  margin-bottom: 1.2rem;
}
.vip-step {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.vip-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold);
  color: #0d0d0d;
  font-weight: 800;
  font-size: 0.72rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.vip-phone-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.vip-phone-link:hover { color: var(--gold-light); text-decoration: underline; }
.btn-vip-upgrade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  gap: 0.4rem;
}
.btn-vip-upgrade:hover { background: #1ebc58; color: #fff; transform: translateY(-1px); }

/* ─── Free Account Panel (register page) ────────── */
.free-info-panel {
  background: linear-gradient(135deg, rgba(39,174,96,0.07), rgba(39,174,96,0.03));
  border: 1px solid rgba(39,174,96,0.28);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.free-info-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.free-info-icon {
  font-size: 1.9rem;
  line-height: 1;
  flex-shrink: 0;
}
.free-info-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--success);
}
.free-info-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.free-info-perks {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.free-perk {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ─── VIP Info Panel (register page) ─────────────── */
.vip-info-panel {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(160,120,48,0.04));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.8rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.vip-info-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.vip-info-crown {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.vip-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.vip-info-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.vip-info-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.vip-info-step {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.vip-info-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold);
  color: #0d0d0d;
  font-weight: 800;
  font-size: 0.72rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.vip-info-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.vip-info-link:hover { color: var(--gold-light); text-decoration: underline; }
.vip-info-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  gap: 0.4rem;
  width: 100%;
}
.vip-info-wa-btn:hover { background: #1ebc58; color: #fff; transform: translateY(-1px); }

/* ─── Photo Lightbox ────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  /* Padding carves out space for the nav arrows and close button */
  padding: 52px 70px 52px 70px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img-wrap {
  position: relative;
  /* Fills every pixel of the padded area */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  /* Fit the FULL image inside the available space — never crop */
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 4px 60px rgba(0,0,0,0.85);
  user-select: none;
}
.lightbox-close {
  position: fixed;
  top: 12px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.85;
  transition: opacity 0.15s, background 0.15s;
  padding: 0;
}
.lightbox-close:hover { opacity: 1; background: rgba(201,168,76,0.35); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  width: 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  z-index: 10001;
  opacity: 0.75;
  transition: opacity 0.15s, background 0.15s;
  padding: 0;
}
.lightbox-nav:hover  { opacity: 1; background: rgba(201,168,76,0.28); }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-counter {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  background: rgba(0,0,0,0.45);
  padding: 3px 12px;
  border-radius: 20px;
  pointer-events: none;
}
/* Zoom-in cursor on clickable images */
.lightbox-trigger { cursor: zoom-in !important; }

/* ─── Rate stat highlight ───────────────────────── */
.profile-stat-rate {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  color: var(--gold) !important;
  font-weight: 600;
}
.profile-stat-rate .stat-icon { color: var(--gold); }

/* ─── Profile Video Player ──────────────────────── */
.profile-video-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.profile-video-header {
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid var(--border);
}
.profile-video-player {
  width: 100%;
  max-height: 420px;
  display: block;
  background: #000;
}
.profile-video-locked {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1rem;
  text-align: center;
}

/* ─── Profiles Pagination ───────────────────────── */
.profiles-pagination {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.pagination-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.page-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.page-btn-active {
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.15) !important;
  color: var(--gold) !important;
}
.page-btn-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.page-ellipsis {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0 4px;
  line-height: 38px;
}
.pagination-info {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .admin-wrapper { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .admin-content { padding: 1.5rem 1rem; }
  .hero { padding: 2.5rem 0 2rem; }
  .auth-card { padding: 1.8rem 1.4rem; }
}
