/* --- باکس اصلی --- */
.bbbox {
    max-width:500px;
    margin:20px auto;
    padding:20px;
    background:#fff0f5;
    border-radius:15px;
    box-shadow:0 4px 20px rgba(0,0,0,0.1);
    font-family:Tahoma,sans-serif;
}

/* عنوان */
.bbbox h3 {
    color:#ff69b4;
    text-align:center;
    margin-bottom:20px;
    font-size:1.5em;
}

/* فرم شماره سفارش + موبایل */
.bbform-row {
    display:flex;
    gap:10px;
    margin-bottom:15px;
}
.bbform-row input {
    flex:1;
    padding:10px;
    border:1px solid #ffb6c1;
    border-radius:10px;
    font-size:0.95em;
}
.bbform-row button {
    padding:0 20px;
    background:#ff69b4;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:0.95em;
    transition:0.3s;
}
.bbform-row button:hover { background:#ff85c1; }

/* باکس محصولات */
.bborder-result {
    margin-top:20px;
    padding:15px;
    background:#ffe4f1;
    border-radius:12px;
}

/* هر محصول */
.bbproduct {
    padding:10px;
    margin-bottom:10px;
    background:#fff0f5;
    border-radius:10px;
    border:1px solid #ffc0cb;
}

/* باکس چت */
#bbchat {
    margin-top:15px;
    max-height:250px;
    overflow-y:auto;
    border:1px solid #ffb6c1;
    padding:10px;
    border-radius:10px;
    background:#fff;
}
.user-msg {
    background:#ffb6c1;
    padding:6px 10px;
    margin:5px 0;
    border-radius:8px;
    max-width:90%;
}
.admin-msg {
    background:#ffc0cb;
    padding:6px 10px;
    margin:5px 0;
    border-radius:8px;
    font-weight:bold;
    max-width:90%;
}
.default-msg {
    font-style:italic;
    color:#ff69b4;
}

/* فرم ارسال پیام */
#bbmsgbox {
    display:flex;
    gap:10px;
    margin-top:10px;
}
#bbmsgbox input {
    flex:1;
    padding:8px 10px;
    border-radius:8px;
    border:1px solid #ffb6c1;
    font-size:0.95em;
}
#bbmsgbox button {
    padding:8px 15px;
    background:#ff69b4;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}
#bbmsgbox button:hover { background:#ff85c1; }

/* نسخه موبایل */
@media (max-width: 600px) {
  .bbform-row {
      flex-direction: column;
  }
  .bbform-row input,
  .bbform-row button {
      width: 100%;
      margin: 5px 0;
      font-size: 1em;
  }
  #bbmsgbox {
      flex-direction: column;
  }
  #bbmsgbox input,
  #bbmsgbox button {
      width: 100%;
      margin: 5px 0;
      font-size: 1em;
  }
  .bbproduct h5 {
      font-size: 1em;
  }
  #bbchat {
      max-height: 200px;
      padding: 8px;
  }
}