/* Contenedor principal en cuadrícula */
.galeria-contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Estilo de la tarjeta */
.tarjeta-producto {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.tarjeta-producto:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Ajuste de imagen */
.producto-foto {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Evita que la foto se deforme */
}

/* Textos y botones */
.producto-info {
    padding: 15px;
    text-align: center;
}

.producto-titulo {
    font-size: 1.2rem;
    margin: 10px 0;
}

.producto-descripcion {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.producto-precio {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.boton-comprar {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}