body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f4f4f4;
}

h1 {
    text-align: center;
    color: #333;
}

/* El contenedor de productos */
#lista-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    /* He quitado el borde dashed de aquí */
}

/* La carta individual */
article {
    background: #cfcece;
    border: 1px solid #ddd; /* Borde suave y continuo */
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye mejor el espacio */
}

img {
    width: 100%;
    height: 200px;
    object-fit: contain; /* Para que la camiseta se vea entera */
    margin-bottom: 10px;
}

h3 {
    margin: 10px 0 5px 0;
    font-size: 1.1em;
}

p {
    margin: 5px 0 15px 0; /* Espacio para la descripción */
    line-height: 1.4;
}

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

select {
    padding: 5px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
}

button:hover {
    background-color: #333;
}