body {
    font-family: Arial, sans-serif;
    margin: 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.product {
    margin: 10px;
    text-align: center;
    width: 200px; /* Ancho fijo para cada producto */
}

.product img {
    width: 100%;
    max-width: 100%; /* Asegura que la imagen no exceda el ancho del contenedor */
    height: auto; /* Mantiene la proporción de aspecto de la imagen */
    cursor: pointer;
}

.product-modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.product-modal img {
    width: 80%;
    max-width: 600px;
    margin: auto;
    display: block;
}

.product-modal p {
    color: white;
    text-align: center;
    margin-top: 20px;
}

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

