/**
 * GD Gift Pricing Engine — Available Stock touch reveal (v1.9.21)
 *
 * Shipped + enqueued alongside stock-card.js (front-end-wide) so the catalogue-card stock panel reveals on touch
 * WITHOUT depending on the theme / WP Grid Builder card CSS or a hand-added Additional CSS rule. stock-card.js adds
 * `.gd-stock-open` to the touched card; this forces its `.gd-stock-block` panel visible, overriding the card's own
 * hidden/animated state (hence !important + transition:none so it is instant and never gets stuck mid-transition).
 * Desktop :hover reveal (in the WPGB card CSS) is untouched.
 */
.wpgb-card.gd-stock-open .gd-stock-block {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    transition: none !important;
}
