﻿/*
Theme Name: BarcelonaTop Custom
Theme URI: https://barcelonatop.local
Author: Copilot
Description: Custom landing theme inspired by the provided BarcelonaTop reference.
Version: 1.0.1
Text Domain: barcelonatop
*/

/* Fonts loaded via wp_enqueue_style in functions.php */

:root {
  --bg: #090909;
  --bg-soft: #121212;
  --bg-card: #0f0f0f;
  --text: #f3f1eb;
  --muted: #b7ac95;
  --gold: #c89f5d;
  --gold-strong: #e2bb7c;
  --line: #2a231a;
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
}

h1, h2 {
  color: var(--gold-strong);
}

h3, h4 {
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 0%, #1b1814 0%, var(--bg) 45%) fixed;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.bt-models-banner {
  margin: 0 auto 1.25rem;
  width: min(700px, 100% - 2rem);
  max-width: 100%;
  height: clamp(130px, 25vw, 200px);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #000;
}

.bt-models-banner-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bt-models-banner-slide {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0;
  z-index: 0;
  transition: opacity 700ms ease;
  display: block;
}

.bt-models-banner-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 40;
}

.site-nav-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(8px);
  background: rgba(9, 9, 9, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--line);
}

.site-nav-bar .nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  background-color: #000;
  background-image: url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}

.header-hero-inner {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.3rem;
  text-align: center;
}

.header-hero h1 {
  margin: 0;
  max-width: none;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-strong);
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.header-hero p {
  margin: 1rem 0 0;
  max-width: 72ch;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
  color: #e7dece;
  line-height: 1.62;
  font-size: 1rem;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-strong);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--gold-strong);
}

.header-cta {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #181611;
  color: var(--gold-strong);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.adult-note {
  background: linear-gradient(90deg, #2a1d0d 0%, #1f1510 50%, #2a1d0d 100%);
  border-bottom: 1px solid #4a3320;
}

.adult-note .wrap {
  padding: 0.7rem 0;
  color: #f4ddbe;
  font-size: 0.9rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: #170f04;
  background: linear-gradient(120deg, var(--gold), var(--gold-strong));
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.btn-ghost {
  border-color: #5b4a30;
  background: #17130d;
  color: var(--gold-strong);
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(95deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 60%),
    url("https://public.readdy.ai/ai/img_res/572d5b3240c27bc97ae8615b44139889.jpg") center/cover no-repeat;
}

.hero .wrap {
  animation: reveal 0.9s ease-out both;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--gold-strong);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-strong);
}

.hero p {
  max-width: 60ch;
  color: #e5dbca;
  line-height: 1.6;
  margin: 1rem 0 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.section {
  padding: 4.8rem 0;
}

.section h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-strong);
  letter-spacing: 0.08em;
}

.section p.lead {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 70ch;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.chips a {
  padding: 0.35rem 0.75rem;
  border: 1px solid #3a2f21;
  border-radius: 999px;
  color: #ddc9a5;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chips a.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--gold-strong);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 360px;
  background-color: var(--bg-card);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.12));
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  padding: 1rem;
}

.card-tags {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.new-pill {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #9f1f24;
  color: #fff;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card > .new-pill {
  position: absolute;
  top: 14px;
  left: -54px;
  z-index: 4;
  width: 180px;
  text-align: center;
  padding: 0.32rem 0.5rem;
  border-radius: 0;
  transform: rotate(-35deg);
  transform-origin: center;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  pointer-events: none;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.tag-video {
  border-color: #b72b31;
  color: #ff9fa4;
}

.card h3 {
  margin: 0.7rem 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--serif);
  color: #fff;
  letter-spacing: 0.04em;
}

.section-cta {
  margin-top: 1.4rem;
}

.agencies {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.agency {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  background: linear-gradient(140deg, #12100d 0%, #0b0b0b 100%);
}

.agency-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #5a4830;
  color: var(--gold-strong);
  font-weight: 700;
}

.agency h3 {
  margin: 0;
  color: var(--gold-strong);
}

.agency-media {
  margin: 0 0 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.agency-media img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.agency p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.agency-description {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #d7c8ae;
}

.contact {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0f0f0f 0%, #090909 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.social-inline {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-inline a {
  border: 1px solid #3a2f21;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  color: #dcc7a1;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #3c3327;
  background: #120f0a;
  color: var(--text);
  border-radius: 10px;
  padding: 0.85rem;
}

.legal-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  padding: 3rem 0 1.8rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, #17120d 0%, rgba(23, 18, 13, 0) 36%),
    #090909;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 1.4rem;
  padding-bottom: 2rem;
}

.footer-brand h3 {
  margin: 0 0 0.8rem;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--serif);
}

.footer-brand p {
  margin: 0;
  max-width: 38ch;
  line-height: 1.65;
}

.site-footer h4 {
  margin: 0 0 0.8rem;
  color: #d8c39d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links li,
.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--gold-strong);
}

.footer-social {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-social a {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #403223;
  font-size: 0.75rem;
}

.footer-meta {
  padding-top: 1rem;
  border-top: 1px solid #261e15;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-meta p {
  margin: 0;
}

.bt-login-box,
.bt-upload-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0f0d0a;
  padding: 1.1rem;
}

.bt-login-box h3 {
  margin-top: 0;
  color: var(--gold-strong);
}

.bt-upload-form {
  display: grid;
  gap: 0.65rem;
}

.bt-upload-form label {
  color: #dcc9a6;
  font-size: 0.9rem;
}

.bt-upload-form input,
.bt-upload-form select,
.bt-upload-form textarea {
  width: 100%;
  border: 1px solid #3c3327;
  border-radius: 10px;
  background: #15110b;
  color: var(--text);
  padding: 0.75rem;
}

.bt-form-notice {
  margin-bottom: 0.9rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.92rem;
}

.bt-form-success {
  border: 1px solid #2f6d3f;
  background: #102416;
  color: #9fdfb3;
}

.bt-form-error {
  border: 1px solid #7b3434;
  background: #261111;
  color: #f0b2b2;
}

.girl-profile {
  padding-top: 3.2rem;
}

.girl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.girl-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: block;
}

.girl-info h1 {
  margin: 0.9rem 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 600;
  color: var(--gold-strong);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.girl-description {
  color: #ddd2c0;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}

.girl-gallery-wrap {
  margin-top: 2.2rem;
}

.girl-gallery-wrap h2 {
  margin: 0 0 1rem;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.girl-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.girl-gallery figure {
  margin: 0;
}

.girl-gallery img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.girl-video-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #050505;
  max-width: 480px;
  margin: 0 auto;
}

.girl-video-wrap video,
.girl-video-wrap .wp-video,
.girl-video-wrap .wp-video-shortcode,
.girl-inline-video {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  display: block;
}

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

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

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

@media (max-width: 1024px) {
  .site-nav-bar .nav-wrap {
    min-height: auto;
    padding: 0.75rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-hero {
    min-height: 100vh;
  }

  .header-hero-inner {
    padding: 4.2rem 0 3.4rem;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card {
    max-height: 420px;
    max-width: 358px;
    background-position: top center;
    background-size: contain;
  }

  .agencies {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .girl-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bt-models-banner {
    width: 100% !important;
    height: 180px !important;
  }
}

@media (max-width: 900px) {
  .bt-models-banner {
    width: 100% !important;
    height: 170px !important;
  }
}

@media (max-width: 768px) {
  .bt-models-banner {
    width: 100% !important;
    height: 160px !important;
  }
}

@media (max-width: 720px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .bt-models-banner {
    width: 100% !important;
    height: 150px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.25rem !important;
  }

  .hero {
    min-height: 64vh;
  }

  .header-hero {
    min-height: 100vh;
  }

  .header-hero h1 {
    max-width: 14ch;
    font-size: clamp(1.8rem, 8.2vw, 2.6rem);
  }

  .header-hero p {
    font-size: 0.94rem;
  }

  .cards,
  .agencies,
  .contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .card {
    width: 281px !important;
    height: 358px !important;
    min-height: 358px !important;
    background-position: top center;
    background-size: cover;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .girl-gallery {
    grid-template-columns: 1fr;
  }

  body.single-bt_girl .btn-wa {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(0,0,0,.45);
  }
}

@media (max-width: 600px) {
  .bt-models-banner {
    width: 100% !important;
    height: 140px !important;
  }
}

@media (max-width: 480px) {
  .bt-models-banner {
    width: 100% !important;
    height: 130px !important;
  }

  .bt-models-banner-slide {
    object-fit: contain !important;
    object-position: left top !important;
  }
}

  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
     PERFIL INDIVIDUAL â€” NUEVO DISEÃ‘O
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

  /* Breadcrumb */
  .girl-breadcrumb {
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: .6rem 0;
    font-size: .82rem;
    color: var(--muted);
  }
  .girl-breadcrumb a { color: var(--muted); text-decoration: none; }
  .girl-breadcrumb a:hover { color: var(--gold); }
  .girl-breadcrumb span { margin: 0 .35rem; }

  /* Hero two-column grid */
  .girl-hero-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    align-items: flex-start;
  }

  /* Left â€” photo */
  .girl-hero-media {
    position: relative;
  }
  .girl-hero-media img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    max-height: 600px;
  }
  .girl-hero-badges {
    position: absolute;
    top: .8rem;
    left: .8rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    z-index: 2;
  }
  .girl-badge-cert {
    background: var(--gold);
    color: #000;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .28rem .6rem;
    border-radius: 4px;
  }

  /* Right â€” info */
  .girl-hero-info h1 {
    font-size: 2.4rem;
    margin: .4rem 0 .6rem;
  }
  .girl-hero-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .4rem;
  }
  .girl-city { color: var(--muted); font-size: .9rem; }
  .girl-tagline {
    color: var(--muted);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
  .girl-cta-btns {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: .6rem;
  }
  .btn-phone {
    background: var(--gold);
    color: #000;
  }
  .btn-wa {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
  }
  .btn-wa:hover { background: #1ebe5d; }
  .btn-ghost {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
  }
  .btn-ghost:hover { background: var(--gold); color: #000; }
  .girl-seen-note {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
    font-style: italic;
  }
  .girl-description {
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.2rem;
    font-size: .95rem;
  }
  .girl-extra p {
    font-size: .88rem;
    color: var(--muted);
    margin: .3rem 0;
  }
  .girl-extra strong { color: var(--text); }

  /* Ficha + Servicios grid */
  .girl-details-section { background: rgba(255,255,255,.03); }
  .girl-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
  }
  .girl-section-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--gold-strong);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(212,175,55,.25);
  }

  /* Ficha list */
  .girl-ficha {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .girl-ficha li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    gap: 1rem;
  }
  .girl-ficha li:last-child { border-bottom: none; }
  .girl-ficha-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
  }
  .girl-ficha-value {
    font-size: .92rem;
    color: var(--text);
    text-align: right;
  }
  .girl-ficha-value a { color: var(--gold); text-decoration: none; }
  .girl-ficha-value a:hover { text-decoration: underline; }

  /* Services chips (profile view) */
  .girl-services {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
  }
  .girl-service-chip {
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.35);
    color: var(--gold);
    font-size: .82rem;
    font-weight: 600;
    padding: .38rem .8rem;
    border-radius: 100px;
    letter-spacing: .03em;
  }

  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
     PANEL â€” TABS Y LISTADO
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

  .bt-panel-nav {
    display: flex;
    gap: .5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: .8rem;
  }
  .bt-panel-tab {
    display: inline-block;
    padding: .55rem 1.3rem;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--muted);
    border: 1px solid transparent;
    transition: all .2s;
  }
  .bt-panel-tab:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
  .bt-panel-tab.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
  }
  .bt-panel-content { min-height: 300px; }

  .bt-admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.2rem;
    align-items: start;
  }
  .bt-admin-sidebar {
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 1rem;
    position: sticky;
    top: 88px;
  }
  .bt-admin-sidebar h3 {
    margin: 0 0 .8rem;
    font-size: .82rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .11em;
  }
  .bt-admin-link {
    display: block;
    padding: .65rem .75rem;
    border-radius: 8px;
    color: var(--muted);
    border: 1px solid transparent;
    transition: all .2s;
    font-size: .92rem;
    font-weight: 600;
  }
  .bt-admin-link + .bt-admin-link {
    margin-top: .4rem;
  }
  .bt-admin-link:hover {
    color: var(--text);
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.03);
  }
  .bt-admin-link.active {
    color: #000;
    background: var(--gold);
    border-color: var(--gold);
  }
  .bt-admin-main {
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    padding: 1rem;
  }
  .bt-block-title {
    margin: 0 0 1rem;
    font-family: var(--serif);
    font-size: 1.35rem;
    color: var(--gold-strong);
  }

  .bt-agency-panel .bt-upload-form {
    margin-bottom: 1.2rem;
  }

  /* Girls list */
  .bt-girls-list { display: flex; flex-direction: column; gap: .7rem; }
  .bt-girl-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    padding: .8rem 1rem;
  }
  .bt-girl-row img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .bt-girl-row-no-img {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    flex-shrink: 0;
  }
  .bt-girl-row-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
  }
  .bt-girl-row-info strong { color: var(--text); font-size: 1rem; }
  .bt-girl-row-info span { color: var(--muted); font-size: .82rem; }
  .bt-girl-row-actions { display: flex; gap: .5rem; }

  /* Edit header */
  .bt-edit-header { margin-bottom: 1.5rem; }
  .bt-edit-header h3 { color: var(--gold-strong); font-family: var(--serif); font-size: 1.4rem; margin: .4rem 0 0; }
  .bt-back-link { color: var(--muted); font-size: .88rem; text-decoration: none; }
  .bt-back-link:hover { color: var(--gold); }

  /* Gallery thumbs in edit view */
  .bt-current-gallery { margin-bottom: 1.5rem; }
  .bt-gallery-label { color: var(--muted); font-size: .85rem; margin-bottom: .6rem; }
  .bt-gallery-thumbs { display: flex; flex-wrap: wrap; gap: .6rem; }
  .bt-thumb-wrap {
    position: relative;
    width: 80px;
    height: 80px;
  }
  .bt-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
  .bt-thumb-del {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #c0392b;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
  }
  .bt-thumb-del:hover { background: #e74c3c; }

  .bt-type-select-wrap { position: relative; }
  .bt-type-del {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #c0392b;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    border: 0;
    cursor: pointer;
  }
  .bt-type-del:hover { background: #e74c3c; }

  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
     FORMULARIO EXTENDIDO
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

  .bt-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 0;
  }
  .bt-form-row > div { display: flex; flex-direction: column; gap: .3rem; }
  .bt-form-row > div label { margin-bottom: 0; }
  .bt-form-row > div input,
  .bt-form-row > div select { margin-bottom: 0; }

  .bt-form-section-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 1.8rem 0 .6rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid rgba(212,175,55,.2);
  }

  /* Services picker (form) */
  .bt-services-picker {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 0;
  }
  .bt-svc-chip {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .38rem .9rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.2);
    color: var(--muted);
    font-size: .83rem;
    font-weight: 500;
    transition: all .15s;
    user-select: none;
    position: relative;
  }
  .bt-svc-chip input[type="checkbox"] { display: none; }
  .bt-svc-del {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 0;
    background: #c0392b;
    color: #fff;
    font-weight: 700;
    font-size: .7rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .bt-svc-del:hover { background: #e74c3c; }
  .bt-svc-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .bt-svc-chip.active {
    background: rgba(212,175,55,.15);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
  }

  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
     RESPONSIVE â€” PERFIL Y PANEL
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

  @media (max-width: 1024px) {
    .girl-hero-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .girl-hero-media img { max-height: 500px; }
    .girl-details-grid { grid-template-columns: 1fr; gap: 2rem; }

    .bt-admin-layout {
      grid-template-columns: 1fr;
    }
    .bt-admin-sidebar {
      position: static;
    }
  }

  @media (max-width: 720px) {
    .girl-hero-info h1 { font-size: 1.8rem; }
    .girl-cta-btns { flex-direction: column; }
    .bt-girl-row { flex-wrap: wrap; }
    .bt-form-row { grid-template-columns: 1fr; }
  }


