/* ===== Live Menu Prices — Menu Search Assistant Widget ===== */
#mp-chat-launcher{position:fixed;bottom:20px;right:20px;z-index:99999;width:56px;height:56px;border-radius:50%;background:#C4342B;color:#fff;border:none;cursor:pointer;box-shadow:0 4px 16px rgba(0,0,0,.25);display:flex;align-items:center;justify-content:center;font-family:'Manrope',sans-serif;transition:transform .15s ease;}
#mp-chat-launcher:hover{transform:scale(1.06);}
#mp-chat-launcher svg{width:26px;height:26px;}

#mp-chat-panel{position:fixed;bottom:88px;right:20px;z-index:99999;width:340px;max-width:calc(100vw - 32px);height:460px;max-height:calc(100vh - 120px);background:#FFFFFF;border-radius:16px;box-shadow:0 12px 40px rgba(0,0,0,.22);display:none;flex-direction:column;overflow:hidden;font-family:'Manrope',sans-serif;border:1px solid #E7E1D8;}
#mp-chat-panel.mp-open{display:flex;}

#mp-chat-header{background:#C4342B;color:#fff;padding:14px 16px;display:flex;align-items:center;justify-content:space-between;flex-shrink:0;}
#mp-chat-header .mp-chat-title{font-weight:700;font-size:15px;}
#mp-chat-header .mp-chat-sub{font-size:11px;opacity:.85;font-weight:500;}
#mp-chat-close{background:none;border:none;color:#fff;font-size:20px;cursor:pointer;line-height:1;padding:4px;opacity:.9;}
#mp-chat-close:hover{opacity:1;}

#mp-chat-messages{flex:1;overflow-y:auto;padding:14px;background:#FAF8F4;display:flex;flex-direction:column;gap:10px;}
.mp-msg{max-width:88%;font-size:13.5px;line-height:1.5;}
.mp-msg-bot{align-self:flex-start;}
.mp-msg-user{align-self:flex-end;}
.mp-bubble{padding:9px 12px;border-radius:12px;}
.mp-msg-bot .mp-bubble{background:#FFFFFF;color:#171412;border:1px solid #E7E1D8;border-bottom-left-radius:4px;}
.mp-msg-user .mp-bubble{background:#C4342B;color:#fff;border-bottom-right-radius:4px;}

.mp-result-card{display:block;background:#FFFFFF;border:1px solid #E7E1D8;border-radius:10px;padding:8px 10px;margin-top:6px;text-decoration:none;color:#171412;transition:border-color .15s;}
.mp-result-card:hover{border-color:#C4342B;}
.mp-result-name{font-weight:600;font-size:12.5px;color:#171412;}
.mp-result-meta{font-size:11.5px;color:#6B6560;margin-top:2px;display:flex;justify-content:space-between;gap:8px;}
.mp-result-price{color:#C4342B;font-weight:700;white-space:nowrap;}

#mp-chat-inputrow{display:flex;gap:8px;padding:10px;border-top:1px solid #E7E1D8;background:#fff;flex-shrink:0;}
#mp-chat-input{flex:1;border:1px solid #E7E1D8;border-radius:20px;padding:9px 14px;font-size:13px;font-family:'Manrope',sans-serif;outline:none;}
#mp-chat-input:focus{border-color:#C4342B;}
#mp-chat-send{background:#C4342B;color:#fff;border:none;border-radius:50%;width:36px;height:36px;flex-shrink:0;cursor:pointer;display:flex;align-items:center;justify-content:center;}
#mp-chat-send:hover{opacity:.9;}
#mp-chat-send svg{width:16px;height:16px;}

.mp-chat-loading{font-size:12px;color:#A39C93;font-style:italic;}

@media (max-width:480px){
  #mp-chat-panel{right:16px;left:16px;width:auto;bottom:82px;}
  #mp-chat-launcher{right:16px;bottom:16px;}
}