/*
 * Mobile product page identity cleanup only.
 * - Hide the duplicated top image/title card after the purchase drawer is ready.
 * - Make the independent purchase-drawer thumbnail visibly zoomable.
 * - Desktop, checkout fields and purchase behavior stay unchanged.
 */
@media (max-width:900px), (min-width:901px) and (max-width:1100px) and (orientation:portrait){
  body.gstore-product-page-mobile-drawer-v1.gstore-product-drawer-ready-v1 .gstore-product-layout-v8 > .card{
    display:none!important;
  }

  body.gstore-product-page-mobile-drawer-v1.gstore-product-drawer-ready-v1 .gstore-product-purchase-thumb-v3[role="button"]{
    position:relative!important;
    cursor:zoom-in!important;
    -webkit-tap-highlight-color:transparent!important;
    touch-action:manipulation!important;
  }

  body.gstore-product-page-mobile-drawer-v1.gstore-product-drawer-ready-v1 .gstore-product-purchase-thumb-v3[role="button"]::after{
    content:"＋";
    position:absolute;
    right:3px;
    bottom:3px;
    width:19px;
    height:19px;
    display:grid;
    place-items:center;
    border-radius:6px;
    background:rgba(15,23,42,.82);
    color:#fff;
    font:800 15px/1 system-ui;
    pointer-events:none;
  }

  body.gstore-product-page-mobile-drawer-v1.gstore-product-drawer-ready-v1 .gstore-product-purchase-thumb-v3[role="button"]:focus-visible{
    outline:3px solid #1677ff!important;
    outline-offset:3px!important;
  }
}
