.hva-shop-products {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.hva-shop-product {
    display: grid;
    grid-template-columns: minmax(220px, 32%) 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background: #fff;
}

.hva-shop-product__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hva-shop-product__image {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 320px;
    object-fit: contain;
}

.hva-shop-product__title {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.hva-shop-product__sku {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.hva-shop-product__description {
    margin-bottom: 1rem;
}

.hva-shop-product__price {
    margin: 1rem 0 0.25rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.hva-shop-product__shipping {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
}

@media (max-width: 760px) {
    .hva-shop-product {
        grid-template-columns: 1fr;
    }

    .hva-shop-product__image {
        max-height: 260px;
    }
}
