/* ==========================================================
   SINGLE STRIP DANCER
========================================================== */

/* ----------------------------------------------------------
   BASE
---------------------------------------------------------- */
body.single-strip_dancer{
  background:#020617;
  color:#f8fafc;
  font-family:Inter,system-ui,sans-serif;
  overflow-x:hidden;
}

/* ==========================================================
   MASTER 3-COLUMN GRID
========================================================== */
.sd-page-grid{
  width:100%;
  max-width:none;

  /* EXACT HEADER ALIGNMENT */
  padding:40px 4% 80px;

  display:grid;
  grid-template-columns:
    minmax(0, 1.4fr)   /* LEFT: IMAGES */
    minmax(0, 0.9fr)   /* MIDDLE: INFO */
    380px;             /* RIGHT: SIDEBAR */

  gap:48px;
  align-items:start;
}

/* ==========================================================
   LEFT — IMAGE GALLERY (FIXED & LOCKED)
========================================================== */
.sd-left{min-width:0;}

.sd-gallery-layout{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:28px;
  width:100%;
  align-items:start;
}

/* FORCE A REAL HEIGHT */
.sd-gallery-left{
  height:640px;
}

.sd-gallery-left .sd-photo.hero{
  width:100%;
  height:100%;
  border-radius:22px;
  overflow:hidden;
  background:#000;
}

/* 🔑 FACE-BIAS HERO IMAGE */
.sd-gallery-left img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 18%;   /* 👈 FACE PRIORITY */
  display:block;
}

/* HERO IMAGE TRANSITION */
#sdHeroImage{
  transition:opacity .25s ease;
  will-change:opacity;
}

/* RIGHT SCROLL COLUMN */
.sd-gallery-right{
  display:flex;
  flex-direction:column;
  gap:16px;

  height:640px;
  overflow-y:auto;

  padding-right:6px;
}

/* Scrollbar */
.sd-gallery-right::-webkit-scrollbar{
  width:6px;
}
.sd-gallery-right::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.18);
  border-radius:999px;
}

/* THUMBNAILS */
.sd-gallery-thumb{
  aspect-ratio:3 / 4;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  background:#000;
  opacity:.85;
  transition:all .25s ease;
}

.sd-gallery-thumb:hover{
  opacity:1;
  transform:translateY(-2px);
}

/* 🔑 FACE-BIAS THUMBNAILS */
.sd-gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 22%;   /* 👈 FACE PRIORITY */
  display:block;
}

.sd-gallery-thumb.is-active{
  outline:2px solid #facc15;
  opacity:1;
}


/* ==========================================================
   MIDDLE — INFO STACK
========================================================== */
.sd-middle{
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* Card */
.sd-card{
  background:#0b1220;
  border-radius:18px;
  padding:22px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.45);
}

/* Name */
.sd-name{
  font-size:1.6rem;
  font-weight:900;
  background:linear-gradient(90deg,#facc15,#ffe7b0);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Agency */
.sd-agency{
  font-size:.9rem;
  color:#9ca3af;
  margin-top:6px;
}

/* Badges */
.sd-badge{
  display:inline-block;
  margin-bottom:8px;
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
}

.sd-badge.gold{
  background:linear-gradient(135deg,#facc15,#ffe7b0);
  color:#000;
}

.sd-badge.verified{
  background:#22c55e;
  color:#022c22;
}

.sd-badge.available{
  background:#2563eb;
  color:#fff;
}

/* Stats */
.sd-stats{
  list-style:none;
  padding:0;
  margin:0;
}

.sd-stats li{
  display:flex;
  justify-content:space-between;
  padding:9px 0;
  border-bottom:1px dashed rgba(255,255,255,.08);
  font-size:.9rem;
}

.sd-stats li span:first-child{
  color:#9ca3af;
}

/* Pills */
.sd-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.sd-pills span{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(242,201,76,.6);
  color:#facc15;
  background:rgba(242,201,76,.08);
  font-size:12px;
}

/* Availability */
.sd-availability{
  font-size:.9rem;
  color:#d1d5db;
}

/* Actions */
.sd-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.btn{
  display:block;
  text-align:center;
  padding:14px;
  border-radius:14px;
  font-weight:800;
  letter-spacing:.05em;
  text-decoration:none;
}

.btn.gold{
  background:linear-gradient(135deg,#facc15,#d4af37);
  color:#000;
}

.btn.outline{
  border:1px solid rgba(255,255,255,.15);
  color:#f8fafc;
  background:transparent;
}

/* ==========================================================
   RIGHT — SIDEBAR
========================================================== */
.sd-right{
  width:380px;
  position:sticky;
  top:40px;

  padding-left:26px;
  border-left:1px solid rgba(255,255,255,.06);

  display:flex;
  flex-direction:column;
  gap:24px;
}

/* ==========================================================
   ABOUT SECTION — MATCH CARD SYSTEM
========================================================== */
.sd-about{
  grid-column:1 / span 2;
  margin-top:12px;
  max-width:100%;
}

.sd-about-title{
  font-size:1.1rem;
  font-weight:900;
  margin-bottom:12px;
  letter-spacing:.04em;
  color:#facc15;
}

.sd-about-content{
  font-size:.95rem;
  line-height:1.65;
  color:#e5e7eb;
  max-width:880px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.sd-about-content p{
  margin-bottom:14px;
}

.sd-about-content p:last-child{
  margin-bottom:0;
}




/* ==========================================================
   MOBILE
========================================================== */
@media(max-width:1200px){
  .sd-page-grid{
    grid-template-columns:1fr;
    gap:32px;
    padding:28px 20px 60px;
  }

  .sd-right{
    width:100%;
    position:static;
    padding-left:0;
    border-left:none;
  }

 

@media(max-width:1024px){
  .sd-gallery-layout{
    grid-template-columns:1fr;
  }

  .sd-gallery-right{
    max-height:none;
    overflow-x:auto;
    overflow-y:hidden;
    flex-direction:row;
    gap:12px;
  }

  .sd-gallery-thumb{
    min-width:220px;
  }

  .sd-actions{
    grid-template-columns:1fr;
  }
}


