/* ==========================================================================
   Doğru Home Store & E-Katalog - Canlı Sesli Asistan & AI Voice Studio (Ultra Luxury UI)
   ========================================================================== */

:root {
  --voice-primary: #ff6b35;
  --voice-primary-hover: #ea580c;
  --voice-gradient: linear-gradient(135deg, #ff8a48 0%, #ff6b35 50%, #ea580c 100%);
  --voice-ai-sparkle-gradient: linear-gradient(135deg, #ff8a48 0%, #ff6b35 50%, #ea580c 100%);
  --voice-glow: rgba(255, 107, 53, 0.35);
  --voice-ai-glow: rgba(255, 107, 53, 0.28);
  --voice-dark-bg: #0d0f15;
  --voice-surface: rgba(20, 24, 36, 0.85);
  --voice-surface-elevated: rgba(28, 34, 52, 0.9);
  --voice-card-dark: rgba(255, 255, 255, 0.04);
  --voice-border-dark: rgba(255, 255, 255, 0.08);
  --voice-border-hover: rgba(255, 107, 53, 0.45);
  --voice-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.09), 0 0 50px -10px rgba(255, 107, 53, 0.15);
  --voice-text-primary: #f8fafc;
  --voice-text-secondary: #94a3b8;
  --voice-text-muted: #64748b;
  --voice-success: #10b981;
  --voice-danger: #ef4444;
}

/* ==========================================================================
   ÖZEL İNCE VE ZARİF KAYDIRMA ÇUBUKLARI (Custom Sleek Scrollbars)
   ========================================================================== */
.voice-assistant-modal * {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.voice-assistant-modal *::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.voice-assistant-modal *::-webkit-scrollbar-track {
  background: transparent;
}

.voice-assistant-modal *::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.voice-assistant-modal *::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.4);
}

/* ==========================================================================
   BAĞIMSIZ SAYFA MODU (/ai-asistan)
   ========================================================================== */
body[data-voice-standalone] {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--voice-dark-bg);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 85% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body[data-voice-standalone] .voice-assistant-modal {
  position: fixed;
  inset: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  opacity: 1;
}

body[data-voice-standalone] .voice-assistant-container {
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  border-radius: 0;
  transform: none;
}

body[data-voice-standalone] .voice-assistant-modal.active .voice-assistant-container {
  transform: none;
}

/* ==========================================================================
   1. ARAMA ÇUBUĞU AI BUTONU
   ========================================================================== */
.search-voice-btn {
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--voice-ai-sparkle-gradient);
  border: none;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
  padding: 0;
}

.search-voice-btn .ai-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.search-voice-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.search-voice-btn:hover {
  transform: translateY(-50%) scale(1.14);
  box-shadow: 0 6px 20px var(--voice-ai-glow);
}

.search-voice-btn:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.search-voice-btn.listening {
  background: linear-gradient(135deg, #ef4444 0%, #f43f5e 100%);
  animation: aiVoicePulse 1.2s infinite;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

@keyframes aiVoicePulse {
  0% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.18); }
  100% { transform: translateY(-50%) scale(1); }
}

/* ==========================================================================
   2. YÜZEN AI KÜRESİ (Floating Assistant Orb)
   ========================================================================== */
.floating-voice-assistant {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-voice-assistant:hover {
  transform: translateY(-5px) scale(1.04);
}

.floating-voice-orb {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--voice-ai-sparkle-gradient);
  box-shadow: 0 10px 30px var(--voice-ai-glow), 0 0 0 2px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  transition: all 0.3s ease;
}

.floating-voice-orb svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.floating-voice-orb::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--voice-ai-sparkle-gradient);
  opacity: 0.45;
  z-index: -1;
  animation: orbPulse 2.4s infinite ease-out;
}

.floating-voice-label {
  background: rgba(15, 18, 28, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 24px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.voice-badge-live {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: liveBlink 1.4s infinite;
}

@keyframes orbPulse {
  0% { transform: scale(0.92); opacity: 0.65; }
  50% { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(0.92); opacity: 0; }
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

/* ==========================================================================
   3. CANLI SESLİ GÖRÜŞME ODASI (Live Voice Call Studio Modal)
   ========================================================================== */
.voice-assistant-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 15, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  padding: 20px;
}

.voice-assistant-modal.active {
  display: flex;
  opacity: 1;
}

.voice-assistant-container {
  width: 100%;
  max-width: 640px;
  height: 90vh;
  height: 90dvh;
  max-height: 800px;
  background: linear-gradient(180deg, #131722 0%, #0d0f17 100%);
  border-radius: 32px;
  box-shadow: var(--voice-shadow);
  border: 1px solid var(--voice-border-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: scale(0.95) translateY(18px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--voice-text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.voice-assistant-modal.active .voice-assistant-container {
  transform: scale(1) translateY(0);
}

/* 3.1 Üst Çağrı Başlığı */
.voice-assistant-header {
  padding: 16px 24px;
  background: rgba(18, 22, 34, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.voice-header-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.voice-header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--voice-ai-sparkle-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.voice-header-avatar svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.voice-header-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
}

.voice-ai-pill {
  background: rgba(255, 107, 53, 0.14);
  border: 1px solid rgba(255, 107, 53, 0.3);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ff8a48;
}

.voice-header-status {
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  font-weight: 500;
}

.voice-status-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.voice-header-role {
  font-size: 0.74rem;
  font-weight: 600;
  color: #ff8a48;
  letter-spacing: 0.2px;
  margin-top: 1px;
}

.voice-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.voice-mode-toggle-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s ease;
}

.voice-mode-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.voice-assistant-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.voice-assistant-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
}

/* ==========================================================================
   3.2 ANA SESLİ GÖRÜŞME SAHNESİ (Live Voice Stage)
   ========================================================================== */
.voice-call-stage {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  justify-content: safe center;
  padding: 24px 28px;
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  gap: 20px;
}

.voice-stage-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  justify-content: safe center;
  gap: 18px;
  width: 100%;
  min-height: 0;
}

/* Biyometrik AI Avatar & Aura */
.voice-orb-stage-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  margin: 6px 0;
}

.voice-central-orb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff8a48 0%, #ff6b35 100%);
  box-shadow: 0 0 35px rgba(255, 107, 53, 0.35), inset 0 0 16px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-central-orb.voice-mascot-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #111420;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 107, 53, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: mascotBreathe 4.5s ease-in-out infinite !important;
}

@keyframes mascotBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}

.voice-call-stage.listening .voice-central-orb.voice-mascot-img {
  animation: mascotListenPulse 1.2s ease-in-out infinite !important;
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.5);
}

@keyframes mascotListenPulse {
  0%, 100% { transform: scale(1.04); }
  50% { transform: scale(1.1); }
}

.voice-call-stage.thinking .voice-central-orb.voice-mascot-img {
  animation: mascotThinkTilt 2s ease-in-out infinite !important;
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

@keyframes mascotThinkTilt {
  0%, 100% { transform: rotate(-3deg) scale(1.02); }
  50% { transform: rotate(3deg) scale(1.02); }
}

.voice-call-stage.speaking .voice-central-orb.voice-mascot-img {
  animation: mascotSpeakBounce 0.8s ease-in-out infinite alternate !important;
  border-color: rgba(255, 107, 53, 0.7);
  box-shadow: 0 0 45px rgba(255, 107, 53, 0.6);
}

@keyframes mascotSpeakBounce {
  0% { transform: translateY(0) scale(1.02); }
  100% { transform: translateY(-6px) scale(1.07); }
}

/* Aura Halkaları */
.voice-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 107, 53, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.voice-orb-ring.r1 { width: 145px; height: 145px; }
.voice-orb-ring.r2 { width: 175px; height: 175px; opacity: 0; }
.voice-orb-ring.r3 { width: 210px; height: 210px; opacity: 0; }

.voice-call-stage.listening .voice-orb-ring.r1,
.voice-call-stage.speaking .voice-orb-ring.r1 {
  opacity: 0.7;
  animation: ringRipple 1.6s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes ringRipple {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Canlı Ekolayzer */
.voice-live-equalizer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 26px;
}

.voice-eq-bar {
  width: 4px;
  height: 6px;
  background: var(--voice-gradient);
  border-radius: 6px;
  transition: height 0.15s ease;
}

.voice-call-stage.listening .voice-eq-bar,
.voice-call-stage.speaking .voice-eq-bar {
  animation: eqWave 0.55s infinite alternate ease-in-out;
}

.voice-eq-bar:nth-child(1) { animation-delay: 0.1s; }
.voice-eq-bar:nth-child(2) { animation-delay: 0.25s; }
.voice-eq-bar:nth-child(3) { animation-delay: 0.15s; }
.voice-eq-bar:nth-child(4) { animation-delay: 0.4s; }
.voice-eq-bar:nth-child(5) { animation-delay: 0.2s; }
.voice-eq-bar:nth-child(6) { animation-delay: 0.35s; }
.voice-eq-bar:nth-child(7) { animation-delay: 0.28s; }

@keyframes eqWave {
  0% { height: 6px; }
  100% { height: 28px; }
}

/* Durum Rozeti */
.voice-live-status-pill {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.voice-live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.voice-call-stage.listening .voice-live-dot { background: #ef4444; box-shadow: 0 0 12px #ef4444; }
.voice-call-stage.thinking .voice-live-dot { background: #f59e0b; box-shadow: 0 0 12px #f59e0b; }
.voice-call-stage.speaking .voice-live-dot { background: #ff6b35; box-shadow: 0 0 12px #ff6b35; }

/* Canlı Altyazı ve Diyalog Kartı */
.voice-caption-box {
  width: 100%;
  max-width: 520px;
  background: rgba(22, 26, 38, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 16px 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.voice-caption-user {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.voice-caption-user strong {
  color: #ff8a48;
  font-weight: 700;
}

.voice-caption-ai {
  display: block;
  font-size: 0.95rem;
  color: #f8fafc;
  margin-top: 10px;
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  word-break: break-word;
  animation: fadeIn 0.3s ease;
}

.voice-caption-ai strong.voice-ai-label {
  color: var(--voice-primary);
  font-weight: 800;
  margin-right: 4px;
}

.voice-feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.voice-feedback-btn:hover {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.08);
}

.voice-feedback-btn.reported,
.voice-feedback-btn:disabled {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.08);
  cursor: default;
}

/* ==========================================================================
   3.3 CANLI ÜRÜN ÖNERİ KARTLARI (Live Recommended Product Cards)
   ========================================================================== */
.voice-live-products {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* ÖNERİLEN rozeti kartın -8px üstünde durduğu için scroll kabında kesilmesin */
  padding-top: 12px;
}

/* Paket / Set Vitrini Stilleri (Bundle UI) */
.voice-bundle-header {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(16, 185, 129, 0.15) 100%);
  border: 1px solid rgba(255, 107, 53, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: productSlideIn 0.35s ease;
  margin-bottom: 2px;
}

.voice-bundle-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.voice-bundle-badge i {
  color: #ff8a48;
  font-size: 1.1em;
}

.voice-bundle-total {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-bundle-label {
  font-size: 0.74rem;
  color: #cbd5e1;
  font-weight: 600;
}

.voice-bundle-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: #34d399;
  letter-spacing: 0.3px;
}

.voice-bundle-fx-note {
  width: 100%;
  margin-top: 6px;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border: 1px dashed rgba(251, 191, 36, 0.35);
  border-radius: 10px;
  padding: 6px 10px;
}

.voice-live-prod-tag.bundle-item-tag {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.voice-live-product-card.bundle-card {
  border-left: 3px solid #10b981;
}

.voice-bundle-whatsapp-btn {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  margin-top: 4px;
}

.voice-bundle-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.voice-bundle-whatsapp-btn i {
  font-size: 1.25rem;
}

.voice-live-product-card {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: productSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  transition: all 0.25s ease;
}

.voice-live-product-card:hover {
  border-color: rgba(255, 107, 53, 0.45);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 53, 0.15);
}

.voice-live-product-card.primary {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.06);
}

.voice-live-prod-tag {
  position: absolute;
  top: -8px;
  left: 16px;
  background: var(--voice-gradient);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

@keyframes productSlideIn {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.voice-live-prod-imgwrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #ffffff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.voice-live-prod-imgwrap.noimg {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.voice-live-prod-imgwrap.noimg::after {
  content: "\f466";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.2rem;
}

.voice-live-prod-img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
}

.voice-live-prod-details {
  flex: 1;
  min-width: 0;
}

.voice-live-prod-brand {
  font-size: 0.7rem;
  font-weight: 800;
  color: #ff8a48;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voice-live-prod-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin: 3px 0 5px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voice-live-prod-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  /* GERÇEK HATA: wrap açıkken "850,00" ile "EUR" alt alta bölünüyordu - fiyat+para birimi
     tek parça kalmalı. Taşarsa kesilir, satır atlamaz. */
  flex-wrap: nowrap;
  min-width: 0;
  overflow: hidden;
}

.voice-live-prod-price {
  font-size: 1rem;
  font-weight: 800;
  color: #10b981;
  white-space: nowrap;
  flex-shrink: 0;
}

.voice-live-prod-stok {
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.voice-live-prod-stok.in {
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.voice-live-prod-stok.out {
  background: rgba(239, 68, 68, 0.16);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.voice-live-prod-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.voice-live-prod-btn {
  background: var(--voice-gradient);
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.voice-live-prod-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px var(--voice-ai-glow);
}

.voice-live-prod-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
  box-shadow: none;
  font-size: 0.72rem;
  padding: 5px 10px;
}

.voice-live-prod-btn.secondary:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.voice-dock-btn.voice-stop-btn {
  background: rgba(239, 68, 68, 0.16);
  border-color: rgba(239, 68, 68, 0.35);
  color: #f87171;
}

.voice-dock-btn.voice-stop-btn:hover {
  background: rgba(239, 68, 68, 0.35);
  color: #ffffff;
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.4);
}

.voice-live-more-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  padding: 11px 16px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.voice-live-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--voice-primary);
  color: #ffffff;
}

/* ==========================================================================
   3.4 METİN MODU (Chat Bubble History View)
   ========================================================================== */
.voice-history-body {
  display: none;
  flex: 1;
  padding: 22px;
  overflow-y: auto;
  gap: 14px;
}

.voice-assistant-container.text-mode .voice-call-stage {
  display: none;
}

.voice-assistant-container.text-mode .voice-history-body {
  display: flex;
  flex-direction: column;
}

.voice-chat-bubble {
  max-width: 82%;
  padding: 14px 18px;
  border-radius: 22px;
  font-size: 0.94rem;
  line-height: 1.5;
  animation: bubbleAppear 0.3s ease;
}

@keyframes bubbleAppear {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.voice-chat-bubble.user {
  align-self: flex-end;
  background: var(--voice-gradient);
  color: #ffffff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}

.voice-chat-bubble.ai {
  align-self: flex-start;
  background: rgba(28, 34, 52, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom-left-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.voice-bubble-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.voice-bubble-listen-btn {
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.35);
  color: #ff8a48;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.voice-bubble-listen-btn:hover {
  background: var(--voice-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.voice-bubble-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.voice-bubble-product:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 107, 53, 0.4);
}

.voice-bubble-product-img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.voice-bubble-product-details {
  min-width: 0;
}

.voice-bubble-product-brand {
  font-size: 0.68rem;
  font-weight: 800;
  color: #ff8a48;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voice-bubble-product-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 4px 0;
}

.voice-bubble-product-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: #10b981;
}

.voice-suggestions-label {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.voice-suggestions-strip {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.voice-suggestion-card {
  flex: 0 0 auto;
  width: 100px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.voice-suggestion-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.voice-suggestion-img {
  width: 100%;
  height: 56px;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px;
  object-fit: contain;
}

.voice-suggestion-title {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #f1f5f9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
}

.voice-suggestion-price {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #10b981;
}

/* ==========================================================================
   3.5 ALT ÇAĞRI KONTROL MERKEZİ (Call Control Dock)
   ========================================================================== */
.voice-call-footer {
  padding: 16px 24px 22px 24px;
  background: rgba(15, 18, 28, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* Hızlı Öneri Çipleri */
.voice-suggestions-area {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.voice-suggestions-area::-webkit-scrollbar {
  display: none;
}

.voice-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 7px 15px;
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s ease;
}

.voice-chip i {
  color: #ff8a48;
  font-size: 0.85em;
}

.voice-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

/* Çağrı Butonları Dock */
.voice-dock-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.voice-dock-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.voice-dock-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.voice-speed-btn {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* Büyük Ana Mikrofon Butonu */
.voice-dock-btn.main-mic {
  width: 68px;
  height: 68px;
  background: var(--voice-gradient);
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.2);
  border: none;
  position: relative;
}

.voice-dock-btn.main-mic:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px var(--voice-ai-glow), 0 0 0 4px rgba(255, 255, 255, 0.4);
}

.voice-dock-btn.main-mic.listening {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.8), 0 0 0 4px rgba(239, 68, 68, 0.4);
  animation: micPulse 1.2s infinite;
}

.voice-dock-btn.main-mic:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

@keyframes micPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

.voice-dock-btn.end-call {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.voice-dock-btn.end-call:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

/* Yazılı Mesaj Giriş Barı */
.voice-dock-input-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
}

.voice-dock-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
}

.voice-dock-input::placeholder {
  color: #64748b;
}

.voice-dock-input:focus {
  border-color: var(--voice-primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.2);
}

.voice-dock-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--voice-gradient);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.voice-dock-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px var(--voice-ai-glow);
}

/* ==========================================================================
   GENİŞ EKRAN YAN PANEL DÜZENİ (Masaüstü, 900px+)
   ========================================================================== */
@media (min-width: 900px) {
  .voice-assistant-container.has-products {
    max-width: 960px;
  }

  .voice-call-stage {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    gap: 24px;
  }

  .voice-stage-main {
    flex: 1 1 auto;
    min-width: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-right: 6px;
  }

  .voice-live-products {
    flex: 0 0 340px;
    width: 340px;
    max-width: 340px;
    align-self: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-right: 6px;
  }
}

/* ==========================================================================
   MOBİL EKRAN DÜZENİ (<= 640px)
   ========================================================================== */
@media (max-width: 640px) {
  .voice-assistant-modal {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .voice-assistant-container {
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    height: var(--voice-vh, 100dvh);
    max-height: none;
    border-radius: 0;
    border: none;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transform: none;
  }

  .voice-assistant-modal.active .voice-assistant-container {
    transform: none;
  }

  .voice-assistant-header {
    padding: 12px 16px;
  }

  .voice-header-title {
    font-size: 1rem;
  }

  .voice-header-avatar {
    width: 38px;
    height: 38px;
  }

  .voice-mode-toggle-btn #voice-mode-label {
    display: none;
  }

  .voice-mode-toggle-btn {
    padding: 8px 10px;
  }

  .voice-call-stage {
    padding: 16px 14px;
    gap: 14px;
  }

  .voice-orb-stage-wrapper {
    width: 120px;
    height: 120px;
    margin: 2px 0;
  }

  .voice-central-orb.voice-mascot-img {
    width: 96px;
    height: 96px;
  }

  .voice-live-equalizer {
    height: 22px;
  }

  .voice-caption-box {
    padding: 12px 14px;
  }

  .voice-caption-ai,
  .voice-caption-user {
    font-size: 0.9rem;
  }

  /* Ürün kartları ekrandayken avatar kompaktlaşır */
  .voice-call-stage.has-products .voice-orb-stage-wrapper {
    width: 68px;
    height: 68px;
  }

  .voice-call-stage.has-products .voice-central-orb.voice-mascot-img {
    width: 52px;
    height: 52px;
  }

  .voice-call-stage.has-products .voice-live-equalizer {
    display: none;
  }

  .voice-live-product-card {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .voice-live-prod-imgwrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .voice-live-prod-title {
    font-size: 0.82rem;
  }

  .voice-live-prod-btn span {
    display: none;
  }

  .voice-live-prod-btn {
    padding: 9px 12px;
    border-radius: 12px;
  }

  .voice-history-body {
    padding: 14px;
    gap: 10px;
  }

  .voice-chat-bubble {
    max-width: 88%;
    padding: 12px 15px;
    font-size: 0.92rem;
  }

  .voice-call-footer {
    padding: 12px 14px 16px;
    gap: 12px;
  }

  .voice-dock-controls {
    gap: 14px;
  }

  .voice-dock-btn {
    width: 46px;
    height: 46px;
  }

  .voice-dock-btn.main-mic {
    width: 62px;
    height: 62px;
    font-size: 1.4rem;
  }

  .voice-dock-input {
    font-size: 16px; /* iOS zoom engelleme */
    height: 46px;
  }

  .voice-dock-send-btn {
    width: 46px;
    height: 46px;
  }
}

/* Küçük Telefonlar (<= 380px) */
@media (max-width: 380px) {
  .voice-orb-stage-wrapper { width: 100px; height: 100px; }
  .voice-central-orb.voice-mascot-img { width: 80px; height: 80px; }
  .voice-dock-btn { width: 40px; height: 40px; }
  .voice-dock-btn.main-mic { width: 56px; height: 56px; }
  .voice-header-title { font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .voice-orb-ring,
  .voice-eq-bar,
  .voice-live-product-card,
  .voice-chat-bubble,
  .voice-central-orb.voice-mascot-img {
    animation: none !important;
  }
  .voice-assistant-container,
  .voice-live-product-card,
  .voice-dock-btn {
    transition: none !important;
  }
}

/* ===== CANLI SÜRÜMÜNDEN AKTARILAN EKSIK BLOKLAR (çakışmasız) ===== */

/* Kampanya: indirimli fiyatta eski fiyatın üstü çizili gösterimi */
.voice-live-prod-old {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.voice-chip:hover i {
  color: var(--voice-primary);
}

.voice-dock-btn.main-mic:disabled:hover {
  transform: none;
  box-shadow: none;
}

@media (max-height: 520px) and (orientation: landscape) {
  .voice-history-body { padding: 8px 14px; gap: 8px; }
  .voice-chat-bubble { max-width: 72%; padding: 9px 13px; font-size: 0.86rem; }
  .voice-suggestions-label { margin-top: 8px; }
}

/* ==========================================================================
   UI POLISH v3 - Görsel iyileştirme katmanı
   ========================================================================== */

/* --- Öneri paneli başlığı (sayacıyla birlikte) --- */
.voice-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px 4px 4px;
}
.voice-products-header .vph-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.voice-products-header .vph-label i { color: #ff8a48; }
.voice-products-header .vph-count {
  background: rgba(255, 107, 53, 0.14);
  border: 1px solid rgba(255, 107, 53, 0.35);
  color: #ff9d63;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
}

/* --- İskelet (shimmer) yükleme kartları --- */
@keyframes vskShimmer {
  0%   { background-position: -320px 0; }
  100% { background-position: 320px 0; }
}
.voice-skel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}
.voice-skel-img,
.voice-skel-line {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.11) 37%, rgba(255,255,255,0.05) 63%);
  background-size: 320px 100%;
  animation: vskShimmer 1.25s linear infinite;
  border-radius: 12px;
}
.voice-skel-img  { width: 64px; height: 64px; flex-shrink: 0; border-radius: 14px; }
.voice-skel-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.voice-skel-line.t1 { height: 12px; width: 82%; }
.voice-skel-line.t2 { height: 10px; width: 55%; }
.voice-skel-line.t3 { height: 10px; width: 38%; }

/* --- Birincil ürüne gradyan çerçeve --- */
.voice-live-product-card.primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,107,53,0.75), rgba(234,88,12,0.15) 55%, rgba(16,185,129,0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* --- Görsel hover zoom --- */
.voice-live-prod-imgwrap img { transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.voice-live-product-card:hover .voice-live-prod-imgwrap img { transform: scale(1.08); }

/* --- Fiyat hiyerarşisi --- */
.voice-live-prod-meta .voice-live-prod-price { font-size: 1.06rem; letter-spacing: 0.2px; }
.voice-live-prod-old {
  font-size: 0.74rem;
  color: #94a3b8;
  text-decoration: line-through;
  white-space: nowrap;
}

/* --- Stokta rozetine hafif parıltı --- */
.voice-live-prod-stok.in { box-shadow: 0 0 12px rgba(16,185,129,0.28); }

/* --- Düşünme durumu: animasyonlu noktalar --- */
@keyframes vThinkDots {
  0%   { content: ""; }
  25%  { content: "."; }
  50%  { content: ".."; }
  75%  { content: "..."; }
  100% { content: ""; }
}
#voice-call-stage.thinking #voice-state-text::after {
  content: "";
  display: inline-block;
  width: 1.2em;
  text-align: left;
  animation: vThinkDots 1.3s steps(1,end) infinite;
}

/* --- Çip hover mikro-etkileşim --- */
.voice-chip:hover {
  transform: translateY(-2px);
  background: rgba(255,107,53,0.10);
  border-color: rgba(255,107,53,0.45);
  color: #ffe3d3;
}

/* --- Klavye odak halkaları (erişilebilirlik) --- */
.voice-dock-btn:focus-visible,
.voice-chip:focus-visible,
.voice-live-prod-btn:focus-visible {
  outline: 2px solid #fb923c;
  outline-offset: 2px;
}

/* --- Paket başlığı hizalama cilası --- */
.voice-bundle-header { align-items: center; gap: 12px; }
@media (prefers-reduced-motion: reduce) {
  .voice-skel-img, .voice-skel-line { animation: none; }
  #voice-call-stage.thinking #voice-state-text::after { animation: none; content: "..."; }
}
