.hl92-shop-wrap {
    margin: 32px auto;
    max-width: 1180px;
}

.hl92-shop-wrap ul.products {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hl92-shop-wrap ul.products li.product {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    float: none;
    margin: 0;
    padding: 18px;
    text-align: center;
    transition: box-shadow 160ms ease, transform 160ms ease;
    width: auto;
}

.hl92-shop-wrap ul.products li.product:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.hl92-shop-wrap ul.products li.product img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    width: 100%;
}

.hl92-shop-wrap .woocommerce-loop-product__title {
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.hl92-shop-wrap .price {
    color: #0b3a75;
    font-size: 17px;
    font-weight: 700;
}

.hl92-shop-wrap .button {
    background: #0b3a75;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    padding: 12px 18px;
}

.hl92-shop-wrap .button:hover,
.hl92-shop-wrap .button:focus {
    background: #091f3f;
    color: #fff;
}

@media (max-width: 768px) {
    .hl92-shop-wrap ul.products {
        grid-template-columns: 1fr;
    }
}
