/**
 * ChatScript Public — Frontend Styles
 * Widget override'ları ve shortcode container stili
 */

/* ---- Shortcode Container ---- */
.chatscript-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.chatscript-container iframe,
.chatscript-container .chatscript-widget-frame {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

/* ---- Gizli widget (visibility: none durumu) ---- */
.chatscript-hidden {
  display: none !important;
}

/* ---- WooCommerce bağlam bildirim badge ---- */
.chatscript-woo-badge {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999998;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.chatscript-woo-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chatscript-woo-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

/* ---- Print stili — yazdırmada widget gizle ---- */
@media print {
  #chatscript-widget,
  .chatscript-container,
  [data-chatscript] {
    display: none !important;
  }
}

/* ---- Erişilebilirlik — azaltılmış hareket ---- */
@media (prefers-reduced-motion: reduce) {
  .chatscript-woo-badge {
    transition: none;
  }
}
