.related-products {
    max-width: 1200px;
    margin: 50px auto;
}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.4em;
}
.related-products  .product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}
.related-products .product-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    width: 220px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.related-products .product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}
.related-products .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}
.related-products .product-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primario);
}
.related-products .product-price {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.related-products .original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}
.related-products .discounted-price {
    color: #000;
    font-weight: 500;
    font-size: 18px;
}