/* ============================================
   NorthFace Casting — Design System
   Cinematic Dark Theme with Gold Accents
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Core Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a28;
  --bg-card: rgba(22, 22, 35, 0.75);
  --bg-card-hover: rgba(30, 30, 48, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-strong: rgba(255, 255, 255, 0.06);

  /* Accent Colors */
  --accent-gold: #d4a853;
  --accent-gold-light: #e8c97a;
  --accent-gold-dim: rgba(212, 168, 83, 0.15);
  --accent-gold-glow: rgba(212, 168, 83, 0.3);
  --accent-amber: #f59e0b;
  --accent-blue: #3b82f6;
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;

  /* Text Colors */
  --text-primary: #f0ece4;
  --text-secondary: #9d9aaa;
  --text-tertiary: #6b6880;
  --text-accent: var(--accent-gold);
  --text-on-accent: #0a0a0f;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(212, 168, 83, 0.3);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1025 40%, #0d1520 70%, #0a0a0f 100%);
  --gradient-card: linear-gradient(145deg, rgba(30, 28, 45, 0.5), rgba(15, 14, 25, 0.8));
  --gradient-gold: linear-gradient(135deg, #d4a853, #f0d78c, #d4a853);
  --gradient-gold-text: linear-gradient(90deg, #d4a853, #f0d78c);
  --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(212, 168, 83, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-normal: 300ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);

  /* Layout */
  --max-width: 1320px;
  --sidebar-width: 280px;
  --header-height: 72px;
  --card-min-width: 280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- Selection ---------- */
::selection {
  background: var(--accent-gold-dim);
  color: var(--accent-gold-light);
}

/* ---------- Links ---------- */
a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-gold-light);
}

/* ---------- Images ---------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 83, 0.1); }
  50% { box-shadow: 0 0 40px rgba(212, 168, 83, 0.25); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

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

/* ---------- App Shell ---------- */
#app {
  min-height: 100vh;
}

.page-transition-enter {
  animation: fadeInUp 0.4s var(--ease-out) forwards;
}

/* ---------- Background Particles / Ambience ---------- */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 12s ease-in-out infinite;
}

.ambient-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #d4a853, transparent 70%);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}

.ambient-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #3b82f6, transparent 70%);
  bottom: -20%;
  left: -10%;
  animation-delay: -4s;
}

.ambient-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -8s;
}

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: var(--shadow-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  text-decoration: none;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--bg-primary);
  font-family: var(--font-heading);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.header__logo-text span {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--text-primary);
}

.header__nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

.header__stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--text-tertiary);
}

.header__stats-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 12px;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212, 168, 83, 0.08), transparent 60%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.6s var(--ease-out);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out);
}

.hero__title-highlight {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
  line-height: 1.7;
}

/* ---------- Search Bar ---------- */
.search-container {
  width: 100%;
  max-width: 680px;
  position: relative;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.search-bar {
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px var(--space-lg);
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.search-bar:focus-within {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.search-bar__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.search-bar:focus-within .search-bar__icon {
  color: var(--accent-gold);
}

.search-bar__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px var(--space-md);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  outline: none;
}

.search-bar__input::placeholder {
  color: var(--text-tertiary);
}

.search-bar__btn {
  flex-shrink: 0;
  padding: 12px 24px;
  background: var(--gradient-gold);
  border: none;
  border-radius: calc(var(--radius-xl) - 4px);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--bg-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.search-bar__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
}

.search-bar__btn:active {
  transform: translateY(0);
}

/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  max-height: 360px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.search-suggestions.active {
  display: block;
  animation: fadeInDown 0.25s var(--ease-out);
}

.search-suggestion {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: background var(--transition-fast);
  border-bottom: 1px solid var(--border-subtle);
}

.search-suggestion:last-child {
  border-bottom: none;
}

.search-suggestion:hover {
  background: var(--bg-glass-strong);
}

.search-suggestion__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.search-suggestion__info {
  flex: 1;
  min-width: 0;
}

.search-suggestion__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.search-suggestion__meta {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ---------- Filter Chips ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.filters__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: var(--space-sm);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.filter-chip:hover {
  background: var(--bg-glass-strong);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.filter-chip.active {
  background: var(--accent-gold-dim);
  border-color: var(--border-accent);
  color: var(--accent-gold);
}

.filter-chip__count {
  font-size: 11px;
  opacity: 0.7;
}

.filters__sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.filters__sort select {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239d9aaa' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.filters__sort select:focus {
  border-color: var(--accent-gold);
}

/* ---------- Results Info ---------- */
.results-info {
  padding: 0 var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results-info__count {
  font-size: 14px;
  color: var(--text-tertiary);
}

.results-info__count strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ---------- Profile Cards Grid ---------- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card-min-width), 1fr));
  gap: var(--space-lg);
  padding: 0 var(--space-xl) var(--space-3xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Profile Card ---------- */
.profile-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
  animation: fadeInUp 0.5s var(--ease-out) both;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  background: var(--bg-card-hover);
}

.profile-card__image-container {
  position: relative;
  width: 100%;
  padding-top: 120%;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.profile-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.profile-card__image-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  pointer-events: none;
}

/* Avatar placeholder when no image */
.profile-card__avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.profile-card__avatar-initials {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
}

.profile-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 4px 10px;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-gold);
  letter-spacing: 0.06em;
}

.profile-card__pinterest-count {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 4px 8px;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-card__content {
  padding: var(--space-lg);
}

.profile-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.profile-card__location {
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.profile-card__tag {
  padding: 3px 8px;
  background: var(--bg-glass-strong);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}

.profile-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.profile-card__stat {
  text-align: center;
}

.profile-card__stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.profile-card__stat-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Profile Detail Page ---------- */
.profile-page {
  padding-top: var(--header-height);
  min-height: 100vh;
  animation: fadeIn 0.4s var(--ease-out);
}

.profile-page__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.profile-page__back:hover {
  color: var(--accent-gold);
}

.profile-page__hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl) var(--space-2xl);
}

.profile-page__photo-section {
  position: relative;
}

.profile-page__main-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
}

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

.profile-page__main-photo .profile-card__avatar {
  border-radius: var(--radius-lg);
}

.profile-page__photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.profile-page__gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-page__gallery-thumb:hover {
  border-color: var(--accent-gold);
}

.profile-page__gallery-thumb.active {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

.profile-page__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-page__gallery-link {
  font-size: 10px;
  color: var(--text-tertiary);
  text-align: center;
  word-break: break-all;
  padding: 4px;
}

.profile-page__info {
  padding-top: var(--space-md);
}

.profile-page__rank {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-lg);
}

.profile-page__name {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.profile-page__name-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.share-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.share-profile-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

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

.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.profile-page__location {
  font-size: 16px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.profile-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.profile-page__stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  transition: all var(--transition-fast);
}

.profile-page__stat-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-glass-strong);
}

.profile-page__stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.profile-page__stat-card .stat-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Profile Sections */
.profile-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl) var(--space-2xl);
}

.profile-section__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.profile-section__title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

.profile-section__body {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 15px;
}

/* Pinterest Gallery Section */
.pinterest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.pinterest-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.pinterest-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.pinterest-card__link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  color: var(--text-secondary);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.pinterest-card__link:hover {
  color: var(--accent-gold);
}

.pinterest-card__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: #e60023;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pinterest-card__icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

/* Video Embed Section */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.video-embed {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Section */
.profile-page__contact {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  font-family: var(--font-body);
}

.contact-btn--primary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

.contact-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
  color: var(--bg-primary);
}

.contact-btn--secondary {
  background: var(--bg-glass);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
}

.contact-btn--secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ---------- Admin Panel ---------- */
.admin-page {
  padding-top: calc(var(--header-height) + var(--space-xl));
  min-height: 100vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.admin-page__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: var(--space-xl);
}

.admin-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.admin-tab {
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.admin-tab:hover {
  color: var(--text-primary);
}

.admin-tab.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.admin-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.admin-form__group--full {
  grid-column: 1 / -1;
}

.admin-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-form__input,
.admin-form__select,
.admin-form__textarea {
  width: 100%;
  padding: 12px var(--space-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all var(--transition-fast);
}

.admin-form__input:focus,
.admin-form__select:focus,
.admin-form__textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-dim);
}

.admin-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-form__actions {
  grid-column: 1 / -1;
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-md);
}

/* Admin Table */
.admin-table-container {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  white-space: nowrap;
}

.admin-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  white-space: nowrap;
}

.admin-table tr:hover td {
  background: var(--bg-glass);
}

.admin-table__actions {
  display: flex;
  gap: var(--space-sm);
}

.admin-table__btn {
  padding: 4px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-table__btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.admin-table__btn--danger:hover {
  border-color: var(--accent-rose);
  color: var(--accent-rose);
}

/* Import/Export Panel */
.admin-import {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.admin-import__textarea {
  width: 100%;
  min-height: 200px;
  padding: var(--space-md);
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
  font-size: 12px;
  resize: vertical;
  outline: none;
  margin-bottom: var(--space-md);
}

.admin-import__textarea:focus {
  border-color: var(--accent-gold);
}

/* ---------- Footer ---------- */
.footer {
  padding: var(--space-2xl) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
}

.footer a {
  color: var(--text-secondary);
}

/* ---------- Empty State ---------- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}

.empty-state__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--text-tertiary);
}

.empty-state__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.empty-state__text {
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 400px;
}

/* ---------- Loading Skeleton ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-glass-strong) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

.skeleton--text {
  height: 14px;
  width: 80%;
  margin-bottom: var(--space-sm);
}

.skeleton--title {
  height: 24px;
  width: 60%;
  margin-bottom: var(--space-md);
}

.skeleton--avatar {
  width: 100%;
  padding-top: 120%;
}

/* ---------- Toast Notifications ---------- */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.toast--success {
  border-color: rgba(16, 185, 129, 0.3);
}

.toast--error {
  border-color: rgba(244, 63, 94, 0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .profile-page__hero {
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 20px;
    --card-min-width: 250px;
  }

  .header {
    padding: 0 var(--space-md);
  }

  .header__stats {
    display: none;
  }

  .header__nav {
    gap: var(--space-md);
  }

  .hero {
    min-height: 60vh;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .search-bar {
    padding: 4px 4px 4px var(--space-md);
  }

  .search-bar__input {
    padding: 10px var(--space-sm);
    font-size: 14px;
  }

  .search-bar__btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .filters {
    padding: var(--space-md);
    gap: 6px;
  }

  .filters__sort {
    width: 100%;
    margin-left: 0;
    margin-top: var(--space-sm);
  }

  .profiles-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-md);
    padding: 0 var(--space-md) var(--space-2xl);
  }

  .profile-card__content {
    padding: var(--space-md);
  }

  .profile-card__name {
    font-size: 15px;
  }

  .profile-card__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-card__stat:nth-child(3) {
    grid-column: 1 / -1;
  }

  .profile-page__hero {
    grid-template-columns: 1fr;
  }

  .profile-page__main-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .profile-page__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-form {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .pinterest-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .profile-card__avatar-initials {
    font-size: 36px;
  }

  .profile-card__stats {
    display: none;
  }

  .profile-page__name {
    font-size: 28px;
  }

  .share-profile-btn span {
    display: none;
  }

  .share-profile-btn {
    padding: 8px 10px;
  }

  .header__nav-link svg {
    display: none;
  }

  .header__logo-text {
    font-size: 16px;
  }

  .header__nav-link {
    font-size: 12px;
  }
}

/* ---------- Utility Classes ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-gradient {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Card animation stagger */
.profile-card:nth-child(1) { animation-delay: 0.05s; }
.profile-card:nth-child(2) { animation-delay: 0.1s; }
.profile-card:nth-child(3) { animation-delay: 0.15s; }
.profile-card:nth-child(4) { animation-delay: 0.2s; }
.profile-card:nth-child(5) { animation-delay: 0.25s; }
.profile-card:nth-child(6) { animation-delay: 0.3s; }
.profile-card:nth-child(7) { animation-delay: 0.35s; }
.profile-card:nth-child(8) { animation-delay: 0.4s; }
.profile-card:nth-child(9) { animation-delay: 0.45s; }
.profile-card:nth-child(10) { animation-delay: 0.5s; }

/* ---------- Advanced Filtration Drawer ---------- */
.advanced-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-left: 8px;
}

.advanced-filter-toggle:hover,
.advanced-filter-toggle.active {
  background: var(--accent-gold-dim);
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.2);
}

.advanced-filter-panel {
  width: 100%;
  max-width: var(--max-width);
  margin: 16px auto 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(16px);
  display: none;
  animation: fadeInDown 0.3s var(--ease-out);
}

.advanced-filter-panel.active {
  display: block;
}

.advanced-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  align-items: end;
}

.advanced-filter-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.advanced-filter-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.advanced-filter-input,
.advanced-filter-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  font-family: var(--font-body);
}

.advanced-filter-input:focus,
.advanced-filter-select:focus {
  border-color: var(--accent-gold);
}

.advanced-filter-actions {
  display: flex;
  gap: var(--space-sm);
}

/* Contact Cards in Profile Detail */
.profile-contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
}

.profile-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empty-section-notice {
  color: var(--text-tertiary);
  font-style: italic;
  font-size: 14px;
  padding: 12px 0;
}

/* ============================================
   Pagination Controls
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.pagination__info {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.page-btn:hover:not(:disabled) {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.page-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0a0a0f;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ============================================
   Profile Card DOB & Social Links
   ============================================ */
.profile-card__dob {
  font-size: 11px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.profile-card__socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-icon-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: var(--accent-gold);
}

.social-icon-btn--youtube:hover {
  background: rgba(255, 0, 0, 0.2);
  color: #ff4444;
  border-color: #ff4444;
}

.social-icon-btn--facebook:hover {
  background: rgba(24, 119, 242, 0.2);
  color: #1877f2;
  border-color: #1877f2;
}

.social-icon-btn--instagram:hover {
  background: linear-gradient(45deg, rgba(245,133,41,0.2), rgba(221,42,123,0.2), rgba(129,52,175,0.2));
  color: #e1306c;
  border-color: #e1306c;
}

.profile-card__pricing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* ============================================
   Pricing & Rate Card Section
   ============================================ */
.pricing-section {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  backdrop-filter: blur(12px);
}

.pricing-section__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pricing-section__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.pricing-categories {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.pricing-cat-btn {
  flex: 1;
  min-width: 90px;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pricing-cat-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
}

.pricing-cat-btn.active {
  background: var(--accent-gold-dim);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

.pricing-cat-btn__name {
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: var(--font-heading);
}

.pricing-cat-btn__sub {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-note-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.pricing-note-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gold);
}

.pricing-note-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pricing-note-card__tier {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-heading);
}

.pricing-note-card__range {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--accent-gold-dim);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pricing-note-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.pricing-note-card__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  font-size: 13px;
  color: var(--text-primary);
}

.pricing-note-card__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   Admin Selection & Dual Export
   ============================================ */
.admin-export-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
  cursor: pointer;
}

/* ============================================
   Card Status Tier Tag (Moved to Card Bottom)
   ============================================ */
.profile-card__tag--tier {
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
}

/* ============================================
   Exclusive Homepage Comprehensive Footer
   ============================================ */
.footer-home {
  background: linear-gradient(180deg, rgba(15, 15, 22, 0.85) 0%, rgba(8, 8, 12, 0.98) 100%);
  border-top: 1px solid var(--border-medium);
  margin-top: var(--space-3xl);
  padding: var(--space-3xl) var(--space-xl) var(--space-xl);
  backdrop-filter: blur(16px);
  position: relative;
}

.footer-home__container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-home__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.2fr 1.8fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 1024px) {
  .footer-home__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-home__grid {
    grid-template-columns: 1fr;
  }
}

.footer-home__col--brand .footer-home__about {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-home__heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-home__links,
.footer-home__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-home__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer-home__links a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-home__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-home__contact-list li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer Guidance Section */
.footer-home__guidance-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-home__guidance-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guidance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.guidance-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 800;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.guidance-badge--app { background: rgba(255,215,0,0.2); color: #ffd700; border: 1px solid #ffd700; }
.guidance-badge--a { background: rgba(212,175,55,0.15); color: #d4af37; border: 1px solid #d4af37; }
.guidance-badge--b { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid #60a5fa; }
.guidance-badge--c { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid #34d399; }
.guidance-badge--d { background: rgba(156,163,175,0.15); color: #9ca3af; border: 1px solid #9ca3af; }

.footer-home__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-home__bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-home__bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-home__bottom-links a:hover {
  color: var(--accent-gold);
}

/* Modal Overlay & Card for Policies */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  animation: fadeIn 0.25s ease;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-gold);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  padding: var(--space-xl);
  overflow-y: auto;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.modal-body h4 {
  color: var(--text-primary);
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 15px;
}

/* Footer Action Buttons & Legal Section */
.footer-home__btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-sizing: border-box;
}

.footer-btn--primary {
  background: linear-gradient(135deg, var(--accent-gold), #f0d78c);
  color: #0a0a0f;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 14px rgba(212, 168, 83, 0.25);
}

.footer-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
  color: #000;
}

.footer-btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.footer-btn--secondary:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-home__legal-section {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-xl);
  margin-top: var(--space-2xl);
}

.footer-home__legal-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-home__legal-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}

.footer-home__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-home__legal-links a {
  color: var(--text-secondary);
  font-size: 13.5px;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-home__legal-links a:hover {
  color: var(--accent-gold);
  transform: translateY(-1px);
}

/* Admin Search & Edit Styles */
.admin-search-wrapper {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.admin-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 13.5px;
  transition: all var(--transition-fast);
}

.admin-search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.admin-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.admin-table__btn--edit {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}

.admin-table__btn--edit:hover {
  border-color: #38bdf8;
  color: #fff;
  background: rgba(56, 189, 248, 0.2);
}

/* Large Modal for Editing Profiles */
.modal-card--large {
  max-width: 850px;
}

/* ============================================
   4-Row Minimal & Clean Footer Layout
   ============================================ */
.footer-4rows {
  background: linear-gradient(180deg, rgba(15, 15, 22, 0.92) 0%, rgba(8, 8, 12, 0.99) 100%);
  border-top: 1px solid var(--border-medium);
  margin-top: var(--space-3xl);
  padding: 48px 24px 32px;
  backdrop-filter: blur(16px);
}

.footer-4rows__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Row 1: Brand Header Row */
.footer-row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.footer-row-1__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-row-1__desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  max-width: 580px;
}

.footer-row-1__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Row 2: Quick Links Row */
.footer-row-2 {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-row-2__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-row-2__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-row-2__links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-row-2__links a:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Row 3: Contact, About, Guidance Row */
.footer-row-3 {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-row-3__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-row-3__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.footer-row-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.footer-row-card:hover {
  border-color: var(--accent-gold);
  background: var(--bg-tertiary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.15);
}

.footer-row-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(212, 168, 83, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-row-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.footer-row-card__sub {
  font-size: 12.5px;
  color: var(--text-tertiary);
}

/* Row 4: Legal Links & Copyright Row */
.footer-row-4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
}

.footer-row-4__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-row-4__legal a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-row-4__legal a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-row-4__copyright {
  color: var(--text-tertiary);
}

/* ============================================
   Gallery Lightbox Modal
   ============================================ */
.gallery-card {
  cursor: pointer;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  animation: fadeIn 0.2s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 1110;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 1110;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav--prev {
  left: 20px;
}

.lightbox-nav--next {
  right: 20px;
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 1110;
}

/* ============================================
   Contact Icon Pop-Up Buttons
   ============================================ */
.contact-icons-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.contact-icon-circle:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.contact-icon-circle--phone {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.25);
}

.contact-icon-circle--phone:hover {
  background: rgba(16, 185, 129, 0.25);
}

.contact-icon-circle--email {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.25);
}

.contact-icon-circle--email:hover {
  background: rgba(59, 130, 246, 0.25);
}

.contact-icon-circle--instagram {
  background: linear-gradient(135deg, rgba(228, 64, 95, 0.12), rgba(131, 58, 180, 0.12));
  color: #e4405f;
  border-color: rgba(228, 64, 95, 0.25);
}

.contact-icon-circle--instagram:hover {
  background: linear-gradient(135deg, rgba(228, 64, 95, 0.25), rgba(131, 58, 180, 0.25));
}

.contact-icon-circle--facebook {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.25);
}

.contact-icon-circle--facebook:hover {
  background: rgba(24, 119, 242, 0.25);
}

.contact-icon-circle--youtube {
  background: rgba(255, 0, 0, 0.12);
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.25);
}

.contact-icon-circle--youtube:hover {
  background: rgba(255, 0, 0, 0.25);
}

.contact-icon-circle--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.25);
}

.contact-icon-circle--whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

/* Contact Pop-Up Modal (Compact) */
.contact-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  animation: fadeIn 0.2s ease;
}

.contact-popup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-3xl);
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: popIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-popup-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-popup-card__icon--phone {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.contact-popup-card__icon--email {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.contact-popup-card__icon--whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.contact-popup-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-popup-card__value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
  word-break: break-all;
  margin-bottom: 20px;
}

.contact-popup-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.contact-popup-card__action--phone {
  background: #10b981;
}

.contact-popup-card__action--phone:hover {
  background: #059669;
}

.contact-popup-card__action--email {
  background: #3b82f6;
}

.contact-popup-card__action--email:hover {
  background: #2563eb;
}

.contact-popup-card__action--whatsapp {
  background: #25D366;
}

.contact-popup-card__action--whatsapp:hover {
  background: #1da851;
}

.contact-popup-card__close {
  display: block;
  margin-top: 16px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.contact-popup-card__close:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════
   ABOUT ARTIST SECTION
   ═══════════════════════════════════════════════ */
.about-artist-section {
  position: relative;
}

.about-artist-body {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06), rgba(240, 215, 140, 0.03)) !important;
  border: 1px solid var(--border-accent) !important;
  border-left: 4px solid var(--accent-gold) !important;
  border-radius: var(--radius-lg) !important;
  padding: 28px 32px !important;
  position: relative;
  overflow: hidden;
}

.about-artist-body::before {
  content: '❝';
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 48px;
  color: var(--accent-gold);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.about-artist-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0;
  max-width: 800px;
}

@media (max-width: 768px) {
  .about-artist-body {
    padding: 20px 20px !important;
  }

  .about-artist-text {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* ═══════════════════════════════════════════════
   ENHANCED WORK PROFILE & PROJECTS SHOWCASE
   ═══════════════════════════════════════════════ */
.work-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.work-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.work-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.work-project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--transition-normal);
  position: relative;
}

.work-project-card:hover {
  border-color: var(--border-accent);
  border-left-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.work-project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.work-project-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}

.work-project-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--bg-glass-strong);
  border-radius: 4px;
  color: var(--accent-gold);
  white-space: nowrap;
}

.work-project-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.work-project-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SHARE PROFILE MODAL
   ═══════════════════════════════════════════════ */
.share-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  animation: fadeIn 0.2s ease;
}

.share-modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 28px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: popIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.share-modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.share-modal-close {
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  font-size: 24px;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 0;
  line-height: 1;
}

.share-modal-close:hover {
  color: #fff;
}

.share-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.share-app-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.share-app-btn:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

.share-app-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.share-app-icon--wa { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.share-app-icon--fb { background: rgba(24, 119, 242, 0.15); color: #1877f2; }
.share-app-icon--tw { background: rgba(29, 161, 242, 0.15); color: #1da1f2; }
.share-app-icon--ln { background: rgba(10, 102, 194, 0.15); color: #0a66c2; }
.share-app-icon--native { background: var(--accent-gold-dim); color: var(--accent-gold); }

.share-copy-box {
  display: flex;
  gap: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 14px;
  align-items: center;
}

.share-copy-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-copy-btn {
  padding: 10px 18px;
  background: var(--gradient-gold);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.share-copy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.35);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 640px) {
  .contact-icons-row {
    gap: 12px;
  }
  
  .contact-icon-circle {
    width: 44px;
    height: 44px;
  }

  .share-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  
  .lightbox-nav--prev {
    left: 10px;
  }
  
  .lightbox-nav--next {
    right: 10px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    gap: 10px !important;
  }
}

/* ═════════════════════════════════════════════════════════════════
   ARTIST LANGUAGES SPOKEN — STYLES & ADMIN COMPONENT
   ═════════════════════════════════════════════════════════════════ */

/* Profile Page Languages Section */
.profile-page__languages-box {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.profile-page__section-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.language-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.language-badge-pill:hover {
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

/* Profile Card Language Tags (Homepage/Search) */
.profile-card__languages {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
}

.profile-card__lang-title {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-right: 2px;
}

.profile-card__lang-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Admin Panel Language Selector Grid */
.language-checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.lang-checkbox-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.lang-checkbox-card:hover {
  background: rgba(212, 168, 83, 0.08);
  border-color: rgba(212, 168, 83, 0.25);
  color: var(--text-primary);
}

.lang-checkbox-card input[type="checkbox"] {
  accent-color: var(--accent-gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.lang-checkbox-card.active {
  background: var(--accent-gold-dim);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 600;
}







