/* Product Gallery Widget CSS */

.pgew-gallery-container {
    width: 100%;
    box-sizing: border-box;
}

.pgew-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.pgew-product-item {
    width: 25%; /* 4 products per row for desktop */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.pgew-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pgew-product-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%; /* Creates a square aspect ratio */
    height: 550px;
}

.pgew-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-property: transform;
    transition-timing-function: ease-out;
}

.pgew-product-name {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* Responsive styles */
@media (max-width: 767px) {
    .pgew-product-item {
        width: 50%; /* 2 products per row for mobile */
    }
    .pgew-product-image {
        height: 300px;
    }
}