/* --- GRID STABILITY --- */
.wp-block-woocommerce-product-template {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    column-gap: 5px !important;
    row-gap: 120px !important;
}

.wc-block-product {
    width: 100% !important;
}

/* --- THE HOVER ENGINE --- */
.wc-block-components-product-image a {
    position: relative !important;
    display: block !important;
}

.wc-block-components-product-image a::after {
    content: "" !important;
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Pulls the image from the JS-injected variable */
    background-image: var(--hover-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    z-index: 5;
    pointer-events: none;
}

/* Show on hover of the parent list item */
.wc-block-product:hover .wc-block-components-product-image a::after {
    opacity: 1 !important;
}

/* --- TEXT & PRICE --- */
.wc-block-product .wp-block-post-title {
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    margin: 12px 0 0 0 !important;
    font-weight: 400 !important;
}

.wc-block-product .wc-block-components-product-price {
    font-family: "Inter", sans-serif !important;
    font-size: 11px !important;
    margin: 2px 0 0 0 !important;
}