.ary-ia-chat-root{
  position:fixed;
  left:14px;
  bottom:14px;
  z-index:99999;
  font-family:Arial,sans-serif;
}

.ary-ia-chat-toggle{
  background:#e91e63;
  color:#fff;
  border:0;
  border-radius:999px;
  padding:12px 16px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
  min-width:120px;
}

.ary-ia-chat-panel{
  position:absolute;
  left:0;
  bottom:58px;
  width:340px;
  max-width:calc(100vw - 28px);
  height:480px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 35px rgba(0,0,0,.18);
  overflow:hidden;
  border:1px solid #eee;
}

.ary-ia-chat-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  background:#fff0f5;
  border-bottom:1px solid #f3d7e2;
  font-size:14px;
}

.ary-ia-chat-close{
  border:0;
  background:transparent;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.ary-ia-chat-messages{
  height:340px;
  overflow:auto;
  padding:14px;
  background:#fff;
}

.ary-ia-msg{
  margin:0 0 12px;
  padding:10px 12px;
  border-radius:12px;
  line-height:1.45;
  white-space:pre-line;
  font-size:14px;
}

.ary-ia-msg--assistant{
  background:#f6f6f6;
  color:#222;
}

.ary-ia-msg--user{
  background:#ffe3ef;
  color:#222;
  margin-left:40px;
}

.ary-ia-chat-form{
  padding:12px;
  border-top:1px solid #eee;
  background:#fff;
}

.ary-ia-chat-form textarea{
  width:100%;
  resize:none;
  border:1px solid #ddd;
  border-radius:10px;
  padding:10px;
  margin-bottom:10px;
  box-sizing:border-box;
  font-size:14px;
}

.ary-ia-chat-form button{
  width:100%;
  border:0;
  border-radius:10px;
  padding:12px;
  background:#e91e63;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  font-size:14px;
}

.ary-ia-chat-form button[disabled]{
  opacity:.7;
  cursor:not-allowed;
}

@media (max-width: 680px){
  .ary-ia-chat-root{
    left:10px;
    bottom:10px;
  }

  .ary-ia-chat-toggle{
    min-width:110px;
    padding:11px 14px;
    font-size:13px;
  }

  .ary-ia-chat-panel{
    left:0;
    bottom:54px;
    width:calc(100vw - 20px);
    height:72vh;
    max-width:none;
  }
}

/* BEGIN ARY IA PRODUCTION PATCH */
/* Parche visual minimo de produccion:
   - separa el vendedor IA del boton WhatsApp
   - mejora panel/launcher para verse mas confiable
   - no toca backend ni flujo REST
*/
:root{
  --ary-ia-safe-right: 18px;
  --ary-ia-safe-bottom: 108px;
  --ary-ia-panel-width: min(380px, calc(100vw - 24px));
  --ary-ia-panel-max-height: min(72vh, 640px);
  --ary-ia-radius: 18px;
  --ary-ia-border: 1px solid rgba(15,23,42,.10);
  --ary-ia-shadow: 0 20px 60px rgba(2,6,23,.18);
}

[id*="ary-ia-chat"],
[class*="ary-ia-chat"],
[id*="ary_ia_chat"],
[class*="ary_ia_chat"]{
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Launcher / boton flotante */
[id*="ary-ia-chat-toggle"],
[class*="ary-ia-chat-toggle"],
[data-ary-ia-toggle],
[aria-controls*="ary-ia"]{
  position: fixed !important;
  right: var(--ary-ia-safe-right) !important;
  bottom: var(--ary-ia-safe-bottom) !important;
  z-index: 2147482400 !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 30px rgba(2,6,23,.18) !important;
  transform: translateZ(0);
}

/* Panel/chat */
[id*="ary-ia-chat-window"],
[class*="ary-ia-chat-window"],
[id*="ary-ia-chat-panel"],
[class*="ary-ia-chat-panel"],
[data-ary-ia-panel]{
  position: fixed !important;
  right: 16px !important;
  bottom: calc(var(--ary-ia-safe-bottom) + 64px) !important;
  width: var(--ary-ia-panel-width) !important;
  max-width: calc(100vw - 24px) !important;
  max-height: var(--ary-ia-panel-max-height) !important;
  border-radius: var(--ary-ia-radius) !important;
  border: var(--ary-ia-border) !important;
  background: #ffffff !important;
  box-shadow: var(--ary-ia-shadow) !important;
  overflow: hidden !important;
  z-index: 2147482399 !important;
  backdrop-filter: blur(6px);
}

/* Cabecera mas confiable */
[id*="ary-ia-chat-window"] [class*="header"],
[class*="ary-ia-chat-window"] [class*="header"],
[id*="ary-ia-chat-panel"] [class*="header"],
[class*="ary-ia-chat-panel"] [class*="header"],
[data-ary-ia-panel] [class*="header"]{
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border-bottom: 1px solid rgba(15,23,42,.08) !important;
}

/* Zona de mensajes */
[id*="ary-ia-chat-window"] [class*="messages"],
[class*="ary-ia-chat-window"] [class*="messages"],
[id*="ary-ia-chat-panel"] [class*="messages"],
[class*="ary-ia-chat-panel"] [class*="messages"],
[data-ary-ia-panel] [class*="messages"]{
  background: #ffffff !important;
}

/* Input area */
[id*="ary-ia-chat-window"] textarea,
[class*="ary-ia-chat-window"] textarea,
[id*="ary-ia-chat-window"] input[type="text"],
[class*="ary-ia-chat-window"] input[type="text"],
[id*="ary-ia-chat-panel"] textarea,
[class*="ary-ia-chat-panel"] textarea,
[id*="ary-ia-chat-panel"] input[type="text"],
[class*="ary-ia-chat-panel"] input[type="text"],
[data-ary-ia-panel] textarea,
[data-ary-ia-panel] input[type="text"]{
  border-radius: 12px !important;
  border: 1px solid rgba(15,23,42,.12) !important;
  background: #fff !important;
  box-shadow: none !important;
}

/* Botones del panel */
[id*="ary-ia-chat-window"] button,
[class*="ary-ia-chat-window"] button,
[id*="ary-ia-chat-panel"] button,
[class*="ary-ia-chat-panel"] button,
[data-ary-ia-panel] button{
  border-radius: 12px !important;
}

/* Movil */
@media (max-width: 782px){
  :root{
    --ary-ia-safe-right: 12px;
    --ary-ia-safe-bottom: 96px;
    --ary-ia-panel-width: calc(100vw - 16px);
    --ary-ia-panel-max-height: 68vh;
  }

  [id*="ary-ia-chat-window"],
  [class*="ary-ia-chat-window"],
  [id*="ary-ia-chat-panel"],
  [class*="ary-ia-chat-panel"],
  [data-ary-ia-panel]{
    right: 8px !important;
    left: 8px !important;
    width: auto !important;
    max-width: none !important;
    bottom: calc(var(--ary-ia-safe-bottom) + 58px) !important;
    border-radius: 16px !important;
  }
}
/* END ARY IA PRODUCTION PATCH */

/* BEGIN ARY IA OPEN STATE HARDENING */
#ary-ia-chat-root{
  right: 18px !important;
  left: auto !important;
  bottom: var(--ary-ia-safe-bottom, 108px) !important;
  z-index: 2147482400 !important;
}

#ary-ia-chat-root #ary-ia-chat-toggle{
  position: fixed !important;
  right: 18px !important;
  left: auto !important;
  bottom: var(--ary-ia-safe-bottom, 108px) !important;
  z-index: 2147482400 !important;
  pointer-events: auto !important;
}

#ary-ia-chat-root #ary-ia-chat-panel{
  position: fixed !important;
  right: 16px !important;
  left: auto !important;
  bottom: calc(var(--ary-ia-safe-bottom, 108px) + 64px) !important;
  width: min(380px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
  height: min(72vh, 640px) !important;
  max-height: min(72vh, 640px) !important;
  z-index: 2147482399 !important;
  pointer-events: auto !important;
}

#ary-ia-chat-root #ary-ia-chat-panel[hidden]{
  display: none !important;
}

#ary-ia-chat-root.is-open #ary-ia-chat-panel{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 782px){
  #ary-ia-chat-root{
    right: 12px !important;
    left: auto !important;
    bottom: var(--ary-ia-safe-bottom, 96px) !important;
  }

  #ary-ia-chat-root #ary-ia-chat-toggle{
    right: 12px !important;
    left: auto !important;
    bottom: var(--ary-ia-safe-bottom, 96px) !important;
  }

  #ary-ia-chat-root #ary-ia-chat-panel{
    right: 8px !important;
    left: 8px !important;
    width: auto !important;
    max-width: none !important;
    bottom: calc(var(--ary-ia-safe-bottom, 96px) + 58px) !important;
    height: 68vh !important;
    max-height: 68vh !important;
  }
}
/* END ARY IA OPEN STATE HARDENING */
