.prg-global-related-products,
.prg-shortcode-products,
.prg-custom-related {
    clear: both;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.prg-global-related-products h2,
.prg-shortcode-products h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #333;
}

/* Responsividade */
@media (max-width: 768px) {
    .prg-global-related-products .products,
    .prg-shortcode-products .products {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .prg-global-related-products .products li,
    .prg-shortcode-products .products li {
        flex: 1 1 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .prg-global-related-products .products li,
    .prg-shortcode-products .products li {
        flex: 1 1 100%;
        min-width: 100%;
    }
}