/* Ortak hostes profil kademeli gösterim kontrolü */
/* Kart stilleri hidden özniteliğini ezse bile gizleme kesin çalışır. */
.enb-hostess-profile-card[hidden] {
  display: none !important;
}

.enb-hostess-reveal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 1.5rem auto 0;
  padding: 1rem;
  max-width: 62rem;
  border: 1px solid rgba(219, 39, 119, .18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}
.enb-hostess-reveal__status {
  flex: 1 1 100%;
  margin: 0;
  color: #475569;
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}
.enb-hostess-reveal__button,
.enb-hostess-reveal__all {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: .8rem;
  padding: .72rem 1rem;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.enb-hostess-reveal__button {
  border: 1px solid #be185d;
  background: #be185d;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(190, 24, 93, .2);
}
.enb-hostess-reveal__all {
  border: 1px solid #f9a8d4;
  background: #fff1f2;
  color: #9d174d;
}
.enb-hostess-reveal__button:hover,
.enb-hostess-reveal__button:focus-visible,
.enb-hostess-reveal__all:hover,
.enb-hostess-reveal__all:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .13);
}
.enb-hostess-reveal__button:focus-visible,
.enb-hostess-reveal__all:focus-visible {
  outline: 3px solid rgba(236, 72, 153, .28);
  outline-offset: 3px;
}
@media (max-width: 640px) {
  .enb-hostess-reveal {
    align-items: stretch;
    margin-top: 1.1rem;
    padding: .85rem;
  }
  .enb-hostess-reveal__button,
  .enb-hostess-reveal__all {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .enb-hostess-reveal__button,
  .enb-hostess-reveal__all { transition: none; }
}
