/* ============================================================
   single-ilan.css — Profil sayfası styling
   Hero + Galeri carousel + Sticky CTA + Sidebar
   ============================================================ */


/* ============ ROOT ============ */
.single-ilan {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

@media (min-width: 769px) {
  .single-ilan {
    padding: 2rem 1.5rem;
  }
}


/* ============ HERO ============ */
.ilan-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
}

@media (min-width: 769px) {
  .ilan-hero {
    grid-template-columns: minmax(280px, 42%) minmax(0, 58%);
    align-items: stretch;
  }
}


/* ── Hero Media (foto) ── */
.ilan-hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-elev);
  overflow: hidden;
}

@media (min-width: 769px) {
  .ilan-hero__media {
    aspect-ratio: auto;
    min-height: 480px;
  }
}

.ilan-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ilan-hero__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  background: linear-gradient(135deg, var(--bg-elev), var(--border));
}


/* ── Tier rozet ── */
.ilan-hero__tier-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #C9A961;
  color: #1A1A1F;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.ilan-hero__tier-badge .escort-icon {
  color: #1A1A1F;
}


/* ── Verified rozet ── */
.ilan-hero__verified-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 132, 255, 0.95);
  color: #fff;
  padding: 6px 12px 6px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(6px);
}


/* ── Live indicator ── */
.ilan-hero__live {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 15, 18, 0.85);
  color: #2ECC71;
  padding: 5px 12px 5px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.ilan-hero__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
  animation: pulse-live 2s infinite;
}


/* ── Hero sidebar (başlık + iletişim + fiyatlar) ── */
.ilan-hero__sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg-elev, rgba(255, 255, 255, 0.02));
}

@media (min-width: 769px) {
  .ilan-hero__sidebar {
    border-left: 1px solid var(--border);
  }
}

.ilan-hero__head {
  padding: 1.25rem 1.35rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .ilan-hero__head {
    padding: 1.5rem 1.75rem 1.15rem;
  }
}

.ilan-hero__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-strong);
}
.ilan-hero__age {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 1.5rem;
}

@media (min-width: 769px) {
  .ilan-hero__title { font-size: 2rem; }
  .ilan-hero__age   { font-size: 1.45rem; }
}

.ilan-hero__location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--text-dim);
  font-size: 1rem;
}
.ilan-hero__location a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color .15s;
}
.ilan-hero__location a:hover {
  border-bottom-color: var(--accent);
}

.ilan-hero__last-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--text-dim);
  font-size: 13px;
}

.ilan-hero__cta-wrap {
  margin-top: .75rem;
}

@media (max-width: 768px) {
  /* Mobile'da hero'daki büyük CTA'yı gizle, sticky bottom kullanılır */
  .ilan-hero__cta-wrap .escort-whatsapp-cta--large {
    width: 100%;
  }
}


/* ── Hero stats grid (yaş/boy/kilo/uyruk/göz/saç/diller) ── */
.ilan-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem .9rem;
  margin: .25rem 0 0;
  padding: 0;
}
@media (min-width: 769px) {
  .ilan-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem 1rem;
  }
}
.ilan-hero__stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  padding: .35rem 0;
  border-bottom: 1px dashed var(--border);
  min-width: 0;
}
.ilan-hero__stat dt {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}
.ilan-hero__stat dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}


/* ── Hero extras (ödeme + müsait) inline ── */
.ilan-hero__extras {
  margin-top: .35rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.ilan-hero__extras-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
  font-size: 13px;
  color: var(--text-dim);
}
.ilan-hero__extras-row strong {
  color: var(--text-strong);
  font-weight: 600;
}


/* ── Hero iletişim ── */
.ilan-hero__contact {
  min-width: 0;
  flex-shrink: 0;
}

.ilan-contact-panel--embedded {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 1rem 1.35rem !important;
  margin: 0 !important;
  box-shadow: none !important;
}

@media (min-width: 769px) {
  .ilan-contact-panel--embedded {
    padding: 1rem 1.75rem !important;
  }
}

.ilan-contact-panel--embedded .ilan-section__title {
  margin-bottom: .75rem;
  font-size: .95rem;
}

.ilan-contact-panel--embedded .ilan-contact-list {
  margin-bottom: 1rem;
  gap: .5rem;
}

.ilan-contact-panel--embedded .ilan-contact-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .5rem;
}

.ilan-contact-panel--embedded .ilan-contact-list__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
}

.ilan-contact-panel--embedded .ilan-contact-list__value {
  margin-left: auto;
  text-align: right;
  font-size: 13px;
  color: var(--accent, #ff3d8b);
}

.ilan-contact-panel--embedded .ilan-contact-list__item--instructions {
  align-items: flex-start;
}

.ilan-contact-panel--embedded .ilan-contact-list__item--instructions .ilan-contact-list__value {
  margin-left: 0;
  flex: 1 1 100%;
  padding-left: 26px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
}

.ilan-contact-panel--embedded .ilan-contact-actions {
  margin-bottom: 0;
}

.ilan-contact-panel--embedded .ilan-contact-btn {
  padding: .75rem .65rem;
  font-size: 12px;
}

/* ============ İÇERİK GRID ============ */
.ilan-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.ilan-content-grid--full {
  grid-template-columns: 1fr;
}

.ilan-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  min-width: 0;
}


/* ============ SECTION (kart benzeri) ============ */
.ilan-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  padding: 1.25rem 1.5rem;
}

.ilan-section__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-strong);
  border: 0;
  padding: 0;
}


/* ============ GALERİ CAROUSEL ============ */
.ilan-gallery-section {
  padding: 1rem 1.25rem;
}
.ilan-gallery {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elev);
}
.ilan-gallery__track {
  display: flex;
  transition: transform .35s ease;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.ilan-gallery__track::-webkit-scrollbar {
  display: none;
}

.ilan-gallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--bg-elev);
}
.ilan-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ilan-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 15, 18, 0.7);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 5;
  backdrop-filter: blur(8px);
}
.ilan-gallery__nav:hover {
  background: rgba(15, 15, 18, 0.9);
}
.ilan-gallery__nav--prev { left: 12px; }
.ilan-gallery__nav--next { right: 12px; }

.ilan-gallery__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.ilan-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.ilan-gallery__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}


/* ============ ABOUT (post_content) ============ */
.ilan-about__content {
  color: var(--text);
  line-height: 1.7;
}
.ilan-about__content p {
  margin: 0 0 1rem;
  color: var(--text);
}
.ilan-about__content strong { color: var(--text-strong); }


/* ============ TAGS / CHIPS ============ */
.ilan-tags__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ilan-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 61, 139, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 61, 139, 0.25);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
}
.ilan-chip:hover {
  background: rgba(255, 61, 139, 0.22);
  color: var(--text-strong);
}
.ilan-chip--format {
  background: rgba(201, 169, 97, 0.1);
  color: #C9A961;
  border-color: rgba(201, 169, 97, 0.3);
}
.ilan-chip--format:hover {
  background: rgba(201, 169, 97, 0.2);
  color: #fff;
}


/* ============ INFO LIST (sidebar profil bilgileri) ============ */
.ilan-info-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ilan-info-list > div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
}
.ilan-info-list > div:last-child {
  border-bottom: 0;
}
.ilan-info-list dt {
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 11px;
  margin: 0;
}
.ilan-info-list dd {
  color: var(--text-strong);
  margin: 0;
  text-align: right;
}


/* ============ FİYAT TABLOSU ============ */
.ilan-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ilan-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.ilan-price-list li:last-child {
  border-bottom: 0;
}
.ilan-price-list span {
  color: var(--text-dim);
  font-size: 13px;
}
.ilan-price-list strong {
  color: var(--text-strong);
  font-size: 14px;
}


/* ============ EXTRAS (ödeme + müsait) ============ */
.ilan-extras-card__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
}
.ilan-extras-card__row:last-child {
  border-bottom: 0;
}
.ilan-extras-card__row strong {
  color: var(--text-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ilan-extras-card__row span {
  color: var(--text);
  line-height: 1.5;
}


/* ============ PROFİL DETAY (2 kolon) ============ */
.ilan-profile-details .ilan-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2rem;
  border-top: 1px solid var(--border-soft, var(--border));
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .ilan-profile-details .ilan-details-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.ilan-details-col--left,
.ilan-details-col--right {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Profil sütun — fiyatlar (sol) */
.ilan-profile-prices {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft, var(--border));
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (min-width: 640px) {
  .ilan-profile-prices {
    margin-top: .75rem;
  }
}

.ilan-profile-prices__title {
  margin: 0 0 .65rem;
  font-size: 13px;
  font-weight: 600;
  color: #b33a5c;
  line-height: 1.35;
}

.ilan-profile-prices__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.ilan-profile-prices__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .5rem .75rem;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border-soft, var(--border));
}

.ilan-profile-prices__item:last-child {
  border-bottom: 0;
}

.ilan-profile-prices__label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.35;
}

.ilan-profile-prices__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  white-space: nowrap;
  text-align: right;
}

.ilan-profile-prices--footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft, var(--border));
  flex: none;
}

.ilan-profile-prices--footer .ilan-profile-prices__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .ilan-profile-prices--footer .ilan-profile-prices__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }
}

.ilan-detail-rows {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ilan-detail-rows__row {
  display: grid;
  grid-template-columns: minmax(110px, 42%) 1fr;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border-soft, var(--border));
  align-items: baseline;
}

.ilan-detail-rows__row:last-child {
  border-bottom: 0;
}

.ilan-detail-rows__label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #b33a5c;
  line-height: 1.35;
}

.ilan-detail-rows__value {
  margin: 0;
  font-size: 14px;
  color: var(--text-strong);
  line-height: 1.45;
}

.ilan-detail-rows__value.is-highlight {
  font-weight: 700;
}

/* Profil sütun — dil (sağ) */
.ilan-profile-languages {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft, var(--border));
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (min-width: 640px) {
  .ilan-profile-languages {
    margin-top: .75rem;
  }
}

.ilan-profile-languages__title {
  margin: 0 0 .65rem;
  font-size: 13px;
  font-weight: 600;
  color: #b33a5c;
  line-height: 1.35;
}

.ilan-profile-languages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.ilan-profile-languages__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border-soft, var(--border));
  font-size: 14px;
}

.ilan-profile-languages__item:last-child {
  border-bottom: 0;
}

.ilan-profile-languages__label {
  color: var(--text-strong);
  font-weight: 500;
}

.ilan-stars {
  display: inline-flex;
  gap: 2px;
  letter-spacing: 0;
}

.ilan-stars__star {
  color: var(--border);
  font-size: 15px;
  line-height: 1;
}

.ilan-stars__star.is-filled {
  color: #b33a5c;
}

/* ============ İLETİŞİM PANELİ (sidebar) ============ */
.ilan-contact-panel {
  background: linear-gradient(180deg, rgba(255, 61, 139, 0.06) 0%, var(--bg-card) 40%);
}

.ilan-contact-panel .ilan-section__title {
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
}

.ilan-contact-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.ilan-contact-list__item {
  display: grid;
  grid-template-columns: 22px auto 1fr;
  gap: .5rem .65rem;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
}

.ilan-contact-list__icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 4px;
  background: var(--accent, #ff3d8b);
  opacity: .85;
  flex-shrink: 0;
}

.ilan-contact-list__icon--city,
.ilan-contact-list__icon--area {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm8 8h-6v-2h6v2zm0-4h-6v-2h6v2zm0-4h-6V9h6v2z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm8 8h-6v-2h6v2zm0-4h-6v-2h6v2zm0-4h-6V9h6v2z'/%3E%3C/svg%3E") center / contain no-repeat;
  background: var(--accent, #ff3d8b);
}

.ilan-contact-list__icon--globe {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E") center / contain no-repeat;
  background: var(--accent, #ff3d8b);
}

.ilan-contact-list__icon--phone {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.85 21 3 13.15 3 3a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.85 21 3 13.15 3 3a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.25 1.01l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  background: var(--accent, #ff3d8b);
}

.ilan-contact-list__icon--info {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E") center / contain no-repeat;
  background: var(--accent, #ff3d8b);
}

.ilan-contact-list__label {
  color: var(--text-strong);
  font-weight: 600;
  white-space: nowrap;
}

.ilan-contact-list__value {
  color: var(--accent, #ff3d8b);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

.ilan-contact-list__item--phone .ilan-contact-list__value,
.ilan-contact-list__item--instructions .ilan-contact-list__value {
  color: var(--text-strong);
}

.ilan-contact-list__item--instructions .ilan-contact-list__value {
  font-weight: 600;
}

.ilan-contact-list__value a {
  color: inherit;
  text-decoration: none;
}

.ilan-contact-list__value a:hover {
  text-decoration: underline;
}

.ilan-contact-whatsapp {
  display: inline-flex;
  color: #25D366;
  line-height: 0;
}

.ilan-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-bottom: 1rem;
}

.ilan-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: .65rem .5rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(90deg, #ff3d8b, #ff8a3d);
  border: 0;
  text-align: center;
  line-height: 1.2;
}

.ilan-contact-btn:hover {
  filter: brightness(1.08);
  color: #fff;
}

.ilan-contact-btn--call {
  background: linear-gradient(90deg, #ff3d8b, #ff8a3d);
}

.ilan-contact-btn--whatsapp {
  background: #25D366;
}

.ilan-contact-btn--whatsapp:hover {
  background: #1EBE5A;
  filter: none;
}

.ilan-contact-btn.is-disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============ RELATED İLANLAR ============ */
.ilan-related {
  margin-top: 2rem;
}


/* ============ STICKY MOBILE CTA SPACER ============ */
@media (max-width: 768px) {
  /* Mobile'da sticky bottom CTA geliyor → footer'a padding ekle */
  body.single-ilan,
  body.single-ilan #colophon,
  body.single-ilan footer {
    padding-bottom: 76px;
  }
}
