/* Slider dots */
.enb-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  transition: all .2s ease;
}
.enb-dot:hover{ background: rgba(255,255,255,.85); }
.enb-dot.is-active{
  width: 20px;
  background: rgba(236, 72, 153, 1);
}

/* Basit buton */
.enb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.7rem 1rem;
  border-radius: 14px;
  background:#0f172a;
  color:#fff;
  font-weight:700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
  transition: transform .08s ease, opacity .2s ease;
}
.enb-btn:hover{ opacity:.92; }
.enb-btn:active{ transform: translateY(1px); }

.enb-btn--ghost{
  background: transparent;
  color:#0f172a;
  border:1px solid rgba(15,23,42,.18);
  box-shadow:none;
}
