/* W2PREVIEW_V1 — cleaner preview stage:
   1) remove the golden view dots (the side arrows already rotate the garment);
   2) tshirt+hoodie only (shirt group = has .sh-ovl):
      web  -> raise a bit (too much empty space above),
      mobile -> lower a bit. Cap/Bag untouched. */

/* 1) drop the golden view indicators under the garment */
.vdot{display:none!important}

/* 2a) WEB: lift tshirt/hoodie up */
.preview-canvas-wrap:has(.sh-ovl) .shirt-img{
  top:-18px!important;
  bottom:18px!important;
}

/* 2b) MOBILE: lower tshirt/hoodie down instead */
@media (max-width:480px){
  .preview-canvas-wrap:has(.sh-ovl) .shirt-img{
    top:14px!important;
    bottom:-14px!important;
  }
}
