/* Shared Chromium interaction safety for every storefront page. */
html body:not(.admin) img {
    -webkit-user-drag: none;
}

html body:not(.admin) :is(button, [role="button"], .product-detail-main-image-wrap, .storefront-carousel-wrap) {
    user-select: none;
    -webkit-user-select: none;
}

html body:not(.admin) :is(
    .rr-nav-cart-drawer[hidden],
    .rr-mobile-nav-backdrop[hidden],
    [data-rr-mobile-search-modal][hidden],
    .quick-view-modal[hidden],
    .shared-product-option-modal[hidden],
    .all-product-option-modal[hidden],
    .storefront-popup-offer[hidden]
) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
