/* Centered responsive cart drawer fix */
#bottomDrawer.bottom-drawer{
  left:50% !important;
  right:auto !important;
  bottom:0 !important;
  width:min(680px, calc(100vw - 24px)) !important;
  max-width:680px !important;
  transform:translate(-50%, 100%);
  margin:0 auto;
  box-sizing:border-box;
}
#bottomDrawer[aria-hidden="false"]{
  transform:translate(-50%, 0) !important;
}
.drawer-header,.drawer-body,#drawerOrderList,.drawer-actions{
  width:100%;
  box-sizing:border-box;
}
.order-row{
  align-items:center;
}
@media (max-width:540px){
  #bottomDrawer.bottom-drawer{
    width:calc(100vw - 16px) !important;
    max-height:82vh;
    padding:16px;
    border-radius:22px 22px 0 0;
  }
  .drawer-buttons{
    display:grid;
    grid-template-columns:1fr;
  }
  .drawer-buttons button{
    width:100%;
  }
  .order-row{
    gap:8px;
  }
}
