/* ============================================================
   VELVETSTAGE — Design System
   Fondo: #0A0A0A | Dorado: #C9A84C | Elegancia sin límites
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --bg:        #0A0A0A;
  --surface:   #111111;
  --card:      #161616;
  --card-hover:#1C1C1C;
  --border:    rgba(201,168,76,.18);
  --border-h:  rgba(201,168,76,.45);

  --gold:      #C9A84C;
  --gold-lt:   #E8C96A;
  --gold-dk:   #9A7830;
  --gold-glow: rgba(201,168,76,.25);

  --white:     #FFFFFF;
  --t1:        #F0EAD6;
  --t2:        #A89070;
  --t3:        #5A5045;

  --green:     #4CAF82;
  --red:       #E05050;
  --blue:      #5078C9;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow:      0 4px 24px rgba(0,0,0,.6);
  --shadow-gold: 0 0 30px rgba(201,168,76,.2);

  --nav-h: 140px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* Desktop: taller nav to accommodate larger logo (cropped to show only gold).
   Scoped to `.nav .nav-logo` so the footer brand logo is NOT affected. */
@media (min-width: 769px) {
  :root { --nav-h: 170px; }
  .nav .nav-logo {
    overflow: hidden;
    height: 130px;
  }
}

/* Mobile: same crop applied proportionally (108px image → 70px visible gold area).
   Scoped to `.nav .nav-logo` so the footer brand logo is NOT affected. */
@media (max-width: 768px) {
  :root { --nav-h: 100px; }
  .nav .nav-logo {
    overflow: hidden;
    height: 70px;
  }
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--t1);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.7; color: var(--t2); }

.gold { color: var(--gold); }
.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title { margin-bottom: .5rem; }
.section-sub { color: var(--t2); margin-bottom: 2.5rem; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: .9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #0A0A0A;
  font-weight: 600;
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--border-h);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}
.btn-ghost {
  color: var(--t2);
  padding: .6rem 1rem;
}
.btn-ghost:hover { color: var(--gold); }
.btn-sm { padding: .5rem 1.2rem; font-size: .8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-wa {
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-telegram {
  background: #229ED9;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.btn-telegram:hover { background: #1a8abf; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(34,158,217,.3); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { opacity: .85; }

/* ─── Pills / Badges ─────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pill-available { background: rgba(76,175,130,.15); color: var(--green); border: 1px solid rgba(76,175,130,.3); }
.pill-available::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-green 2s infinite; }
.pill-busy    { background: rgba(224,80,80,.12); color: var(--red); border: 1px solid rgba(224,80,80,.25); }
.pill-gold    { background: rgba(201,168,76,.12); color: var(--gold); border: 1px solid var(--border); }
.pill-new     { background: var(--gold); color: #000; font-weight: 700; }

@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,175,130,.5); }
  50%      { box-shadow: 0 0 0 4px rgba(76,175,130,0); }
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav-logo span { color: var(--gold); }
.nav-logo img {
  height: 204px;
  width: auto;
  display: block;
}
.footer-brand .nav-logo img { height: 260px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--t2);
  letter-spacing: .03em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-menu-btn span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

/* ─── Mobile Nav ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-menu-btn {
    display: flex;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
  }
  .nav-cta .btn { display: none; }
  .nav-cta .btn:last-child { display: inline-flex; padding: .5rem 1rem; font-size: .8rem; min-height: 44px; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-mobile-open .nav-links li a {
    display: block;
    padding: .9rem .5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-mobile-open .nav-links li:last-child a { border-bottom: none; }
  /* Hamburger → X animation */
  .nav-mobile-open .nav-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-mobile-open .nav-menu-btn span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-mobile-open .nav-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 460px;
  min-height: 420px;
  max-height: 56vh;
  overflow: hidden;
  margin: calc(var(--nav-h) + 1rem) 1.5rem 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,0,0,.4);
}
.hero-slides { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,.3) 0%,
    rgba(10,10,10,.15) 40%,
    rgba(10,10,10,.7) 75%,
    rgba(10,10,10,.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.5rem 2.5rem;
  max-width: 800px;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }
.hero-stats { pointer-events: none; }
.hero-content .section-label { font-size: .75rem; }
.hero-title {
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: .75rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: 1.05rem; color: var(--t2); margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  display: flex;
  gap: .5rem;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,.3);
  border: 1px solid var(--gold);
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.hero-stats {
  position: absolute;
  bottom: 3rem; right: 2.5rem;
  display: flex;
  gap: 2rem;
  z-index: 3;
}
.hero-stat { text-align: center; }
.hero-stat-n {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-l { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--t2); }

/* ─── Search Bar ─────────────────────────────────────────── */
.search-bar-wrap {
  position: relative;
  z-index: 5;
  margin-top: -2.5rem;
  padding: 0 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.search-bar {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border-h);
  border-radius: var(--r-xl);
  padding: .5rem .5rem .5rem 1.5rem;
  gap: 1rem;
  box-shadow: var(--shadow), var(--shadow-gold);
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--t1);
  font-size: .95rem;
  padding: .5rem 0;
}
.search-bar input::placeholder { color: var(--t3); }
.search-divider { width: 1px; height: 28px; background: var(--border); }
.search-filter {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--t2);
  font-size: .85rem;
  padding: 0 .75rem;
}
.search-filter select {
  background: none;
  border: none;
  color: var(--t2);
  outline: none;
  font-size: .85rem;
  cursor: pointer;
}
.search-filter select option { background: var(--card); }
.search-bar .btn-gold { border-radius: calc(var(--r-xl) - 4px); padding: .75rem 1.75rem; }

/* ─── Sections ───────────────────────────────────────────── */
.section {
  padding: 5rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

/* ─── Model Card ─────────────────────────────────────────── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.model-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.model-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 40px rgba(201,168,76,.12);
}
.model-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.model-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.model-card:hover .model-card-img { transform: scale(1.05); }

/* Hover carousel dots */
.card-carousel-dots {
  position: absolute;
  bottom: .75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity .3s;
}
.model-card:hover .card-carousel-dots { opacity: 1; }
.card-carousel-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: var(--transition);
}
.card-carousel-dot.active { background: var(--gold); width: 14px; border-radius: 3px; }

/* Hover strip carousel */
.card-img-strip {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform .5s ease;
}
.card-img-strip img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, transparent 50%);
}
.card-top-badges {
  position: absolute;
  top: .75rem; left: .75rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.card-fav-btn {
  position: absolute;
  top: .6rem; right: .75rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  font-size: 1rem;
  transition: var(--transition);
}
.card-fav-btn:hover, .card-fav-btn.active { color: var(--red); }
.model-card-info {
  padding: 1rem 1.1rem 1.1rem;
}
.model-card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .15rem;
}
.model-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--t2);
  margin-bottom: .6rem;
}
.model-card-tags {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.tag {
  font-size: .68rem;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: rgba(201,168,76,.08);
  color: var(--t2);
  border: 1px solid var(--border);
  letter-spacing: .03em;
}
.model-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .35rem;
}
.model-card-footer .btn-sm {
  padding: .35rem .55rem;
  font-size: .72rem;
  flex-shrink: 0;
}
.model-card-rate {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 600;
}
.model-card-rate span { font-size: .7rem; font-family: var(--font-sans); color: var(--t3); }

/* Star rating */
.stars { display: flex; gap: 2px; color: var(--gold); font-size: .75rem; }
.star-empty { color: var(--t3); }

/* ─── Horizontal Carousel ────────────────────────────────── */
.h-carousel-wrap { position: relative; }
.h-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: .5rem;
}
.h-carousel::-webkit-scrollbar { display: none; }
.h-carousel > * { scroll-snap-align: start; flex-shrink: 0; }
.h-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,10,10,.85);
  border: 1px solid var(--border-h);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  z-index: 2;
}
.h-carousel-nav:hover { background: var(--gold-glow); }
.h-carousel-prev { left: -20px; }
.h-carousel-next { right: -20px; }

/* ─── Category Cards ─────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.cat-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.2) 60%, transparent 100%);
}
.cat-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
}
.cat-card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .15rem;
}
.cat-card-count { font-size: .72rem; color: var(--gold); }

/* ─── Filters Bar ────────────────────────────────────────── */
.filters-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.filter-group { display: flex; align-items: center; gap: .5rem; }
.filter-group label { font-size: .75rem; color: var(--t2); letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.filter-select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--t1);
  padding: .45rem .85rem;
  font-size: .83rem;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}
.filter-select:focus { border-color: var(--gold); }
.filter-select option { background: var(--surface); }
.filter-divider { width: 1px; height: 28px; background: var(--border); margin: 0 .25rem; }
.filter-toggle-group { display: flex; gap: .4rem; }
.filter-toggle {
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  color: var(--t2);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--transition);
}
.filter-toggle:hover, .filter-toggle.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* ─── Profile Page ───────────────────────────────────────── */
.profile-hero {
  position: relative;
  padding-top: var(--nav-h);
}
.profile-carousel {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}
.profile-carousel-track {
  display: flex;
  height: 100%;
  transition: transform .6s ease;
}
.profile-carousel-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.2) 0%, rgba(10,10,10,.85) 100%);
}
.profile-carousel-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-h);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 3;
}
.profile-carousel-ctrl:hover { background: var(--gold-glow); }
.profile-carousel-ctrl.prev { left: 1.5rem; }
.profile-carousel-ctrl.next { right: 1.5rem; }
.profile-carousel-counter {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: .78rem;
  color: var(--t2);
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(8px);
  padding: .3rem .75rem;
  border-radius: 999px;
  z-index: 3;
}
.profile-info-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.profile-name-block {}
.profile-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .5rem;
}
.profile-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.profile-meta-item { display: flex; align-items: center; gap: .35rem; font-size: .83rem; color: var(--t2); }
.profile-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.profile-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  padding: 2rem 2.5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .profile-body { grid-template-columns: 1fr; padding: 1.5rem; }
}

.profile-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.profile-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Profile stats */
.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.profile-stat {
  text-align: center;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.profile-stat-n {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}
.profile-stat-l { font-size: .7rem; color: var(--t2); text-transform: uppercase; letter-spacing: .06em; }

/* Calendar */
.calendar-collapse-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--t1);
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--transition);
}
.calendar-collapse-btn:hover { border-color: var(--border-h); }
.calendar-collapse-btn .arrow { margin-left: auto; transition: transform .3s; }
.calendar-collapse-btn.open .arrow { transform: rotate(180deg); }
.calendar-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  background: var(--card);
}
.calendar-wrap.open { max-height: 500px; }
.calendar-inner { padding: 1.5rem; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.calendar-month { font-family: var(--font-serif); font-size: 1rem; }
.calendar-nav-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); color: var(--t2); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.calendar-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day-name { font-size: .68rem; text-align: center; color: var(--t3); text-transform: uppercase; padding: .4rem 0; }
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: .82rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.calendar-day:hover { background: var(--gold-glow); color: var(--gold); }
.calendar-day.available { color: var(--green); font-weight: 600; }
.calendar-day.available::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--green); border-radius: 50%; }
.calendar-day.booked { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.calendar-day.today { border: 1px solid var(--gold); color: var(--gold); }
.calendar-day.selected { background: var(--gold); color: #000; font-weight: 700; }
.calendar-day.empty { cursor: default; }
.calendar-legend { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.calendar-legend-item { display: flex; align-items: center; gap: .35rem; font-size: .72rem; color: var(--t2); }
.calendar-legend-dot { width: 8px; height: 8px; border-radius: 50%; }

/* Reviews */
.review-card {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.review-card:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 600;
  color: #000;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-size: .85rem; font-weight: 600; }
.review-date { font-size: .72rem; color: var(--t2); }
.review-text { font-size: .85rem; color: var(--t2); line-height: 1.6; }

/* ─── Admin Panel ────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.admin-nav-section { padding: .75rem 1.5rem .25rem; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--t3); }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  font-size: .88rem;
  color: var(--t2);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.admin-nav-item:hover { color: var(--t1); background: rgba(255,255,255,.03); }
.admin-nav-item.active { color: var(--gold); background: rgba(201,168,76,.06); }
.admin-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
}
.admin-nav-item .badge {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}
.admin-main { flex: 1; padding: 2rem; overflow-y: auto; }
.admin-page { display: none; }
.admin-page.active { display: block; }
.admin-page-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: .25rem;
}
.admin-page-sub { color: var(--t2); font-size: .85rem; margin-bottom: 2rem; }

/* KPI cards */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.kpi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: var(--transition);
}
.kpi-card:hover { border-color: var(--border-h); }
.kpi-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}
.kpi-icon.gold { background: rgba(201,168,76,.12); color: var(--gold); }
.kpi-icon.green { background: rgba(76,175,130,.12); color: var(--green); }
.kpi-icon.blue  { background: rgba(80,120,201,.12); color: var(--blue); }
.kpi-icon.red   { background: rgba(224,80,80,.12);  color: var(--red); }
.kpi-label { font-size: .72rem; color: var(--t2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.kpi-value { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--t1); line-height: 1; }
.kpi-delta { font-size: .75rem; margin-top: .35rem; }
.kpi-delta.up { color: var(--green); }
.kpi-delta.down { color: var(--red); }

/* Chart area */
.chart-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.chart-title { font-family: var(--font-serif); font-size: 1.1rem; }
.chart-tabs { display: flex; gap: .4rem; }
.chart-tab {
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .75rem;
  color: var(--t2);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.chart-tab.active { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 600; }
.chart-canvas-wrap {
  position: relative;
  height: 220px;
}
canvas { width: 100% !important; }

/* Table */
.admin-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.admin-table th {
  padding: .85rem 1.25rem;
  text-align: left;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t2);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--t1);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr { transition: var(--transition); background: var(--card); }
.admin-table tbody tr:hover { background: var(--card-hover); }
.table-avatar { display: flex; align-items: center; gap: .75rem; }
.table-avatar img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.table-name { font-weight: 500; }
.table-sub { font-size: .72rem; color: var(--t2); }
.table-actions { display: flex; gap: .5rem; }
.tbl-btn {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--t2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.tbl-btn:hover { border-color: var(--gold); color: var(--gold); }
.tbl-btn.danger:hover { border-color: var(--red); color: var(--red); }

/* Search admin */
.admin-search {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.admin-search-input {
  flex: 1;
  min-width: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .6rem 1rem;
  color: var(--t1);
  outline: none;
  font-size: .85rem;
  transition: var(--transition);
}
.admin-search-input:focus { border-color: var(--gold); }
.admin-search-input::placeholder { color: var(--t3); }

/* ─── Panel Doncellas ────────────────────────────────────── */
.modelo-layout { display: flex; min-height: 100vh; padding-top: var(--nav-h); }
.modelo-sidebar { width: 240px; flex-shrink: 0; background: var(--surface); border-right: 1px solid var(--border); padding: 2rem 0; position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow-y: auto; }
.modelo-profile-mini { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.modelo-profile-mini img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: .6rem; }
.modelo-profile-mini .name { font-family: var(--font-serif); font-size: 1rem; }
.modelo-profile-mini .sub { font-size: .75rem; color: var(--t2); }
.modelo-main { flex: 1; padding: 2rem; }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border-h);
  border-radius: var(--r-lg);
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-icon { font-size: 2.5rem; color: var(--t3); margin-bottom: .75rem; }
.upload-zone h4 { margin-bottom: .25rem; }
.upload-zone p { font-size: .82rem; }

/* Upload preview grid */
.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: .75rem;
  margin-top: 1rem;
}
.upload-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.upload-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview-remove {
  position: absolute;
  top: .25rem; right: .25rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(224,80,80,.85);
  color: #fff;
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Availability grid */
.avail-grid {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: .5rem;
  font-size: .8rem;
}
.avail-header { font-size: .7rem; color: var(--t2); text-align: center; padding: .25rem; }
.avail-time { color: var(--t2); padding: .35rem .5rem; white-space: nowrap; }
.avail-slot {
  aspect-ratio: 2.5;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: var(--transition);
}
.avail-slot.on { background: rgba(76,175,130,.15); border-color: rgba(76,175,130,.4); }
.avail-slot:hover { border-color: var(--gold); }

/* Referral */
.referral-link-box {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
}
.referral-link-box input {
  flex: 1;
  background: none;
  border: none;
  color: var(--gold);
  font-size: .85rem;
  outline: none;
}

/* ─── Membership ─────────────────────────────────────────── */
.mem-hero {
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 700px;
  margin: 0 auto;
}
.mem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  align-items: start;
}
.mem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.mem-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}
.mem-card.featured .mem-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #000;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1.25rem;
  border-radius: 999px;
}
.mem-plan-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.mem-price {
  margin: 1.25rem 0;
}
.mem-price-n {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.mem-price-n sup { font-size: 1.4rem; vertical-align: super; }
.mem-price-period { font-size: .8rem; color: var(--t2); }
.mem-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.mem-features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.75rem; }
.mem-feature { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--t2); }
.mem-feature .check { color: var(--green); font-size: .9rem; flex-shrink: 0; }
.mem-feature .cross { color: var(--t3); }
.mem-card .btn { width: 100%; justify-content: center; }

/* Payment form */
.payment-form {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: none;
}
.payment-form.active { display: block; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .78rem; color: var(--t2); margin-bottom: .4rem; letter-spacing: .05em; text-transform: uppercase; }
.form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  color: var(--t1);
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-input::placeholder { color: var(--t3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.card-input-wrap { position: relative; }
.card-icons {
  position: absolute;
  right: .75rem; top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: .3rem;
  font-size: .9rem;
}
.payment-secure { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--t3); margin-top: 1rem; justify-content: center; }

/* ─── Category search dropdown ───────────────────────────── */
.cat-search-section-lbl {
  padding: .5rem 1.25rem .25rem;
  font-size: .68rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.cat-search-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.25rem;
  color: var(--t1);
  text-decoration: none;
  transition: background .15s;
}
.cat-search-row:hover { background: rgba(201,168,76,.07); }
.cat-search-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(201,168,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
}
.cat-search-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cat-search-name { font-size: .88rem; font-weight: 600; }
.cat-search-sub  { font-size: .72rem; color: var(--t3); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: .75rem; }
.footer-brand p { font-size: .85rem; max-width: 280px; }
.footer-heading { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .85rem; color: var(--t2); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--t3);
  flex-wrap: wrap;
  gap: .5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-social { display: flex; gap: .75rem; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  font-size: .9rem;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card);
  border: 1px solid var(--border-h);
  border-radius: var(--r-xl);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow), var(--shadow-gold);
  transform: translateY(20px) scale(.97);
  transition: transform .3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-title { font-family: var(--font-serif); font-size: 1.3rem; }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--t2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { border-color: var(--red); color: var(--red); }

/* ─── Toast ──────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.toast {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border-h);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  font-size: .85rem;
  min-width: 280px;
  animation: slideInRight .3s ease;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--gold); }
.toast-icon { font-size: 1rem; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ─── Floating WhatsApp ──────────────────────────────────── */
/* ─── Floating contact button group ─────────────────────── */
.float-btns {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  z-index: 900;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
  text-decoration: none;
}
.float-btn-wa {
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
}
.float-btn-wa:hover  { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.float-btn-telegram {
  background: #229ED9;
  box-shadow: 0 4px 18px rgba(34,158,217,.4);
}
.float-btn-telegram:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(34,158,217,.55); }
/* keep old .wa-float working for pages not yet updated */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  z-index: 900;
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ─── Loading / Skeleton ─────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--card) 25%, var(--card-hover) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-md);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ─── Switch toggle ──────────────────────────────────────── */
.switch-wrap { display: flex; align-items: center; gap: .75rem; }
.switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.switch-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--t3);
  border-radius: 50%;
  transition: var(--transition);
}
.switch input:checked + .switch-slider { background: rgba(76,175,130,.2); border-color: var(--green); }
.switch input:checked + .switch-slider::before { transform: translateX(20px); background: var(--green); }
.switch-label { font-size: .85rem; color: var(--t2); }

/* ─── Progress bar ───────────────────────────────────────── */
.progress-bar { height: 6px; background: var(--surface); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dk), var(--gold)); border-radius: 3px; transition: width .5s ease; }

/* ─── Tabs ───────────────────────────────────────────────── */
.tabs { display: flex; gap: .25rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.tab-btn {
  padding: .75rem 1.25rem;
  font-size: .85rem;
  color: var(--t2);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--t1); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── Notifications dot ──────────────────────────────────── */
.notif-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  top: 2px; right: 2px;
}

/* ─── Page Header ────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 4rem) 2.5rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .admin-sidebar { width: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 3rem 1.25rem; }
  .search-bar-wrap { padding: 8px 1rem 0; margin-top: 16px; }
  .hero-brand-actions > .hero-brand-cta-sec { display: none !important; }
  .hero-content { padding: 0 1.25rem 4rem; }
  .hero-stats { right: 1.25rem; bottom: 2rem; gap: 1rem; }
  .model-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .admin-sidebar, .modelo-sidebar { display: none; }
  .filters-bar { gap: .5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-links a { font-size: .9rem; }
  .footer-bottom { font-size: .8rem; }
  .mem-card.featured { transform: none; }
  .profile-body { padding: 1rem; }
  .profile-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats {
    position: relative;
    bottom: auto; right: auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: .75rem 1rem;
    background: rgba(10,10,10,.7);
    backdrop-filter: blur(8px);
    z-index: 3;
  }
  .hero-stat-n { font-size: 1.3rem; }
  .hero-stat-l { font-size: .6rem; }
}

/* ─── Quick View modal grid ──────────────────────────────── */
.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 580px) {
  .qv-grid { grid-template-columns: 1fr; }
}

/* ─── Hero brand + pagos responsive ─────────────────────── */
@media (max-width: 900px) {
  .hero-brand-content,
  .hero-pagos-content { padding: 1.5rem 2rem; }
  .hero-brand-title { font-size: clamp(1.8rem, 5.5vw, 2.6rem); }
  .hero-pagos-grid { gap: .6rem; }
  .hero-pago-item { padding: .8rem 1rem; min-width: 100px; }
}
@media (max-width: 600px) {
  .hero-brand-content,
  .hero-pagos-content { padding: 1rem 1.1rem; gap: .5rem; }
  .hero-brand-title { font-size: clamp(1.4rem, 6.5vw, 1.9rem); }
  .hero-brand-desc { font-size: .8rem; line-height: 1.45; }
  .hero-brand-cta { padding: .55rem 1.1rem; font-size: .75rem; }
  .hero-brand-cta-sec { padding: .55rem 1.1rem; font-size: .75rem; }
  .hero-brand-stats { gap: .85rem; margin-top: .15rem; }
  .hero-brand-stat-n { font-size: 1.05rem; }
  .hero-brand-stat-l { font-size: .55rem; }
  .hero-brand-stat-div { height: 24px; }
  .hero-brand-label { font-size: .62rem; letter-spacing: .1em; }
  .hero-pagos-grid { gap: .4rem; }
  .hero-pago-item { padding: .55rem .7rem; min-width: 80px; gap: .25rem; }
  .hero-pago-icon { width: 32px; height: 32px; font-size: .9rem; }
  .hero-pago-name { font-size: .75rem; }
  .hero-pago-sub, .hero-pago-desc { font-size: .62rem; }
  .hero-pagos-badge { font-size: .62rem; margin-top: .35rem; }
  .hero-promo-overlay { padding: 2.5rem 1.1rem 1rem; gap: .25rem; }
  .hero-promo-badge { font-size: .65rem; padding: .25rem .7rem; }
  .hero-promo-name { font-size: clamp(1.2rem, 5.5vw, 1.7rem); }
  .hero-promo-zone { font-size: .72rem; }
  .hero-promo-offer { font-size: clamp(.9rem, 3vw, 1.1rem); margin-top: .15rem; }
  .hero-promo-desc { font-size: .75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-promo-prices { gap: .75rem; margin-top: .25rem; }
  .hero-promo-original { font-size: .8rem; }
  .hero-promo-discounted { font-size: clamp(1.2rem, 5.5vw, 1.6rem); }
  .hero-promo-cta { margin-top: .3rem; font-size: .7rem; }
}

/* ─── Características físicas ────────────────────────────── */
.caract-grid {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.caract-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem .6rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: .8rem;
}
.caract-lbl { color: var(--t2); display:flex; align-items:center; gap:.4rem; }
.caract-lbl i { color: var(--gold); font-size: .72rem; width: 12px; text-align:center; }
.caract-val { color: var(--t1); font-weight: 500; }

/* ─── Servicios items ────────────────────────────────────── */
.servicio-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--transition);
  cursor: default;
}
.servicio-item:hover { border-color: var(--border-h); background: var(--card-hover); }
.servicio-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: rgba(201,168,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
}
.servicio-name { font-size: .82rem; font-weight: 500; color: var(--t1); }
.servicio-price { font-size: .72rem; color: var(--gold); font-family: var(--font-serif); }

/* ─── Media thumbnail sidebar ────────────────────────────── */
.media-thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  transition: var(--transition);
}
.media-thumb img { width:100%; height:100%; object-fit:cover; }
.media-thumb:hover { border-color: var(--border-h); }
.media-thumb.active { border-color: var(--gold); box-shadow: 0 0 12px var(--gold-glow); }
.media-thumb-video-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
}
.media-thumb-video-badge i { color: #fff; font-size: .9rem; }

/* ─── Hero main content fade ────────────────────────────── */
.hero-content { transition: opacity .55s ease; }

/* ─── Hero brand slide background ───────────────────────── */
.hero-slide-brand-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(201,168,76,.07) 0%, transparent 50%),
    linear-gradient(135deg, #0c0900 0%, #100d06 35%, #080808 65%, #040404 100%);
  overflow: hidden;
}
/* subtle dot-grid texture */
.hb-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.3) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .14;
  pointer-events: none;
}
/* diagonal lines texture */
.hb-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,.022) 40px,
    rgba(201,168,76,.022) 41px
  );
  pointer-events: none;
}
/* warm glow from left — behind content */
.hb-glow-left {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  top: 50%;
  left: 10%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, rgba(201,168,76,.03) 45%, transparent 70%);
  pointer-events: none;
}
/* right edge fade to blend mosaic into dark bg */
.hb-fade-right {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 18%;
  background: linear-gradient(to left, #040404, transparent);
  pointer-events: none;
  z-index: 2;
}

/* ─── Hero pagos slide background ────────────────────────── */
.hero-slide-pagos-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(80,40,160,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,.15) 0%, transparent 45%),
    linear-gradient(135deg, #04030a 0%, #080518 40%, #0a0710 70%, #030208 100%);
  overflow: hidden;
}
/* diagonal stripe texture */
.hp-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255,255,255,.018) 50px,
      rgba(255,255,255,.018) 51px
    );
  pointer-events: none;
}
/* large decorative card shape — right side */
.hp-glow-1 {
  position: absolute;
  width: 380px;
  height: 240px;
  border-radius: 22px;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(-8deg);
  background: linear-gradient(135deg, rgba(80,40,160,.3) 0%, rgba(30,15,70,.5) 100%);
  border: 1px solid rgba(130,80,255,.25);
  box-shadow: 0 0 60px rgba(80,40,160,.2), inset 0 1px 0 rgba(255,255,255,.06);
  pointer-events: none;
}
.hp-glow-1::after {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  width: 44px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(201,168,76,.6), rgba(201,168,76,.25));
  box-shadow: 0 0 12px rgba(201,168,76,.3);
}
/* second card — slightly behind */
.hp-glow-2 {
  position: absolute;
  width: 380px;
  height: 240px;
  border-radius: 22px;
  top: 50%;
  right: 9%;
  transform: translateY(-42%) rotate(6deg);
  background: linear-gradient(135deg, rgba(201,168,76,.12) 0%, rgba(60,30,5,.4) 100%);
  border: 1px solid rgba(201,168,76,.18);
  pointer-events: none;
}
.hero-pagos-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 4rem 1.75rem 4rem;
  gap: .85rem;
}
.hero-brand-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 56%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 2.5rem 1.75rem 4rem;
  gap: .9rem;
  z-index: 3;
}
.hero-brand-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero-brand-title {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero-brand-title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201,168,76,.4);
}
.hero-brand-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  max-width: 520px;
}
.hero-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .15rem;
  padding: .7rem 1.6rem;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(201,168,76,.35);
}
.hero-brand-cta:hover {
  background: #e0bc58;
  box-shadow: 0 0 50px rgba(201,168,76,.55);
  transform: translateY(-2px);
}
.hero-brand-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-brand-cta-sec {
  display: inline-flex;
  align-items: center;
  padding: .7rem 1.6rem;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.hero-brand-cta-sec:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* photo mosaic — right panel */
.hero-brand-mosaic {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.25rem 3.5rem 1.25rem 1rem;
  z-index: 1;
  overflow: hidden;
}
.hero-brand-mosaic-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.hero-brand-mosaic-col:nth-child(2) {
  margin-top: 32px;
}
.hbm-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.22);
  box-shadow: 0 16px 50px rgba(0,0,0,.75);
  width: 100%;
  aspect-ratio: 2 / 3;
}
.hbm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Sin Ken Burns: las fotos se ven completas, sin escalado ni paneo */
}
@media (max-width: 900px) {
  .hero-brand-mosaic { display: none; }
  .hero-brand-content { width: 100%; padding: 1.5rem 2rem; }
}
.hero-brand-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: .35rem;
}
.hero-brand-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hero-brand-stat-n {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 1;
}
.hero-brand-stat-l {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-brand-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,.25);
}

/* ─── Hero pagos slide ───────────────────────────────────── */
.hero-pagos-grid {
  display: flex;
  gap: 1.25rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}
.hero-pago-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-md);
  padding: .9rem 1.25rem;
  min-width: 120px;
  transition: var(--transition);
}
.hero-pago-item:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.45);
  transform: translateY(-3px);
}
.hero-pago-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}
.hero-pago-name {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.hero-pago-desc,
.hero-pago-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.hero-pagos-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .75rem;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .05em;
}
.hero-pagos-badge i { color: var(--gold); }

/* ─── Hero promo overlay text ────────────────────────────── */
.hero-promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.5rem 3rem 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  border-radius: 100px;
  padding: .35rem 1rem;
  width: fit-content;
  box-shadow: 0 0 18px var(--gold-glow);
}
.hero-promo-name {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 3px 20px rgba(0,0,0,.7);
  letter-spacing: -.01em;
}
.hero-promo-zone {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}
.hero-promo-offer {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-top: .3rem;
  text-shadow: 0 0 30px rgba(201,168,76,.5);
}
.hero-promo-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  line-height: 1.55;
}
.hero-promo-prices {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: .5rem;
}
.hero-promo-original {
  font-size: 1.1rem;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
}
.hero-promo-discounted {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-serif);
  text-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(201,168,76,.3);
  line-height: 1;
}
.hero-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .6rem;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.4);
  padding-bottom: .15rem;
  text-decoration: none;
  width: fit-content;
  width: fit-content;
}

/* ─── Model card dual prices ────────────────────────────── */
.model-card-prices {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-top: .5rem;
}
.model-card-prices > div {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: .3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: .25rem;
}
.model-card-prices > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.model-card-price-label {
  font-size: .72rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.model-card-price-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
}

/* ─── Gallery navigation arrows ─────────────────────────── */
.media-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,.72);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: .9rem;
}
.media-gallery-nav:hover {
  background: rgba(201,168,76,.25);
  border-color: var(--gold);
  color: var(--gold);
}
.media-gallery-prev { left: .6rem; }
.media-gallery-next { right: .6rem; }

/* ─── Modelos search bar ─────────────────────────────────── */
.modelos-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.modelos-search-icon {
  position: absolute;
  left: 1rem;
  color: var(--t3);
  font-size: .85rem;
  pointer-events: none;
}
.modelos-search-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: .7rem 3rem .7rem 2.75rem;
  color: var(--t1);
  font-size: .9rem;
  transition: var(--transition);
  outline: none;
}
.modelos-search-input::placeholder { color: var(--t3); }
.modelos-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ─── Utilities ──────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.text-sm { font-size: .82rem; }
.text-xs { font-size: .72rem; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--t2); }
.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════════════════════════
   MOBILE-FIRST ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */

/* ─── Touch targets — minimum 44×44px ───────────────────── */
.btn, .nav-links a, .filter-toggle, .tab-btn,
.social-icon, .float-btn, .modal-close, .tbl-btn,
.h-carousel-nav, .card-fav-btn, .calendar-nav-btn {
  min-height: 44px;
  min-width: 44px;
}
/* Inline/flex buttons that shouldn't grow wide */
.filter-toggle, .tab-btn, .tbl-btn, .social-icon,
.modal-close, .card-fav-btn, .calendar-nav-btn,
.h-carousel-nav { min-width: 44px; }

/* ─── Search bar — colapsable en mobile ──────────────────── */
.search-bar-wrap {
  transition: var(--transition);
}
.search-bar-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border-h);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto;
  cursor: pointer;
}
@media (max-width: 768px) {
  .search-bar-toggle { display: flex; }
  .search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--r-lg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    margin-top: .5rem;
    transition: max-height .35s ease, opacity .3s ease;
  }
  .search-bar.mobile-open {
    max-height: 500px;
    opacity: 1;
    pointer-events: all;
  }
  .search-divider { display: none; }
  .search-filter {
    padding: 0;
    width: 100%;
  }
  .search-filter select {
    width: 100%;
    padding: .6rem .5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    color: var(--t1);
    font-size: .9rem;
  }
  .search-bar input {
    padding: .6rem 0;
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
  }
  .search-bar .btn-gold { width: 100%; justify-content: center; min-height: 48px; }
}

/* ─── Carousel — min-width 260px en mobile, scroll suave ── */
@media (max-width: 768px) {
  .h-carousel {
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 1.25rem;
    padding-left: 0;
  }
  .h-carousel > .model-card,
  .h-carousel > * {
    min-width: 260px;
    max-width: 280px;
  }
  .h-carousel-nav { display: none; }
}

/* ─── Why Doncellas — 2×2 en mobile ─────────────────────── */
@media (max-width: 600px) {
  .section > div[style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
/* Target the why-doncellas cards by their container */
.why-doncellas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 600px) {
  .why-doncellas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .why-doncellas-grid .profile-card {
    padding: 1rem;
  }
  .why-doncellas-grid .profile-card h4 {
    font-size: .9rem;
  }
  .why-doncellas-grid .profile-card p {
    font-size: .75rem;
  }
}

/* ─── Hero stats — fila compacta en mobile ───────────────── */
@media (max-width: 768px) {
  .hero-stats {
    position: relative;
    bottom: auto; right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: .65rem 1rem;
    background: rgba(10,10,10,.75);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    z-index: 3;
  }
  .hero-stat-n { font-size: 1.25rem; }
  .hero-stat-l { font-size: .58rem; }
}

/* ─── Float buttons — no se sobrepongan ─────────────────── */
.float-btns {
  bottom: 1.25rem;
  right: 1rem;
  gap: .5rem;
}
.float-btn {
  width: 50px; height: 50px;
  font-size: 1.3rem;
}
/* Ensure toasts don't overlap float buttons on mobile */
@media (max-width: 600px) {
  .toast-container { right: .75rem; bottom: 5.5rem; }
  .float-btns { bottom: 1rem; right: .75rem; }
}

/* ─── Footer — mobile stack, texto ≥14px ────────────────── */
@media (max-width: 600px) {
  .footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-grid { gap: 1.25rem; }
  .footer-brand p,
  .footer-links a { font-size: .875rem; }
  .footer-bottom { font-size: .8rem; flex-direction: column; align-items: flex-start; gap: .35rem; }
  .footer-heading { margin-bottom: .65rem; }
}

/* ─── Fluid typography with clamp() where missing ───────── */
h4 { font-size: clamp(.95rem, 2.2vw, 1.1rem); }
.section-label { font-size: clamp(.65rem, 1.5vw, .75rem); }
.model-card-name { font-size: clamp(.95rem, 2.5vw, 1.1rem); }
.nav-logo { font-size: clamp(1.3rem, 3.5vw, 1.6rem); }
.footer-brand .nav-logo { font-size: clamp(1.4rem, 4vw, 1.8rem); }

/* ─── Disable hover-only transforms on touch devices ────── */
@media (hover: none) {
  .model-card:hover { transform: none; box-shadow: none; }
  .btn-gold:hover { transform: none; }
  .btn-wa:hover { transform: none; }
  .btn-telegram:hover { transform: none; }
  .hero-pago-item:hover { transform: none; }
  .mem-card:hover { transform: none; }
  .cat-card:hover img { transform: none; }
  .model-card:hover .model-card-img { transform: none; }
  .card-carousel-dots { opacity: 1; }
}

/* ─── Filter bar — scroll horizontal en mobile ──────────── */
@media (max-width: 600px) {
  .filters-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: .85rem 1rem;
    gap: .5rem;
    scrollbar-width: none;
  }
  .filters-bar::-webkit-scrollbar { display: none; }
  .filter-group { flex-shrink: 0; }
  .filter-divider { display: none; }
}

/* ─── Page header — padding safe area ───────────────────── */
@media (max-width: 480px) {
  .page-header { padding: calc(var(--nav-h) + 2rem) 1.25rem 2rem; }
  .section { padding: 2.5rem 1rem; }
}

/* ─── Model card — comfortable tap area ─────────────────── */
.model-card-footer .btn-sm {
  min-height: 44px;
  min-width: 44px;
  padding: .5rem .75rem;
}

/* ─── Profile info bar — stack on mobile ────────────────── */
@media (max-width: 600px) {
  .profile-info-bar {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-actions { width: 100%; }
  .profile-actions .btn { flex: 1; justify-content: center; min-height: 48px; }
  .profile-name { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

/* ═══════════════════════════════════════════════════════════
   PWA INSTALL BANNER — shown only on mobile
   ═══════════════════════════════════════════════════════════ */
.pwa-install-banner {
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .6rem .85rem;
  background: #000;
  border-bottom: 1px solid var(--border-h);
  box-shadow: 0 2px 12px rgba(201,168,76,.12);
  position: relative;
  z-index: 1001;
}
.pwa-install-banner.is-visible { display: flex; }
.pwa-install-mark {
  width: 44px; height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.pwa-install-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
.pwa-install-copy strong {
  color: var(--t1);
  font-size: .82rem;
  font-weight: 600;
}
.pwa-install-copy span {
  color: var(--t2);
  font-size: .68rem;
  letter-spacing: .01em;
}
.pwa-install-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #000;
  font-weight: 700;
  font-size: .75rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  min-height: 34px;
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pwa-install-cta:active { opacity: .85; }
.pwa-install-close {
  color: var(--t3);
  padding: .35rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pwa-install-close:active { color: var(--gold); }

/* Hide install banner on desktop */
@media (min-width: 769px) {
  .pwa-install-banner { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   BOTTOM NAVIGATION — mobile only
   ═══════════════════════════════════════════════════════════ */
.bottom-nav {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 56px;
  background: #000;
  border-top: 1px solid var(--border-h);
  box-shadow: 0 -4px 16px rgba(0,0,0,.4);
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--t2);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
  min-height: 44px;
}
.bottom-nav-item i { font-size: 1.05rem; }
.bottom-nav-item.active,
.bottom-nav-item:active { color: var(--gold); }

/* Show bottom nav on mobile only */
@media (max-width: 768px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0)); }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE (≤768px) — GLOBAL OVERRIDES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Prevent horizontal scroll anywhere */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* General spacing */
  .section { padding: 2.25rem 1rem; }

  /* ── Install banner: fixed at top, push nav + page content down ── */
  .pwa-install-banner.is-visible {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    min-height: 52px;
  }
  body:has(.pwa-install-banner.is-visible) .nav { top: 52px; }
  body:has(.pwa-install-banner.is-visible) .hero { margin-top: calc(var(--nav-h) + 52px + .5rem); }
  body:has(.pwa-install-banner.is-visible) .page-header { margin-top: 52px; }

  /* ── Navigation ── */
  .nav { padding: 0 1rem; }
  .nav-logo { font-size: 14px; letter-spacing: .03em; }
  .nav-logo img { height: 108px; }
  .footer-brand .nav-logo img { height: 220px; }
  .nav-center { display: none; }
  .nav-links { display: none; }
  .nav-cta { gap: .35rem; }
  .nav-cta .btn-gold { display: none; }
  .nav-menu-btn {
    display: flex;
    width: 44px; height: 44px;
    min-width: 44px; min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  /* ── Hamburger drawer ── */
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    left: auto;
    width: min(78vw, 320px);
    background: #0A0A0A;
    border-left: 1px solid var(--border-h);
    padding: calc(var(--nav-h) + 1rem) 1.25rem 1.5rem;
    gap: 0;
    z-index: 999;
    box-shadow: -8px 0 32px rgba(0,0,0,.6);
    animation: drawerSlide .25s ease;
  }
  @keyframes drawerSlide {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
  }
  .nav-mobile-open::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(2px);
    z-index: 998;
  }
  .nav-mobile-open .nav-links li a {
    display: flex;
    align-items: center;
    padding: 1rem .5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    min-height: 48px;
  }

  /* ── Hero banner ── */
  .hero {
    height: 210px;
    min-height: 210px;
    max-height: 42vh;
    margin: calc(var(--nav-h) + .5rem) .75rem 0;
    border-radius: var(--r-md);
  }
  .hero-content {
    padding: 0 1rem 1.1rem;
    justify-content: flex-end;
  }
  .hero-title { font-size: 20px !important; line-height: 1.15; margin-bottom: .4rem; }
  .hero-desc  { display: none; }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    width: auto;
    flex-wrap: wrap;
  }
  .hero-actions .btn { justify-content: center; min-height: 40px; padding: .5rem 1rem; font-size: .75rem; }
  .hero-dots { bottom: .5rem; right: 50%; transform: translateX(50%); }
  .hero-dot { width: 6px; height: 6px; }
  .hero-dot.active { width: 18px; }

  /* Floating mosaic / mini-cards on hero */
  .hero-brand-mosaic,
  .hero-brand-mosaic-col { display: none !important; }

  /* ── Search bar ── */
  .search-bar-wrap { padding: 8px 1rem 0; width: 100%; margin-top: 16px; }
  .search-bar-wrap > label,
  .search-bar-wrap > .search-bar-title { display: none; }
  .search-bar { width: 100%; }
  .search-bar .btn-gold { width: 100%; }

  /* ── Grid de modelos: 2 columnas, gap 8px ── */
  .model-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .model-card { border-radius: var(--r-md); }
  .model-card-img-wrap { aspect-ratio: 3/4; }
  .model-card-body { padding: .6rem .65rem .75rem; }
  .model-card-name { font-size: .88rem; }
  .model-card-meta { font-size: .68rem; }
  .model-card-tags { display: none; }
  .model-card-footer { padding: .5rem .65rem; }
  .model-card-footer .btn-sm { padding: .4rem .55rem; font-size: .7rem; }

  /* ── Featured layout ── */
  .cat-feature-grid,
  .featured-layout {
    grid-template-columns: 1fr !important;
  }
  .cat-feature-grid .cat-hero-card:first-child,
  .featured-layout .card-featured {
    grid-column: span 1 !important;
    grid-row: auto !important;
    height: 260px;
  }
  .cat-feature-grid > *:not(:first-child) ~ *,
  .featured-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* ── Profile page ── */
  .profile-hero { height: auto; }
  .profile-carousel { height: 360px; }
  .profile-info-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 1.25rem;
    gap: 1rem;
  }
  .profile-name-block { text-align: left; }
  .profile-meta { gap: .6rem; font-size: .78rem; }
  .profile-meta-item { font-size: .78rem; }
  .profile-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .5rem;
    margin: 0 -1rem;
    padding: 0 1rem .25rem;
  }
  .profile-actions::-webkit-scrollbar { display: none; }
  .profile-actions .btn {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 44px;
    padding: .55rem 1rem;
    font-size: .8rem;
  }
  .profile-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: .5rem;
  }
  .profile-stat { padding: .75rem .5rem; }
  .profile-stat-n { font-size: 1.2rem; }
  .profile-body {
    display: block !important;
    grid-template-columns: 1fr !important;
    padding: 1rem;
  }
  .profile-body > * { margin-bottom: 1rem; }
  /* Sidebar placed after main content */
  .profile-body .sidebar-r,
  .profile-body aside { order: 2; }
  .profile-body > div:first-child { order: 1; }
  .profile-card { padding: 1rem; border-radius: var(--r-md); }
  .profile-card-title { font-size: .95rem; }

  /* ── Panel admin / panel modelo ── */
  .admin-layout,
  .modelo-layout { padding-top: var(--nav-h); }
  .admin-sidebar,
  .modelo-sidebar { display: none !important; }
  .admin-main,
  .modelo-main {
    margin-left: 0 !important;
    padding: 1rem !important;
    width: 100%;
  }
  .admin-table-wrap,
  .modelo-table-wrap,
  table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    max-width: 100%;
  }
  .admin-table,
  .modelo-table,
  .compare-table {
    min-width: 560px;
    white-space: nowrap;
  }
  .admin-page-title { font-size: 1.3rem; }
  .kpi-grid { grid-template-columns: 1fr 1fr !important; gap: .5rem; }

  /* ── Membresías ── */
  .mem-grid {
    grid-template-columns: 1fr !important;
    padding: 0 1rem;
    gap: 1rem;
  }
  .mem-card {
    padding: 1.5rem 1.25rem;
  }
  .mem-card.featured { transform: none; }
  .billing-toggle { flex-wrap: wrap; gap: .5rem; }
  /* Tabla comparativa: scroll horizontal */
  .compare-wrap,
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
  }
  .compare-table { font-size: .75rem; }
  .compare-table th, .compare-table td { padding: .6rem .5rem; }

  /* ── General sizes ── */
  body { font-size: 14.5px; }
  h1 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  h2 { font-size: clamp(1.15rem, 4.5vw, 1.5rem); }
  h3 { font-size: clamp(1rem, 4vw, 1.15rem); }
  h4 { font-size: .95rem; }
  p, .text-muted { font-size: .82rem; }
  .section-title { font-size: clamp(1.15rem, 4.5vw, 1.45rem); }
  .section-label { font-size: .6rem; }
  .page-header { padding: calc(var(--nav-h) + 1.25rem) 1rem 1.5rem; }
  .page-header h1 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Touch targets minimums */
  .btn,
  .nav-cta .btn-sm,
  .tbl-btn,
  .filter-select,
  .form-input,
  .modelos-search-input,
  button,
  input[type="submit"],
  select {
    min-height: 44px;
  }
  .btn-sm { min-height: 44px; padding: .5rem 1rem; font-size: .78rem; }
  a { touch-action: manipulation; }

  /* ── Float buttons más pequeños y alejados del bottom nav ── */
  .float-btns {
    bottom: calc(56px + env(safe-area-inset-bottom, 0) + .75rem);
    right: .75rem;
    gap: .4rem;
  }
  .float-btn {
    width: 44px; height: 44px;
    font-size: 1.1rem;
  }
  .toast-container {
    bottom: calc(56px + env(safe-area-inset-bottom, 0) + .75rem) !important;
    right: .75rem !important;
    left: .75rem;
  }

  /* Hide desktop-only decorative pieces */
  .hero-stats { display: none; }

  /* Reduce lateral padding everywhere there's hardcoded 2.5rem */
  [style*="padding:5rem 2.5rem"],
  [style*="padding: 5rem 2.5rem"],
  [style*="padding:0 2.5rem"],
  [style*="padding: 0 2.5rem"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   DISABLE HOVER EFFECTS ON TOUCH (no hover devices)
   ═══════════════════════════════════════════════════════════ */
@media (hover: none), (max-width: 768px) {
  *:hover { transform: none !important; }
  .model-card:hover,
  .mem-card:hover,
  .cat-hero-card:hover,
  .profile-card:hover,
  .btn:hover,
  .zone-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .model-card:hover .model-card-img,
  .cat-hero-card:hover img { transform: none !important; }
  .nav-links a:hover::after { transform: scaleX(0); }
  .nav-links a.active::after { transform: scaleX(1); }
}

/* ═══════════════════════════════════════════════════════════
   EXTRA-SMALL PHONES (≤380px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .nav-logo { font-size: 13px; }
  .hero-title { font-size: 22px !important; }
  .model-card-name { font-size: .82rem; }
  .bottom-nav-item { font-size: .58rem; }
  .pwa-install-copy strong { font-size: .76rem; }
  .pwa-install-copy span { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION OVERRIDES (≤768px) — appended last so
   they win specificity ties against earlier mobile blocks.
   Desktop styles above this block are intentionally untouched.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* No horizontal scroll, ever */
  html, body { overflow-x: hidden; }

  /* ── 8. Hide on mobile ─────────────────────────────────── */
  .nav-center,
  .nav-btn.filled,
  .hb-visual,
  .hb-sub,
  .hb-arrows,
  .search-hint { display: none !important; }

  /* ── 1. Mobile navigation ──────────────────────────────── */
  .nav-cta { gap: 8px; }
  .nav-cta .nav-login-btn,
  .nav-cta .btn.btn-gold.btn-sm,
  .nav-cta .btn.btn-ghost.btn-sm,
  .nav-cta .btn-ghost,
  .nav-cta .nav-btn,
  .nav-cta .nav-btn.filled,
  .nav-menu-btn,
  .m-hamburger,
  .hamburger,
  .nav-admin-right,
  .nav-modelo-right { display: none !important; }

  /* ── Slogan on mobile navbar (centered in space right of logo) ── */
  .nav-escorts-mobile {
    flex: 1;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    color: #C9A84C;
    letter-spacing: 1px;
    opacity: 1;
    margin: 0;
    padding: 0 8px 0 4px;
    white-space: nowrap;
    line-height: 1.15;
    text-align: center;
    text-shadow: 0 0 18px rgba(201, 168, 76, 0.3);
  }

  /* ── Mobile drawer (separate element, slides from right) ── */
  .mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(78vw, 320px);
    background: #0A0A0A;
    border-left: 2px solid #C9A84C;
    box-shadow: -8px 0 32px rgba(0,0,0,.6);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform .28s ease;
    display: flex;
    flex-direction: column;
    padding: calc(env(safe-area-inset-top, 0) + 14px) 0 14px;
    overscroll-behavior: contain;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 18px 14px;
    border-bottom: 1px solid rgba(201,168,76,.18);
  }
  .mobile-drawer-title {
    font-family: var(--font-serif, serif);
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #C9A84C;
  }
  .mobile-drawer-close {
    background: transparent;
    border: none;
    color: #C9A84C;
    font-size: 18px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .mobile-drawer-links {
    list-style: none;
    margin: 0;
    padding: 8px 0;
  }
  .mobile-drawer-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #E6E1D2;
    font-size: 13px;
    letter-spacing: .04em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: color .18s, background .18s;
  }
  .mobile-drawer-links li a i {
    width: 18px;
    color: #C9A84C;
    font-size: 13px;
    text-align: center;
  }
  .mobile-drawer-links li a:active,
  .mobile-drawer-links li a:hover { color: #C9A84C; background: rgba(201,168,76,.06); }

  .mobile-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(2px);
    z-index: 1190;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }
  .mobile-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
  body.drawer-open { overflow: hidden; }

  /* Disable the legacy nav-mobile-open drawer (we use .mobile-drawer now) */
  .nav-mobile-open .nav-links { display: none !important; }
  .nav-mobile-open::before { content: none !important; }

  /* ── 2. Hero banner ────────────────────────────────────── */
  .hero {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    margin: calc(var(--nav-h) + .5rem) 14px 0;
  }
  .hero-content { padding: 0 14px 18px; max-width: 75%; }
  .hero-title {
    font-size: 22px !important;
    line-height: 1.18;
    max-width: 75%;
    margin-bottom: 10px;
  }
  /* Subtitle — hide both legacy .hero-desc and spec'd .hb-sub */
  .hero-desc, .hb-sub { display: none !important; }
  /* Only show first action button */
  .hero-actions > .btn ~ .btn,
  .hero-actions > a ~ a,
  .hero-actions > button ~ button { display: none !important; }
  .hero-actions > .btn:first-child {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 36px;
  }
  /* Hide hero floating mini-cards & arrows on mobile */
  .hb-visual, .hb-arrows,
  .hero-brand-mosaic, .hero-brand-mosaic-col,
  .hero-arrow, .hero-prev, .hero-next { display: none !important; }

  /* Indicators: horizontal lines (centered, gap 6, bottom 12) */
  .hero-dots {
    bottom: 12px !important;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 6px !important;
  }
  .hero-dot {
    width: 20px !important;
    height: 2px !important;
    border-radius: 1px !important;
    background: rgba(255,255,255,0.25) !important;
    border: none !important;
    padding: 0;
    transition: width .25s ease, background .25s ease;
  }
  .hero-dot.active {
    width: 32px !important;
    height: 2px !important;
    background: #C9A84C !important;
    border-radius: 1px !important;
  }

  /* ── 3. Mobile search bar (left aligned, 75% input) ────── */
  .city-bar {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 12px 14px 8px;
    margin: 0;
    scroll-snap-type: x proximity;
  }
  .city-bar::-webkit-scrollbar { display: none; }
  .city-chip {
    flex: 0 0 auto;
    background: rgba(201,168,76,.06);
    border: 1px solid rgba(201,168,76,.25);
    color: #C9A84C;
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    scroll-snap-align: start;
    transition: background .18s, color .18s, border-color .18s;
  }
  .city-chip.is-active,
  .city-chip:active {
    background: #C9A84C;
    color: #0A0A0A;
    border-color: #C9A84C;
  }

  .search-bar-wrap {
    margin-top: 16px !important;
    padding: 8px 14px 12px !important;
    max-width: 100% !important;
    width: 100%;
    text-align: left !important;
  }
  .search-bar-toggle { display: none !important; }
  .search-bar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px 4px 4px 12px !important;
    width: 100% !important;
    margin-top: 0 !important;
    border-radius: 12px !important;
    max-height: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }
  /* Hide filters on mobile — keep just input + submit button */
  .search-bar .search-divider,
  .search-bar .search-filter,
  .search-bar > i.fa-search:first-of-type { display: none !important; }

  .search-bar input {
    flex: 0 0 75% !important;
    width: 75% !important;
    max-width: 75%;
    font-size: 12px !important;
    padding: 8px 6px !important;
  }
  .search-bar input::placeholder { font-size: 11px; }
  .search-bar .btn-gold {
    flex: 0 0 auto;
    width: auto !important;
    padding: 6px 10px !important;
    font-size: 11px !important;
    min-height: 32px !important;
    border-radius: 8px !important;
    margin-left: auto;
  }

  /* ── 4. Mobile spacing ─────────────────────────────────── */
  .section { padding: 18px 14px !important; }
  /* Sections that hardcode lateral padding inline — also normalize to 14px */
  [style*="padding:5rem 2.5rem"],
  [style*="padding: 5rem 2.5rem"],
  [style*="padding:0 2.5rem"],
  [style*="padding: 0 2.5rem"] {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Available-now strip avatars */
  .strip-avatar,
  .avail-strip .avatar,
  .available-strip .avatar,
  .strip-item img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    object-fit: cover;
  }

  /* Tabs rotativas (horizontal scroll, no scrollbar) */
  .tabs,
  .tab-bar,
  .tabs-bar,
  .rot-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .tabs::-webkit-scrollbar,
  .tab-bar::-webkit-scrollbar,
  .tabs-bar::-webkit-scrollbar,
  .rot-tabs::-webkit-scrollbar { display: none; }
  .tabs > .tab,
  .tab-bar > .tab,
  .tabs-bar > .tab,
  .rot-tabs > .tab,
  .tabs > button,
  .tab-bar > button {
    flex: 0 0 auto;
    font-size: 9px !important;
    padding: 6px 10px !important;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  /* Tabs progress bar */
  .tabs-progress,
  .tab-progress,
  .tabs .progress {
    height: 1.5px !important;
    background: rgba(201,168,76,.2);
  }
  .tabs-progress > span,
  .tab-progress > span,
  .tabs .progress > span { background: #C9A84C; height: 1.5px !important; }

  /* ── 5. Escort grid (2 columns) ────────────────────────── */
  .model-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .model-card-name { font-size: 11px !important; }
  .model-card-meta,
  .model-card-info .model-card-meta { font-size: 9px !important; }
  .model-card-footer { padding: 5px 8px !important; }
  .model-card-footer,
  .model-card-footer .btn-sm,
  .model-card-rate,
  .model-card-rate span { font-size: 9px !important; }
  .model-card-rate { font-size: 11px !important; }
  .model-card-info { padding: 8px 8px 6px !important; }

  /* ── 6. PWA install banner (compact) ───────────────────── */
  .pwa-install-banner {
    padding: 8px 14px !important;
    gap: 10px;
    min-height: 0;
  }
  .pwa-install-banner.is-visible { min-height: 0; }
  .pwa-install-mark {
    width: 36px !important;
    height: 36px !important;
    border-radius: 7px;
  }
  .pwa-install-copy strong {
    font-size: 11px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pwa-install-copy span { display: none !important; }
  .pwa-install-cta {
    font-size: 10px !important;
    padding: 5px 12px !important;
    min-height: 0 !important;
    height: auto !important;
    letter-spacing: .04em;
  }
  .pwa-install-close { width: 28px; height: 28px; }
  /* Re-pin nav offset for 8/14 banner height (~44px) */
  body:has(.pwa-install-banner.is-visible) .nav { top: 44px; }
  body:has(.pwa-install-banner.is-visible) .hero { margin-top: calc(var(--nav-h) + 44px + .5rem); }
  body:has(.pwa-install-banner.is-visible) .page-header { margin-top: 44px; }

  /* ── 7. Bottom navigation (54px, 4 items) ──────────────── */
  .bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 54px;
    background: #0A0A0A !important;
    border-top: 1px solid rgba(201,168,76,0.2) !important;
    z-index: 200 !important;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 16px rgba(0,0,0,.4);
  }
  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #5A5448 !important;
    font-size: 8px !important;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .bottom-nav-item i { font-size: 18px !important; }
  .bottom-nav-item span { font-size: 8px !important; }
  .bottom-nav-item.active,
  .bottom-nav-item:active { color: #C9A84C !important; }

  /* Body padding so bottom nav doesn't cover content */
  body {
    padding-bottom: calc(54px + env(safe-area-inset-bottom, 0)) !important;
  }
  /* Float buttons sit just above the bottom nav */
  .float-btns {
    bottom: calc(54px + env(safe-area-inset-bottom, 0) + 10px) !important;
  }
  .toast-container {
    bottom: calc(54px + env(safe-area-inset-bottom, 0) + 10px) !important;
  }
}

/* Hide mobile-only drawer/city-bar on desktop */
@media (min-width: 769px) {
  .mobile-drawer,
  .mobile-drawer-overlay,
  .city-bar { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE TWEAKS — appended last to win specificity on ≤768px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── 1. Hide banner arrows on mobile (los puntos sí se muestran) ─── */
  .hb-nav, .hb-arrows,
  .hero-arrow, .hero-prev, .hero-next { display: none !important; }

  /* ── 2. Hero banner: 300px, centered full-width content ─── */
  .hero {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    margin: calc(var(--nav-h) + .5rem) 0 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
  }
  .hero-slide,
  .hero-slide-bg,
  .hero-slide-brand-bg,
  .hero-slide-pagos-bg {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* Container: full width + padding */
  .hb-content,
  .hero-content,
  .hero-brand-content,
  .hero-pagos-content,
  .hero-promo-overlay {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  /* Title */
  .hb-title,
  .hero-title,
  .hero-brand-title,
  .hero-promo-name {
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
    max-width: 100% !important;
  }

  /* Subtitle visible */
  .hb-sub,
  .hero-brand-desc,
  .hero-promo-desc {
    display: block !important;
    font-size: 12px !important;
    max-width: 100% !important;
    margin-bottom: 14px !important;
    line-height: 1.4;
  }

  /* Buttons stacked vertically, full width */
  .hero-actions,
  .hero-brand-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }
  .hero-actions > .btn,
  .hero-actions > a,
  .hero-actions > button,
  .hero-brand-actions > a,
  .hero-brand-actions > .hero-brand-cta {
    display: flex !important;
    width: 100% !important;
    justify-content: center;
    margin-bottom: 8px !important;
  }
  .hero-brand-actions > .hero-brand-cta-sec { display: none !important; }
  /* Override earlier "only first action visible" rule */
  .hero-actions > .btn ~ .btn,
  .hero-actions > a ~ a,
  .hero-actions > button ~ button { display: flex !important; }

  /* Hide floating mini-cards / visuals */
  .hb-visual,
  .hero-brand-mosaic,
  .hero-brand-mosaic-col { display: none !important; }

  /* ── 3. Hide city selector bar on mobile ─── */
  .city-bar,
  .city-chips,
  .city-chip { display: none !important; }

  /* ── 4. Hide memberships references on mobile ─── */
  a[href="membresias.html"],
  a[href*="membresias"] { display: none !important; }
  .mobile-drawer-links li:has(a[href="membresias.html"]) { display: none !important; }
  .footer-links li:has(a[href="membresias.html"]) { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP (≥769px) — NAV + PROFILE + BANNER REFINEMENTS
   Appended last to win specificity. Does not touch mobile/PWA.
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 769px) {

  /* ── 1. Hide join / hamburger buttons in desktop navbar (login button kept visible) ── */
  .nav .nav-cta .btn.btn-gold.btn-sm,
  .nav .nav-cta .nav-btn,
  .nav .nav-cta .nav-btn.filled,
  .nav .nav-menu-btn { display: none !important; }

  /* ── Hide mobile-only "Escorts" label on desktop ── */
  .nav-escorts-mobile { display: none; }

  /* ── Login button shown on desktop, sits to the left of "Escorts" ── */
  .nav .nav-cta .btn.btn-gold.btn-sm.nav-login-btn {
    display: inline-flex !important;
    align-items: center;
    gap: .5rem;
    padding: 7px 18px;
    border: 1px solid #C9A84C;
    border-radius: 4px;
    background: transparent;
    color: #C9A84C;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 14px;
    transition: background 0.2s, color 0.2s;
    min-height: 0;
    box-shadow: none;
    transform: none;
    font-weight: 500;
    white-space: nowrap;
  }
  .nav .nav-cta .btn.btn-gold.btn-sm.nav-login-btn:hover {
    background: #C9A84C;
    color: #000;
    box-shadow: none;
    transform: none;
  }

  /* ── 2. "Escorts" italic gold label in navbar ── */
  .nav-escorts-label {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    color: #C9A84C;
    letter-spacing: 2px;
    opacity: 0.9;
    order: 1;
  }

  /* ── Swap order: Escorts before login button on desktop ── */
  .nav .nav-cta .btn.btn-gold.btn-sm.nav-login-btn { order: 2; }

  /* ── 3. Larger "Doncellas" logo in navbar ── */
  .nav .nav-logo,
  .nav .logo-text {
    font-size: 22px;
    letter-spacing: 4px;
  }
  .nav .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* ── 4. Profile page — ensure everything fits and flows ── */
  .profile-body,
  .prof-main {
    grid-template-columns: 1fr 320px;
    min-height: 0;
    overflow: visible;
  }
  .profile-body > *,
  .profile-card,
  .prof-main > *,
  .gal-card,
  .wa-card,
  .info-card { overflow: visible; }

  .profile-info-bar,
  .prof-top {
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .profile-card p,
  .prof-bio { max-width: 100%; }

  .profile-meta,
  .stats-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow: visible;
  }
  .profile-stat-n,
  .stat-n { font-size: 22px; }
  .profile-stat-l,
  .stat-l { font-size: 10px; }

  .profile-body .profile-card,
  .gal-card {
    width: 100%;
  }

  /* Sidebar (right column) follows the scroll */
  .profile-body > div:nth-child(2),
  .sidebar-r {
    position: sticky;
    top: 80px;
    align-self: start;
  }

  .wa-card { padding: 18px; }

  /* ── 5. Hide hb-nav on desktop (los puntos .hero-dots sí se muestran) ── */
  .hb-nav { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAVBAR — minimal (logo only) on index, modelos, categorias
   Removes login button, hamburger and "Escorts" label.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body.page-mobile-min-nav .nav .nav-cta,
  body.page-mobile-min-nav .nav .nav-cta .btn,
  body.page-mobile-min-nav .nav .nav-cta .nav-login-btn,
  body.page-mobile-min-nav .nav .nav-menu-btn,
  body.page-mobile-min-nav .nav .nav-escorts-label { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   PROFILE PAGE — MOBILE (≤768px) icon-only actions, compact
   metadata, single-column body, compact info/tags/gallery/calendar.
   Appended last to win specificity. Desktop untouched.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── 1. Action buttons (profile-actions) → icon-only circles ── */
  .profile-actions {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
    margin: 0;
  }
  .profile-actions::-webkit-scrollbar { display: none; }
  .profile-actions .btn {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;            /* hide trailing text nodes ("WhatsApp", "Guardar"…) */
    white-space: nowrap;
    overflow: hidden;
  }
  .profile-actions .btn i {
    font-size: 15px;
    margin: 0;
  }

  /* ── 2. Name block & pills ── */
  .profile-name {
    font-size: 18px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.25;
  }
  .profile-name-block .pill {
    font-size: 8px;
    padding: 2px 7px;
    letter-spacing: .04em;
  }
  .profile-meta-item { font-size: 11px; }
  /* "Sobre mí" bio paragraph (inline-styled <p> inside first .profile-card) */
  .profile-body .profile-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  /* ── 3. Tags (equivalent to .prof-tags) ── */
  .model-card-tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
  }
  .model-card-tags .tag,
  .profile-card .tag {
    font-size: 9px;
    padding: 3px 8px;
  }

  /* ── 4. Body: single column, sidebar below ── */
  .profile-body {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .profile-body > div:nth-child(2) { order: 2; }
  .profile-body > div:first-child  { order: 1; }

  /* ── 5. Characteristics grid (equivalent to .info-card / .info-row) ── */
  .caract-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .caract-item {
    padding: 8px 14px;
    font-size: 11px;
  }
  .caract-lbl { font-size: 9px; }
  .caract-val {
    font-size: 11px;
    text-align: right;
  }

  /* Servicios + Características: stack in one column on mobile */
  .profile-card > div[style*="grid-template-columns:1fr 1fr"],
  .profile-card > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  /* Reorder: Características above Servicios on mobile */
  .profile-card > div[style*="grid-template-columns:1fr 1fr"] > div:nth-child(1),
  .profile-card > div[style*="grid-template-columns: 1fr 1fr"] > div:nth-child(1) {
    order: 2;
  }
  .profile-card > div[style*="grid-template-columns:1fr 1fr"] > div:nth-child(2),
  .profile-card > div[style*="grid-template-columns: 1fr 1fr"] > div:nth-child(2) {
    order: 1;
  }

  /* ── 6. Tarifas / WhatsApp card (equivalent to .wa-card) ── */
  .profile-card { padding: 14px; }
  .profile-card-title { font-size: 12px; }
  .profile-card .btn-wa,
  .profile-card .btn-telegram {
    padding: 10px;
    font-size: 11px;
  }

  /* ── 7. Gallery (thumbs column → horizontal strip) ── */
  .profile-card > div[style*="grid-template-columns:1fr 90px"],
  .profile-card > div[style*="grid-template-columns: 1fr 90px"] {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  #mediaThumbs {
    flex-direction: row !important;
    max-height: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
  }
  #mediaThumbs > * {
    flex: 0 0 56px;
    width: 56px !important;
    height: 56px !important;
  }
  #mediaThumbs::-webkit-scrollbar { display: none; }

  /* ── 8. Collapsible calendar (equivalent to .citas-toggle) ── */
  .calendar-collapse-btn {
    padding: 12px 16px;
    font-size: 12px;
  }
  .calendar-month { font-size: 12px; }
  .calendar-grid .cal-day,
  .calendar-grid > * { font-size: 10px; }
  .calendar-legend {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* ── 9. Prevent horizontal overflow anywhere in the profile ── */
  .profile-body,
  .profile-card,
  .profile-info-bar { max-width: 100%; box-sizing: border-box; }
  .profile-body * { min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════
   Mobile-only action buttons below the photo carousel.
   Desktop keeps the original .profile-actions inside the hero.
   ═══════════════════════════════════════════════════════════ */
.botones-perfil-mobile { display: none; }

@media (max-width: 768px) {
  .botones-perfil-mobile {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 12px 14px;
    gap: 8px;
    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;
    background: #0A0A0A;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .profile-info-bar .profile-actions { display: none; }

  /* All buttons: icon-only, 44px height, radius 8px */
  .botones-perfil-mobile .btn {
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
  }
  .botones-perfil-mobile .btn i { font-size: 16px; margin: 0; }
  .botones-perfil-mobile .btn span { font-size: 0 !important; }

  /* 1. Guardar (heart) */
  .botones-perfil-mobile > *:nth-child(1) { flex: 1; width: 100%; }
  /* 2. Compartir — smaller fixed square */
  .botones-perfil-mobile > *:nth-child(2) { flex: 0 0 44px; width: 44px; }
  /* 3. WhatsApp */
  .botones-perfil-mobile > *:nth-child(3) {
    flex: 2;
    background: #25D366;
    color: #fff;
    border: none;
  }
  /* 4. Telegram */
  .botones-perfil-mobile > *:nth-child(4) {
    flex: 2;
    background: #0088cc;
    color: #fff;
    border: none;
  }

  /* ── Info bar spans the full carousel so name sits above the thumbs
         and pills can move to the top-right corner ───────────────── */
  .profile-info-bar {
    top: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    pointer-events: none;
  }
  .profile-info-bar > * { pointer-events: auto; }
  .profile-info-bar .profile-name-block {
    position: relative;
    height: 100%;
    width: 100%;
  }
  /* Pills: top-right corner of the photo */
  .profile-info-bar .profile-name-block > div:first-child {
    position: absolute;
    top: 12px;
    right: 10px;
    left: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 4px !important;
    margin: 0 !important;
    z-index: 4;
  }
  .profile-info-bar .profile-name-block .pill {
    font-size: 9px !important;
    padding: 2px 7px;
    letter-spacing: .04em;
  }
  /* Name: bigger, placed above the thumbnail strip */
  .profile-info-bar .profile-name {
    position: absolute;
    bottom: 5.5rem;
    left: 1rem;
    right: 1rem;
    font-size: 30px !important;
    line-height: 1.15;
    margin: 0 !important;
  }
  .profile-info-bar .profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
  }
  .profile-info-bar .profile-meta-item { font-size: 11px !important; }
  .profile-info-bar .profile-meta-item.stars { font-size: 12px !important; }
  .profile-info-bar .profile-meta-item.stars span { font-size: 12px !important; }

  /* Ocultar ubicación, edad/estatura, estrellas y reseñas en móvil */
  .profile-info-bar .profile-meta-item:has(.fa-map-marker-alt) { display: none !important; }
  .profile-info-bar .profile-meta-item:has(.fa-birthday-cake) { display: none !important; }
  .profile-info-bar .profile-meta-item:has(.fa-ruler-vertical) { display: none !important; }
  .profile-info-bar .profile-meta-item.stars { display: none !important; }

  /* Carrusel de fotos pequeñas (thumb strip) */
  #thumbStrip {
    height: 60px;
    gap: 6px !important;
  }
  #thumbStrip img {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (min-width: 769px) {
  .botones-perfil-mobile { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PANEL ADMIN + PANEL MODELO — MOBILE OPTIMIZATION (≤768px)
   Scoped to body.panel-page so the site-wide mobile bottom-nav
   and desktop layouts remain untouched.
   ═══════════════════════════════════════════════════════════ */

/* Panel-specific bottom nav: hidden by default; shown on mobile */
.panel-bottom-nav { display: none; }

/* Mobile availability bar (modelo): hidden on desktop */
.mobile-avail-bar { display: none; }

@media (max-width: 768px) {

  /* ── Panel header (nav) ─────────────────────────────────── */
  body.panel-page { --nav-h: 96px; overflow-x: hidden; }
  body.panel-page .nav {
    height: 96px;
    background: #0A0A0A;
    border-bottom: 1px solid #2A2A2A;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 12px;
  }
  body.panel-page .nav .nav-logo { font-size: 14px; letter-spacing: .03em; }
  body.panel-page .nav .nav-logo img { height: 80px; }
  body.panel-page .nav .nav-logo::before { display: none; }
  body.panel-page .nav .nav-escorts-mobile { display: none !important; }
  body.panel-page .nav .nav-menu-btn,
  body.panel-page .nav .m-hamburger,
  body.panel-page .nav .hamburger { display: none !important; }

  /* Admin: show small "Admin" label on right */
  body.panel-admin .nav .nav-admin-right {
    display: flex !important;
    margin-left: auto;
    align-items: center;
    gap: 8px;
  }
  body.panel-admin .nav .nav-admin-right > :not(:first-child) { display: none !important; }
  body.panel-admin .nav .nav-admin-right > span {
    font-size: 11px !important;
    color: var(--t2);
  }

  /* Modelo: show only the artist name on right */
  body.panel-modelo .nav .nav-modelo-right {
    display: flex !important;
    margin-left: auto;
    align-items: center;
    gap: 8px;
  }
  body.panel-modelo .nav .nav-modelo-right > button,
  body.panel-modelo .nav .nav-modelo-right > .pill,
  body.panel-modelo .nav .nav-modelo-right > img { display: none !important; }
  body.panel-modelo .nav .nav-modelo-right > span {
    font-size: 11px !important;
    color: var(--t2);
  }

  /* ── Hide sidebars ──────────────────────────────────────── */
  body.panel-page .admin-sidebar,
  body.panel-page .modelo-sidebar { display: none !important; }

  /* ── Main content: full width, padded for bottom-nav ───── */
  body.panel-page .admin-layout,
  body.panel-page .modelo-layout {
    padding-top: 0;
    min-height: auto;
  }
  body.panel-page .admin-main,
  body.panel-page .modelo-main {
    margin-left: 0 !important;
    width: 100%;
    padding: 14px 14px 70px !important;
    box-sizing: border-box;
  }
  /* Site-wide body padding for the old bottom-nav doesn't apply here */
  body.panel-page { padding-bottom: 0 !important; }

  /* ── Panel page titles compact ─────────────────────────── */
  body.panel-page .admin-page-title { font-size: 1.15rem; margin-bottom: .25rem; }
  body.panel-page .admin-page-sub { font-size: .78rem; margin-bottom: 1rem; }

  /* ── Panel bottom navigation (5 items) ─────────────────── */
  .panel-bottom-nav {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: 56px;
    background: #0A0A0A;
    border-top: 1px solid rgba(201,168,76,0.2);
    z-index: 200;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 16px rgba(0,0,0,.4);
  }
  .panel-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: transparent;
    border: none;
    color: #5A5448;
    cursor: pointer;
    font-family: inherit;
    padding: 6px 4px;
    min-height: 44px;
    text-decoration: none;
    transition: color .18s ease;
  }
  .panel-bottom-nav-item i { font-size: 18px; line-height: 1; }
  .panel-bottom-nav-item span {
    font-size: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
  }
  .panel-bottom-nav-item.active,
  .panel-bottom-nav-item:active { color: #C9A84C; }

  /* Hide the site-wide 4-item bottom-nav on panel pages (each panel has its own) */
  body.panel-page .bottom-nav { display: none !important; }

  /* ── KPI grid: 2 columns, compact cards ─────────────────── */
  body.panel-page .kpi-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
    margin-bottom: 14px;
  }
  body.panel-page .kpi-card { padding: 12px; }
  body.panel-page .kpi-icon { width: 32px; height: 32px; font-size: .9rem; margin-bottom: .4rem; }
  body.panel-page .kpi-label { font-size: 9px; }
  body.panel-page .kpi-value { font-size: 20px; }
  body.panel-page .kpi-delta { font-size: .65rem; margin-top: .2rem; }

  /* ── Stat-mini (modelo) grid: 2 columns ─────────────────── */
  body.panel-page .stat-mini { padding: 12px; }
  body.panel-page .stat-mini-n { font-size: 20px; }
  body.panel-page .stat-mini-l { font-size: 9px; }

  /* ── Charts/cards: full width, reduced height ───────────── */
  body.panel-page .chart-card {
    padding: 12px;
    margin-bottom: 12px;
    border-radius: var(--r-md);
  }
  body.panel-page .chart-header {
    margin-bottom: .75rem;
    flex-wrap: wrap;
    gap: .5rem;
  }
  body.panel-page .chart-title { font-size: .95rem; }
  body.panel-page .chart-canvas-wrap { height: 180px !important; }
  body.panel-modelo #page-stats .chart-canvas-wrap { height: 160px !important; }
  body.panel-page .chart-tabs { flex-wrap: wrap; gap: .25rem; }
  body.panel-page .chart-tab { padding: .25rem .6rem; font-size: .7rem; }

  /* ── Any inline grid 2fr 1fr / 1fr 1fr / 1fr 300px → 1 col ─ */
  body.panel-page .admin-main > div[style*="grid-template-columns:2fr 1fr"],
  body.panel-page .modelo-main > div[style*="grid-template-columns:2fr 1fr"],
  body.panel-page .admin-page > div[style*="grid-template-columns:2fr 1fr"],
  body.panel-page .admin-page > div[style*="grid-template-columns: 2fr 1fr"],
  body.panel-page .admin-page > div[style*="grid-template-columns:1fr 1fr"],
  body.panel-page .admin-page > div[style*="grid-template-columns: 1fr 1fr"],
  body.panel-page .admin-page > div[style*="grid-template-columns:1fr 300px"],
  body.panel-page .admin-page > div[style*="grid-template-columns: 1fr 300px"],
  body.panel-page .admin-page > div[style*="grid-template-columns:1fr 1fr 1fr"],
  body.panel-page .admin-page > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ── Tables: block, horizontal scroll ───────────────────── */
  body.panel-page .admin-table-wrap {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    border-radius: var(--r-md);
  }
  body.panel-page .admin-table {
    min-width: 480px;
    font-size: .78rem;
  }
  body.panel-page .admin-table th,
  body.panel-page .admin-table td {
    padding: .55rem .65rem;
    font-size: .72rem;
    white-space: nowrap;
  }
  body.panel-page .admin-table th {
    font-size: .62rem;
  }

  /* ── Admin search bar: stacked ──────────────────────────── */
  body.panel-page .admin-search {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }
  body.panel-page .admin-search-input,
  body.panel-page .admin-search .filter-select {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
  }

  /* ── Tabs row (reseñas / citas) ─────────────────────────── */
  body.panel-page .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .4rem;
    flex-wrap: nowrap;
    margin-bottom: 12px;
  }
  body.panel-page .tabs::-webkit-scrollbar { display: none; }
  body.panel-page .tab-btn {
    flex: 0 0 auto;
    font-size: .75rem;
    padding: .5rem .85rem;
    white-space: nowrap;
  }

  /* ── Admin: Gestión de Doncellas — top row + CTA ────────── */
  body.panel-page #page-modelos > div:first-child {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .5rem !important;
  }
  body.panel-page #page-modelos .btn-gold {
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }

  /* Pagination row: keep centered & wrap */
  body.panel-page #page-modelos > div:last-child {
    flex-direction: column;
    gap: .5rem;
    font-size: .72rem;
  }

  /* ── Reviews list (admin): compact cards, action row horizontal ── */
  body.panel-page .review-card {
    padding: .85rem;
    font-size: 12px;
  }
  body.panel-page .review-text { font-size: 12px; }
  body.panel-page .review-action-row {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    margin-top: .65rem;
  }
  body.panel-page .review-action-row .btn {
    flex: 1;
    min-height: 40px;
    font-size: .75rem;
  }

  /* ── Modelo: Contenido — upload + gallery ───────────────── */
  body.panel-page .upload-zone {
    padding: 1.5rem 1rem;
    margin-bottom: 14px;
  }
  body.panel-page .upload-zone h4 { font-size: .95rem; }
  body.panel-page .upload-zone p { font-size: .75rem; }
  body.panel-page .upload-zone .btn {
    width: 100%;
    min-height: 44px;
    margin-top: 14px !important;
    justify-content: center;
  }
  body.panel-page .upload-preview-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
  body.panel-page .upload-preview-item { aspect-ratio: 1; border-radius: 6px; }
  /* Remove button: always visible on mobile (no hover dependency) */
  body.panel-page .upload-preview-remove {
    opacity: 1 !important;
    display: flex !important;
    top: 4px; right: 4px;
    width: 22px; height: 22px;
  }

  /* Current gallery grid: 3 columns, aspect 1, always-visible X */
  body.panel-page #currentGallery {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  body.panel-page #currentGallery > * {
    aspect-ratio: 1;
    border-radius: 6px;
    position: relative;
  }
  body.panel-page #currentGallery .remove-btn,
  body.panel-page #currentGallery .gallery-remove,
  body.panel-page #currentGallery button {
    opacity: 1 !important;
    display: flex !important;
  }

  /* Contenido: header row with sort/delete buttons stacks */
  body.panel-page #page-contenido > div[style*="margin-top:2rem"] > div:first-child {
    flex-direction: column;
    align-items: stretch !important;
    gap: .5rem;
  }
  body.panel-page #page-contenido > div[style*="margin-top:2rem"] > div:first-child > div {
    display: flex;
    gap: 8px;
  }
  body.panel-page #page-contenido > div[style*="margin-top:2rem"] > div:first-child .btn {
    flex: 1;
    min-height: 40px;
  }

  /* ── Modelo: Citas (cita-item) → vertical cards ─────────── */
  body.panel-page .cita-item {
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
    padding: .85rem;
    font-size: 12px;
  }
  body.panel-page .cita-date {
    align-self: flex-start;
    min-width: auto;
    padding: .4rem .65rem;
  }
  body.panel-page .cita-date .day { font-size: 1.1rem; }
  body.panel-page .cita-info h4 { font-size: .88rem; }
  body.panel-page .cita-info p { font-size: .72rem; }
  body.panel-page .cita-item > .btn,
  body.panel-page .cita-item .cita-actions {
    width: 100%;
  }
  body.panel-page .cita-actions,
  body.panel-page .cita-item > div[style*="display:flex"]:last-child {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    width: 100%;
  }
  body.panel-page .cita-actions .btn { flex: 1; min-height: 40px; font-size: .72rem; }

  /* ── Modelo: Disponibilidad / Calendario ────────────────── */
  body.panel-page #page-disponibilidad .week-grid {
    font-size: .65rem;
    gap: .25rem;
  }
  body.panel-page #page-disponibilidad .week-slot {
    min-height: 30px;
    font-size: 11px;
  }
  body.panel-page #page-disponibilidad .week-time { font-size: 11px; padding: .2rem .3rem; }
  body.panel-page #page-disponibilidad .week-col-header { font-size: 10px; }
  body.panel-page #page-disponibilidad .chart-card > div:first-child {
    flex-direction: column;
    align-items: stretch !important;
    gap: .5rem;
  }
  body.panel-page #page-disponibilidad .chart-card > div:first-child > div {
    display: flex;
    gap: .5rem;
  }
  body.panel-page #page-disponibilidad .chart-card > div:first-child .btn {
    flex: 1;
    min-height: 40px;
  }

  /* Admin calendar (citas): compact */
  body.panel-page #page-citas .calendar-month { font-size: 1rem; }
  body.panel-page #page-citas .calendar-day-name { font-size: 10px; }
  body.panel-page #page-citas #adminCalGrid > *,
  body.panel-page #page-citas #adminCalGrid .cal-day {
    font-size: 11px;
    min-height: 34px;
  }

  /* ── Referidos: cards column, link box stacked ──────────── */
  body.panel-page .referral-link-box {
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
    padding: .75rem;
  }
  body.panel-page .referral-link-box input {
    width: 100%;
    font-size: 14px;
    min-height: 40px;
  }
  body.panel-page .referral-link-box .btn {
    width: 100%;
    min-height: 40px;
    justify-content: center;
  }

  /* ── Forms: single column, 16px inputs, 44px height ─────── */
  body.panel-page .form-row {
    display: flex;
    flex-direction: column;
    gap: .6rem;
  }
  body.panel-page .form-group { margin-bottom: .75rem; }
  body.panel-page .form-label {
    font-size: 11px;
    margin-bottom: 4px;
    display: block;
  }
  body.panel-page .form-input,
  body.panel-page textarea.form-input,
  body.panel-page select.form-input {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
    box-sizing: border-box;
  }
  body.panel-page textarea.form-input { min-height: 88px; }
  body.panel-page .chart-card .btn.btn-gold {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    justify-content: center;
  }

  /* Perfil edit: inline 2-col grids → 1 col */
  body.panel-page #page-perfil-edit > div[style*="grid-template-columns:1fr 1fr"],
  body.panel-page #page-perfil-edit > div[style*="grid-template-columns: 1fr 1fr"],
  body.panel-page #page-perfil-edit .chart-card > div[style*="grid-template-columns:1fr 1fr 1fr"],
  body.panel-page #page-perfil-edit .chart-card > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Photo of profile card: stack avatar + CTA */
  body.panel-page #page-perfil-edit .chart-card > div[style*="align-items:center"][style*="gap:1.5rem"] {
    flex-direction: column;
    align-items: center !important;
    gap: 12px !important;
    text-align: center;
  }

  /* Locked "nombre artístico" field visual treatment (readonly-looking) */
  body.panel-page .form-input[readonly] {
    background: #0F0F0F !important;
    color: var(--t2) !important;
    position: relative;
  }
  body.panel-page .form-group.locked-field {
    position: relative;
  }
  body.panel-page .form-group.locked-field .form-input {
    background: #0A0A0A !important;
    color: var(--t2) !important;
    border-color: #2A2A2A !important;
    padding-right: 38px !important;
    cursor: not-allowed;
  }
  body.panel-page .form-group.locked-field::after {
    content: "\f023";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 14px;
    bottom: 13px;
    color: var(--gold);
    font-size: 14px;
    pointer-events: none;
  }

  /* Services grid rows: keep 3 cols but tighter */
  body.panel-page #modelServicesList > div,
  body.panel-page #page-perfil-edit div[style*="grid-template-columns:1fr 80px 80px"] {
    grid-template-columns: 1fr 56px 56px !important;
    padding: .5rem .55rem !important;
    gap: .3rem !important;
  }
  body.panel-page #modelServicesList > div span:first-child { font-size: .78rem !important; }
  body.panel-page #modelServicesList .pill { font-size: 9px !important; margin-left: .15rem !important; }

  /* ── Config page 2-col → 1 col ──────────────────────────── */
  body.panel-page #page-configuracion > div[style*="grid-template-columns:1fr 1fr"],
  body.panel-page #page-configuracion > div[style*="grid-template-columns: 1fr 1fr"],
  body.panel-page #page-config > div[style*="grid-template-columns:1fr 1fr"],
  body.panel-page #page-config > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ── Sticky availability bar (modelo, all pages) ────────── */
  body.panel-modelo .mobile-avail-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 14px;
    margin: -14px -14px 14px;
    box-sizing: border-box;
    position: sticky;
    top: 52px;
    z-index: 90;
    background: rgba(76,175,130,.12);
    border: none;
    border-bottom: 1px solid rgba(76,175,130,.35);
    color: var(--green);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
  }
  body.panel-modelo .mobile-avail-bar.off {
    background: rgba(224,80,80,.12);
    border-bottom-color: rgba(224,80,80,.35);
    color: var(--red);
  }
  body.panel-modelo .mobile-avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
    flex-shrink: 0;
  }
  body.panel-modelo .mobile-avail-text {
    flex: 1;
    text-align: left;
  }
  body.panel-modelo .mobile-avail-toggle {
    font-size: 22px;
  }

  /* ── Sticky availability toggle (modelo, disponibilidad) ── */
  body.panel-modelo #page-disponibilidad .chart-card:first-of-type {
    position: sticky;
    top: 96px;
    z-index: 50;
    margin-bottom: 14px;
  }
  body.panel-modelo #page-disponibilidad .chart-card:first-of-type > div:first-child {
    min-height: 44px;
    flex-direction: row !important;
    align-items: center !important;
    gap: .5rem !important;
    flex-wrap: wrap;
  }

  /* ── Content admin: model-grid for filterContentGrid ────── */
  body.panel-page #contentModelGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* ── Toast container adjust above panel bottom-nav ──────── */
  body.panel-page .toast-container {
    bottom: calc(56px + env(safe-area-inset-bottom, 0) + 10px) !important;
    right: 10px !important;
    left: 10px !important;
  }

  /* ── Switch wraps wrap nicely ───────────────────────────── */
  body.panel-page .switch-wrap {
    flex-wrap: wrap;
    gap: .5rem;
  }
  body.panel-page .switch-label { font-size: .82rem; }

  /* ── Modal: width 100% on mobile ────────────────────────── */
  body.panel-page .modal { max-width: calc(100vw - 24px) !important; padding: 1rem; }
  body.panel-page .modal > div[style*="grid-template-columns:1fr 1fr"],
  body.panel-page .modal > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  body.panel-page .modal .form-group[style*="grid-column:span 2"] { grid-column: auto !important; }

  /* ── Modelo: profile-mini card hidden (redundant on mobile) ─ */
  body.panel-page .modelo-profile-mini { display: none; }

  /* ── Currency/number formatting keeps tight ─────────────── */
  body.panel-page .admin-page > div[style*="margin-bottom:2rem"] { margin-bottom: 14px !important; }

  /* ── Table action buttons (tbl-btn) — 36×36 touch target ── */
  body.panel-page .tbl-btn {
    width: 36px;
    height: 36px;
    font-size: .85rem;
    flex-shrink: 0;
  }
  body.panel-page .admin-table td .tbl-btn + .tbl-btn { margin-left: 4px; }

  /* ── Modal close button — 44×44 touch target ────────────── */
  body.panel-page .modal-close {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* ── Modal overlay padding tighter on mobile ────────────── */
  body.panel-page .modal-overlay { padding: .75rem; }
  body.panel-page .modal {
    max-height: 85vh;
    border-radius: 10px;
    padding: 20px !important;
  }

  /* ── Role badge in header (Admin / Escort) ──────────────── */
  body.panel-admin .nav .nav-admin-right > span {
    font-size: 0 !important;
    line-height: 1;
  }
  body.panel-admin .nav .nav-admin-right > span::before {
    content: "ADMIN";
    display: inline-block;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 9px;
  }
  body.panel-modelo .nav .nav-modelo-right::after {
    content: "ESCORT";
    display: inline-block;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 9px;
    line-height: 1;
  }

  /* ── Review card rendered buttons (Aprobar / Rechazar) ──── */
  body.panel-admin #pendingReviewsList .chart-card > div > div > div[style*="display:flex"][style*="gap"] {
    width: 100%;
  }
  body.panel-admin #pendingReviewsList .chart-card .btn.btn-sm {
    flex: 1;
    min-height: 40px;
    justify-content: center;
    font-size: .75rem;
  }

  /* ── Chart-header action buttons wrap to full width ─────── */
  body.panel-page .chart-header .btn.btn-outline.btn-sm,
  body.panel-page .chart-header .btn.btn-sm {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    flex-basis: 100%;
  }
  body.panel-page .chart-header .chart-title { flex: 1 1 auto; }

  /* ── Contenido (modelo) — Sort/Delete row buttons full w ── */
  body.panel-modelo #page-contenido .chart-card-ordenar-row .btn,
  body.panel-modelo #page-contenido div[style*="gap:.5rem"] > .btn.btn-outline.btn-sm {
    min-height: 40px;
  }

  /* ── Referidos (admin) table compact ────────────────────── */
  body.panel-admin #page-referidos .admin-table { min-width: 420px; }

  /* ── Pagination row buttons touch-friendly ──────────────── */
  body.panel-page #page-modelos .tbl-btn {
    width: 36px;
    height: 36px;
  }

  /* ── Block-date input + button row wraps cleanly ────────── */
  body.panel-page #page-disponibilidad div[style*="gap:.75rem"][style*="flex-wrap:wrap"] {
    flex-direction: column;
    align-items: stretch !important;
  }
  body.panel-page #page-disponibilidad div[style*="gap:.75rem"][style*="flex-wrap:wrap"] input[type="date"] {
    width: 100% !important;
    min-height: 44px;
    font-size: 16px;
  }
  body.panel-page #page-disponibilidad div[style*="gap:.75rem"][style*="flex-wrap:wrap"] .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  /* ── Generated credentials box inside modal ─────────────── */
  body.panel-admin #credencialesBox > div[style*="display:flex"][style*="gap:1.5rem"] {
    flex-direction: column !important;
    gap: .35rem !important;
  }

  /* ── Modal footer buttons (Cancelar/Guardar) full width ── */
  body.panel-page .modal > div[style*="display:flex"][style*="justify-content:flex-end"] {
    flex-direction: column-reverse;
    gap: 8px !important;
  }
  body.panel-page .modal > div[style*="display:flex"][style*="justify-content:flex-end"] .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  /* ── Servicios pills — adequate touch on checkboxes ─────── */
  body.panel-page #modelServicesList input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
  }

  /* ── Photo upload label button (perfil-edit) ────────────── */
  body.panel-page #page-perfil-edit label.btn.btn-outline.btn-sm {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }
}

/* Extra-small: tighten even more */
@media (max-width: 380px) {
  body.panel-page .kpi-value { font-size: 18px; }
  body.panel-page .stat-mini-n { font-size: 18px; }
  body.panel-page .panel-bottom-nav-item span { font-size: 7px; }
  body.panel-page .panel-bottom-nav-item i { font-size: 16px; }
  body.panel-page #currentGallery,
  body.panel-page .upload-preview-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }
  .nav-escorts-mobile { font-size: 16px; letter-spacing: .6px; }
}

/* ═══════════════════════════════════════════════════════════
   SEARCH BAR — push a bit lower on all screen sizes
   ═══════════════════════════════════════════════════════════ */
.search-bar-wrap {
  margin-top: 24px !important;
  padding-top: 12px !important;
}

/* ═══════════════════════════════════════════════════════════
   PROFILE PAGE — MOBILE: Reseñas always at the very end
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .profile-body {
    display: flex !important;
    flex-direction: column !important;
  }
  .profile-body > div {
    display: contents;
  }
  .profile-body .profile-card:has(#reviewsList) {
    order: 99;
  }
}

/* ═══════════════════════════════════════════════════════════
   Logo integrations: login modal
   ═══════════════════════════════════════════════════════════ */
.modal-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.modal-logo img {
  height: 100px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .modal-logo img { height: 80px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE HERO BRAND SLIDE — show same profile photo mosaic
   as desktop (horizontal strip at bottom of the slide).
   Hides the non-essential label/stats and compacts text so
   everything fits cleanly within the 300px mobile hero height.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hide non-essential elements to prevent overflow */
  .hero-slide-brand .hero-brand-label,
  .hero-slide-brand .hero-brand-stats {
    display: none !important;
  }

  /* Compact content so it fits above the photo strip */
  .hero-slide-brand .hero-brand-content {
    padding: 12px 18px 92px !important;
    gap: 6px !important;
    justify-content: flex-start !important;
  }
  .hero-slide-brand .hero-brand-title {
    font-size: 22px !important;
    line-height: 1.15 !important;
    margin-bottom: 6px !important;
  }
  .hero-slide-brand .hero-brand-desc {
    font-size: 11px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    display: block !important;
  }
  .hero-slide-brand .hero-brand-cta {
    padding: 9px 18px !important;
    font-size: 12px !important;
  }

  /* Photo strip: 4 profile photos at the bottom */
  .hero-slide-brand .hero-brand-mosaic {
    display: flex !important;
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 10px !important;
    top: auto !important;
    width: auto !important;
    height: 78px !important;
    padding: 0 !important;
    gap: 6px !important;
    flex-direction: row !important;
    align-items: stretch !important;
    z-index: 2;
    pointer-events: none;
  }
  .hero-slide-brand .hero-brand-mosaic-col {
    display: contents !important;
  }
  .hero-slide-brand .hbm-img-wrap {
    flex: 1 1 0 !important;
    width: auto !important;
    height: 78px !important;
    aspect-ratio: auto !important;
    min-width: 0 !important;
    border-width: 1px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.55) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE HERO PAGOS SLIDE — 3 métodos en una sola fila + textos
   compactos para caber en el banner de 300px.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hide label to save space */
  .hero-slide-pagos .hero-brand-label {
    display: none !important;
  }

  /* Tighter content padding */
  .hero-slide-pagos .hero-pagos-content {
    padding: 14px 14px !important;
    gap: 4px !important;
    justify-content: center !important;
  }

  /* Compact title/desc on pagos slide */
  .hero-slide-pagos .hero-brand-title {
    font-size: 22px !important;
    line-height: 1.15 !important;
    margin-bottom: 4px !important;
  }
  .hero-slide-pagos .hero-brand-desc {
    font-size: 11px !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
    display: block !important;
  }

  /* Single-row payment grid (no wrap) */
  .hero-slide-pagos .hero-pagos-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    width: 100% !important;
    margin-top: 2px !important;
    margin-bottom: 4px !important;
  }
  .hero-slide-pagos .hero-pago-item {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 8px 4px !important;
    gap: 3px !important;
  }
  .hero-slide-pagos .hero-pago-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }
  .hero-slide-pagos .hero-pago-name {
    font-size: 11px !important;
    font-weight: 700 !important;
  }
  .hero-slide-pagos .hero-pago-sub,
  .hero-slide-pagos .hero-pago-desc {
    font-size: 8px !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
  .hero-slide-pagos .hero-pagos-badge {
    font-size: 9px !important;
    margin-top: 2px !important;
    letter-spacing: .03em !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   PROMO SLIDES — tarjeta vertical con la foto completa a la
   derecha, texto a la izquierda. Aspect 3:4 portrait coincide
   con el aspect natural de las fotos (sin recortes raros).
   ═══════════════════════════════════════════════════════════ */
.hero-promo-photo-card {
  position: absolute;
  right: 4%;
  top: 6%;
  bottom: 6%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, .42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .75);
  z-index: 2;
}
.hero-promo-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Constrain text overlay so it no se traslape con la tarjeta */
.hero-slide:has(.hero-promo-photo-card) .hero-promo-overlay {
  max-width: 60%;
  background: linear-gradient(to top right, rgba(0,0,0,.92) 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,.35) 80%, transparent 100%);
}

/* Mobile: oculta la tarjeta de foto y restaura el overlay full-width
   (banner móvil vuelve al diseño previo: fondo full-bleed + texto abajo) */
@media (max-width: 768px) {
  .hero-promo-photo-card { display: none !important; }
  .hero-slide:has(.hero-promo-photo-card) .hero-promo-overlay {
    max-width: 100% !important;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 60%, transparent 100%) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   Hero dots — ahora viven en .hero-dots-wrap DEBAJO del banner.
   Visible en escritorio, oculto en móvil.
   ═══════════════════════════════════════════════════════════ */
.hero-dots-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 14px 0 4px;
  pointer-events: none;
}
.hero-dots-wrap .hero-dots {
  position: relative;
  bottom: auto; right: auto; left: auto; top: auto;
  transform: none;
  pointer-events: auto;
  display: flex;
  gap: 8px;
}

@media (max-width: 768px) {
  .hero-dots-wrap { display: none !important; }
}
