.drawerWide{
  width: min(760px, 96vw);
  right: -780px;
}
.drawerWide.open{
  right: 0;
}

.row3{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:10px;
}

textarea{
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  outline:none;
  font-weight:750;
  resize:vertical;
}

.prodThumb{
  width:52px;
  height:52px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--line);
  background:#fff;
}

.prodCell{
  display:flex;
  gap:10px;
  align-items:center;
}

@media (max-width: 900px){
  .row3{ grid-template-columns:1fr; }
}

@media (max-width: 680px){
  .drawerWide{
    width:100%;
    left:0;
    right:auto;
    top:auto;
    bottom:-90vh;
    height:88vh;
    border-left:none;
    border-top:1px solid var(--line);
    border-radius:18px 18px 0 0;
  }
  .drawerWide.open{
    bottom:0;
  }
}