.catalogo {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas */
    gap: 20px; /* Espacio entre productos */
    padding: 20px;
}

.producto {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
}

.producto img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.producto h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.producto p {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #555;
}

.producto .precio {
    font-weight: bold;
    color: green;
    margin-bottom: 10px;
}

.paypal-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}