/* PUSH ABONE BANNER */
#push-abone-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  max-width: 380px;
  width: calc(100% - 40px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  border: 1px solid #e5e7eb;
}
#push-abone-banner.pab-acik {
  opacity: 1;
  transform: translateY(0);
}
.pab-icerik {
  padding: 18px 20px;
  position: relative;
}
.pab-ikon {
  font-size: 32px;
  margin-bottom: 8px;
}
.pab-metin strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}
.pab-metin p {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 14px;
  line-height: 1.5;
}
.pab-butonlar {
  display: flex;
  gap: 8px;
}
.pab-btn {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.pab-evet {
  background: #3b82f6;
  color: #fff;
}
.pab-evet:hover { background: #1e40af; }
.pab-hayir {
  background: #f3f4f6;
  color: #6b7280;
}
.pab-hayir:hover { background: #e5e7eb; }
.pab-kapat {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.pab-kapat:hover { color: #1f2937; }

/* TOAST */
.pab-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .3s, transform .3s;
}
.pab-toast-acik {
  opacity: 1;
  transform: translateY(0);
}
.pab-toast-basarili { background: #dcfce7; color: #14532d; border-left: 4px solid #10b981; }
.pab-toast-hata { background: #fee2e2; color: #7f1d1d; border-left: 4px solid #dc2626; }

@media (max-width: 500px) {
  #push-abone-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
  }
}
