body {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:#b20000;
}

a {
    color:#610909;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}
/* Títulos de cada categoría */
.productos h2 {
    font-size: 1.8rem;
    margin: 0%;
    text-align: center;
    padding-bottom: 0.5rem;
}


/* Contenedores de productos */
.remeras,
.pantalones,
.abrigos,
.accesorios {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;  
    gap: 10px;             
    padding: 20px;
}

/* Cada producto */
.card {
    position: relative;
    flex: 290px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* Imágenes con tamaño uniforme */
.card img {
    width: 100%;
    height: 600px;   /* todos los productos de la misma altura */
    display: block;
}
/* sección botones */
.card button {
    background: #000000;
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.card button:hover {
    background: #85010c;
}
.boton{
    display: flex;
    justify-content: center;
    align-items: center;
}
.boton button{
    background: #00000000;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s ease;
}
.boton button:hover{
    background: #b4b4b4;
}
