/* =====================================================
   NEWPLACESHOT.COM — SHARED DESIGN SYSTEM
   Dark Luxury Edition — Vibrant & Professional
   ===================================================== */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* -------- DESIGN TOKENS -------- */
:root {
  /* Brand — Vibrant Hot Rose */
  --primary:        #E8185A;
  --primary-dark:   #B80F46;
  --primary-light:  #FF4D8A;
  --primary-soft:   rgba(232,24,90,0.1);
  --primary-mid:    rgba(232,24,90,0.22);

  /* Gold accent (premium) */
  --gold:           #F0B429;
  --gold-bright:    #FFD700;
  --gold-soft:      rgba(240,180,41,0.12);
  --gold-mid:       rgba(240,180,41,0.28);

  /* Subscription tier colors */
  --tier-vvip:        #FFD700;
  --tier-vvip-bg:     rgba(255,215,0,0.15);
  --tier-vvip-border: rgba(255,215,0,0.4);
  --tier-vip:         #FF4D8A;
  --tier-vip-bg:      rgba(255,77,138,0.12);
  --tier-vip-border:  rgba(255,77,138,0.35);
  --tier-premier:     #60A5FA;
  --tier-premier-bg:  rgba(96,165,250,0.12);
  --tier-premier-border: rgba(96,165,250,0.35);
  --tier-basic:       #86EFAC;
  --tier-basic-bg:    rgba(134,239,172,0.1);
  --tier-basic-border: rgba(134,239,172,0.3);

  /* Backgrounds — Dark Luxury */
  --bg:             #0D0917;
  --bg-card:        #180F28;
  --bg-card-2:      #211630;
  --bg-input:       rgba(255,255,255,0.06);
  --bg-dark:        #080510;
  --bg-dark-2:      #120D1E;
  --bg-dark-3:      rgba(255,255,255,0.07);

  /* Text */
  --text:           #F0EBF8;
  --text-secondary: #C4BADB;
  --text-muted:     #8A82A8;
  --text-light:     #5A5278;
  --text-on-dark:   #F0EBF8;

  /* Borders */
  --border:         rgba(255,255,255,0.09);
  --border-strong:  rgba(255,255,255,0.18);

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,0.4);
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.5);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.55);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.65);
  --shadow-card:  0 4px 20px rgba(232,24,90,0.08);
  --shadow-hover: 0 14px 44px rgba(232,24,90,0.22);

  /* Radius */
  --r-sm:   6px;
  --r:      10px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-full: 9999px;

  /* Transition */
  --t:      0.2s ease;
  --t-slow: 0.35s ease;
}

/* -------- LAYOUT -------- */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) { .container { padding: 0 14px; } }

/* -------- SHARED HEADER -------- */
.site-header {
  background: rgba(13,9,23,0.96);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(232,24,90,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-area { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }

.logo-area h1 {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-area span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-city-link {
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--r-full);
  transition: var(--t);
  white-space: nowrap;
}

.nav-city-link:hover, .nav-city-link.active {
  background: var(--primary-soft);
  color: var(--primary-light);
}

.header-actions { display: flex; gap: 8px; align-items: center; }

.btn-outline {
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--r-full);
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.btn-outline:hover { background: var(--primary); color: #fff; box-shadow: 0 0 18px rgba(232,24,90,0.4); }

.btn-primary {
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  border-radius: var(--r-full);
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232,24,90,0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,24,90,0.5);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* -------- MOBILE NAV TOGGLE -------- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary);
  padding: 4px;
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; align-items: center; }
  .header-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
    background: rgba(24,15,40,0.98);
    border-top: 1px solid var(--border);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
  }
  .header-nav.open { display: flex; }
}

/* -------- PROFILE CARD — OVERLAY STYLE -------- */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  cursor: pointer;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

/* Full-card link overlay */
.profile-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.profile-media {
  height: 340px;
  overflow: hidden;
  position: relative;
  background: #1A0F28;
}

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

.profile-card:hover .profile-media img { transform: scale(1.06); }

/* Gradient overlay — text lives here */
.profile-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.65) 65%,
    rgba(0,0,0,0.92) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Tier badge */
.tier-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: blur(6px);
}

.tier-vvip    { background: rgba(60,20,0,0.85); color: #FFD700; border: 1px solid rgba(255,215,0,0.5); }
.tier-vip     { background: rgba(232,24,90,0.85); color: #fff; border: 1px solid rgba(255,77,138,0.5); }
.tier-premier { background: rgba(30,80,170,0.85); color: #fff; border: 1px solid rgba(96,165,250,0.5); }
.tier-basic   { background: rgba(0,0,0,0.6); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }

/* Verified badge */
.verified-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #4ade80;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 3;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(74,222,128,0.3);
}

/* Profile body — overlaid on bottom of image */
.profile-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 15px 16px;
  z-index: 2;
  color: #fff;
}

.profile-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
  gap: 8px;
}

.profile-name {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-age-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  padding: 2px 9px;
  border-radius: var(--r-full);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.profile-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-price {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(255,215,0,0.4);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.tag-service {
  background: rgba(232,24,90,0.3);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(232,24,90,0.4);
  font-size: 0.64rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.tag-location {
  background: rgba(96,165,250,0.25);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(96,165,250,0.35);
  font-size: 0.64rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.profile-actions {
  display: flex;
  gap: 5px;
  position: relative;
  z-index: 4;
}

.action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 4px;
  font-size: 0.73rem;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  transition: var(--t);
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.action-call { background: rgba(232,24,90,0.9); color: #fff; }
.action-call:hover { background: var(--primary); box-shadow: 0 0 14px rgba(232,24,90,0.5); }
.action-wa { background: rgba(37,211,102,0.85); color: #fff; }
.action-wa:hover { background: #25D366; box-shadow: 0 0 14px rgba(37,211,102,0.4); }
.action-sms { background: rgba(8,145,178,0.85); color: #fff; }
.action-sms:hover { background: #0891B2; box-shadow: 0 0 14px rgba(8,145,178,0.4); }
.action-view {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.2);
  flex: 0.8;
}
.action-view:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* -------- SECTION HEADINGS -------- */
.section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.section-title .icon { color: var(--primary); }

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -12px;
  margin-bottom: 18px;
}

/* -------- SPA/AD BANNER -------- */
.spa-banner-wrap {
  margin: 24px 0;
}

.spa-banner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.spa-banner-header h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.spa-banner-header span {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
}

.spa-scroll-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.spa-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--t);
  cursor: pointer;
  position: relative;
}

.spa-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.spa-card-img {
  height: 155px;
  overflow: hidden;
  background: #1A0F28;
  position: relative;
}

.spa-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.spa-card:hover .spa-card-img img { transform: scale(1.05); }

.spa-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(232,24,90,0.9);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 2;
}

.spa-card-price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.spa-card-body { padding: 11px 13px; }

.spa-card-title {
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}

.spa-card-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spa-card-actions { display: flex; gap: 6px; }

.spa-btn {
  flex: 1;
  padding: 7px 0;
  font-size: 0.71rem;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--t);
}

.spa-call, .spa-btn-call { background: var(--primary); color: #fff; }
.spa-call:hover, .spa-btn-call:hover { background: var(--primary-dark); box-shadow: 0 0 12px rgba(232,24,90,0.4); }
.spa-wa, .spa-btn-wa { background: #25D366; color: #fff; }
.spa-wa:hover, .spa-btn-wa:hover { background: #1da855; }

/* -------- FILTER BAR -------- */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
}

.filter-group { flex: 1; min-width: 160px; }
.filter-group label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 5px;
}

.input-field {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  background: var(--bg-input);
  border-radius: var(--r);
  font-size: 0.84rem;
  color: var(--text);
  transition: var(--t);
  outline: none;
}

.input-field:focus {
  border-color: var(--primary);
  background: rgba(232,24,90,0.05);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.input-field::placeholder { color: var(--text-light); }

/* Normalize inputs site-wide */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  background: var(--bg-input);
  border-radius: var(--r);
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: rgba(232,24,90,0.05);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

/* -------- LOCATION PANEL -------- */
.location-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.location-panel-header {
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.location-panel-header h3 {
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.loc-active-pill {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 5px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: var(--r-full);
  cursor: pointer;
  border: 1px solid var(--primary-mid);
  transition: var(--t);
}

.loc-active-pill:hover { background: var(--primary); color: #fff; }

.city-quick-links {
  padding: 12px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.city-quick-link {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 5px 14px;
  font-size: 0.77rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: var(--t);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(232,24,90,0.25);
}

.city-quick-link:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,24,90,0.4); }

.loc-search-wrap { padding: 12px 18px; border-bottom: 1px solid var(--border); }

.loc-content { padding: 14px 18px; }

.loc-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.loc-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
}

.loc-chip {
  background: rgba(232,24,90,0.12);
  color: var(--primary-light);
  border: 1px solid rgba(232,24,90,0.25);
  padding: 7px 11px;
  border-radius: var(--r);
  font-size: 0.79rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--t);
}

.loc-chip:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateX(2px);
  box-shadow: 0 2px 10px rgba(232,24,90,0.35);
}

.loc-count {
  background: rgba(255,255,255,0.15);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--r-full);
  min-width: 20px;
  text-align: center;
}

/* -------- PROFILES GRID -------- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .profiles-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* -------- LOAD MORE / INFINITE SCROLL -------- */
.load-more-area {
  text-align: center;
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.load-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(232,24,90,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

/* -------- MODAL / LIGHTBOX -------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s, visibility 0.22s;
  padding: 16px;
  backdrop-filter: blur(6px);
}

.modal-overlay.open { visibility: visible; opacity: 1; }

.modal-box {
  background: var(--bg-card);
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  border: 1px solid var(--border-strong);
}

.modal-head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.modal-head h3 { font-size: 1.1rem; font-weight: 700; }

.modal-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
}

.modal-close:hover { background: rgba(255,255,255,0.3); }

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  padding: 18px;
  background: var(--bg-dark-2);
}

.media-thumb {
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  position: relative;
  background: var(--bg-dark);
}

.media-thumb:hover { border-color: var(--primary); transform: scale(0.97); }
.media-thumb img, .media-thumb video { width: 100%; height: 100%; object-fit: cover; }

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
}

.modal-details { padding: 0 20px 22px; }

.detail-row {
  display: flex;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.detail-row:last-child { border-bottom: none; }
.detail-label { min-width: 130px; font-weight: 600; font-size: 0.82rem; color: var(--text-muted); }
.detail-value { flex: 1; font-size: 0.82rem; color: var(--text-secondary); }

.modal-contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.lightbox.open { visibility: visible; opacity: 1; }

.lightbox-media { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: var(--r); }

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}

.lightbox-close:hover { background: var(--primary); }

/* -------- TOAST NOTIFICATIONS -------- */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  width: calc(100% - 40px);
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 13px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  pointer-events: auto;
  animation: toastIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  position: relative;
}

.toast.hiding { animation: toastOut 0.25s ease forwards; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(60px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); max-height: 120px; }
  to   { opacity: 0; transform: translateX(40px); max-height: 0; }
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  opacity: 0.35;
  animation: progress linear forwards;
}

@keyframes progress { from { width: 100%; } to { width: 0%; } }

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast-body { flex: 1; min-width: 0; }
.toast-title { font-weight: 700; font-size: 0.84rem; margin-bottom: 3px; color: var(--text); }
.toast-msg { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

.toast-close {
  background: none;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 2px;
  flex-shrink: 0;
  transition: var(--t);
}

.toast-close:hover { color: var(--text); }

.toast-success .toast-icon { background: rgba(20,200,80,0.15); color: #4ade80; }
.toast-success .toast-progress { background: #4ade80; }
.toast-error   .toast-icon { background: rgba(232,24,90,0.15); color: var(--primary); }
.toast-error   .toast-progress { background: var(--primary); }
.toast-warning .toast-icon { background: rgba(240,180,41,0.15); color: var(--gold); }
.toast-warning .toast-progress { background: var(--gold); }
.toast-info    .toast-icon { background: rgba(96,165,250,0.15); color: #60A5FA; }
.toast-info    .toast-progress { background: #60A5FA; }

/* -------- FOOTER -------- */
.site-footer {
  background: #080510;
  color: #C4BADB;
  border-top: 2px solid var(--primary);
  margin-top: 60px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
}

.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 44px 20px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p { font-size: 0.8rem; line-height: 1.55; color: var(--text-muted); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  margin-bottom: 14px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a:hover { color: var(--primary-light); transform: translateX(3px); }

.footer-awareness {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.awareness-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--primary);
  border-radius: var(--r);
  padding: 18px;
}

.awareness-card h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #E0D8F0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.awareness-card p {
  font-size: 0.77rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hotline-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* -------- SCAM ALERT BUTTON -------- */
.scam-float {
  position: fixed;
  bottom: 22px;
  right: 20px;
  z-index: 998;
}

.scam-btn {
  background: rgba(13,9,23,0.95);
  color: var(--gold-bright);
  border: 1.5px solid rgba(240,180,41,0.3);
  border-radius: var(--r-lg);
  padding: 11px 18px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--shadow-lg);
  transition: var(--t);
  backdrop-filter: blur(10px);
}

.scam-btn:hover { background: rgba(0,0,0,0.98); transform: scale(1.02); }

.scam-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: var(--bg-card);
  border-left: 4px solid var(--gold-bright);
  border-radius: var(--r);
  padding: 14px;
  width: 270px;
  box-shadow: var(--shadow-lg);
  font-size: 0.78rem;
  display: none;
  color: var(--text-secondary);
  line-height: 1.5;
  border: 1px solid var(--border);
}

.scam-tooltip.open { display: block; }
.scam-tooltip strong { color: var(--primary); }

/* -------- SEO CONTENT BLOCKS -------- */
.seo-section { margin: 40px 0; }

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-card h2 i { color: var(--primary); }

.content-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 11px;
  font-size: 0.9rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.feature-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
  transition: var(--t);
  box-shadow: var(--shadow-xs);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.feature-card .icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 10px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.feature-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; margin: 0; }

.city-highlight {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.city-highlight:last-child { border-bottom: none; padding-bottom: 0; }

.city-highlight h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.city-highlight p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }

.city-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--t);
  box-shadow: 0 3px 12px rgba(232,24,90,0.3);
}

.city-link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(232,24,90,0.5);
}

.safety-list { list-style: none; }
.safety-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
}

.safety-list li:last-child { border-bottom: none; }
.safety-list li i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
}

.faq-a { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; }

/* -------- AUTH PAGES -------- */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #0D0917 0%, #1A0828 50%, #0D0917 100%);
}

.auth-page .site-header { background: rgba(13,9,23,0.98); }

.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  overflow: hidden;
}

.auth-card-head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 28px 30px 24px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-card-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.1), transparent);
}

.auth-card-head h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; position: relative; z-index: 1; }
.auth-card-head p { font-size: 0.84rem; opacity: 0.88; position: relative; z-index: 1; }

.auth-card-body { padding: 28px 30px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

.password-field { position: relative; }
.password-field input { padding-right: 44px; }

.toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
}

.toggle-pw:hover { color: var(--primary); }

.submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 6px;
  box-shadow: 0 4px 16px rgba(232,24,90,0.4);
}

.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(232,24,90,0.55); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.auth-footer-link {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 18px;
}

.auth-footer-link a { color: var(--primary-light); font-weight: 600; }

/* -------- DASHBOARD -------- */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: var(--bg-dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(232,24,90,0.15);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 20px 18px;
  border-bottom: 1px solid rgba(232,24,90,0.15);
}

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

.sidebar-logo p { font-size: 0.72rem; color: var(--text-light); margin-top: 3px; }

.sidebar-nav { flex: 1; padding: 14px 10px; }

.sidebar-section-label {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  padding: 10px 8px 6px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--t);
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  text-decoration: none;
}

.sidebar-link:hover { background: rgba(232,24,90,0.1); color: var(--text); }
.sidebar-link.active { background: var(--primary); color: #fff; font-weight: 700; }
.sidebar-link i { width: 16px; text-align: center; }

.main-content {
  flex: 1;
  background: var(--bg);
  overflow-x: hidden;
}

.content-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 14px;
}

.content-header h1 { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.content-header p { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.content-body { padding: 24px; }

/* Stats cards */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.stat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-icon-primary { background: var(--primary-soft); color: var(--primary); }
.stat-icon-gold    { background: var(--gold-soft); color: var(--gold); }
.stat-icon-blue    { background: rgba(96,165,250,0.15); color: #60A5FA; }
.stat-icon-green   { background: rgba(74,222,128,0.12); color: #4ade80; }

.stat-info { flex: 1; min-width: 0; }
.stat-value { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--text); }
.stat-label { font-size: 0.74rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* Table */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.data-table th {
  padding: 11px 14px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.data-table tr:hover td { background: rgba(232,24,90,0.05); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

/* Pills/badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge-vvip    { background: var(--tier-vvip-bg);    color: var(--tier-vvip);    border: 1px solid var(--tier-vvip-border); }
.badge-vip     { background: var(--tier-vip-bg);     color: var(--tier-vip);     border: 1px solid var(--tier-vip-border); }
.badge-premier { background: var(--tier-premier-bg); color: var(--tier-premier); border: 1px solid var(--tier-premier-border); }
.badge-basic   { background: var(--tier-basic-bg);   color: var(--tier-basic);   border: 1px solid var(--tier-basic-border); }
.badge-active  { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.badge-expired { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border); }
.badge-none    { background: rgba(240,180,41,0.1); color: var(--gold); border: 1px solid rgba(240,180,41,0.25); }

/* Mobile sidebar */
@media (max-width: 768px) {
  .dashboard-layout { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: relative; }
  .sidebar-nav { display: none; }
  .sidebar-nav.open { display: block; }
  .content-body { padding: 16px; }
}

/* -------- BREADCRUMB -------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--primary-light); font-weight: 600; cursor: pointer; }
.breadcrumb i { font-size: 0.6rem; }

/* -------- UTILITY -------- */
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.text-gold    { color: var(--gold); }
.font-bold    { font-weight: 700; }
.font-800     { font-weight: 800; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* -------- THEME TOGGLE BUTTON -------- */
.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: var(--primary-mid);
  transform: rotate(20deg);
}

/* -------- LIGHT MODE OVERRIDES -------- */
[data-theme="light"] {
  /* Backgrounds */
  --bg:             #F8F4FF;
  --bg-card:        #FFFFFF;
  --bg-card-2:      #F2EEF9;
  --bg-input:       #F5F1FB;

  /* Text */
  --text:           #1A1228;
  --text-secondary: #4A3D62;
  --text-muted:     #8A7FAA;
  --text-light:     #B8B0D0;

  /* Borders */
  --border:         rgba(0,0,0,0.1);
  --border-strong:  rgba(0,0,0,0.18);

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.09);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.16);
  --shadow-card:  0 4px 20px rgba(232,24,90,0.05);
  --shadow-hover: 0 14px 44px rgba(232,24,90,0.14);
}

/* Light mode — header keeps its dark glass look for brand consistency */
[data-theme="light"] .site-header {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

[data-theme="light"] .nav-city-link { color: #4A3D62; }
[data-theme="light"] .nav-city-link:hover,
[data-theme="light"] .nav-city-link.active { background: var(--primary-soft); color: var(--primary); }

[data-theme="light"] .logo-area span { color: #8A7FAA; }

[data-theme="light"] .mobile-menu-btn { color: var(--primary); }

[data-theme="light"] .header-nav {
  background: rgba(255,255,255,0.98);
  border-top-color: rgba(0,0,0,0.08);
}

/* Light mode — content cards */
[data-theme="light"] .profile-card {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

[data-theme="light"] .loc-browser,
[data-theme="light"] .filter-bar,
[data-theme="light"] .spa-card,
[data-theme="light"] .seo-card,
[data-theme="light"] .content-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .trust-item,
[data-theme="light"] .stat-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .loc-browser-top,
[data-theme="light"] .location-panel-header {
  background: #F5F1FB;
}

[data-theme="light"] .loc-breadcrumb {
  background: rgba(232,24,90,0.04);
  color: #4A3D62;
}

/* Light mode — modal */
[data-theme="light"] .modal-box {
  background: #FFFFFF;
}

[data-theme="light"] .modal-details,
[data-theme="light"] .media-gallery-grid {
  background: #F5F1FB;
}

[data-theme="light"] .detail-label { color: #8A7FAA; }
[data-theme="light"] .detail-value { color: #4A3D62; }

[data-theme="light"] .modal-contact-actions {
  background: #F2EEF9;
  border-top-color: rgba(0,0,0,0.08);
}

/* Light mode — filter reset button */
[data-theme="light"] .filter-reset {
  background: #F2EEF9;
  color: #4A3D62;
  border-color: rgba(0,0,0,0.12);
}

/* Light mode — scam button */
[data-theme="light"] .scam-btn {
  background: rgba(255,255,255,0.95);
  color: #92700A;
  border-color: rgba(240,180,41,0.4);
}

[data-theme="light"] .scam-tooltip {
  background: #FFFFFF;
  color: #4A3D62;
  border-color: rgba(0,0,0,0.1);
}

/* Light mode — toasts */
[data-theme="light"] .toast {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .toast-title { color: #1A1228; }

/* Light mode — dashboard stays usable */
[data-theme="light"] .sidebar { background: #1A1228; }
[data-theme="light"] .main-content { background: #F8F4FF; }
[data-theme="light"] .content-header { background: #FFFFFF; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .content-body { background: #F8F4FF; }
[data-theme="light"] .table-wrap { background: #FFFFFF; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .data-table th { background: #F5F1FB; color: #8A7FAA; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .data-table td { color: #4A3D62; border-color: rgba(0,0,0,0.07); }
[data-theme="light"] .data-table tr:hover td { background: rgba(232,24,90,0.04); }

/* Light mode — theme toggle button */
[data-theme="light"] .theme-toggle-btn {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.15);
  color: #4A3D62;
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

/* Light mode — auth pages */
[data-theme="light"] .auth-page {
  background: linear-gradient(135deg, #F0E8FF 0%, #FCE4EF 50%, #F0E8FF 100%);
}

[data-theme="light"] .auth-card { background: #FFFFFF; }
[data-theme="light"] .auth-card-body { background: #FFFFFF; }
