.ftStatusBox{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  width:100%;
  margin-top:14px;
  padding:13px 15px;
  border-radius:10px;
  box-sizing:border-box;
}

.ftStatusBox div{
  min-width:0;
}

.ftStatusBox strong,
.ftStatusBox span{
  display:block;
}

.ftStatusBox strong{
  margin-bottom:3px;
  font-size:14px;
}

.ftStatusBox span{
  font-size:12px;
  line-height:1.4;
}

.ftBackordered{
  background:#fff7e8;
  border:1px solid #efb75c;
  color:#6d4300;
}

.ftAvailable{
  background:#edf9f0;
  border:1px solid #7bc28b;
  color:#155b2b;
}

.ftStatusBtn{
  flex-shrink:0;
  border:0;
  border-radius:7px;
  padding:10px 16px;
  background:#ff6400;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.ftStatusBtn:hover{
  opacity:.88;
}

.ftInfoModal{
  display:none;
  position:fixed;
  inset:0;
  z-index:999999;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.7);
  box-sizing:border-box;
}

.ftInfoModal.isOpen{
  display:flex;
}

.ftInfoCard{
  position:relative;
  width:100%;
  max-width:500px;
  max-height:90vh;
  overflow:auto;
  padding:28px;
  border-radius:16px;
  background:#fff;
  color:#111;
  box-sizing:border-box;
  box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.ftInfoCard h2{
  margin:0 40px 10px 0;
}

.ftInfoCard p{
  line-height:1.5;
}

.ftInfoCard input,
.ftInfoCard textarea{
  display:block;
  width:100%;
  margin:10px 0;
  padding:12px;
  border:1px solid #ccc;
  border-radius:8px;
  box-sizing:border-box;
  font:inherit;
}

.ftModalClose{
  position:absolute;
  top:10px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#f2f2f2;
  color:#111;
  font-size:28px;
  line-height:34px;
  cursor:pointer;
}

.ftModalProductImage{
  display:block;
  width:100%;
  max-height:230px;
  margin:0 auto 18px;
  object-fit:contain;
}

body.ftModalOpen{
  overflow:hidden;
}

@media(max-width:600px){

  .ftStatusBox{
    align-items:flex-start;
    flex-direction:column;
  }

  .ftStatusBtn{
    width:100%;
  }

  .ftInfoCard{
    padding:24px 18px;
  }

}