/* Ethio Escort Models — gallery + modern single profile */

.ee-gallery,
.ee-gallery {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 0 24px;
}
.ee-gallery--cols-3,
.ee-gallery--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1180px; }
.ee-gallery--cols-2,
.ee-gallery--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1120px; }
.ee-gallery--cols-4,
.ee-gallery--cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1180px; }
.ee-gallery--cols-1,
.ee-gallery--cols-1 { grid-template-columns: 1fr; }

.ee-card {
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .28s ease, box-shadow .28s ease;
  color: #f2f2f2;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  isolation: isolate;
}
.ee-card:hover {
  border-color: rgba(230,57,57,0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(230, 57, 57, 0.22);
}
.ee-card__media {
  display: block;
  aspect-ratio: 3 / 4;
  min-height: 520px;
  overflow: hidden;
  background: #111;
  position: relative;
}
.ee-card__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.55) 42%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.ee-card__flags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  z-index: 4;
  pointer-events: none;
}
.ee-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
}
.ee-badge--tier.ee-badge--normal { background: rgba(40,40,40,.92); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.ee-badge--tier.ee-badge--premium { background: #e63939; color: #fff; }
.ee-badge--tier.ee-badge--vip { background: linear-gradient(135deg,#7b1fa2,#c2185b); color: #fff; }
.ee-badge--avail.ee-badge--available { background: #1b5e20; color: #c8e6c9; }
.ee-badge--avail.ee-badge--busy { background: #e65100; color: #fff; }
.ee-badge--avail.ee-badge--unavailable { background: #424242; color: #bbb; }

.ee-profile__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.ee-profile__badges .ee-badge { font-size: .72rem; padding: 5px 11px; }
.ee-profile__badges .ee-badge--tier.ee-badge--normal { background: #333; }
.ee-profile__badges .ee-badge--avail.ee-badge--available { background: #1b5e20; color: #c8e6c9; }
.ee-card__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}
.ee-card:hover .ee-card__media img { transform: scale(1.06); }
.ee-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}
.ee-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: transparent;
  pointer-events: none;
}
.ee-card__name {
  margin: 0 0 4px;
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.ee-card__name a { color: #fff; text-decoration: none; pointer-events: auto; }
.ee-card__name a:hover { color: #ff6b6b; }
.ee-card__stats { margin: 0 0 10px; font-size: .85rem; color: #ff8a8a; font-weight: 650; }
.ee-card__bio { display: none !important; }
.ee-card__btn {
  align-self: stretch;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e63939 0%, #c62828 100%) !important;
  color: #fff !important;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none !important;
  padding: 12px 14px;
  min-height: 46px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(230, 57, 57, 0.28);
  pointer-events: auto;
}
.ee-card__btn:hover { background: #ff5252 !important; color: #fff !important; }

@media (max-width: 991px) {
  .ee-gallery--cols-3,
  .ee-gallery--cols-4,
  .ee-gallery--cols-3,
  .ee-gallery--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .ee-gallery,
  .ee-gallery--cols-2,
  .ee-gallery--cols-3,
  .ee-gallery--cols-4,
  .ee-gallery,
  .ee-gallery--cols-2,
  .ee-gallery--cols-3,
  .ee-gallery--cols-4 { grid-template-columns: 1fr !important; }
}

/* ═══ Single profile ═══ */
.ee-profile {
  max-width: 1040px;
  margin: 0 auto 56px;
  padding: 16px 16px 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  color: #e8e8e8;
}
.site-main > .ee-profile,
.ast-container .ee-profile {
  width: 100%;
}

.ee-profile__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px 36px;
  align-items: start;
}

.ee-profile__aside {
  position: sticky;
  top: calc(var(--ee-chrome-h, 108px) + 16px);
  align-self: start;
}
.ee-carousel {
  position: relative;
  margin: 0 0 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1a1a1a;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.ee-carousel__viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  background: #1a1a1a;
}
.ee-carousel__viewport:active { cursor: grabbing; }
.ee-carousel__track {
  display: flex;
  width: 100%;
  will-change: transform;
}
.ee-carousel__slide {
  margin: 0;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}
.ee-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}
.ee-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
}
.ee-carousel__nav:hover { background: rgba(230,57,57,0.9); }
.ee-carousel__prev { left: 10px; }
.ee-carousel__next { right: 10px; }
.ee-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 4px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  pointer-events: none;
}
.ee-carousel__dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  pointer-events: auto;
}
.ee-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}
.ee-carousel__dot.is-active { background: #e63939; width: 18px; }
.ee-carousel__count {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ee-carousel__hint {
  margin: 0;
  padding: 8px 12px 12px;
  text-align: center;
  color: #aaa;
  font-size: 12px;
  background: #121212;
}

.ee-profile__contact-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}
.ee-profile__contact-title {
  margin: 0 0 6px;
  font-size: .78rem;
  font-weight: 700;
  color: #e63939;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ee-profile__contact-sub {
  margin: -2px 0 8px;
  font-size: .84rem;
  color: #999;
  line-height: 1.4;
}

.ee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.ee-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.ee-btn:active { transform: translateY(0) scale(.99); }
.ee-btn--primary {
  background: #e63939;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(230, 57, 57, 0.35);
}
.ee-btn--wa {
  background: linear-gradient(135deg, #2fe36d 0%, #25d366 45%, #128c7e 100%);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}
.ee-btn--tg {
  background: linear-gradient(135deg, #4fc3f7 0%, #2aabee 45%, #0088cc 100%);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(0, 136, 204, 0.4);
}
.ee-btn--call {
  background: #fff;
  color: #111 !important;
  border: 1px solid #ddd;
  box-shadow: none;
}

.ee-profile__header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.ee-profile__eyebrow {
  margin: 0 0 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e63939;
}
.ee-profile__name {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  text-transform: none;
}
.ee-profile__meta {
  margin: 0;
  color: #999;
  font-size: .92rem;
}

.ee-profile__block {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px 20px;
  margin-bottom: 20px;
}
.ee-profile__block h2 {
  margin: 0 0 16px;
  font-size: .78rem;
  font-weight: 700;
  color: #e63939;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 0;
  padding: 0;
}

.ee-specs {
  margin: 0;
  display: grid;
  gap: 0;
}
.ee-specs__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: .92rem;
}
.ee-specs__row:last-child { border-bottom: 0; }
.ee-specs__row dt { margin: 0; color: #999; font-weight: 500; }
.ee-specs__row dd { margin: 0; color: #fff; font-weight: 600; }

.ee-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.ee-svc-tag {
  display: inline-block;
  padding: 7px 12px;
  background: #fdeaea;
  color: #c62828;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}
.ee-svc-tag--link:hover {
  background: #e63939;
  color: #fff;
}

.ee-profile__phys { margin: 0 0 10px; }
.ee-phys-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(230, 57, 57, 0.15);
  color: #ff8a8a;
  border: 1px solid rgba(230, 57, 57, 0.35);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 650;
  text-decoration: none;
}
a.ee-phys-tag:hover {
  background: #e63939;
  color: #fff;
  border-color: #e63939;
}

.ee-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ee-svc-list--compact li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: .86rem;
}
.ee-svc-list li a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
}
.ee-svc-list li a:hover { color: #e63939; text-decoration: underline; }
.ee-svc-list li strong {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.ee-svc--yes strong { background: #e8f5e9; color: #2e7d32; }
.ee-svc--no strong { background: #eee; color: #777; }
.ee-svc--inquire strong { background: #fdeaea; color: #c62828; }

.ee-profile__desc {
  color: #444;
  font-size: .95rem;
  line-height: 1.75;
}
.ee-profile__desc p { margin: 0 0 1em; }

.ee-profile__seo-links {
  margin-top: 8px;
  padding: 18px 4px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.ee-profile__seo-links a {
  color: #e63939;
  font-size: .84rem;
  font-weight: 500;
  text-decoration: none;
}
.ee-profile__seo-links a:hover { text-decoration: underline; }

@media (max-width: 820px) {
  .ee-profile__layout { grid-template-columns: 1fr; gap: 20px; }
  .ee-profile__aside { position: static; }
  .ee-carousel { max-width: 420px; margin-left: auto; margin-right: auto; }
  .ee-svc-list { grid-template-columns: 1fr; }
  .ee-specs__row { grid-template-columns: 110px 1fr; }
}
