/* En Baba Organizasyon - Çocuk Eğlence Merkezi (Sales UI) */

.enb-sellcard{
  transform: translateY(0);
  cursor: pointer;
  outline: none;
}

.enb-sellcard:focus{
  box-shadow: 0 0 0 3px rgba(79,70,229,.18);
}

.enb-sellcard:hover{
  transform: translateY(-2px);
}

.enb-cta-primary{
  position: relative;
  overflow: hidden;
}

.enb-cta-primary::after{
  content:"";
  position:absolute;
  top:-30%;
  left:-40%;
  width:40%;
  height:160%;
  transform: rotate(18deg);
  background: rgba(255,255,255,.25);
  transition: transform .6s ease, left .6s ease;
}

.enb-sellcard:hover .enb-cta-primary::after{
  left: 120%;
}

.enb-cta-secondary{
  background: #fff;
}

@media (max-width: 640px){
  .enb-sellcard:hover{
    transform: none; /* mobilde zıplamasın */
  }
}

/* CTA - Primary / Secondary (soluk değil) */
.enb-primaryBtn{
  background: #e11d48; /* rose-600 */
  color: #fff;
}
.enb-primaryBtn:hover{
  filter: brightness(.95);
}

.enb-secondaryBtn{
  background: rgba(15, 23, 42, .06); /* slate-900 tint */
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, .18);
}
.enb-secondaryBtn:hover{
  background: rgba(15, 23, 42, .10);
  border-color: rgba(15, 23, 42, .26);
}

/* Kart micro-motion */
.enb-sellcard{
  transform: translateY(0);
  cursor: pointer;
  outline: none;
}
.enb-sellcard:focus{
  box-shadow: 0 0 0 3px rgba(225, 29, 72, .20);
}
.enb-sellcard:hover{
  transform: translateY(-2px);
}
@media (max-width: 640px){
  .enb-sellcard:hover{ transform: none; }
}