/* ═══ XO LOVE — Model Profile (prototype-exact) ═══ */

/* Breadcrumbs */
.xo-breadcrumbs {
  padding: 16px 0;
  font-size: 0.8rem;
  color: var(--xo-text-muted);
}
.xo-breadcrumbs a { color: var(--xo-text-secondary); }
.xo-breadcrumbs a:hover { color: var(--xo-accent); }
.xo-breadcrumbs-sep { margin: 0 8px; color: var(--xo-text-faint); }

/* Profile grid */
.xo-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px 0 50px;
  align-items: start;
}
.xo-profile-gallery {
  position: sticky;
  top: 90px;
}

/* ── Info panel ── */
.xo-profile-info {
  display: flex;
  flex-direction: column;
}
.xo-profile-info h1 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Subtitle chips */
.xo-profile-subtitle {
  color: var(--xo-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.xo-profile-subtitle ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.xo-profile-subtitle li {
  background: var(--xo-bg-elevated);
  border: 1px solid var(--xo-border);
  border-radius: var(--xo-radius-pill);
  padding: 4px 14px;
  font-size: 0.8rem;
  color: var(--xo-text-secondary);
}
.xo-profile-subtitle li strong { color: var(--xo-accent); }

/* Location block */
.xo-profile-location {
  background: var(--xo-bg-card);
  border: 1px solid var(--xo-border);
  border-radius: var(--xo-radius);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.xo-profile-loc-pin {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--xo-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.xo-profile-loc-pin svg { width: 20px; height: 20px; color: var(--xo-accent); }
.xo-profile-loc-text { flex: 1; }
.xo-profile-loc-area { font-weight: 600; font-size: 0.95rem; }
.xo-profile-loc-area a { color: var(--xo-accent); }
.xo-profile-loc-area a:hover { text-decoration: underline; }
.xo-profile-loc-detail { font-size: 0.8rem; color: var(--xo-text-muted); margin-top: 2px; }

/* Stats grid */
.xo-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--xo-border);
  border-radius: var(--xo-radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.xo-profile-stat {
  background: var(--xo-bg-card);
  padding: 14px 16px;
  text-align: center;
}
.xo-profile-stat-label {
  font-size: 0.7rem;
  color: var(--xo-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.xo-profile-stat-val {
  font-size: 0.95rem;
  font-weight: 500;
}
.xo-profile-stat-val a {
  color: var(--xo-text);
  text-decoration: none;
  border-bottom: 1px dashed var(--xo-border-light);
  transition: all var(--xo-transition);
}
.xo-profile-stat-val a:hover {
  color: var(--xo-accent);
  border-color: var(--xo-accent);
}
.xo-profile-stat-val .sep { color: var(--xo-text-muted); margin: 0 4px; }
.xo-profile-stats .xo-profile-stat:last-child:nth-child(3n+1) { grid-column: 1 / -1; }
.xo-profile-stats .xo-profile-stat:last-child:nth-child(3n+2) { grid-column: span 2; }

/* Rates */
.xo-profile-rates { margin-bottom: 24px; }

/* Incall/Outcall tabs */
.xo-rates-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}
.xo-rates-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--xo-font);
  cursor: pointer;
  color: var(--xo-text-muted);
  background: var(--xo-bg-card);
  border: 1px solid var(--xo-border);
  transition: all var(--xo-transition);
}
.xo-rates-tab:first-child { border-radius: var(--xo-radius-sm) 0 0 var(--xo-radius-sm); }
.xo-rates-tab:last-child { border-radius: 0 var(--xo-radius-sm) var(--xo-radius-sm) 0; }
.xo-rates-tab.active {
  background: var(--xo-accent-glow);
  border-color: var(--xo-accent);
  color: var(--xo-accent);
}
.xo-profile-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--xo-bg-card);
  border: 1px solid var(--xo-border);
  border-top: none;
}
.xo-profile-rate-row:first-of-type {
  border-top: 1px solid var(--xo-border);
  border-radius: var(--xo-radius-sm) var(--xo-radius-sm) 0 0;
}
.xo-profile-rate-row:last-of-type {
  border-radius: 0 0 var(--xo-radius-sm) var(--xo-radius-sm);
}
.xo-profile-rate-label { font-size: 0.85rem; color: var(--xo-text-secondary); }
.xo-profile-rate-price { font-size: 1rem; font-weight: 600; }
/* Outcall fee row */
.xo-profile-rate-outcall {
  background: var(--xo-bg-elevated);
  border-top: 1px dashed var(--xo-border);
}
.xo-profile-rate-outcall .xo-profile-rate-label {
  font-size: 0.8rem;
  color: var(--xo-text-muted);
  font-style: italic;
}
.xo-profile-rate-fee {
  color: var(--xo-accent);
  font-size: 0.9rem;
}

/* Services */
.xo-profile-services { margin-bottom: 24px; }
.xo-svc-group-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--xo-text-muted);
  margin-bottom: 8px;
  margin-top: 14px;
}
.xo-svc-group-label:first-of-type { margin-top: 0; }
.xo-profile-svc-list { display: flex; flex-wrap: wrap; gap: 8px; }
.xo-tag-extra { cursor: default; }
.xo-tag-price {
  background: var(--xo-accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 4px;
}
.xo-tag-extra:hover .xo-tag-price {
  background: #fff;
}

/* About */
.xo-profile-about { margin-bottom: 24px; }
.xo-profile-about-text {
  font-size: 0.9rem;
  color: var(--xo-text-secondary);
  line-height: 1.8;
}
.xo-profile-about-text p { margin-bottom: 10px; }

/* CTA */
.xo-profile-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.xo-profile-cta .xo-btn {
  flex: 1;
  padding: 16px;
  font-size: 0.9rem;
}
.xo-btn-booking {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
}
.xo-profile-cta .xo-btn-primary:hover {
  box-shadow: 0 0 30px var(--xo-accent-glow);
}

/* Map */
.xo-profile-map { margin-bottom: 24px; }
#xo-map {
  height: 200px;
  border-radius: var(--xo-radius);
  border: 1px solid var(--xo-border);
  filter: saturate(0.5) brightness(0.95) contrast(1.05);
}
.xo-profile-map-note {
  font-size: 0.7rem;
  color: var(--xo-text-muted);
  margin-top: 6px;
  text-align: center;
}

/* Recommended */
.xo-recommended-title { margin-bottom: 24px; }

/* Interlinks */
.xo-interlinks {
  padding: 24px 0;
  border-top: 1px solid var(--xo-border);
}
.xo-interlinks-group { margin-bottom: 16px; }
.xo-interlinks-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--xo-text-muted);
  margin-bottom: 8px;
}
.xo-interlinks-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .xo-profile { grid-template-columns: 1fr; gap: 24px; }
  .xo-profile-gallery { position: static; }
}
@media (max-width: 768px) {
  .xo-profile-info h1 { font-size: 1.5rem; }
  .xo-profile-stats { grid-template-columns: repeat(2, 1fr); }
  .xo-profile-cta { flex-direction: column; }
}
