.pls-products {
    display: grid;
    gap: 25px;
    align-items: stretch;
}

/* Columns */
.pls-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pls-columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pls-columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* Product card */
.pls-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    box-sizing: border-box;
}


/* Product content fills available space */
.pls-card-content {
    flex: 1;
}


/* Image */
.pls-image {
    display: block;
    text-align: center;
}

.pls-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* Title */
.pls-title {
    margin: 15px 0 10px;
    font-size: 18px;
    line-height: 1.4;
}

.pls-title a {
    text-decoration: none;
    color: inherit;
}


/* Price */
.pls-price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}


/* Button container */
.pls-button {
    margin-top: auto;
}


/* WooCommerce button */
.pls-button .button {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}


/* Mobile layout */
@media (max-width: 768px) {

    .pls-products {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .pls-card {
        padding: 12px;
    }

}