/* ==========================================================
   STRIP CLUB PUBLIC — SINGLE STRIP CLUB (SAFE + SCOPED)
========================================================== */

/* ----------------------------------------------------------
   PAGE SCOPE + DESIGN TOKENS (NO GLOBAL LEAK)
---------------------------------------------------------- */
body.single-strip_club {
  background: #020617;
  overflow-x: hidden;

  --bg: #020617;
  --surface: #0a0f1c;
  --surface-soft: rgba(255,255,255,0.05);

  --text: #f9fafb;
  --muted: #9ca3af;

  --accent: #e11d48;
  --gold: #facc15;
  --green: #22c55e;
  --red: #ef4444;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --shadow-soft: 0 20px 55px rgba(0,0,0,0.45);
}

/* ----------------------------------------------------------
   BASE
---------------------------------------------------------- */
.single-profile.strip-club-public {
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

.single-profile.strip-club-public a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================
   MASTER PAGE GRID (SCOPED)
========================================================== */
body.single-strip_club .content-grid {
  width: 100%;
  max-width: none;
  padding: 20px 4% 40px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap: 25px;
  align-items: start;
}

body.single-strip_club .sp-inner,
body.single-strip_club .sp-details,
body.single-strip_club .single-profile {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.single-strip_club .main-right {
  width: 380px;
  position: sticky;
  top: 40px;
}

@media (max-width: 1100px) {
  body.single-strip_club .content-grid {
    grid-template-columns: 1fr;
    padding: 28px 20px 60px;
  }

  body.single-strip_club .main-right {
    width: 100%;
    position: static;
  }
}

/* ==========================================================
   TITLE BAR
========================================================== */
body.single-strip_club .sp-title-bar {
  text-align: center;
  background: linear-gradient(180deg, #0a0f1c, transparent);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.single-strip_club .sp-title-bar .sp-inner {
  padding: 28px 0;
}

body.single-strip_club .sp-main-title {
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), #ffe7b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.single-strip_club .sp-subline {
  margin-top: 6px;
  color: var(--muted);
}

/* ==========================================================
   CARDS
========================================================== */
body.single-strip_club .sp-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

/* ==========================================================
   HERO
========================================================== */
body.single-strip_club .agency-top-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 20px;
}

@media (max-width:1024px){
  body.single-strip_club .agency-top-grid {
    grid-template-columns: 1fr;
  }
}

body.single-strip_club .agency-hero-media {
  height: 320px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 18px;
}

body.single-strip_club .agency-logo-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  max-height: 70px;
  background: #000;
  padding: 6px 10px;
  border-radius: 12px;
}

body.single-strip_club .agency-badge-top {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg,var(--gold),#caa83d);
  color:#000;
  padding:6px 12px;
  font-size:11px;
  font-weight:700;
  border-radius:999px;
}

/* ==========================================================
   META LIST
========================================================== */
body.single-strip_club .agency-meta-list div {
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom:1px dashed rgba(255,255,255,0.06);
}

body.single-strip_club .agency-meta-list dt {
  font-size:13px;
  color:var(--muted);
}

body.single-strip_club .agency-meta-list dd {
  font-weight:600;
}

/* ==========================================================
   INFO COLUMNS
========================================================== */
body.single-strip_club .agency-info-columns {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:26px;
}

body.single-strip_club .reg-section-title {
  font-size:1.3rem;
  font-weight:700;
  margin-bottom:20px;
}

/* ==========================================================
   DANCERS GRID
========================================================== */
body.single-strip_club .therapist-tiles-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:32px;
}

body.single-strip_club .therapist-tile {
  background:linear-gradient(180deg,#0f172a,#0b1220);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 42px rgba(0,0,0,.45);
  transition:transform .25s ease, box-shadow .25s ease;
}

body.single-strip_club .therapist-tile:hover{
  transform:translateY(-4px);
}

body.single-strip_club .therapist-tile.is-featured {
  outline:2px solid rgba(242,201,76,.6);
}

body.single-strip_club .therapist-image-wrap {
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
}

body.single-strip_club .therapist-image-wrap img {
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Availability */
body.single-strip_club .tile-availability {
  position:absolute;
  left:12px;
  bottom:12px;
  padding:5px 10px;
  font-size:12px;
  font-weight:700;
  border-radius:999px;
}

body.single-strip_club .tile-availability.available {
  background: rgba(22,163,74,.95);
  color:#fff;
}

body.single-strip_club .tile-availability.unavailable {
  background: rgba(55,65,81,.95);
  color:#e5e7eb;
}

body.single-strip_club .therapist-tile-body {
  padding:18px 16px 22px;
  text-align:center;
}

body.single-strip_club .therapist-name {
  font-size:16px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

/* ==========================================================
   CLUB GALLERY
========================================================== */
body.single-strip_club .club-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
  gap:12px;
  margin-top:18px;
}

body.single-strip_club .club-gallery img{
  width:100%;
  height:90px;
  object-fit:cover;
  border-radius:12px;
}

/* ==========================================================
   FLOATING WHATSAPP
========================================================== */
body.single-strip_club .floating-whatsapp {
  position:fixed;
  right:22px;
  bottom:22px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#22c55e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  z-index:999;
}
