/* Tornado AI — canlı destek FAB + sohbet modalı */
.vx-tai{
  position:fixed;
  right:max(16px, env(safe-area-inset-right, 0px));
  bottom:max(20px, env(safe-area-inset-bottom, 0px));
  z-index:9000;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  pointer-events:none;
}
.vx-tai > *{pointer-events:auto}

/* Mobil: alt navigasyonun biraz üstü (sticky sepete ekle çubuğunun dışında) */
body.has-vx-bnav .vx-tai{
  bottom:calc(var(--vx-bnav-total, 52px) + 12px);
}
/* Ürün / sepet / ödeme: sticky bar (≈72px) + bnav üstü */
@media (max-width:960px){
  body.has-vx-bnav.page-product .vx-tai,
  body.has-vx-bnav.page-cart .vx-tai,
  body.has-vx-bnav.page-checkout .vx-tai{
    bottom:calc(var(--vx-bnav-total, 52px) + 72px + 14px);
  }
}
@media (min-width:961px){
  body.has-vx-bnav .vx-tai{bottom:max(24px, env(safe-area-inset-bottom, 0px))}
}

.vx-tai__bubble{
  position:relative;
  max-width:min(280px, calc(100vw - 88px));
  padding:12px 36px 12px 14px;
  background:#fff;
  color:#0f172a;
  border:1px solid #e2e8f0;
  border-radius:16px 16px 4px 16px;
  box-shadow:0 12px 28px rgba(8,30,60,.16);
  font-size:13px;
  font-weight:650;
  line-height:1.45;
  animation:vx-tai-pop .35s ease;
}
.vx-tai__bubble[hidden]{display:none!important}
.vx-tai__bubble::after{
  content:"";
  position:absolute;
  right:22px;
  bottom:-7px;
  width:12px;height:12px;
  background:#fff;
  border-right:1px solid #e2e8f0;
  border-bottom:1px solid #e2e8f0;
  transform:rotate(45deg);
}
.vx-tai__bubble-x{
  position:absolute;
  top:6px;right:6px;
  width:24px;height:24px;
  border:0;border-radius:8px;
  background:transparent;
  color:#64748b;
  cursor:pointer;
  font-size:16px;line-height:1;
}
.vx-tai__bubble-x:hover{background:#f1f5f9;color:#0f172a}

.vx-tai__bubble-text {
  margin-bottom: 12px;
}
.vx-tai__bubble-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.vx-tai__bubble .vx-tai-chip {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #0b3a8a;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vx-tai__bubble .vx-tai-chip:hover {
  border-color: #0D6EFD;
  background: #dbeafe;
}
.vx-tai__bubble .vx-tai-chip--badge {
  position: relative;
  overflow: visible;
  padding-right: 12px;
}
.vx-tai__bubble .vx-tai-chip .vx-tai-new {
  position: absolute;
  top: -8px;
  right: -6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 15px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg,#ef4444 0%,#dc2626 100%);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(220,38,38,.35);
  pointer-events: none;
  animation: vx-tai-chip-new-pulse 1.8s ease-in-out infinite;
}

.vx-tai__fab{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  width:72px;
  min-height:72px;
  padding:10px 8px 8px;
  border:0;
  border-radius:20px;
  cursor:pointer;
  color:#fff;
  background:linear-gradient(160deg,#0D6EFD 0%,#081E3C 100%);
  box-shadow:0 14px 32px rgba(8,30,60,.28), 0 0 0 3px rgba(13,110,253,.18);
  transition:transform .15s ease, box-shadow .15s ease;
}
.vx-tai__fab:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(8,30,60,.32), 0 0 0 3px rgba(13,110,253,.28);
}
.vx-tai__fab:active{transform:translateY(0)}
.vx-tai__fab-icon{
  width:32px;height:32px;
  display:grid;place-items:center;
}
.vx-tai__fab-icon svg{width:30px;height:30px;display:block}
.vx-tai__fab-label{
  font-size:9.5px;
  font-weight:800;
  letter-spacing:.02em;
  line-height:1.1;
  text-align:center;
  white-space:nowrap;
}

@keyframes vx-tai-pop{
  from{opacity:0;transform:translateY(8px) scale(.96)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

/* Modal — chat paneli */
.vx-tai-modal.tornado-modal-overlay{
  --tornado-modal-width:480px;
  z-index:100050;
  /* Blur FPS düşürüyor — sadece hafif karartma */
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  background:rgba(15,23,42,.42);
}
@media (min-width:961px){
  /* Sabit sohbet sütunu — width:100% kullanma (modal max-width’i ezer) */
  .vx-tai-modal.tornado-modal-overlay{
    --tornado-modal-width:480px;
  }
  .vx-tai-modal .vx-tai-panel{
    max-height:min(88dvh,680px);
    width:min(100%, var(--tornado-modal-width, 480px));
    max-width:480px;
  }
  .vx-tai-pcard{
    align-items:flex-start;
  }
}
@media (prefers-reduced-motion:reduce){
  .vx-tai__bubble{animation:none}
  .vx-tai__fab{transition:none}
}
.vx-tai-modal .vx-tai-panel{
  display:flex;
  flex-direction:column;
  max-height:min(88dvh,640px);
  overflow:hidden;
  padding:0;
  border-radius:20px;
}
.vx-tai-modal__head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:linear-gradient(135deg,#081E3C 0%,#0D6EFD 100%);
  color:#fff;
}
.vx-tai-modal__avatar{
  width:44px;height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.14);
  display:grid;place-items:center;
  flex-shrink:0;
}
.vx-tai-modal__avatar svg{width:26px;height:26px}
.vx-tai-modal__meta{flex:1;min-width:0}
.vx-tai-modal__meta strong{
  display:block;
  font-size:15px;
  font-weight:800;
  letter-spacing:.01em;
}
.vx-tai-modal__meta span{
  display:block;
  font-size:12px;
  font-weight:600;
  opacity:.88;
  margin-top:2px;
}
.vx-tai-modal__status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:4px;
  font-size:11px;
  font-weight:700;
  opacity:.9;
  font-style:normal;
}
.vx-tai-modal__status i{
  width:7px;height:7px;
  border-radius:50%;
  background:#f87171;
  box-shadow:0 0 0 3px rgba(248,113,113,.25);
}
.vx-tai-modal__status.is-online i{
  background:#4ade80;
  box-shadow:0 0 0 3px rgba(74,222,128,.25);
}
.vx-tai-modal__status.is-offline i,
.vx-tai-modal__status i.is-off{
  background:#f87171;
  box-shadow:0 0 0 3px rgba(248,113,113,.25);
}
.vx-tai-modal__close{
  width:36px;height:36px;
  border:0;border-radius:12px;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.vx-tai-modal__close:hover{background:rgba(255,255,255,.22)}

.vx-tai-modal__body{
  flex:1;
  min-height:220px;
  overflow:auto;
  padding:16px;
  background:#f8fafc;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.vx-tai-msg{
  max-width:88%;
  padding:10px 12px;
  border-radius:14px;
  font-size:13.5px;
  font-weight:600;
  line-height:1.45;
  box-shadow:0 1px 2px rgba(15,23,42,.04);
}
/* Ürün kartı içeren bot mesajı: tam genişlik (ad sıkışmasın) */
.vx-tai-msg--bot:has(.vx-tai-suggest),
.vx-tai-msg--bot:has(.vx-tai-pcard){
  max-width:100%;
  width:100%;
  box-sizing:border-box;
}
.vx-tai-msg--bot{
  align-self:flex-start;
  background:#fff;
  border:1px solid #e2e8f0;
  color:#0f172a;
  border-bottom-left-radius:4px;
}
.vx-tai-msg--user{
  align-self:flex-end;
  background:#081E3C;
  color:#fff;
  border-bottom-right-radius:4px;
}
.vx-tai-msg--sys{
  align-self:center;
  max-width:100%;
  background:transparent;
  box-shadow:none;
  color:#64748b;
  font-size:12px;
  font-weight:650;
  text-align:center;
  padding:4px 8px;
}
.vx-tai-msg time{
  display:block;
  margin-top:6px;
  font-size:10.5px;
  font-weight:650;
  opacity:.65;
}

.vx-tai-modal__quick{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0 16px 12px;
  background:#f8fafc;
}
.vx-tai-chip{
  border:1px solid #dbe3ef;
  background:#fff;
  color:#081E3C;
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:750;
  cursor:pointer;
}
.vx-tai-chip:hover{border-color:#93c5fd;background:#eff6ff}

.vx-tai-modal__foot{
  padding:12px 14px 14px;
  border-top:1px solid #e8edf4;
  background:#fff;
}
.vx-tai-modal__form{
  display:flex;
  gap:8px;
  align-items:flex-end;
}
.vx-tai-modal__input{
  flex:1;
  min-height:44px;
  max-height:96px;
  resize:none;
  border:1px solid #d8dee8;
  border-radius:14px;
  padding:11px 12px;
  font:inherit;
  font-size:13.5px;
  font-weight:600;
  color:#0f172a;
  background:#fff;
}
.vx-tai-modal__input:focus{
  outline:none;
  border-color:#0D6EFD;
  box-shadow:0 0 0 3px rgba(13,110,253,.15);
}
.vx-tai-modal__send{
  width:44px;height:44px;
  border:0;border-radius:14px;
  background:#0D6EFD;
  color:#fff;
  cursor:pointer;
  display:grid;place-items:center;
  flex-shrink:0;
}
.vx-tai-modal__send:hover{background:#0b5ed7}
.vx-tai-modal__send:disabled{opacity:.45;cursor:not-allowed}
.vx-tai-modal__send svg{width:18px;height:18px}
.vx-tai-wa-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  padding:9px 12px;
  border-radius:12px;
  background:#16a34a;
  color:#fff!important;
  text-decoration:none;
  font-size:12.5px;
  font-weight:800;
}
.vx-tai-wa-btn:hover{background:#15803d}
.vx-tai-wa-btn--sales{
  background:#0D6EFD;
  width:100%;
  box-sizing:border-box;
}
.vx-tai-wa-btn--sales:hover{background:#0b5ed7}
.vx-tai-sales{
  margin-top:12px;
  padding:10px;
  border:1px solid #bfdbfe;
  border-radius:12px;
  background:#eff6ff;
}
.vx-tai-sales__title{
  font-size:12.5px;
  font-weight:800;
  color:#0b3a8a;
  margin-bottom:8px;
}
.vx-tai-sales__hint{
  margin:8px 0 0;
  font-size:11px;
  color:#64748b;
  font-weight:650;
  line-height:1.35;
}
.vx-tai-msg__text{white-space:pre-wrap;word-break:break-word}
.vx-tai-msg__text strong{font-weight:800;color:#081E3C}
.vx-tai-msg--user .vx-tai-msg__text strong{color:#fff}
.vx-tai-msg__text em{font-style:italic;font-weight:650;color:#1e3a5f}
.vx-tai-msg--user .vx-tai-msg__text em{color:#e2e8f0}
.vx-tai-msg__p{white-space:pre-wrap}
.vx-tai-table-wrap{
  white-space:normal;
  margin:10px 0 4px;
  overflow-x:auto;
  border:1px solid #dbe3ef;
  border-radius:12px;
  background:#fff;
}
.vx-tai-table{
  width:100%;
  border-collapse:collapse;
  font-size:12px;
  line-height:1.35;
  min-width:260px;
}
.vx-tai-table th,
.vx-tai-table td{
  padding:8px 10px;
  border-bottom:1px solid #e8eef6;
  text-align:left;
  vertical-align:top;
}
.vx-tai-table th{
  background:#f1f5f9;
  color:#0f2747;
  font-weight:800;
  white-space:nowrap;
}
.vx-tai-table tr:last-child td{border-bottom:0}
.vx-tai-table td:first-child{
  font-weight:700;
  color:#334155;
  background:#fafbfc;
  white-space:nowrap;
}

.vx-tai-suggest{
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid #e2e8f0;
}
.vx-tai-suggest__title{
  font-size:12.5px;
  font-weight:800;
  color:#0b3a8a;
  margin-bottom:8px;
}
.vx-tai-suggest__ask{
  margin:10px 0 0;
  font-size:12px;
  color:#475569;
  line-height:1.45;
}
.vx-tai-cancel-cmp{
  display:block;
  width:100%;
  margin-top:10px;
  border:1px solid #fecaca;
  background:#fff1f2;
  color:#9f1239;
  border-radius:10px;
  padding:9px 12px;
  font-size:12.5px;
  font-weight:800;
  cursor:pointer;
}
.vx-tai-cancel-cmp:hover{background:#ffe4e6}
.vx-tai-cancel-cmp:disabled{
  opacity:.65;
  cursor:default;
  border-color:#e2e8f0;
  background:#f8fafc;
  color:#64748b;
}
.vx-tai-suggest__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:8px;
}
/* İki+ ürün varsa yan yana; tek kartta yarım genişlik tuzağı olmasın */
.vx-tai-suggest__grid:has(.vx-tai-pcard:nth-child(2)){
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.vx-tai-pcard{
  display:grid;
  grid-template-columns:72px minmax(0, 1fr);
  gap:12px;
  align-items:start;
  padding:10px;
  border:1px solid #e2e8f0;
  border-radius:12px;
  background:#f8fafc;
  min-width:0;
}
.vx-tai-pcard__img{
  width:72px;
  height:72px;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e8eef6;
  flex-shrink:0;
}
.vx-tai-pcard__img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.vx-tai-pcard__body{
  min-width:0;
}
.vx-tai-pcard__name{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  font-size:13px;
  font-weight:800;
  color:#0f172a;
  line-height:1.35;
  margin-bottom:4px;
  word-break:break-word;
  overflow-wrap:anywhere;
}
.vx-tai-pcard__prices{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:6px;
  margin-bottom:6px;
  font-size:12px;
}
.vx-tai-pcard__prices s{
  color:#94a3b8;
  font-weight:600;
}
.vx-tai-pcard__prices b{
  color:#0D6EFD;
  font-weight:800;
}
.vx-tai-pcard__prices small{
  font-weight:700;
  color:#64748b;
  font-size:10px;
}
.vx-tai-pcard__prices em{
  color:#64748b;
  font-style:normal;
  font-weight:650;
}
.vx-tai-pcard__add{
  border:0;
  border-radius:9px;
  background:#0D6EFD;
  color:#fff;
  font-size:11.5px;
  font-weight:800;
  padding:7px 10px;
  cursor:pointer;
}
.vx-tai-pcard__add:hover{background:#0b5ed7}
.vx-tai-pcard__add:disabled{opacity:.55;cursor:default}
.vx-tai-pcard__add.is-added,
.vx-tai-pcard.is-in-cart .vx-tai-pcard__add.is-added{
  background:#16a34a;
  color:#fff;
  opacity:1;
}
.vx-tai-pcard__cart{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
  margin-top:2px;
}
.vx-tai-qty{
  display:inline-flex;
  align-items:center;
  border:1px solid #dbe3ef;
  border-radius:9px;
  overflow:hidden;
  background:#fff;
}
.vx-tai-qty__btn{
  width:28px;height:30px;
  border:0;
  background:#f1f5f9;
  color:#0f172a;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  line-height:1;
}
.vx-tai-qty__btn:hover{background:#e2e8f0}
.vx-tai-qty__in{
  width:46px;
  height:30px;
  border:0;
  border-left:1px solid #e2e8f0;
  border-right:1px solid #e2e8f0;
  text-align:center;
  font-size:12.5px;
  font-weight:800;
  color:#0f172a;
  -moz-appearance:textfield;
}
.vx-tai-qty__in::-webkit-outer-spin-button,
.vx-tai-qty__in::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}
.vx-tai-pcard__rm{
  border:1px solid #fecaca;
  background:#fff1f2;
  color:#9f1239;
  border-radius:9px;
  padding:7px 9px;
  font-size:11px;
  font-weight:800;
  cursor:pointer;
}
.vx-tai-pcard__rm:hover{background:#ffe4e6}
.vx-tai-pcard.is-tai-focus{
  outline:2px solid #0D6EFD;
  outline-offset:2px;
  box-shadow:0 0 0 4px rgba(13,110,253,.14);
  transition:outline .2s,box-shadow .2s;
}
.vx-tai-cart-confirm{
  margin-top:10px;
  width:88px;
  height:88px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #dbe3ef;
  background:#fff;
}
.vx-tai-cart-confirm-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.vx-tai-cart-confirm-row .vx-tai-cart-confirm{
  margin-top:0;
}
.vx-tai-cart-confirm img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.vx-tai-catnav{
  margin-top:10px;
  border:1px solid #dbe3f0;
  border-radius:14px;
  background:linear-gradient(180deg,#f8fafc 0%,#fff 55%);
  overflow:hidden;
}
.vx-tai-catnav__head{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-bottom:1px solid #e8eef7;
  background:rgba(239,246,255,.65);
}
.vx-tai-catnav__back{
  flex:0 0 auto;
  border:1px solid #bfdbfe;
  background:#eff6ff;
  color:#0b3a8a;
  border-radius:999px;
  padding:5px 10px;
  font-size:11px;
  font-weight:800;
  cursor:pointer;
}
.vx-tai-catnav__back:hover{border-color:#0D6EFD;background:#dbeafe}
.vx-tai-catnav__crumb{
  flex:1 1 auto;
  min-width:0;
  font-size:12px;
  font-weight:800;
  color:#334155;
  line-height:1.3;
}
.vx-tai-catnav__list{
  display:flex;
  flex-direction:column;
  max-height:min(42vh,280px);
  overflow:auto;
  padding:6px;
  gap:4px;
}
.vx-tai-catnav__item{
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
  text-align:left;
  border:1px solid transparent;
  border-radius:10px;
  background:transparent;
  color:#0f172a;
  padding:9px 10px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}
.vx-tai-catnav__item:hover{
  border-color:#bfdbfe;
  background:#eff6ff;
}
.vx-tai-catnav__item-name{
  flex:1 1 auto;
  min-width:0;
}
.vx-tai-catnav__item-meta{
  flex:0 0 auto;
  font-size:11px;
  font-weight:750;
  color:#64748b;
}
.vx-tai-catnav__item-chev{
  flex:0 0 auto;
  color:#0D6EFD;
  font-weight:900;
}
.vx-tai-catnav__empty{
  padding:14px 10px;
  text-align:center;
  color:#64748b;
  font-size:12px;
  font-weight:700;
}
.vx-tai-catnav__actions{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  padding:0 6px 8px;
}
.vx-tai-catnav__shop{
  border:1px solid #bbf7d0;
  background:#ecfdf5;
  color:#065f46;
  border-radius:999px;
  padding:6px 11px;
  font-size:11px;
  font-weight:800;
  cursor:pointer;
}
.vx-tai-catnav__shop:hover{border-color:#34d399;background:#d1fae5}

.vx-tai-msg__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.vx-tai-msg .vx-tai-chip{
  border:1px solid #bfdbfe;
  background:#eff6ff;
  color:#0b3a8a;
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:750;
  cursor:pointer;
}
.vx-tai-msg .vx-tai-chip:hover{border-color:#0D6EFD;background:#dbeafe}
.vx-tai-msg .vx-tai-chip--badge{
  position:relative;
  overflow:visible;
  padding-right:14px;
}
.vx-tai-msg .vx-tai-chip .vx-tai-new{
  position:absolute;
  top:-9px;
  right:-6px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:16px;
  padding:0 6px;
  border-radius:999px;
  background:linear-gradient(135deg,#ef4444 0%,#dc2626 100%);
  color:#fff;
  font-size:9px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  line-height:1;
  box-shadow:0 2px 8px rgba(220,38,38,.35);
  pointer-events:none;
  animation:vx-tai-chip-new-pulse 1.8s ease-in-out infinite;
}
.vx-tai-quote-link{
  display:inline;
  margin:0;
  padding:0;
  border:0;
  background:none;
  color:#0D6EFD;
  font:inherit;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:2px;
  cursor:pointer;
}
.vx-tai-quote-link:hover{color:#0b5ed7}
.vx-tai-quote-modal.tornado-modal-overlay{
  --tornado-modal-width:420px;
  z-index:100070;
  /* blur FPS düşürüyor — düz koyu katman */
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  background:rgba(15,23,42,.52);
}
.vx-tai-quote-modal__panel{
  padding:0;
  overflow:hidden;
  max-height:min(90dvh,560px);
  display:flex;
  flex-direction:column;
  border:1px solid #e2e8f0;
  box-shadow:0 12px 36px rgba(15,23,42,.18);
}
.vx-tai-quote-modal__head{
  position:relative;
  padding:16px 44px 12px 16px;
  border-bottom:1px solid #e8edf4;
  background:#fff;
}
.vx-tai-quote-modal__head h2{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#081E3C;
}
.vx-tai-quote-modal__head p{
  margin:6px 0 0;
  font-size:12.5px;
  font-weight:650;
  color:#64748b;
  line-height:1.35;
}
.vx-tai-quote-modal__x{
  position:absolute;
  top:12px;right:12px;
  width:32px;height:32px;
  border:0;border-radius:10px;
  background:#f1f5f9;
  color:#334155;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}
.vx-tai-quote-modal__x:hover{background:#e2e8f0}
.vx-tai-quote-modal__form{
  padding:14px 16px 16px;
  background:#fff;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.vx-tai-quote-modal__label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:12.5px;
  font-weight:750;
  color:#334155;
}
.vx-tai-quote-modal__label em{
  color:#dc2626;
  font-style:normal;
  font-weight:800;
}
.vx-tai-quote-modal__input{
  width:100%;
  border:1px solid #dbe3ee;
  border-radius:10px;
  padding:10px 12px;
  font:inherit;
  font-size:14px;
  font-weight:600;
  color:#0f172a;
  background:#fff;
  box-sizing:border-box;
}
.vx-tai-quote-modal__input:focus{
  outline:none;
  border-color:#93c5fd;
  box-shadow:0 0 0 3px rgba(13,110,253,.12);
}
.vx-tai-quote-modal__note{resize:vertical;min-height:84px}
.vx-tai-quote-modal__items{
  display:flex;
  flex-direction:column;
  gap:8px;
  max-height:min(36dvh,220px);
  overflow:auto;
  padding:2px 0;
}
.vx-tai-quote-modal__row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border:1px solid #e8edf4;
  border-radius:10px;
  background:#f8fafc;
}
.vx-tai-quote-modal__thumb{
  flex:0 0 auto;
  width:44px;
  height:44px;
  border-radius:8px;
  overflow:hidden;
  background:#e2e8f0;
  border:1px solid #e8edf4;
}
.vx-tai-quote-modal__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.vx-tai-quote-modal__row-name{
  flex:1;
  min-width:0;
  font-size:13px;
  font-weight:700;
  color:#0f172a;
  line-height:1.3;
}
.vx-tai-quote-modal__row-qty{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:11px;
  font-weight:750;
  color:#64748b;
  flex-shrink:0;
}
.vx-tai-quote-modal__qty{
  width:72px;
  padding:8px 10px;
  text-align:center;
}
.vx-tai-quote-modal__change{
  align-self:flex-start;
  border:0;
  background:transparent;
  color:#0D6EFD;
  font-size:12.5px;
  font-weight:750;
  padding:0;
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:2px;
}
.vx-tai-quote-modal__change:hover{color:#0b5ed7}
.vx-tai-quote-modal__panel.is-multi{
  --tornado-modal-width:460px;
  max-height:min(92dvh,640px);
}
.vx-tai-quote-modal__submit{
  border:0;
  border-radius:12px;
  min-height:46px;
  background:#0D6EFD;
  color:#fff;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}
.vx-tai-quote-modal__submit:hover{background:#0b5ed7}
@media (prefers-reduced-motion:reduce){
  .vx-tai-quote-modal.tornado-modal-overlay{
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
}
@keyframes vx-tai-chip-new-pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.06)}
}
@media (prefers-reduced-motion:reduce){
  .vx-tai-msg .vx-tai-chip .vx-tai-new{animation:none}
}

.vx-tai-msg__text--html{
  max-width:100%;
}
.vx-tai-didyou{
  display:block;
  width:100%;
  box-sizing:border-box;
  margin:0 0 10px;
  padding:10px 12px;
  border:1px solid #bfdbfe;
  border-radius:12px;
  background:#eff6ff;
  color:#1e3a5f;
  font:inherit;
  font-size:12.5px;
  font-weight:700;
  text-align:left;
  cursor:pointer;
  line-height:1.35;
}
.vx-tai-didyou strong{font-weight:900;color:#0D6EFD}
.vx-tai-didyou:hover{background:#dbeafe;border-color:#93c5fd}
/* Kayıt / giriş yönlendirme geri sayımı — kargo barı dili */
.vx-tai-redirect{
  margin:0;
  padding:12px 14px;
  border-radius:12px;
  background:#EFF6FF;
  border:1px solid #BFDBFE;
}
.vx-tai-redirect.is-done{
  background:#F0FDF4;
  border-color:#BBF7D0;
}
.vx-tai-redirect strong{
  display:block;
  font-size:12.5px;
  font-weight:700;
  color:#334155;
  margin-bottom:8px;
  line-height:1.35;
}
.vx-tai-redirect strong span{
  color:#0D6EFD;
  font-weight:900;
}
.vx-tai-redirect.is-done strong span{
  color:#166534;
}
.vx-tai-redirect__sec{
  font-style:normal;
  font-weight:900;
  color:#0D6EFD;
}
.vx-tai-redirect.is-done .vx-tai-redirect__sec{
  color:#166534;
}
.vx-tai-redirect__bar{
  height:6px;
  border-radius:999px;
  background:#E5E7EB;
  overflow:hidden;
}
.vx-tai-redirect__bar i{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#60A5FA,#0D6EFD);
  transition:width .05s linear;
}
.vx-tai-redirect.is-done .vx-tai-redirect__bar i{
  background:linear-gradient(90deg,#34D399,#10B981);
}
.vx-tai-redirect small{
  display:block;
  margin-top:6px;
  font-size:11px;
  color:#64748b;
  font-weight:600;
}
@media (prefers-reduced-motion:reduce){
  .vx-tai-redirect__bar i{transition:none}
}

/* Ücretsiz kargo progress — sepet .vx-ship--top ile aynı dil */
.vx-tai-ship{
  margin:0;
  padding:12px 14px;
  border-radius:12px;
  background:#FFF7ED;
  border:1px solid #FFEDD5;
}
.vx-tai-ship.is-done{
  background:#F0FDF4;
  border-color:#BBF7D0;
}
.vx-tai-ship strong{
  display:block;
  font-size:12.5px;
  font-weight:700;
  color:#475569;
  margin-bottom:8px;
  line-height:1.35;
}
.vx-tai-ship strong span{
  color:#EA580C;
  font-weight:900;
}
.vx-tai-ship.is-done strong{
  color:#166534;
}
.vx-tai-ship__bar{
  height:6px;
  border-radius:999px;
  background:#E5E7EB;
  overflow:hidden;
}
.vx-tai-ship__bar i{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#FF8A3D,#EA580C);
  transition:width .35s ease;
}
.vx-tai-ship.is-done .vx-tai-ship__bar i{
  background:linear-gradient(90deg,#34D399,#10B981);
}
.vx-tai-ship small{
  display:block;
  margin-top:6px;
  font-size:11px;
  color:#64748b;
  font-weight:600;
}
@media (prefers-reduced-motion:reduce){
  .vx-tai-ship__bar i{transition:none}
}
.vx-tai-msg .vx-tai-sum-prose{
  font-family:inherit;
  font-size:13px;
  line-height:1.55;
  color:#334155;
  font-weight:500;
}
.vx-tai-msg .vx-tai-sum-media{
  margin:0 0 10px;
  border-radius:10px;
  overflow:hidden;
  background:linear-gradient(160deg,#f1f5f9 0%,#e2e8f0 100%);
  border:1px solid #dbe3ee;
  aspect-ratio:16 / 10;
  max-height:168px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.vx-tai-msg .vx-tai-sum-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  padding:8px;
}
.vx-tai-msg .vx-tai-sum-prose h3,
.vx-tai-msg .vx-tai-sum-prose h4{
  margin:0.65em 0 0.3em;
  padding-bottom:4px;
  border-bottom:1px solid #e8edf4;
  font-size:12.5px;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:#0b3a8a;
}
.vx-tai-msg .vx-tai-sum-prose h3.tai-sum-title,
.vx-tai-msg .vx-tai-sum-prose > h3:first-child{
  text-transform:none;
  letter-spacing:0;
  font-size:15px;
  line-height:1.35;
  font-weight:800;
  color:#081E3C;
  border-bottom:2px solid #93c5fd;
  padding-bottom:8px;
  margin:0 0 0.4em;
}
.vx-tai-msg .vx-tai-sum-prose .tai-sum-chips{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:0 0 0.55em;
}
.vx-tai-msg .vx-tai-sum-prose .tai-sum-chip{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px 9px;
  border-radius:8px;
  background:#eff6ff;
  border:1px solid #bfdbfe;
  font-size:11.5px;
  font-weight:650;
  color:#0f172a;
  line-height:1.3;
}
.vx-tai-msg .vx-tai-sum-prose .tai-sum-chip em{
  font-style:normal;
  font-weight:800;
  color:#0b3a8a;
  font-size:10.5px;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.vx-tai-msg .vx-tai-sum-prose table.tai-sum-params{
  width:100%;
  border-collapse:collapse;
  margin:0 0 0.5em;
  font-size:12.5px;
}
.vx-tai-msg .vx-tai-sum-prose table.tai-sum-params th,
.vx-tai-msg .vx-tai-sum-prose table.tai-sum-params td{
  border:1px solid #e2e8f0;
  padding:6px 8px;
  text-align:left;
  vertical-align:top;
}
.vx-tai-msg .vx-tai-sum-prose table.tai-sum-params th{
  width:38%;
  background:#f8fafc;
  font-weight:800;
  color:#0b3a8a;
}
.vx-tai-msg .vx-tai-sum-prose table.tai-sum-params td{
  font-weight:550;
  color:#334155;
}
.vx-tai-msg .vx-tai-sum-prose h3:first-child,
.vx-tai-msg .vx-tai-sum-prose h4:first-child{margin-top:0}
.vx-tai-msg .vx-tai-sum-prose p{margin:0 0 0.35em;font-weight:500;color:#334155}
.vx-tai-msg .vx-tai-sum-prose p:empty,
.vx-tai-msg .vx-tai-sum-prose h3:empty,
.vx-tai-msg .vx-tai-sum-prose h4:empty,
.vx-tai-msg .vx-tai-sum-prose ul:empty{display:none;margin:0;padding:0;border:0}
.vx-tai-msg .vx-tai-sum-prose ul,
.vx-tai-msg .vx-tai-sum-prose ol{margin:0 0 0.45em;padding-left:1.1rem}
.vx-tai-msg .vx-tai-sum-prose li{margin:0 0 0.22em;font-weight:500;color:#334155}
.vx-tai-msg .vx-tai-sum-prose strong{
  font-weight:750;
  color:#0f172a;
}
.vx-tai-msg .vx-tai-sum-modal__meta{
  margin-top:8px;
  padding-top:6px;
  border-top:1px solid #e8edf4;
  font-size:11px;
  font-weight:700;
  color:#94a3b8;
}
.vx-tai-msg .vx-tai-sum-prose table{
  width:100%;
  border-collapse:collapse;
  margin:0 0 0.85em;
  font-size:12.5px;
  font-weight:600;
}
.vx-tai-msg .vx-tai-sum-prose th,
.vx-tai-msg .vx-tai-sum-prose td{
  border:1px solid #e2e8f0;
  padding:7px 9px;
  text-align:left;
}
.vx-tai-msg .vx-tai-sum-prose th{background:#f1f5f9;font-weight:800;color:#081E3C}

.vx-tai-typing{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px!important;
}
.vx-tai-typing__dots{
  display:inline-flex;
  gap:4px;
  align-items:center;
}
.vx-tai-typing__dots i{
  width:7px;height:7px;
  border-radius:50%;
  background:#64748b;
  animation:vx-tai-dot 1.1s infinite ease-in-out;
}
.vx-tai-typing__dots i:nth-child(2){animation-delay:.15s}
.vx-tai-typing__dots i:nth-child(3){animation-delay:.3s}
.vx-tai-typing__label{
  font-size:12px;
  font-weight:700;
  color:#64748b;
}
@keyframes vx-tai-dot{
  0%,80%,100%{opacity:.35;transform:translateY(0)}
  40%{opacity:1;transform:translateY(-3px)}
}

.vx-tai-cmp.tornado-modal-overlay{
  --tornado-modal-width:440px;
  z-index:100060;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  background:rgba(15,23,42,.46);
}
.vx-tai-cmp__panel{
  padding:0;
  overflow:hidden;
  max-height:min(90dvh,640px);
  display:flex;
  flex-direction:column;
}
.vx-tai-cmp__head{
  position:relative;
  padding:16px 44px 12px 16px;
  border-bottom:1px solid #e8edf4;
}
.vx-tai-cmp__head h2{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#081E3C;
}
.vx-tai-cmp__head p{
  margin:6px 0 0;
  font-size:12.5px;
  font-weight:600;
  color:#64748b;
}
.vx-tai-cmp__x{
  position:absolute;
  top:12px;right:12px;
  width:32px;height:32px;
  border:0;border-radius:10px;
  background:#f1f5f9;
  cursor:pointer;
  font-size:18px;
  color:#475569;
}
.vx-tai-cmp__slots{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding:12px 16px 0;
}
.vx-tai-cmp__slot{
  position:relative;
  min-height:52px;
  border:1px dashed #cbd5e1;
  border-radius:12px;
  padding:10px 28px 10px 10px;
  font-size:12px;
  font-weight:700;
  color:#64748b;
  background:#f8fafc;
}
.vx-tai-cmp__slot.is-filled{
  border-style:solid;
  border-color:#93c5fd;
  background:#eff6ff;
  color:#0f172a;
}
.vx-tai-cmp__slot strong{
  display:block;
  font-size:12.5px;
  line-height:1.35;
}
.vx-tai-cmp__clear{
  position:absolute;
  top:6px;right:6px;
  width:22px;height:22px;
  border:0;border-radius:8px;
  background:#fff;
  cursor:pointer;
  color:#64748b;
}
.vx-tai-cmp__search{padding:12px 16px 8px}
.vx-tai-cmp__search input{
  width:100%;
  border:1px solid #d8dee8;
  border-radius:12px;
  padding:11px 12px;
  font:inherit;
  font-size:13.5px;
  font-weight:600;
}
.vx-tai-cmp__search input:focus{
  outline:none;
  border-color:#0D6EFD;
  box-shadow:0 0 0 3px rgba(13,110,253,.15);
}
.vx-tai-cmp__list{
  flex:1;
  overflow:auto;
  padding:0 12px 12px;
  min-height:160px;
  max-height:280px;
}
.vx-tai-cmp__empty{
  padding:24px 12px;
  text-align:center;
  color:#94a3b8;
  font-size:13px;
  font-weight:650;
}
.vx-tai-cmp__item{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  border:1px solid #e2e8f0;
  background:#fff;
  border-radius:12px;
  padding:8px;
  margin-bottom:8px;
  cursor:pointer;
  text-align:left;
}
.vx-tai-cmp__item:hover{border-color:#93c5fd;background:#f8fbff}
.vx-tai-cmp__item.is-selected{
  border-color:#0D6EFD;
  background:#eff6ff;
}
.vx-tai-cmp__check{
  position:absolute;
  top:8px;
  right:8px;
  width:20px;
  height:20px;
  border-radius:999px;
  border:1px solid #cbd5e1;
  background:#fff;
  font-size:11px;
  font-weight:900;
  color:#0D6EFD;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.vx-tai-cmp__item.is-selected .vx-tai-cmp__check{
  border-color:#0D6EFD;
  background:#0D6EFD;
  color:#fff;
}
.vx-tai-cmp__img{
  width:44px;height:44px;
  border-radius:10px;
  background:#f1f5f9;
  overflow:hidden;
  flex-shrink:0;
  display:grid;place-items:center;
}
.vx-tai-cmp__img img{width:100%;height:100%;object-fit:cover}
.vx-tai-cmp__name{
  font-size:13px;
  font-weight:700;
  color:#0f172a;
  line-height:1.35;
}
.vx-tai-cmp__foot{
  display:flex;
  gap:8px;
  justify-content:flex-end;
  padding:12px 16px 16px;
  border-top:1px solid #e8edf4;
}
.vx-tai-cmp__cancel,
.vx-tai-cmp__go{
  border:0;
  border-radius:12px;
  padding:10px 14px;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}
.vx-tai-cmp__cancel{background:#f1f5f9;color:#334155}
.vx-tai-cmp__go{background:#0D6EFD;color:#fff}
.vx-tai-cmp__go:disabled{opacity:.45;cursor:not-allowed}

.vx-tai-cat__picked{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  padding:10px 16px 0;
  min-height:40px;
  align-items:center;
}
.vx-tai-cat__hint{
  font-size:12px;
  font-weight:700;
  color:#94a3b8;
}
.vx-tai-cat__tag{
  display:inline-flex;
  align-items:center;
  gap:4px;
  max-width:100%;
  border:1px solid #93c5fd;
  background:#eff6ff;
  color:#0f172a;
  border-radius:999px;
  padding:5px 10px;
  font-size:11.5px;
  font-weight:750;
  cursor:pointer;
  line-height:1.2;
}
.vx-tai-cat__tag span{opacity:.65;font-size:13px}

.vx-tai-modal__hint{
  margin:8px 2px 0;
  font-size:11px;
  font-weight:650;
  color:#94a3b8;
  line-height:1.35;
}

@media (max-width:480px){
  .vx-tai-modal.tornado-modal-overlay{
    --tornado-modal-width:100%;
    padding:0;
    align-items:stretch;
    justify-content:flex-start;
    top:var(--vx-tai-vv-top, 0px);
    left:0;
    right:0;
    bottom:auto;
    width:100%;
    height:var(--vx-tai-vvh, 100dvh);
    max-height:var(--vx-tai-vvh, 100dvh);
    overflow:hidden;
  }
  .vx-tai-modal .vx-tai-panel{
    width:100%;
    max-height:100%;
    height:100%;
    border-radius:0;
    border:0;
  }
  .vx-tai-modal__body{
    min-height:0;
    flex:1 1 auto;
    -webkit-overflow-scrolling:touch;
  }
  .vx-tai-modal__foot{
    flex-shrink:0;
    padding-bottom:max(10px, env(safe-area-inset-bottom, 0px));
  }
  .vx-tai-modal__input{
    font-size:16px; /* iOS Safari zoom engeli */
    line-height:1.35;
  }
  .vx-tai-modal.is-kb .vx-tai-modal__hint{
    display:none;
  }
  .vx-tai-cmp.tornado-modal-overlay{
    --tornado-modal-width:100%;
    padding:0;
    top:var(--vx-tai-vv-top, 0px);
    height:var(--vx-tai-vvh, 100dvh);
    max-height:var(--vx-tai-vvh, 100dvh);
  }
  .vx-tai-cmp__panel{
    max-height:100%;
    height:100%;
    border-radius:0;
  }
  .vx-tai-cmp__search input{
    font-size:16px;
  }
}
