/* ============================================================================
   W2PRINTRAISE_V1 — raise the print/logo toward the chest on WEB only.
   On the desktop layout the garment was zoomed/raised but the print layer
   (.sh-ovl, centred in the canvas) stayed put, so the logo reads low (solar
   plexus) instead of on the chest. Nudge the whole print layer UP — web only
   (@media min-width:768px, the desktop breakpoint), T-shirts + hoodies only.
   Cap/bag and the mobile layout are intentionally untouched (mobile is correct).

   .sh-ovl is a following sibling of .shirt-img, so `[src*="tshirt_"] ~ .sh-ovl`
   scopes by garment. Uses the individual `translate` property (combines with any
   existing transform; also baked by w2lightbox into the cart/fullscreen capture,
   so the stored order geometry rises to match). Value is calibratable. ======== */
@media (min-width:768px){
  .shirt-img[src*="tshirt_"] ~ .sh-ovl,
  .shirt-img[src*="hoodie_"] ~ .sh-ovl{
    translate:0 -9.6% !important;
  }
}
