.chat-container { width: 100%; min-height:350px;max-height:500px;background-color: inherit; border-radius: 15px;  display: flex; flex-direction: column; overflow: hidden; }
.chat-header { background-color: #C73466; color: white; padding: 15px; text-align: center; font-weight: bold; font-size: 1.2rem; }
.chat-box { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.message { max-width: 90%; padding: 10px 15px; border-radius: 15px; line-height: 1.4; font-size: 0.95rem; }
.user-message { background-color: #C73466; color: white; align-self: flex-end; border-bottom-right-radius: 2px; }
.bot-message { background-color: #e9e9eb; color: #333; align-self: flex-start; border-bottom-left-radius: 2px; }
.loading-message { color: #888; font-style: italic; font-size: 0.8rem; align-self: flex-start; margin-left: 10px; }
.input-area { padding: 15px; background-color: #fff; border-top: 1px solid #eee; display: flex; gap: 10px; }
.chat-container input[type="text"] { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 20px; outline: none; }
.chat-container button { background-color: #C73466; color: white; border: none; padding: 10px 20px; border-radius: 20px; cursor: pointer; font-weight: bold; }
.chat-container button:disabled { background-color: #ccc; cursor: not-allowed; }
/* TARJETAS PRODUCTO */
.producto-card { border: 1px solid #e0e0e0; border-radius: 10px; padding: 15px; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.producto-card br { display:none; }
.message.bot-message br { display:none; }
#chat-form button {
    padding: 10px 20px;
    background-color: #bd3867;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#chat-form button:hover {
    background-color: #009B9F;
}
#close-chat{float: right;
    width: 99%;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #379b9e;
    border: solid 0px gray;
    color: white;
    border-radius: 3px;
    padding: 5px 5px;
    cursor: pointer;}
  #close-chat .arrow-down{  position: relative;
    float: right;
    margin-right: 10px;
    margin-left: -19px;
  }
