.product-grid-58378581 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    width: 100%;
}

.product-grid-58378581__item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.product-grid-58378581__item-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-grid-58378581__item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-grid-58378581__item:hover .product-grid-58378581__item-img {
    transform: scale(1.05);
}

.product-grid-58378581__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s ease;
    z-index: 1;
}

.product-grid-58378581__item-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.product-grid-58378581__item-title {
    margin: 0;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
