/* ============================================================
   SINGLE TRANS PROFILE — ESCORT REPLICA (FINAL)
============================================================ */

body.single.single-escort_trans {
  background: var(--bg);
  color: var(--ink);
}

/* ============================================================
   TITLE BAR
============================================================ */

body.single.single-escort_trans .sp-title-bar {
  background: #141522;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

body.single.single-escort_trans .sp-title-bar .sp-inner {
  max-width: 100%;
  padding: 0 3%;
}

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

body.single.single-escort_trans .sp-subline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   MAIN GRID — FULL WIDTH ESCORT STYLE
============================================================ */

body.single.single-escort_trans .sp-details {
  padding: 26px 3% 40px;
}

body.single.single-escort_trans .sp-layout {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px 300px;
  gap: 24px;
  align-items: start;
}

/* ============================================================
   LEFT MAIN COLUMN
============================================================ */

body.single.single-escort_trans .sp-main-column {
  min-width: 0;
}

body.single.single-escort_trans .sp-profile-main-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow);
}

/* Header */
body.single.single-escort_trans .sp-profile-header {
  margin-bottom: 14px;
}

body.single.single-escort_trans .sp-profile-name {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
}

body.single.single-escort_trans .sp-profile-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   IMAGE GRID — ESCORT SCALE
============================================================ */

body.single.single-escort_trans .sp-photo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

body.single.single-escort_trans .sp-photo-box {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.06);
}

body.single.single-escort_trans .sp-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.25s ease;
}

body.single.single-escort_trans .sp-photo-box:hover img {
  transform: scale(1.04);
}

/* Hero image */
body.single.single-escort_trans .sp-photo-box:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(224,176,104,0.35);
  box-shadow:
    0 0 0 1px rgba(224,176,104,0.25),
    0 12px 36px rgba(224,176,104,0.18),
    0 20px 60px rgba(0,0,0,0.45);
}

/* ============================================================
   SECTIONS
============================================================ */

body.single.single-escort_trans .sp-section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 26px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.single.single-escort_trans .sp-section-title::before {
  content: "";
  width: 6px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(180deg, #facc15, #e11d48);
}

body.single.single-escort_trans .sp-profile-bio.highlighted {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   INFO SIDEBAR (COLUMN 2)
============================================================ */

body.single.single-escort_trans .sp-side-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.single.single-escort_trans .sp-side-column .sp-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

body.single.single-escort_trans .sp-info-grid.enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ============================================================
   SERVICES
============================================================ */

body.single.single-escort_trans .sp-services-grid.enhanced {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.single.single-escort_trans .service-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(225,29,72,0.15);
  border: 1px solid rgba(225,29,72,0.35);
  color: #fff;
}

/* ============================================================
   RIGHT SIDEBAR (COLUMN 3)
============================================================ */

@media (min-width: 992px) {
  body.single.single-escort_trans .main-right {
    position: sticky;
    top: 90px;
  }
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet */
@media (max-width: 1200px) {
  body.single.single-escort_trans .sp-layout {
    grid-template-columns: 1fr 320px;
  }

  body.single.single-escort_trans .main-right {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body.single.single-escort_trans .sp-layout {
    grid-template-columns: 1fr;
  }

  body.single.single-escort_trans .sp-photo-row {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   IMAGE SCALE REFINEMENT — MORE SPACE FOR SIDE COLUMNS
============================================================ */

/* Reduce overall image dominance */
body.single.single-escort_trans .sp-photo-row {
  gap: 12px;
}

/* Standardize image size (slightly shorter) */
body.single.single-escort_trans .sp-photo-box {
  aspect-ratio: 2.8 / 4; /* was 3/4 */
}

/* Hero image: less vertical dominance */
body.single.single-escort_trans .sp-photo-box:first-child {
  grid-row: span 2;
  aspect-ratio: 3.6 / 5; /* reduced height */
}

/* Prevent images from visually overpowering content */
body.single.single-escort_trans .sp-profile-main-card {
  padding-top: 24px;
}

/* Tablet tuning */
@media (max-width: 1200px) {
  body.single.single-escort_trans .sp-photo-box:first-child {
    aspect-ratio: 3 / 4;
  }
}

/* Mobile: keep clean & compact */
@media (max-width: 768px) {
  body.single.single-escort_trans .sp-photo-box,
  body.single.single-escort_trans .sp-photo-box:first-child {
    aspect-ratio: 3 / 4;
  }
}
/* ============================================================
   PREMIUM DIRECTORY IMAGE NORMALIZATION
   (Smaller images, more content focus)
============================================================ */

/* Reduce overall visual dominance of photos */
body.single.single-escort_trans .sp-photo-row {
  gap: 10px;
  margin-top: 12px;
}

/* Standard directory image ratio (shorter) */
body.single.single-escort_trans .sp-photo-box {
  aspect-ratio: 2.6 / 4; /* noticeably smaller than before */
}

/* Hero image — controlled premium size */
body.single.single-escort_trans .sp-photo-box:first-child {
  grid-row: span 2;
  aspect-ratio: 3.2 / 5; /* reduced again */
}

/* Prevent images from stretching vertically on large screens */
@media (min-width: 1400px) {
  body.single.single-escort_trans .sp-photo-box,
  body.single.single-escort_trans .sp-photo-box:first-child {
    max-height: 520px;
  }
}

/* ============================================================
   GIVE MORE SPACE TO INFO / SERVICES COLUMN
============================================================ */

/* Rebalance main grid — more room for 2nd column */
body.single.single-escort_trans .sp-layout {
  grid-template-columns: minmax(0, 1fr) 380px 300px;
  gap: 26px;
}

/* Make Info column feel richer */
body.single.single-escort_trans .sp-side-column .sp-card {
  padding: 10px 15px;
}

/* Info grid items more breathable */
body.single.single-escort_trans .sp-info-grid.enhanced {
  gap: 08px;
}

body.single.single-escort_trans .sp-info-grid.enhanced > div {
  padding: 10px 12px;
}

/* Services pills spacing refinement */
body.single.single-escort_trans .sp-services-grid.enhanced {
  gap: 12px;
}

body.single.single-escort_trans .service-pill {
  padding: 9px 16px;
  font-size: 13px;
}

/* Contact block spacing */
body.single.single-escort_trans .sp-contact-list {
  gap: 14px;
}

/* ============================================================
   TABLET — KEEP BALANCE
============================================================ */

@media (max-width: 1200px) {
  body.single.single-escort_trans .sp-layout {
    grid-template-columns: 1fr 340px;
  }
}

/* ============================================================
   MOBILE — CLEAN & STANDARD
============================================================ */

@media (max-width: 768px) {
  body.single.single-escort_trans .sp-layout {
    grid-template-columns: 1fr;
  }

  body.single.single-escort_trans .sp-photo-box,
  body.single.single-escort_trans .sp-photo-box:first-child {
    aspect-ratio: 3 / 4;
    max-height: none;
  }
}

/* ============================================================
   INFO GRID — LABEL LEFT / VALUE RIGHT (INLINE)
============================================================ */

body.single.single-escort_trans .sp-info-grid.enhanced > div {
  display: flex;                 /* key */
  align-items: left;
  justify-content: space-between;
  gap: 05px;

  padding: 1px 1px;
}

/* Label (left) */
body.single.single-escort_trans .sp-info-grid.enhanced span {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

/* Value (right) */
body.single.single-escort_trans .sp-info-grid.enhanced strong {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* Prevent awkward wrapping */
body.single.single-escort_trans .sp-info-grid.enhanced strong {
  max-width: 60%;
}

/* ============================================================
   RATES — INLINE LABEL / VALUES (PREMIUM DIRECTORY STYLE)
============================================================ */

body.single.single-escort_trans .sp-profile-rates {
  margin-top: 26px;
}

/* Hide traditional table header */
body.single.single-escort_trans .sp-rates-table thead {
  display: none;
}

/* Each rate row */
body.single.single-escort_trans .sp-rates-table tbody tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  margin-bottom: 12px;
}

/* Duration (left) */
body.single.single-escort_trans .sp-rates-table td:first-child {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* Incall / Outcall container (right) */
body.single.single-escort_trans .sp-rates-table td:not(:first-child) {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

/* Price values */
body.single.single-escort_trans .sp-rates-table td:not(:first-child)::before {
  content: "";
}

/* Incall / Outcall emphasis */
body.single.single-escort_trans .sp-rates-table td:nth-child(2) {
  color: var(--gold);
  font-weight: 600;
}

body.single.single-escort_trans .sp-rates-table td:nth-child(3) {
  color: #e5e7eb;
}

/* Align prices to the right */
body.single.single-escort_trans .sp-rates-table {
  width: 100%;
}

/* ============================================================
   MOBILE — STACK PRICES CLEANLY
============================================================ */

@media (max-width: 600px) {
  body.single.single-escort_trans .sp-rates-table tbody tr {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  body.single.single-escort_trans .sp-rates-table td:not(:first-child) {
    gap: 10px;
  }
}

/* ============================================================
   IMAGE GALLERY — HORIZONTAL SCROLL (PREMIUM DIRECTORY)
============================================================ */

body.single.single-escort_trans .sp-photo-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  /* hide ugly scrollbar (still scrollable) */
  scrollbar-width: none;          /* Firefox */
}
body.single.single-escort_trans .sp-photo-row::-webkit-scrollbar {
  display: none;                  /* Chrome / Safari */
}

/* Each image card */
body.single.single-escort_trans .sp-photo-box {
  flex: 0 0 auto;                 /* do NOT shrink */
  width: 260px;                   /* STANDARD PREMIUM SIZE */
  aspect-ratio: 3 / 4;

  scroll-snap-align: start;
}

/* First image slightly larger (hero feel, not dominant) */
body.single.single-escort_trans .sp-photo-box:first-child {
  width: 300px;
  aspect-ratio: 4 / 5;
}

/* Image behavior */
body.single.single-escort_trans .sp-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .3s ease;
}

body.single.single-escort_trans .sp-photo-box:hover img {
  transform: scale(1.05);
}

/* ============================================================
   MOBILE — SLIGHTLY SMALLER CARDS
============================================================ */

@media (max-width: 768px) {
  body.single.single-escort_trans .sp-photo-box {
    width: 190px;
  }

  body.single.single-escort_trans .sp-photo-box:first-child {
    width: 220px;
  }
}

/* ============================================================
   HORIZONTAL GALLERY — FADE EDGES (PREMIUM)
============================================================ */

/* Wrap fade effect */
body.single.single-escort_trans .sp-photo-row {
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* Left fade */
body.single.single-escort_trans .sp-photo-row::before,
body.single.single-escort_trans .sp-photo-row::after {
  content: "";
  position: sticky;
  top: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* LEFT */
body.single.single-escort_trans .sp-photo-row::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--paper) 0%,
    rgba(20,21,34,0) 100%
  );
}

/* RIGHT */
body.single.single-escort_trans .sp-photo-row::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--paper) 0%,
    rgba(20,21,34,0) 100%
  );
}

/* Hide scrollbar — still scrollable */
body.single.single-escort_trans .sp-photo-row::-webkit-scrollbar {
  display: none;
}

body.single.single-escort_trans .sp-photo-row {
  scrollbar-width: none;
}
