/* ========== CSS VARIABLES ========== */
:root {
  --bg-primary: #0a0a1a;
  --bg-secondary: #12122a;
  --bg-card: rgba(255,255,255,0.04);
  --bg-glass: rgba(255,255,255,0.06);
  --border-glass: rgba(255,255,255,0.08);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.35);
  --accent: #a855f7;
  --accent-light: #c084fc;
  --accent-dark: #7c3aed;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --gradient-3: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --gradient-hero: linear-gradient(160deg, #1a1a3e 0%, #2d1b69 40%, #4c1d95 70%, #7c3aed 100%);
  --gradient-card: linear-gradient(135deg, rgba(168,85,247,0.15) 0%, rgba(236,72,153,0.08) 100%);
  --shadow-glow: 0 0 30px rgba(168,85,247,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --header-h: 56px;
  --nav-h: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-light); text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: var(--font); }
ul { list-style: none; }

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

/* ========== ANIMATED BG ========== */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 20% 50%, rgba(168,85,247,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(236,72,153,0.05) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes bgFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -2%) rotate(1deg); }
  66% { transform: translate(-1%, 1%) rotate(-0.5deg); }
}

/* ========== GLASS CARD ========== */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ========== HEADER ========== */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: rgba(10,10,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
}
.back-btn {
  position: absolute;
  left: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-primary);
  transition: background 0.2s;
}
.back-btn:active { background: rgba(255,255,255,0.1); }
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  font-size: 20px;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.header-city {
  position: absolute;
  right: 12px;
  font-size: 12px;
  color: var(--accent-light);
  padding: 4px 10px;
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-city:empty { display: none; }
.header-city:active { background: rgba(168,85,247,0.15); }

/* ========== MAIN ========== */
.app-main {
  flex: 1;
  padding-top: var(--header-h);
  padding-bottom: calc(var(--nav-h) + var(--safe-bottom));
  position: relative;
  z-index: 1;
}
.page {
  display: none;
  padding: 16px;
}
.page.active { display: block; }

/* ========== HERO ========== */
/* ========== MAIN PAGE (REDESIGNED) ========== */
.main-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  margin-bottom: 16px;
  cursor: pointer;
}
.main-search-icon { font-size: 16px; opacity: 0.5; }
.main-search-text { font-size: 14px; color: var(--text-muted); }

/* hero banner */
.hero-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 150px;
  margin-bottom: 14px;
}
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-slide-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.hero-slide-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 6px;
  line-height: 1.2;
}
.hero-slide-title.large {
  font-size: 42px;
  letter-spacing: -1px;
  margin-top: 4px;
}
.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.hero-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

/* Slide gradient themes */
.hero-slide.theme-0 .hero-slide-bg { background: linear-gradient(135deg, #1a0a2e 0%, #16213e 30%, #0f3460 60%, #e94560 100%); }
.hero-slide.theme-0 .hero-slide-bg::after { background: radial-gradient(circle at 80% 50%, rgba(233,69,96,0.4), transparent 60%); }
.hero-slide.theme-1 .hero-slide-bg { background: linear-gradient(135deg, #0a1628 0%, #1a2744 30%, #2d4a7a 60%, #a855f7 100%); }
.hero-slide.theme-1 .hero-slide-bg::after { background: radial-gradient(circle at 75% 45%, rgba(168,85,247,0.35), transparent 60%); }
.hero-slide.theme-2 .hero-slide-bg { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 30%, #155e75 60%, #06b6d4 100%); }
.hero-slide.theme-2 .hero-slide-bg::after { background: radial-gradient(circle at 80% 50%, rgba(6,182,212,0.35), transparent 60%); }
.hero-slide.theme-3 .hero-slide-bg { background: linear-gradient(135deg, #1a0a1e 0%, #2d1b3e 30%, #5b2c6f 60%, #ec4899 100%); }
.hero-slide.theme-3 .hero-slide-bg::after { background: radial-gradient(circle at 75% 45%, rgba(236,72,153,0.4), transparent 60%); }
.hero-slide.theme-4 .hero-slide-bg { background: linear-gradient(135deg, #0c1a0c 0%, #1a3a1a 30%, #2d6a4f 60%, #40916c 100%); }
.hero-slide.theme-4 .hero-slide-bg::after { background: radial-gradient(circle at 80% 50%, rgba(64,145,108,0.35), transparent 60%); }

/* promo banner */
.promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.promo-banner::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
}
.promo-banner-left { position: relative; z-index: 1; }
.promo-banner-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.promo-banner-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.promo-banner-logo {
  font-size: 20px;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}
.promo-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.promo-banner-timer {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  padding: 3px 10px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
}

/* Promo popup overlay — removed, using topup bonus card instead */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Topup bonus card */
.topup-bonus-card {
  padding: 16px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(168,85,247,0.3);
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(236,72,153,0.08));
}
.topup-bonus-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topup-bonus-icon {
  font-size: 28px;
}
.topup-bonus-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.topup-bonus-pct {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.topup-bonus-label {
  font-size: 12px;
  color: var(--text-secondary);
}
.topup-bonus-timer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.topup-bonus-timer-label {
  font-size: 10px;
  color: var(--text-secondary);
}
.topup-bonus-timer {
  font-size: 16px;
  font-weight: 700;
  color: #a855f7;
  font-variant-numeric: tabular-nums;
}
.topup-bonus-calc {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}
.topup-bonus-calc.visible {
  display: block;
}
.topup-bonus-calc .bonus-amount {
  color: #22c55e;
  font-weight: 700;
}
.topup-bonus-calc .total-amount {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.topup-bonus-activate-btn {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(168,85,247,0.4);
  background: rgba(168,85,247,0.15);
  color: #c084fc;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.topup-bonus-activate-btn:active {
  background: rgba(168,85,247,0.3);
}
.topup-bonus-activate-btn.activated {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.4);
  color: #22c55e;
  pointer-events: none;
}

.topup-total-info {
  padding: 10px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 14px;
  color: #22c55e;
  font-weight: 600;
  text-align: center;
  display: none;
}
.topup-total-info.visible {
  display: block;
}

/* section headers */
.main-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.main-section-header h3 {
  font-size: 18px;
  font-weight: 700;
}
.main-section-link {
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

/* models preview grid */
.models-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.model-preview-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: transform 0.15s;
  contain: content;
}
.model-preview-card:active { transform: scale(0.97); }
.model-preview-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: linear-gradient(110deg, rgba(255,255,255,0.03) 30%, rgba(168,85,247,0.08) 50%, rgba(255,255,255,0.03) 70%);
  background-size: 200% 100%;
  animation: imgShimmer 1.5s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  image-rendering: auto;
  content-visibility: auto;
}
.model-preview-img.loaded {
  opacity: 1;
  animation: none;
  background: none;
}
@keyframes imgShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.model-preview-info {
  padding: 10px 12px;
}
.model-preview-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.model-preview-meta {
  font-size: 12px;
  color: var(--text-secondary);
}
.model-preview-price {
  font-size: 13px;
  font-weight: 700;
  color: #ec4899;
  margin-top: 4px;
}

/* ========== PROFILE ========== */
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--gradient-2);
  opacity: 0.15;
}
.profile-avatar {
  position: relative;
  margin-bottom: 12px;
}
.avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.status-badge {
  position: absolute;
  bottom: -2px;
  right: -6px;
  background: var(--gradient-2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.profile-info { text-align: center; }
.profile-info h2 { font-size: 20px; font-weight: 700; }
.profile-id {
  font-size: 13px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.stat-card {
  padding: 14px 8px;
  text-align: center;
}
.stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.profile-reg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.reg-label { font-size: 13px; color: var(--text-secondary); }
.reg-value { font-size: 13px; font-weight: 600; }

.profile-actions { display: flex; flex-direction: column; gap: 8px; }
.action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.action-btn:active { background: rgba(255,255,255,0.1); }
.action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(244,114,182,0.2));
  color: var(--accent-light);
  flex-shrink: 0;
}
.action-icon svg { width: 20px; height: 20px; }

/* ========== SECTION HEADER ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.section-header h2 {
  font-size: 22px;
  font-weight: 700;
}
.section-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.city-tag {
  font-size: 12px;
  color: var(--accent-light);
  padding: 4px 10px;
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 20px;
}

/* ========== MODELS LIST ========== */
.models-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.model-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.model-item:active { background: rgba(255,255,255,0.08); }
.model-item::after {
  content: '→';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
}
.model-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  image-rendering: auto;
  content-visibility: auto;
}
.model-thumb-placeholder {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.model-brief {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.model-brief-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.model-brief-info {
  font-size: 12px;
  color: var(--text-secondary);
}
.model-brief-price {
  font-size: 13px;
  font-weight: 600;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}

/* ========== MODEL DETAIL ========== */
.model-gallery {
  margin: -16px -16px 0;
  position: relative;
  height: 380px;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: none;
  image-rendering: auto;
  content-visibility: auto;
}
.gallery-img.active { display: block; }
.gallery-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}
.gallery-arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
}
.gallery-arrow {
  flex: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.model-gallery::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--bg-primary));
  pointer-events: none;
}

.model-detail-content { padding-top: 8px; }
.model-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.model-name-row h2 { font-size: 24px; font-weight: 700; }
.verified-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-2);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.model-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(168,85,247,0.12);
  color: var(--accent-light);
  border: 1px solid rgba(168,85,247,0.15);
}

.model-prices {
  padding: 16px;
  margin-bottom: 12px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-glass);
}
.price-row:last-child { border-bottom: none; }
.price-label { font-size: 14px; color: var(--text-secondary); }
.price-value {
  font-size: 16px;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.model-desc {
  padding: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.model-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  background: var(--gradient-2);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-primary:active::after { background: rgba(255,255,255,0.15); }
.btn-primary:active { transform: scale(0.98); }

.btn-danger {
  padding: 14px;
  border-radius: 14px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-danger:active {
  background: rgba(239,68,68,0.25);
}

.btn-outline {
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--accent-light);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(168,85,247,0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:active { background: rgba(168,85,247,0.1); }

/* ========== SERVICES ========== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
}
.service-name { font-size: 14px; }
.service-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
}

/* ========== REVIEWS ========== */
.reviews-rating {
  font-size: 14px;
  color: #fbbf24;
  font-weight: 600;
}
.write-review-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(236,72,153,0.12));
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
}
.write-review-btn:active {
  transform: scale(0.98);
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(236,72,153,0.2));
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-item {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
}
.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.review-author { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-stars { color: #fbbf24; font-size: 12px; margin-bottom: 6px; }
.review-body { font-size: 13px; line-height: 1.5; color: var(--text-secondary); }

.reviews-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.pager-btn {
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}
.pager-btn:active { background: rgba(255,255,255,0.1); }
.pager-btn.active {
  background: var(--gradient-2);
  border-color: transparent;
}

/* ========== ORDER FLOW (NEW) ========== */
.order-model-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}
.order-model-name {
  font-size: 22px;
  font-weight: 700;
}
.order-model-city {
  font-size: 13px;
  color: var(--text-secondary);
}

.order-section-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.order-section-title {
  font-size: 18px;
  font-weight: 600;
}
.order-from-price {
  font-size: 14px;
  color: #ec4899;
  font-weight: 500;
}

/* day/night toggle */
.day-night-toggle {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 3px;
  margin-bottom: 16px;
  border: 1px solid var(--border-glass);
}
.dn-btn {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.25s;
  color: var(--text-secondary);
}
.dn-btn.active {
  background: #fff;
  color: #0a0a1a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* chips scroll row */
.chips-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
}
.chips-scroll::-webkit-scrollbar { display: none; }
.chips-scroll > * { scroll-snap-align: start; }

/* duration chip */
.dur-chip {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border-glass);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 90px;
}
.dur-chip .dur-label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}
.dur-chip .dur-price {
  font-size: 11px;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
  white-space: nowrap;
}
.dur-chip.active {
  background: #ec4899;
  border-color: #ec4899;
  color: #fff;
}
.dur-chip.active .dur-price {
  color: rgba(255,255,255,0.85);
}

/* date chip */
.date-chip {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border-glass);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 72px;
}
.date-chip .date-main {
  font-size: 13px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}
.date-chip .date-dow {
  font-size: 11px;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
}
.date-chip.active {
  background: #ec4899;
  border-color: #ec4899;
  color: #fff;
}
.date-chip.active .date-dow {
  color: rgba(255,255,255,0.85);
}

/* time chip */
.time-chip {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border-glass);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 60px;
  text-align: center;
}
.time-chip.active {
  background: #ec4899;
  border-color: #ec4899;
  color: #fff;
}
.time-chip.busy {
  opacity: 0.3;
  pointer-events: none;
  text-decoration: line-through;
}

/* parameters header */
.order-params-header {
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0 12px;
}

/* order summary (bottom) */
.order-summary {
  margin-top: 20px;
  padding: 18px 16px 16px;
  border-radius: 20px;
  position: sticky;
  bottom: calc(var(--nav-h) + var(--safe-bottom) + 8px);
  z-index: 10;
  background: var(--bg-primary) !important;
  border: 1px solid var(--border-glass);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  pointer-events: none;
}
.order-summary.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.summary-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.summary-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.summary-reset {
  font-size: 13px;
  color: #3b82f6;
  cursor: pointer;
  font-weight: 500;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.summary-datetime {
  font-size: 15px;
  font-weight: 600;
}
.summary-price {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* crypto discount banner */
.crypto-discount-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(52,211,153,0.15), rgba(16,185,129,0.08));
  border: 1px solid rgba(52,211,153,0.25);
  font-size: 12px;
  font-weight: 500;
  color: #6ee7b7;
  margin-bottom: 14px;
}
.crypto-info-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(52,211,153,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #6ee7b7;
  flex-shrink: 0;
}

/* submit order button */
.btn-order-submit {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
  transition: transform 0.15s;
}
.btn-order-submit:active {
  transform: scale(0.97);
}

/* keep existing tariff & extra-service styles for regular flow */
.tariffs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.tariff-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 16px;
  border-radius: var(--radius);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.25s;
}
.tariff-card:active, .tariff-card.selected {
  border-color: var(--accent);
  background: rgba(168,85,247,0.1);
}
.tariff-label { font-size: 15px; font-weight: 500; }
.tariff-price {
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.extra-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.extra-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.2s;
}
.extra-service-item.selected {
  border-color: var(--accent);
  background: rgba(168,85,247,0.1);
}
.extra-service-item .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s;
  margin-right: 12px;
  flex-shrink: 0;
}
.extra-service-item.selected .check-icon {
  background: var(--gradient-2);
  border-color: transparent;
  color: #fff;
}
.extra-left { display: flex; align-items: center; }

/* rules card (regular order flow) */
.rules-card { padding: 20px; }
.rules-card h3 { margin-bottom: 14px; font-size: 16px; }
.rules-card ul { padding-left: 0; list-style: none; }
.rules-card li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 4px 0 4px 20px;
  position: relative;
}
.rules-card li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--accent-light);
}

/* ========== PAYMENT ========== */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: left;
  width: 100%;
}
.payment-card:active:not(.disabled) {
  border-color: var(--accent);
  background: rgba(168,85,247,0.1);
}
.payment-card.disabled,
.payment-card.payment-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.pay-locked { color: #f87171 !important; font-style: italic; }
.pay-icon { font-size: 28px; }
.payment-card strong { font-size: 14px; display: block; }
.payment-card small { font-size: 12px; color: var(--text-secondary); }

.send-receipt-btn {
  display: block;
  margin-top: 16px;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity .2s;
}
.send-receipt-btn:active { opacity: .75; }

.payment-detail {
  padding: 20px;
  margin-bottom: 16px;
}
.payment-detail h3 { margin-bottom: 12px; }
.payment-detail .pay-field {
  margin-bottom: 12px;
}
.payment-detail .pay-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.payment-detail .pay-value {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-xs);
  cursor: pointer;
  user-select: all;
  word-break: break-all;
}
.payment-upload {
  text-align: center;
}
.payment-upload p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ========== SEARCH (ENHANCED) ========== */
.search-top-bar {
  display: flex;
  gap: 8px;
  padding: 6px;
  margin-bottom: 16px;
}
.search-top-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  padding: 10px 12px;
}
.search-top-bar input::placeholder { color: var(--text-muted); }
.search-submit {
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  background: var(--gradient-2);
  font-size: 16px;
}

/* search service categories */
.search-categories {
  margin-bottom: 16px;
}
.search-cat-group {
  margin-bottom: 12px;
}
.search-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.search-cat-title .scat-icon { font-size: 16px; }
.search-svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-chip {
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.svc-chip:active {
  background: rgba(168,85,247,0.15);
  border-color: var(--accent);
  color: var(--accent-light);
}
.svc-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 12px rgba(168,85,247,0.4);
}

/* search services button */
.search-services-btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin: 12px 0 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #ec4899);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.search-services-btn:active { opacity: 0.85; }

/* search result models */
.search-model-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.15s;
}
.search-model-card:active { transform: scale(0.98); }
.search-model-thumb {
  width: 70px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
}
.search-model-thumb-placeholder {
  width: 70px;
  height: 90px;
  border-radius: 10px;
  background: rgba(168,85,247,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.search-model-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.search-model-name { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.search-model-meta { font-size: 12px; color: var(--text-secondary); margin-bottom: 4px; }
.search-model-price { font-size: 14px; font-weight: 700; color: #ec4899; }
.search-model-arrow {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  opacity: 0.5;
}
.search-model-services {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.search-svc-tag {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(168,85,247,0.1);
  font-size: 10px;
  color: var(--accent-light);
}
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ========== PROMO ========== */
.promo-box {
  padding: 20px;
  margin-bottom: 16px;
}
.promo-box input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs);
  color: var(--text-primary);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.promo-box input:focus { border-color: var(--accent); }
.promo-result {
  text-align: center;
  padding: 12px;
  font-size: 14px;
}
.promo-result.success { color: #34d399; }
.promo-result.error { color: #f87171; }

/* ========== TOPUP ========== */
.topup-box {
  padding: 20px;
}
.topup-box label {
  font-size: 14px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 8px;
}
.topup-box input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs);
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  padding: 14px;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.topup-box input:focus { border-color: var(--accent); }
.topup-box input::-webkit-outer-spin-button,
.topup-box input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.topup-box input[type=number] { -moz-appearance: textfield; }
.topup-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.topup-presets button {
  padding: 10px;
  border-radius: var(--radius-xs);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.topup-presets button:active { background: rgba(168,85,247,0.2); }

/* ========== ORDERS ========== */
.empty-state-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  text-align: center;
}
.empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state-box p { font-size: 14px; color: var(--text-secondary); }

/* ========== CITY ========== */
.city-search {
  padding: 6px;
  margin-bottom: 12px;
}
.city-search input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  padding: 10px 12px;
}
.city-search input::placeholder { color: var(--text-muted); }
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-btn {
  padding: 10px 16px;
  border-radius: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}
.city-btn:active { background: rgba(168,85,247,0.15); }
.city-btn.active-city {
  background: var(--gradient-2);
  border-color: transparent;
  font-weight: 600;
}

/* ========== INFO ========== */
.info-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.2s;
}
.info-link:active { background: rgba(255,255,255,0.08); }
.info-link span { font-size: 20px; }

/* ========== FORM ========== */
.form-card {
  padding: 24px;
  text-align: center;
}
.form-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ========== BOTTOM NAV ========== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--nav-h);
  padding-bottom: var(--safe-bottom);
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(10,10,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  z-index: 100;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-item span { font-size: 11px; font-weight: 500; }
.nav-item svg { width: 22px; height: 22px; }
.nav-item.active { color: var(--accent-light); }
.nav-item.active::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-2);
  border-radius: 1px;
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: calc(var(--nav-h) + 24px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: rgba(168,85,247,0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ========== LOADER ========== */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
}
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* ========== WELCOME SCREEN ========== */
.welcome-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 0;
  min-height: calc(100vh - var(--header-h) - var(--nav-h) - 32px);
}
.welcome-logo {
  margin-bottom: 16px;
}
.welcome-logo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  box-shadow: 0 0 40px rgba(168,85,247,0.35), 0 0 80px rgba(168,85,247,0.15);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(168,85,247,0.35), 0 0 80px rgba(168,85,247,0.15); }
  50% { box-shadow: 0 0 50px rgba(168,85,247,0.5), 0 0 100px rgba(168,85,247,0.25); }
}
.welcome-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.welcome-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.welcome-divider {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient-2);
  margin-bottom: 20px;
}
.welcome-desc {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}
.welcome-city-search {
  width: 100%;
  padding: 6px;
  margin-bottom: 14px;
}
.welcome-city-search input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  padding: 10px 12px;
}
.welcome-city-search input::placeholder { color: var(--text-muted); }
.welcome-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.welcome-city-list .city-btn {
  padding: 10px 18px;
  font-size: 14px;
}

/* ========== USER CITIES (city page) ========== */
.user-cities {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.user-city-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.2s;
}
.user-city-item.active {
  border-color: var(--accent);
  background: rgba(168,85,247,0.1);
}
.user-city-item:active { background: rgba(255,255,255,0.08); }
.user-city-name { font-size: 15px; font-weight: 500; }
.user-city-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 10px;
  background: var(--gradient-2);
  color: #fff;
  font-weight: 600;
}
.city-divider-line {
  width: 100%;
  height: 1px;
  background: var(--border-glass);
  margin: 4px 0;
}

/* ===== FLOATING SUPPORT BUTTON ===== */
.support-fab {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.45);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: fabPulse 3s ease-in-out infinite;
}
.support-fab:active {
  transform: scale(0.92);
}
.support-fab svg {
  width: 24px;
  height: 24px;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(139,92,246,0.45); }
  50% { box-shadow: 0 4px 30px rgba(139,92,246,0.7); }
}

/* ===== INFO PAGE ===== */
#page-info .section-header {
  margin-bottom: 16px;
}
#page-info .section-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.info-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.info-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  transition: background 0.2s, transform 0.15s;
}
.info-menu-item:active {
  transform: scale(0.98);
}
.info-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(244,114,182,0.15));
  color: var(--accent-light);
  flex-shrink: 0;
}
.info-menu-text {
  flex: 1;
  font-weight: 500;
}
.info-menu-arrow {
  font-size: 22px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.info-menu-item.active .info-menu-arrow {
  transform: rotate(90deg);
  color: var(--accent-primary);
}
.info-section {
  display: none;
  margin-bottom: 12px;
  animation: infoSlideIn 0.3s ease;
}
.info-section.active {
  display: block;
}
@keyframes infoSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.info-content {
  padding: 18px;
}
.info-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.info-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 10px;
}
.info-content strong {
  color: var(--text-primary);
}
.info-content ul {
  margin: 8px 0 14px 0;
  padding-left: 20px;
}
.info-content ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 4px;
}
.info-support-buttons {
  margin: 14px 0;
}
.info-support-buttons .btn-primary {
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 14px;
}

/* FAQ items */
.faq-item {
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-q {
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-bottom: 4px !important;
}
.faq-a {
  color: var(--text-secondary) !important;
}

/* ========== FILTERS & SORT BAR ========== */
.catalog-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.catalog-toolbar::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-chip.active {
  background: rgba(168,85,247,0.2);
  border-color: var(--accent);
  color: var(--accent-light);
}
.filter-dropdown {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  animation: fadeIn 0.2s;
}
.filter-dropdown-content {
  width: 100%;
  max-width: 480px;
  background: var(--bg-secondary);
  border-radius: 20px 20px 0 0;
  padding: 24px 20px calc(20px + var(--safe-bottom));
  max-height: 70vh;
  overflow-y: auto;
}
.filter-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.filter-dropdown-header h3 { font-size: 18px; font-weight: 700; }
.filter-dropdown-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}
.filter-group { margin-bottom: 16px; }
.filter-group label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
}
.filter-range {
  display: flex;
  gap: 8px;
  align-items: center;
}
.filter-range input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 14px;
  text-align: center;
}
.filter-range span {
  color: var(--text-muted);
  font-size: 13px;
}
.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.filter-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}
.filter-apply {
  background: var(--gradient-2);
  color: #fff;
}
.filter-reset {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
}

/* ========== FAVORITE HEART ========== */
.fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.2s;
}
.fav-btn:active { transform: scale(0.85); }
.fav-btn svg { width: 18px; height: 18px; }
.fav-btn.active svg { fill: #f43f5e; stroke: #f43f5e; }
.model-preview-card { position: relative; }
.model-item { position: relative; }

/* Inline heart button next to name */
.model-preview-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.fav-btn-inline {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.2s;
  color: var(--text-secondary);
}
.fav-btn-inline:active { transform: scale(0.8); }
.fav-btn-inline svg { width: 16px; height: 16px; }
.fav-btn-inline.active svg { fill: #f43f5e; stroke: #f43f5e; }

/* Online indicator next to name */
.online-indicator {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 600;
  color: #10b981;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.3px;
}
.online-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 4px rgba(16,185,129,0.6);
  animation: badgePulse 2s infinite;
}

/* New! label next to name in list view */
.new-label {
  color: #a855f7;
  font-size: 11px;
  font-weight: 700;
  margin-left: 5px;
}
.fav-btn-list {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(168,85,247,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.fav-btn-list:active { transform: translateY(-50%) scale(0.85); }
.fav-btn-list svg { width: 16px; height: 16px; }
.fav-btn-list.active svg { fill: #f43f5e; stroke: #f43f5e; }

/* ========== MODEL BADGES ========== */
.model-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 4;
}

/* City filter tabs on favorites page */
.fav-city-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  margin-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fav-city-tabs::-webkit-scrollbar { display: none; }
.fav-city-tab {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.fav-city-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border-color: transparent;
}
.fav-city-tab:active { transform: scale(0.95); }
.fav-city-group-header {
  grid-column: 1/-1;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 0 2px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fav-city-group-header .city-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.badge-new {
  background: rgba(168,85,247,0.9);
  color: #fff;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ========== SKELETON LOADING ========== */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}
.skeleton-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-text {
  height: 12px;
  border-radius: 6px;
  margin: 8px 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-text.short { width: 60%; }
.skeleton-text.price { width: 40%; margin-top: 4px; }

/* skeleton for list items */
.skeleton-list-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
}
.skeleton-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.skeleton-line {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-line:nth-child(1) { width: 50%; }
.skeleton-line:nth-child(2) { width: 70%; }
.skeleton-line:nth-child(3) { width: 35%; }

/* ========== PAGE TRANSITIONS ========== */
@keyframes pageSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pageSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-30px); }
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.page.slide-in {
  animation: pageSlideIn 0.25s ease forwards;
}
.page.slide-back {
  animation: pageSlideIn 0.25s ease forwards;
}
@keyframes pageSlideBack {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.page.slide-back {
  animation: pageSlideBack 0.25s ease forwards;
}

/* ========== ORDER STATUS ANIMATION ========== */
.order-status-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,26,0.95);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.order-status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: statusPulse 1.5s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(168,85,247,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(168,85,247,0.2); }
}
.order-status-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.order-status-sub {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 280px;
  line-height: 1.5;
}
.order-progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}
.order-progress-fill {
  height: 100%;
  background: var(--gradient-2);
  border-radius: 2px;
  animation: progressFill 3s ease-in-out forwards;
}
@keyframes progressFill {
  0% { width: 0; }
  30% { width: 40%; }
  60% { width: 70%; }
  90% { width: 90%; }
  100% { width: 100%; }
}
.order-status-check {
  animation: checkPop 0.4s ease;
}
@keyframes checkPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.order-status-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 240px;
}
.order-status-actions .btn-primary {
  width: 100%;
}

/* ========== SORT DROPDOWN ========== */
.sort-select {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.sort-select svg {
  width: 12px;
  height: 12px;
}

/* ========== PHOTO VIEWER (FULLSCREEN LIGHTBOX) ========== */
.photo-viewer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.photo-viewer.active {
  display: flex;
  animation: photoViewerFadeIn 0.25s ease-out forwards;
}
.photo-viewer.closing {
  animation: photoViewerFadeOut 0.2s ease-in forwards;
}
@keyframes photoViewerFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes photoViewerFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.photo-viewer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 10;
  transition: background 0.2s;
}
.photo-viewer-close:active {
  background: rgba(255,255,255,0.2);
}
.photo-viewer-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
}
.photo-viewer-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
}
.photo-viewer-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.15s ease-out;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0;
}
.photo-viewer.active .photo-viewer-img {
  animation: photoImgZoomIn 0.3s ease-out 0.05s forwards;
}
.photo-viewer.closing .photo-viewer-img {
  animation: photoImgZoomOut 0.2s ease-in forwards;
}
@keyframes photoImgZoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes photoImgZoomOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.85); }
}
.photo-viewer-prev,
.photo-viewer-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  z-index: 10;
  transition: color 0.2s;
}
.photo-viewer-prev { left: 8px; }
.photo-viewer-next { right: 8px; }
.photo-viewer-prev:active,
.photo-viewer-next:active {
  color: #fff;
}


/* ========== ANTI-BOT VERIFY SCREEN ========== */
.verify-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.verify-overlay.verified {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}
.verify-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px 28px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.1);
  max-width: 340px;
  width: 85vw;
  animation: verifyCardAppear 0.6s ease-out;
}
@keyframes verifyCardAppear {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.verify-shield {
  margin-bottom: 20px;
  animation: verifyShieldPulse 2s ease-in-out infinite;
}
@keyframes verifyShieldPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(139,92,246,0.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 16px rgba(139,92,246,0.5)); }
}
.verify-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.verify-sub {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin: 0 0 28px;
}
.verify-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 24px;
}
.verify-checkbox-wrap:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(139,92,246,0.4);
}
.verify-checkbox-wrap.checking {
  border-color: rgba(139,92,246,0.5);
  box-shadow: 0 0 20px rgba(139,92,246,0.15);
  pointer-events: none;
}
.verify-checkbox-wrap.verified {
  border-color: rgba(34,197,94,0.5);
  box-shadow: 0 0 20px rgba(34,197,94,0.15);
  pointer-events: none;
}
.verify-checkbox {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}
.verify-checkbox-wrap.checking .verify-checkbox {
  border-color: rgba(139,92,246,0.6);
}
.verify-checkbox-wrap.verified .verify-checkbox {
  border-color: #22c55e;
  background: rgba(34,197,94,0.15);
}
.verify-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(139,92,246,0.3);
  border-top-color: #8b5cf6;
  border-radius: 50%;
  animation: verifySpinnerAnim 0.7s linear infinite;
}
.verify-checkbox-wrap.checking .verify-spinner {
  display: block;
}
@keyframes verifySpinnerAnim {
  to { transform: rotate(360deg); }
}
.verify-checkmark {
  display: none;
}
.verify-checkbox-wrap.verified .verify-checkmark {
  display: block;
  animation: verifyCheckPop 0.3s ease-out;
}
@keyframes verifyCheckPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.verify-checkbox-wrap.checking .verify-checkmark,
.verify-checkbox-wrap.verified .verify-spinner {
  display: none;
}
.verify-label {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  user-select: none;
}
.verify-checkbox-wrap.verified .verify-label {
  color: #22c55e;
}
.verify-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.verify-powered {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 0.3px;
}
.verify-dot {
  color: rgba(255,255,255,0.15);
  font-size: 10px;
}

/* Gallery Expand Button */
.gallery-expand-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}
.gallery-expand-btn:active {
  background: rgba(0,0,0,0.7);
  transform: scale(0.95);
}

