/*
Theme Name: Astra Child
Theme URI: https://wordpress.org/themes/astra/
Description: Child theme for the Astra theme.
Author: Roket Agency
Author URI: https://roket.agency/
Template: astra
Version: 1.0.0
Text Domain: astra-child
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
*/

/*
 * Add your custom CSS below.
 */

/* Fix: WVS tooltip appears behind product image on hover.
 * The __inner:hover rule applies transform:scale(1.02) to the image, which creates
 * a GPU compositor layer that overrides the z-index stacking and renders on top of
 * the tooltip even though __footer (z-index:2) > __media (z-index:1).
 * Suppressing the scale when swatches are hovered eliminates the compositor conflict.
 */
.dehome-product-card__inner:hover:has(.dehome-product-card__swatches:hover) .dehome-product-card__image {
    transform: none;
}