/* ═══════════════════════════════════════════════
   Escort Profile Page — Shared Stylesheet
   Cachet Ladies · toronto-escorts.com
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --ep-gold: #d4af37;
  --ep-gold-dark: #b8941f;
  --ep-gold-light: #f5e6b8;
  --ep-black: #000;
  --ep-dark: #1a1a1a;
  --ep-gray-900: #222;
  --ep-gray-700: #555;
  --ep-gray-500: #888;
  --ep-gray-300: #ccc;
  --ep-gray-200: #e8e5de;
  --ep-gray-100: #f5f3ef;
  --ep-gray-50: #faf9f7;
  --ep-white: #fff;
  --ep-green: #22c55e;
  --ep-red: #dc2626;
  --ep-radius: 12px;
  --ep-radius-lg: 16px;
  --ep-shadow: 0 2px 12px rgba(0,0,0,.06);
  --ep-shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --ep-font: 'Raleway', Arial, sans-serif;
  --ep-font-heading: 'Prata', Georgia, serif;
  --ep-transition: .25s ease;
  --ep-max-width: 1200px;
}

/* ── Reset & Base ── */
.ep-page { max-width: var(--ep-max-width); margin: 0 auto; padding: 32px 24px 60px; font-family: var(--ep-font); color: var(--ep-dark); }
.ep-page *, .ep-page *::before, .ep-page *::after { box-sizing: border-box; }

/* ── Breadcrumbs ── */
.ep-breadcrumbs { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--ep-gray-500); margin-bottom: 24px; flex-wrap: wrap; }
.ep-breadcrumbs a { color: var(--ep-gray-500); text-decoration: none; transition: color var(--ep-transition); }
.ep-breadcrumbs a:hover { color: var(--ep-gold); }
.ep-breadcrumbs .ep-bc-sep { color: var(--ep-gray-300); }
.ep-breadcrumbs .ep-bc-current { color: var(--ep-dark); font-weight: 600; }

/* ═══════════════════════════════════
   HERO SECTION — Gallery + Info side-by-side
   ═══════════════════════════════════ */
.ep-hero { display: grid; grid-template-columns: 1fr 400px; gap: 36px; margin-bottom: 36px; align-items: start; }

/* Gallery */
.ep-gallery { position: relative; border-radius: var(--ep-radius-lg); overflow: hidden; background: var(--ep-black); }
.ep-gallery-main { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; cursor: zoom-in; }
.ep-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s ease; }
.ep-gallery-counter { position: absolute; bottom: 14px; left: 14px; background: rgba(0,0,0,.65); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: .72rem; font-weight: 600; z-index: 3; backdrop-filter: blur(4px); }
.ep-gallery-badge { position: absolute; top: 14px; left: 14px; display: flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--ep-gold); color: #fff; border-radius: 20px; font-size: .72rem; font-weight: 700; z-index: 3; text-transform: uppercase; letter-spacing: .5px; }
.ep-gallery-verified { position: absolute; top: 14px; right: 14px; display: flex; align-items: center; gap: 4px; padding: 5px 12px; background: rgba(0,0,0,.6); color: #fff; border-radius: 20px; font-size: .65rem; font-weight: 600; z-index: 3; backdrop-filter: blur(4px); }
.ep-gallery-verified svg { flex-shrink: 0; }
.ep-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.92); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3; box-shadow: 0 2px 8px rgba(0,0,0,.18); transition: all var(--ep-transition); color: var(--ep-dark); }
.ep-gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.ep-gallery-prev { left: 12px; }
.ep-gallery-next { right: 12px; }

/* Thumbnail strip */
.ep-thumbs { display: flex; gap: 6px; margin-top: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.ep-thumbs::-webkit-scrollbar { display: none; }
.ep-thumb { flex: 0 0 72px; height: 54px; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all var(--ep-transition); opacity: .6; }
.ep-thumb.active { border-color: var(--ep-gold); opacity: 1; }
.ep-thumb:hover { opacity: 1; }
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Info Panel (right side) ── */
.ep-info { display: flex; flex-direction: column; gap: 0; }
.ep-info-name { font-family: var(--ep-font-heading); font-size: 2.6rem; font-weight: 400; color: var(--ep-dark); margin: 0 0 6px; line-height: 1.15; }
.ep-info-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.ep-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 20px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.ep-badge-elite { background: var(--ep-dark); color: var(--ep-gold); }
.ep-badge-available { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.ep-badge-available .ep-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ep-green); animation: ep-pulse 2s infinite; }
@keyframes ep-pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* Rating */
.ep-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.ep-stars { color: var(--ep-gold); font-size: 1rem; letter-spacing: 1px; }
.ep-rating-text { font-size: .82rem; color: var(--ep-gray-500); }
.ep-rating-text strong { color: var(--ep-dark); }

/* Attributes grid */
.ep-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--ep-white); border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius); overflow: hidden; margin-bottom: 18px; }
.ep-attr { padding: 14px 16px; border-bottom: 1px solid var(--ep-gray-100); display: flex; flex-direction: column; gap: 2px; }
.ep-attr:nth-child(odd) { border-right: 1px solid var(--ep-gray-100); }
.ep-attr:nth-last-child(-n+2) { border-bottom: none; }
.ep-attr-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--ep-gray-500); }
.ep-attr-value { font-size: .92rem; font-weight: 600; color: var(--ep-dark); }

/* CTA buttons */
.ep-cta-group { display: flex; flex-direction: column; gap: 10px; }
.ep-btn-primary { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; background: var(--ep-gold); color: #fff; border: none; border-radius: var(--ep-radius); font-size: .92rem; font-weight: 700; font-family: var(--ep-font); cursor: pointer; text-decoration: none; transition: all var(--ep-transition); text-align: center; }
.ep-btn-primary:hover { background: var(--ep-gold-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(212,175,55,.35); }
.ep-btn-secondary { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; background: var(--ep-white); color: var(--ep-dark); border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius); font-size: .85rem; font-weight: 600; font-family: var(--ep-font); cursor: pointer; text-decoration: none; transition: all var(--ep-transition); text-align: center; }
.ep-btn-secondary:hover { border-color: var(--ep-gold); color: var(--ep-gold); background: #fffbeb; }
.ep-btn-icon { flex-shrink: 0; }

/* ═══════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════ */
.ep-trust { display: flex; justify-content: center; gap: 0; margin-bottom: 40px; background: var(--ep-gray-50); border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius); overflow: hidden; }
.ep-trust-item { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 16px; text-align: center; font-size: .78rem; font-weight: 600; color: var(--ep-gray-700); border-right: 1px solid var(--ep-gray-200); }
.ep-trust-item:last-child { border-right: none; }
.ep-trust-item svg { flex-shrink: 0; color: var(--ep-gold); }
.ep-trust-item strong { color: var(--ep-dark); }

/* ═══════════════════════════════════
   CONTENT TABS (About, Reviews, FAQ, Rates)
   ═══════════════════════════════════ */
.ep-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--ep-gray-200); margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.ep-tabs::-webkit-scrollbar { display: none; }
.ep-tab { padding: 12px 24px; font-size: .85rem; font-weight: 600; color: var(--ep-gray-500); cursor: pointer; border: none; background: none; font-family: var(--ep-font); transition: all var(--ep-transition); border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; }
.ep-tab:hover { color: var(--ep-dark); }
.ep-tab.active { color: var(--ep-dark); border-bottom-color: var(--ep-gold); }
.ep-tab-panel { display: none; }
.ep-tab-panel.active { display: block; }

/* ── About Tab ── */
.ep-about { max-width: 760px; }
.ep-about h2 { font-family: var(--ep-font-heading); font-size: 1.6rem; font-weight: 400; margin: 0 0 18px; color: var(--ep-dark); }
.ep-about p { font-size: .95rem; line-height: 1.8; color: var(--ep-gray-700); margin: 0 0 18px; }
.ep-about p:last-child { margin-bottom: 0; }
.ep-about strong { color: var(--ep-dark); }

/* ── How It Works ── */
.ep-how-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.ep-how-step { text-align: center; padding: 24px 16px; background: var(--ep-gray-50); border-radius: var(--ep-radius); border: 1px solid var(--ep-gray-200); }
.ep-how-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--ep-gold); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; margin: 0 auto 12px; }
.ep-how-step h4 { font-size: .88rem; font-weight: 700; margin: 0 0 6px; color: var(--ep-dark); }
.ep-how-step p { font-size: .78rem; color: var(--ep-gray-500); margin: 0; line-height: 1.5; }

/* ── Reviews Tab ── */
.ep-reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ep-reviews-header h2 { font-family: var(--ep-font-heading); font-size: 1.6rem; font-weight: 400; margin: 0; }
.ep-reviews-summary { display: flex; align-items: center; gap: 12px; }
.ep-reviews-big-rating { font-size: 2.2rem; font-weight: 700; color: var(--ep-dark); line-height: 1; }
.ep-reviews-stars-block { display: flex; flex-direction: column; gap: 2px; }
.ep-reviews-stars-block .ep-stars { font-size: 1.1rem; }
.ep-reviews-count { font-size: .78rem; color: var(--ep-gray-500); }

.ep-review-card { padding: 20px 24px; background: var(--ep-white); border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius); margin-bottom: 14px; }
.ep-review-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.ep-review-author { display: flex; flex-direction: column; gap: 2px; }
.ep-review-name { font-weight: 700; font-size: .88rem; color: var(--ep-dark); display: flex; align-items: center; gap: 6px; }
.ep-review-verified { display: inline-flex; align-items: center; gap: 3px; font-size: .62rem; font-weight: 700; color: var(--ep-green); text-transform: uppercase; letter-spacing: .4px; }
.ep-review-meta { font-size: .72rem; color: var(--ep-gray-500); }
.ep-review-stars { color: var(--ep-gold); font-size: .88rem; }
.ep-review-text { font-size: .88rem; line-height: 1.7; color: var(--ep-gray-700); margin: 0; font-style: italic; }
.ep-review-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.ep-review-tag { padding: 3px 10px; background: var(--ep-gray-50); border: 1px solid var(--ep-gray-200); border-radius: 20px; font-size: .68rem; color: var(--ep-gray-500); font-weight: 500; }
.ep-review-more { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; padding: 10px; color: var(--ep-gold); font-size: .82rem; font-weight: 600; text-decoration: none; border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius); transition: all var(--ep-transition); }
.ep-review-more:hover { background: #fffbeb; border-color: var(--ep-gold); }

/* ── FAQ Tab ── */
.ep-faq h2 { font-family: var(--ep-font-heading); font-size: 1.6rem; font-weight: 400; margin: 0 0 18px; color: var(--ep-dark); }
.ep-faq-item { border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius); margin-bottom: 10px; overflow: hidden; }
.ep-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-size: .88rem; font-weight: 600; color: var(--ep-dark); background: var(--ep-white); transition: background var(--ep-transition); }
.ep-faq-q:hover { background: var(--ep-gray-50); }
.ep-faq-q .ep-faq-arrow { transition: transform var(--ep-transition); flex-shrink: 0; color: var(--ep-gray-500); }
.ep-faq-item.open .ep-faq-arrow { transform: rotate(180deg); }
.ep-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ep-faq-item.open .ep-faq-a { max-height: 400px; }
.ep-faq-a-inner { padding: 0 20px 16px; font-size: .85rem; line-height: 1.7; color: var(--ep-gray-700); }

/* ── Rates Preview Tab ── */
.ep-rates h2 { font-family: var(--ep-font-heading); font-size: 1.6rem; font-weight: 400; margin: 0 0 6px; color: var(--ep-dark); }
.ep-rates-note { font-size: .82rem; color: var(--ep-gray-500); margin-bottom: 18px; }
.ep-rates-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ep-rate-card { padding: 18px 20px; background: var(--ep-white); border: 1px solid var(--ep-gray-200); border-radius: var(--ep-radius); text-align: center; transition: all var(--ep-transition); }
.ep-rate-card:hover { border-color: var(--ep-gold); box-shadow: 0 2px 12px rgba(212,175,55,.12); }
.ep-rate-dur { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--ep-gray-500); margin-bottom: 4px; }
.ep-rate-price { font-size: 1.5rem; font-weight: 700; color: var(--ep-dark); }
.ep-rate-label { font-size: .72rem; color: var(--ep-gray-500); margin-top: 2px; }
.ep-rates-cta { margin-top: 18px; text-align: center; }
.ep-rates-cta a { color: var(--ep-gold); font-size: .82rem; font-weight: 600; text-decoration: none; }
.ep-rates-cta a:hover { text-decoration: underline; }

/* ═══════════════════════════════════
   BOOKING CTA SECTION
   ═══════════════════════════════════ */
.ep-booking-cta { background: var(--ep-dark); color: #fff; border-radius: var(--ep-radius-lg); padding: 48px; text-align: center; margin: 48px 0; position: relative; overflow: hidden; }
.ep-booking-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,.15), transparent 70%); }
.ep-booking-cta h2 { font-family: var(--ep-font-heading); font-size: 1.8rem; font-weight: 400; margin: 0 0 8px; color: #fff; position: relative; }
.ep-booking-cta p { font-size: .92rem; color: rgba(255,255,255,.7); margin: 0 0 28px; position: relative; }
.ep-booking-cta .ep-cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.ep-booking-cta .ep-btn-gold { padding: 14px 36px; background: var(--ep-gold); color: #fff; border: none; border-radius: var(--ep-radius); font-size: .92rem; font-weight: 700; font-family: var(--ep-font); cursor: pointer; text-decoration: none; transition: all var(--ep-transition); }
.ep-booking-cta .ep-btn-gold:hover { background: var(--ep-gold-dark); transform: translateY(-1px); }
.ep-booking-cta .ep-btn-outline { padding: 14px 36px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: var(--ep-radius); font-size: .92rem; font-weight: 600; font-family: var(--ep-font); cursor: pointer; text-decoration: none; transition: all var(--ep-transition); }
.ep-booking-cta .ep-btn-outline:hover { border-color: var(--ep-gold); color: var(--ep-gold); }
.ep-booking-reassure { display: flex; justify-content: center; gap: 24px; margin-top: 20px; position: relative; }
.ep-booking-reassure span { font-size: .72rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════
   RELATED MODELS ("You May Also Like")
   ═══════════════════════════════════ */
.ep-related { margin: 48px 0; }
.ep-related h2 { font-family: var(--ep-font-heading); font-size: 1.6rem; font-weight: 400; margin: 0 0 20px; color: var(--ep-dark); text-align: center; }
.ep-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ep-related-card { border-radius: var(--ep-radius); overflow: hidden; background: var(--ep-white); border: 1px solid var(--ep-gray-200); transition: all var(--ep-transition); text-decoration: none; color: inherit; }
.ep-related-card:hover { transform: translateY(-4px); box-shadow: var(--ep-shadow-lg); border-color: var(--ep-gold); }
.ep-related-card-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.ep-related-card-body { padding: 12px 14px; }
.ep-related-card-name { font-weight: 700; font-size: .88rem; color: var(--ep-dark); margin: 0 0 4px; }
.ep-related-card-meta { font-size: .72rem; color: var(--ep-gray-500); }
.ep-related-card-rating { color: var(--ep-gold); font-size: .72rem; margin-top: 4px; }

/* ═══════════════════════════════════
   STICKY BOTTOM BAR (Mobile)
   ═══════════════════════════════════ */
.ep-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ep-white); border-top: 1px solid var(--ep-gray-200); padding: 10px 16px; display: none; gap: 10px; z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,.1); }
.ep-sticky-bar.visible { display: flex; }
.ep-sticky-bar .ep-sticky-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.ep-sticky-bar .ep-sticky-name { font-weight: 700; font-size: .88rem; color: var(--ep-dark); }
.ep-sticky-bar .ep-sticky-meta { font-size: .68rem; color: var(--ep-gray-500); }
.ep-sticky-bar .ep-sticky-btn { padding: 10px 20px; background: var(--ep-gold); color: #fff; border: none; border-radius: 8px; font-size: .82rem; font-weight: 700; font-family: var(--ep-font); cursor: pointer; text-decoration: none; white-space: nowrap; }
.ep-sticky-bar .ep-sticky-call { padding: 10px 14px; background: var(--ep-gray-50); color: var(--ep-dark); border: 1px solid var(--ep-gray-200); border-radius: 8px; font-size: .82rem; font-weight: 600; font-family: var(--ep-font); cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════ */
.ep-lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.ep-lightbox.open { display: flex; }
.ep-lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; z-index: 10; padding: 8px; opacity: .7; transition: opacity var(--ep-transition); }
.ep-lightbox-close:hover { opacity: 1; }
.ep-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.ep-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.15); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; transition: all var(--ep-transition); }
.ep-lightbox-nav:hover { background: rgba(255,255,255,.3); }
.ep-lightbox-prev { left: 20px; }
.ep-lightbox-next { right: 20px; }
.ep-lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 600; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .ep-hero { grid-template-columns: 1fr 340px; gap: 24px; }
  .ep-related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 850px) {
  .ep-hero { grid-template-columns: 1fr; gap: 20px; }
  .ep-info-name { font-size: 2rem; }
  .ep-trust { flex-wrap: wrap; }
  .ep-trust-item { flex: 1 1 45%; border-bottom: 1px solid var(--ep-gray-200); }
  .ep-trust-item:nth-child(odd) { border-right: 1px solid var(--ep-gray-200); }
  .ep-trust-item:last-child, .ep-trust-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .ep-how-works { grid-template-columns: 1fr; gap: 12px; }
  .ep-related-grid { grid-template-columns: repeat(2, 1fr); }
  .ep-booking-cta { padding: 32px 24px; }
  .ep-booking-cta h2 { font-size: 1.4rem; }
  .ep-sticky-bar.visible { display: flex; }
}

@media (max-width: 600px) {
  .ep-page { padding: 20px 16px 80px; }
  .ep-info-name { font-size: 1.6rem; }
  .ep-attrs { grid-template-columns: 1fr 1fr; }
  .ep-tab { padding: 10px 16px; font-size: .78rem; }
  .ep-rates-grid { grid-template-columns: 1fr 1fr; }
  .ep-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ep-trust-item { font-size: .68rem; padding: 10px 8px; }
  .ep-booking-reassure { flex-direction: column; align-items: center; gap: 8px; }
  .ep-review-card { padding: 16px; }
  .ep-lightbox img { max-width: 96vw; }
}

@media (max-width: 400px) {
  .ep-related-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ep-attrs { grid-template-columns: 1fr; }
  .ep-attr { border-right: none !important; }
}
