:root {
  --em-dark-1: #0f172a;
  --em-dark-2: #111827;
  --em-card: #111827;
  --em-card-soft: #1f2937;
  --em-light: #f8fafc;
  --em-text: #e5e7eb;
  --em-muted: #94a3b8;
  --em-accent: #ff2d75;
  --em-gold: #facc15;
  --em-danger: #ef4444;
  --em-success: #22c55e;
  --em-radius: 12px;
  --em-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

body .em-home,
body .em-profile {
  font-family: "Poppins", "Inter", sans-serif;
}

.em-main {
  background: linear-gradient(135deg, var(--em-dark-1), var(--em-dark-2));
}

.em-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.em-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.em-header .em-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.em-logo {
  color: white;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.em-heart {
  color: var(--em-accent);
}

.em-nav {
  display: flex;
  gap: 24px;
}

.em-nav a {
  color: var(--em-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.em-nav a:hover {
  color: var(--em-accent);
}

.em-header-actions {
  display: flex;
  gap: 12px;
}

.em-btn {
  background: var(--em-accent);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 24px rgba(255, 45, 117, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.em-btn:hover {
  transform: translateY(-2px);
}

.em-btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.em-btn-light {
  background: white;
  color: #111827;
  box-shadow: none;
}

.em-section {
  padding: 80px 0;
}

.em-section-dark {
  color: var(--em-text);
}

.em-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.em-section-head h2 {
  font-size: 28px;
  color: white;
  margin: 0;
}

.em-link {
  color: var(--em-accent);
  text-decoration: none;
  font-weight: 600;
}

.em-link i {
  margin-right: 6px;
}

.em-nav a i,
.em-btn i,
.em-section-head h2 i,
.em-card-light h3 i {
  margin-right: 8px;
  opacity: 0.9;
}

.em-grid {
  display: grid;
  gap: 22px;
}

.em-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.em-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.em-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.em-card {
  position: relative;
  border-radius: var(--em-radius);
  background: var(--em-card);
  overflow: hidden;
  box-shadow: var(--em-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.em-card-light {
  background: white;
  color: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-radius: var(--em-radius);
  overflow: hidden;
  padding: 24px;
}

.em-profile .em-card-light {
  margin-bottom: 10px;
}

.em-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.em-card-media {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.em-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.em-card:hover .em-card-media img {
  transform: scale(1.08);
}

.em-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.em-card:hover .em-card-overlay {
  opacity: 1;
}

.em-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}

.em-card:hover .em-card-hover,
.em-card.is-open .em-card-hover {
  opacity: 1;
  transform: translateY(0);
}

.em-card.is-open .em-card-overlay {
  opacity: 1;
}

.model-hover-info {
  list-style: none;
  margin: 0;
  padding: 0;
  color: white;
  font-size: 13px;
  display: grid;
  gap: 6px;
  width: 100%;
}

.model-hover-info span {
  color: #e2e8f0;
  font-weight: 600;
  display: inline-block;
  min-width: 110px;
}

.model-hover-info li {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.3s ease;
}

.model-hover-info li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.em-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.em-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: white;
  letter-spacing: 0.6px;
}

.em-badge-featured {
  background: var(--em-danger);
}

.em-badge-gold {
  background: var(--em-gold);
  color: #1f2937;
}

.em-status-dot {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  background: var(--em-success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.em-card-body {
  padding: 16px;
}

.em-card-body h3 {
  margin: 0;
  color: white;
  font-size: 18px;
}

.em-card-body p {
  margin: 6px 0 0;
  color: var(--em-muted);
  font-size: 13px;
}

.em-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.em-avatar-swiper .swiper-slide {
  width: auto;
}

.em-avatar {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: border 0.3s ease, transform 0.3s ease;
}

.em-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.em-avatar:hover {
  border-color: var(--em-accent);
  transform: translateY(-4px);
}

.em-cta {
  background: transparent;
}

.em-cta-box {
  background: var(--em-accent);
  border-radius: 24px;
  padding: 40px 50px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.em-cta-box h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.em-profile {
  background: #f8fafc;
  color: #0f172a;
}

.em-profile-hero {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 40px 0;
}

.em-hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 28px;
}

.em-hero-info {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.em-hero-wrap.has-cover .em-hero-info {
  backdrop-filter: blur(6px);
}

.em-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.em-btn-fav {
  background: #0f172a;
  color: white;
  box-shadow: none;
}

.em-btn-whatsapp {
  background: #16a34a;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
}

.em-hero-cover {
  min-height: 260px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.em-profile-gallery {
  padding: 30px 0 10px;
}

.em-gallery-swiper img {
  width: 100%;
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.em-profile-main {
  padding: 40px 0 60px;
}

.em-profile-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.em-tags {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.em-tag {
  background: #e2e8f0;
  color: #0f172a;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.em-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-weight: 500;
}

.em-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.em-rating-score {
  font-size: 36px;
  font-weight: 700;
}

.em-rating-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
}

.em-rating-stars span {
  color: #e2e8f0;
}

.em-rating-stars span.filled {
  color: #facc15;
}

.em-rating-breakdown {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.em-rating-row {
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.em-bar {
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  height: 6px;
}

.em-bar span {
  display: block;
  height: 100%;
  background: var(--em-accent);
}

.em-review-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
}

.em-review-item p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #475569;
}

.em-review-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.em-review-form select,
.em-review-form textarea,
.em-form input,
.em-form textarea,
.em-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
}

.em-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.em-detail-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.em-profile-meta-scroll {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5f5 #eef2ff;
}

.em-profile-meta-scroll::-webkit-scrollbar {
  width: 6px;
}

.em-profile-meta-scroll::-webkit-scrollbar-track {
  background: #eef2ff;
  border-radius: 999px;
}

.em-profile-meta-scroll::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 999px;
}

.em-profile-meta-scroll .em-detail-list li {
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.em-profile-meta-scroll .em-detail-list li:hover {
  background: #f1f5ff;
  transform: translateX(2px);
  box-shadow: inset 0 0 0 1px #e2e8ff;
}

.em-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.em-table td {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  padding-left: 5px;
}

.em-badge-available {
  background: #dcfce7;
  color: #166534;
}

.em-badge-busy {
  background: #fee2e2;
  color: #b91c1c;
}

.em-badge-offline {
  background: #e2e8f0;
  color: #475569;
}

.em-gifts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.em-gift {
  background: #f1f5f9;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.em-section-light {
  background: #f8fafc;
  padding-top: 0;
}

.em-section-light .em-card-body h3 {
  color: #0f172a;
}

.em-section-light .em-card-body p {
  color: #64748b;
}

.em-form {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.em-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.em-form-wide {
  grid-column: span 2;
}

.em-notice {
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.em-shortcode-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 13px;
}

.em-shortcode-note input {
  border: none;
  background: transparent;
  font-family: inherit;
  width: 200px;
  color: #0f172a;
}

.em-credit {
  margin-top: 24px;
  font-size: 13px;
  color: #64748b;
}

.em-credit a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}

.em-search {
  padding: 40px 0 0;
}

.em-search-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.em-home .em-search-form input,
.em-home .em-search-form select {
  background: #0f172a;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.em-home .em-search-form input::placeholder {
  color: #94a3b8;
}

.em-search-results .em-card-body h3 {
  color: #0f172a;
}

.em-search-results .em-card-body p {
  color: #64748b;
}

.em-form-msg.is-success {
  color: #166534;
  font-weight: 600;
}

.em-form-msg.is-error {
  color: #b91c1c;
  font-weight: 600;
}

.em-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: none;
  position: relative;
}

.em-nav-toggle span,
.em-nav-toggle span::before,
.em-nav-toggle span::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: white;
  transition: transform 0.3s ease;
}

.em-nav-toggle span { top: 18px; }
.em-nav-toggle span::before { top: -6px; }
.em-nav-toggle span::after { top: 6px; }

@media (max-width: 1100px) {
  .em-grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .em-nav { display: none; }
  .em-nav-toggle { display: inline-flex; }
  .em-grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .em-profile-grid { grid-template-columns: 1fr; }
  .em-hero-wrap { grid-template-columns: 1fr; }
  .em-form-grid { grid-template-columns: 1fr; }
  .em-search-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .em-grid-5, .em-grid-4, .em-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .em-cta-box { flex-direction: column; align-items: flex-start; }
  .em-header-actions { display: none; }
}
