/**
 * Pairove Core — Frontend Styles
 */

:root {
  --pairove-primary: #5F259F;
  --pairove-primary-dark: #4A1A7A;
  --pairove-primary-light: #8B5CF6;
  --pairove-accent: #00BAF2;
  --pairove-pink: #EC4899;
  --pairove-gold: #F59E0B;
  --pairove-bg: #FFFFFF;
  --pairove-card: #FAFAFA;
  --pairove-text: #1A1A2E;
  --pairove-muted: #6B7280;
  --pairove-border: rgba(95, 37, 159, 0.18);
  --pairove-shadow: 0 4px 20px rgba(95, 37, 159, 0.12);
  --pairove-radius: 20px;
}

.pairove-app {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--pairove-text);
}

.pairove-app h1 { color: var(--pairove-primary); font-size: 28px; margin-bottom: 20px; }
.pairove-app h2 { color: var(--pairove-primary); font-size: 22px; margin: 20px 0 10px; }
.pairove-app h3 { font-size: 18px; margin: 15px 0 8px; }

/* ==================== BUTTONS ==================== */
.pairove-btn-primary {
  background: linear-gradient(135deg, var(--pairove-primary) 0%, var(--pairove-primary-light) 100%);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--pairove-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.pairove-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(95, 37, 159, 0.24); }

.pairove-btn-ghost {
  background: transparent;
  color: var(--pairove-primary);
  border: 2px solid var(--pairove-primary);
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 10px;
}

/* ==================== SWIPE DECK ==================== */
.pairove-swipe-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pairove-card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 600px;
  margin: 20px auto;
}

.pairove-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: var(--pairove-radius);
  box-shadow: var(--pairove-shadow);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  transition: transform 0.3s ease;
}

.pairove-card:active { cursor: grabbing; }

.pairove-card-photo {
  width: 100%;
  height: 75%;
  object-fit: cover;
  background: #eee;
}

.pairove-card-info {
  padding: 20px;
  background: linear-gradient(to top, #fff 70%, transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--pairove-text);
}

.pairove-card-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.pairove-card-bio {
  font-size: 14px;
  margin: 6px 0 0;
  color: var(--pairove-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pairove-card-badges {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 6px;
}
.pairove-card-badge {
  background: rgba(255,255,255,0.95);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pairove-primary);
}

/* Swipe action labels (drag overlay) */
.pairove-card-label {
  position: absolute;
  top: 40px;
  padding: 10px 20px;
  border: 4px solid;
  border-radius: 12px;
  font-size: 28px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.pairove-card-label.like {
  right: 30px;
  color: #10B981;
  border-color: #10B981;
  transform: rotate(20deg);
}
.pairove-card-label.nope {
  left: 30px;
  color: #EF4444;
  border-color: #EF4444;
  transform: rotate(-20deg);
}

/* ==================== SWIPE ACTIONS ==================== */
.pairove-swipe-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.pairove-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--pairove-shadow);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pairove-btn:hover { transform: scale(1.1); }
.pairove-btn:active { transform: scale(0.95); }

.pairove-btn-pass { color: #EF4444; }
.pairove-btn-superlike { color: var(--pairove-accent); }
.pairove-btn-like {
  color: #10B981;
  width: 72px;
  height: 72px;
  font-size: 32px;
}
.pairove-btn-boost { color: var(--pairove-gold); }

/* ==================== MODAL ==================== */
.pairove-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 20, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pairove-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: var(--pairove-radius);
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 60px rgba(0,0,0,0.3);
}

.pairove-match-content h2 {
  background: linear-gradient(135deg, var(--pairove-primary), var(--pairove-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  margin: 0 0 20px;
}

.pairove-match-photos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
.pairove-match-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pairove-primary);
}

/* ==================== MATCHES GRID ==================== */
.pairove-matches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.pairove-match-card {
  background: #fff;
  border-radius: var(--pairove-radius);
  overflow: hidden;
  box-shadow: var(--pairove-shadow);
  transition: transform 0.2s;
}
.pairove-match-card:hover { transform: translateY(-4px); }
.pairove-match-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.pairove-match-info {
  padding: 12px;
}
.pairove-match-info h3 {
  margin: 0;
  font-size: 16px;
}
.pairove-match-info p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--pairove-muted);
}

/* ==================== PROFILE PAGE ==================== */
.pairove-profile-header {
  text-align: center;
  padding: 20px;
}
.pairove-profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pairove-primary);
  margin-bottom: 15px;
}
.pairove-profile-score {
  background: linear-gradient(135deg, var(--pairove-primary), var(--pairove-pink));
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
}
.pairove-verified-badge {
  background: var(--pairove-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  margin-left: 8px;
}

.pairove-profile-stats {
  display: flex;
  justify-content: space-around;
  background: var(--pairove-card);
  border-radius: var(--pairove-radius);
  padding: 20px;
  margin: 20px 0;
}
.pairove-stat { text-align: center; }
.pairove-stat strong {
  font-size: 24px;
  color: var(--pairove-primary);
  display: block;
}
.pairove-stat span {
  font-size: 12px;
  color: var(--pairove-muted);
  text-transform: uppercase;
}

.pairove-section {
  background: #fff;
  padding: 20px;
  border-radius: var(--pairove-radius);
  margin-bottom: 15px;
  box-shadow: var(--pairove-shadow);
}

.pairove-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pairove-tag {
  background: rgba(95, 37, 159, 0.1);
  color: var(--pairove-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* ==================== EDIT PROFILE ==================== */
.pairove-edit-profile form label {
  display: block;
  margin: 15px 0;
  font-weight: 600;
  color: var(--pairove-text);
}
.pairove-edit-profile input,
.pairove-edit-profile select,
.pairove-edit-profile textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 2px solid var(--pairove-border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
}
.pairove-edit-profile input:focus,
.pairove-edit-profile textarea:focus {
  outline: none;
  border-color: var(--pairove-primary);
}

.pairove-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.pairove-photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
}
.pairove-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pairove-photo-delete {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}
.pairove-photo-pending {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: var(--pairove-gold);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
}
.pairove-photo-upload {
  aspect-ratio: 1;
  border: 2px dashed var(--pairove-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pairove-primary);
  font-size: 14px;
  cursor: pointer;
  background: rgba(95, 37, 159, 0.05);
}

/* ==================== EMPTY STATES ==================== */
.pairove-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--pairove-muted);
}
.pairove-empty p { margin-bottom: 20px; font-size: 18px; }

.pairove-loading {
  text-align: center;
  padding: 100px 20px;
  color: var(--pairove-muted);
}

.pairove-upgrade-prompt {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: var(--pairove-radius);
}
.pairove-upgrade-prompt h2 { color: var(--pairove-gold); }

.pairove-stats-bar {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: var(--pairove-muted);
}

/* ==================== MOBILE ==================== */
@media (max-width: 500px) {
  .pairove-card-stack { height: 70vh; max-width: 100%; }
  .pairove-matches-grid { grid-template-columns: repeat(2, 1fr); }
  .pairove-photos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ v2.0.0 ADDITIONS ============ */

/* Blue verified tick (Tinder/Twitter style) */
.pv-verified-tick {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: #fff; font-size: 12px; font-weight: 800;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
    vertical-align: middle; margin-left: 6px;
}
.pv-badge-verified {
    background: linear-gradient(135deg, #3B82F6, #1E40AF) !important;
    color: #fff !important;
}

/* Mini verification badges (email/phone) */
.pv-mini-badge {
    display: inline-block; padding: 4px 10px; border-radius: 12px;
    font-size: 11px; font-weight: 600; margin: 0 4px;
    background: rgba(16, 185, 129, 0.1); color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Verify CTA Card */
.pv-verify-cta {
    display: flex; align-items: center; gap: 16px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border: 2px solid #3B82F6; border-radius: 16px;
    padding: 20px; margin: 20px 0;
}
.pv-verify-cta-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: #fff; font-size: 24px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pv-verify-cta-text { flex: 1; }
.pv-verify-cta-text strong { display: block; color: #1E40AF; margin-bottom: 4px; }
.pv-verify-cta-text p { margin: 0; font-size: 13px; color: #6B7280; }
.pv-cta-compact { padding: 10px 14px; font-size: 13px; margin: 10px 0; }
.pv-cta-compact a { color: #3B82F6; text-decoration: underline; font-weight: 600; }

/* Taglines Display */
.pv-taglines { display: flex; flex-direction: column; gap: 12px; }
.pv-tagline-item {
    background: linear-gradient(135deg, #FAF5FF, #FDF2F8);
    border-left: 4px solid #5F259F;
    padding: 14px 16px; border-radius: 12px;
}
.pv-tagline-prompt {
    font-size: 12px; font-weight: 700; color: #5F259F;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.pv-tagline-answer {
    font-size: 15px; color: #1A1A2E; line-height: 1.4;
}

/* Tagline on Swipe Card */
.pv-card-taglines { margin-top: 10px; }
.pv-card-tagline {
    background: rgba(255, 255, 255, 0.95); padding: 10px 12px;
    border-radius: 10px; font-size: 12px; line-height: 1.4;
    border-left: 3px solid #5F259F;
}
.pv-card-tagline strong {
    font-size: 10px; text-transform: uppercase;
    color: #5F259F; letter-spacing: 0.5px;
}

/* Taglines Editor (profile edit page) */
.pv-tagline-edit {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    margin-bottom: 10px;
}
.pv-tagline-prompt-input, .pv-tagline-answer-input {
    padding: 10px 12px; border: 1.5px solid #E5E7EB;
    border-radius: 10px; font-size: 14px; font-family: inherit;
    outline: none; transition: border-color 0.2s;
}
.pv-tagline-prompt-input:focus, .pv-tagline-answer-input:focus {
    border-color: #5F259F;
}
@media (max-width: 600px) {
    .pv-tagline-edit { grid-template-columns: 1fr; }
}

/* Info List (profile page) */
.pv-info-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 10px;
}
.pv-info-list li {
    background: #F3F4F6; padding: 8px 14px; border-radius: 20px;
    font-size: 13px; color: #1A1A2E;
}
.pv-info-list em { color: #6B7280; font-size: 12px; }

/* v2.1: Regional Settings Form */
.pv-prefs-form {
    background: linear-gradient(135deg, #f9f5ff, #fef3f8);
    border: 1.5px solid #5F259F;
    border-radius: 16px;
    padding: 24px;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.pv-prefs-form label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 600;
    color: #5F259F;
    gap: 6px;
}
.pv-prefs-form select {
    padding: 10px 12px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #1A1A2E;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.pv-prefs-form select:focus {
    border-color: #5F259F;
}
.pv-prefs-form button {
    grid-column: 1 / -1;
    margin-top: 6px;
}
@media (max-width: 600px) {
    .pv-prefs-form {
        grid-template-columns: 1fr;
        padding: 18px;
    }
}

/* ============================================
   PROFILE PAGE v2.2 - BuddyBoss-inspired 3-column
============================================ */

.pv-profile-wrap {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr) 280px;
    gap: 24px;
    max-width: 1280px;
    margin: 32px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, sans-serif;
}
@media (max-width: 1100px) {
    .pv-profile-wrap { grid-template-columns: 300px minmax(0, 1fr); }
    .pv-profile-right { display: none; }
}
@media (max-width: 780px) {
    .pv-profile-wrap { grid-template-columns: 1fr; gap: 16px; padding: 0 12px; }
}

/* ====== LEFT SIDEBAR ====== */
.pv-profile-sidebar { display: flex; flex-direction: column; gap: 20px; }

.pv-id-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #E5E7EB;
}
.pv-id-cover {
    height: 100px;
    background: linear-gradient(135deg, #A88BF0 0%, #C9A0F0 100%);
    position: relative;
}
.pv-id-avatar-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: -60px auto 0;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    z-index: 2;
}
.pv-id-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.pv-online-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: #10B981;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 3;
}
.pv-id-body {
    padding: 16px 20px 24px;
    text-align: center;
}
.pv-id-name {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.pv-id-name .pv-verified-tick {
    background: #3B82F6;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.pv-id-meta {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.pv-id-dot { opacity: 0.4; }

/* EMAIL — ye fix hai! No overflow */
.pv-id-email {
    font-size: 12px;
    color: #6B7280;
    padding: 8px 12px;
    background: #F9FAFB;
    border-radius: 8px;
    margin: 12px 0 16px;
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.4;
    text-align: center;
    max-width: 100%;
}

.pv-id-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #F3F4F6;
}
.pv-like-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #FEF3F8;
    border-radius: 50px;
    color: #EC4899;
    font-size: 14px;
    font-weight: 600;
}
.pv-heart { font-size: 16px; }
.pv-btn-upgrade {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s;
}
.pv-btn-upgrade:hover { transform: translateY(-2px); color: #fff; }

.pv-tier-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}
.pv-tier-plus { background: #00BAF2; }
.pv-tier-gold { background: #F59E0B; }
.pv-tier-platinum { background: #8B5CF6; }

/* Quick Icons Row */
.pv-quick-icons {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
}
.pv-q-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F9FAFB;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}
.pv-q-icon:hover { background: #EC4899; color: #fff; transform: scale(1.05); }
.pv-q-svg { font-size: 20px; }
.pv-q-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #EC4899;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Verify Card */
.pv-verify-card-new {
    background: linear-gradient(135deg, #EEF5FF 0%, #F8EDFF 100%);
    border: 1.5px solid #A88BF0;
    border-radius: 16px;
    padding: 20px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
}
.pv-verify-card-new .pv-verify-icon-new {
    width: 40px;
    height: 40px;
    background: #3B82F6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}
.pv-verify-text-new strong {
    display: block;
    font-size: 14px;
    color: #1E40AF;
    margin-bottom: 2px;
}
.pv-verify-text-new p {
    font-size: 12px;
    color: #64748B;
    margin: 0;
}
.pv-btn-verify {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin-top: 8px;
    transition: transform 0.2s;
}
.pv-btn-verify:hover { transform: translateY(-2px); color: #fff; }

/* Photos Card */
.pv-photos-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 20px;
}
.pv-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pv-card-icon {
    color: #EC4899;
    font-size: 18px;
}
.pv-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.pv-photo-item {
    aspect-ratio: 1;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #F3F4F6;
}
.pv-photo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #D1D5DB;
    border: 2px dashed #E5E7EB;
}
.pv-photos-link {
    font-size: 13px;
    color: #EC4899;
    text-decoration: none;
    font-weight: 500;
}

/* ====== CENTER (Main Content) ====== */
.pv-profile-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.pv-tabs {
    display: flex;
    gap: 4px;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #E5E7EB;
    overflow-x: auto;
}
.pv-tab {
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.pv-tab.active {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: #fff;
}
.pv-tab:hover:not(.active) { background: #F9FAFB; color: #1A1A2E; }
.pv-tab-count {
    font-size: 10px;
    background: rgba(0,0,0,0.1);
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
}
.pv-tab.active .pv-tab-count { background: rgba(255,255,255,0.3); }

.pv-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 600px) {
    .pv-stats-row { grid-template-columns: repeat(2, 1fr); }
}
.pv-stat-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 16px;
    text-align: center;
}
.pv-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #1A1A2E;
    line-height: 1;
    margin-bottom: 4px;
}
.pv-stat-lbl {
    font-size: 11px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pv-block {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
}
.pv-block-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    padding: 20px 24px;
    margin: 0;
    border-bottom: 1px solid #F3F4F6;
}
.pv-block-body { padding: 20px 24px; }
.pv-block-body p { color: #4B5563; line-height: 1.6; font-size: 15px; margin: 0; }
.pv-block-empty .pv-block-body { padding: 24px; text-align: center; }
.pv-muted-text { color: #9CA3AF !important; font-size: 14px !important; }
.pv-link-small {
    display: inline-block;
    margin-top: 12px;
    color: #EC4899;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.pv-info-table {
    width: 100%;
    border-collapse: collapse;
}
.pv-info-table tr { border-bottom: 1px solid #F3F4F6; }
.pv-info-table tr:last-child { border: 0; }
.pv-info-table td {
    padding: 14px 24px;
    font-size: 14px;
}
.pv-info-table td:first-child { color: #6B7280; width: 40%; }
.pv-info-table td:last-child { text-align: right; color: #1A1A2E; font-weight: 500; }

.pv-prompts-list { display: flex; flex-direction: column; gap: 12px; }
.pv-prompt-item {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px;
    border-left: 3px solid #EC4899;
}
.pv-prompt-q {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.pv-prompt-a {
    font-size: 16px;
    color: #1A1A2E;
    font-weight: 500;
}

.pv-tags-new { display: flex; flex-wrap: wrap; gap: 8px; }
.pv-tag-new {
    background: #FEF3F8;
    color: #EC4899;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.pv-btn-primary-new {
    display: inline-block;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
}

.pv-edit-cta { text-align: center; margin-top: 12px; }
.pv-btn-edit-profile {
    background: #1A1A2E;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}
.pv-btn-edit-profile:hover { transform: translateY(-2px); }

/* ====== RIGHT SIDEBAR ====== */
.pv-profile-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pv-side-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 20px;
}
.pv-side-title {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pv-verify-list { list-style: none; padding: 0; margin: 0; }
.pv-verify-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #6B7280;
}
.pv-verify-list li.done { color: #10B981; }
.pv-verify-icon-small {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.pv-verify-list li.done .pv-verify-icon-small { background: #10B981; color: #fff; }

.pv-side-actions { display: flex; flex-direction: column; gap: 4px; }
.pv-side-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #4B5563;
    font-size: 14px;
    transition: background 0.2s;
}
.pv-side-action:hover { background: #FEF3F8; color: #EC4899; }
.pv-side-action-icon { font-size: 18px; }

.pv-upgrade-promo {
    background: linear-gradient(135deg, #FEF3F8 0%, #F8EDFF 100%);
    border: 1.5px solid #F472B6;
    text-align: center;
}
.pv-promo-icon { font-size: 32px; margin-bottom: 8px; }
.pv-promo-title { font-size: 16px; font-weight: 700; color: #1A1A2E; margin: 0 0 8px; }
.pv-promo-text { font-size: 13px; color: #6B7280; margin: 0 0 14px; line-height: 1.5; }
.pv-btn-promo {
    display: inline-block;
    background: #1A1A2E;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
