/* GENERAL */

.link-product:visited{
  color: inherit;
}

.link-product:hover{
  color: inherit;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
margin:0;
font-family:Arial;
background:#f4f4f4;
}

/* HEADER */

.header{
  background:rgb(0, 0, 0);
  height:150px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  position:relative;
}
/* IZQ Y DER */

.left, .right{
display:flex;
align-items:center;
}

/* MENU */

.menu a{
color:white;
text-decoration:none;
margin-right:20px;
font-size:15px;
font-weight:bold;
}

.menu a:hover{
text-decoration:underline;
}

/* LOGO CENTRADO SIN ROMPER TODO */

.logo{
position:absolute;
left:50%;
transform:translateX(-50%);
}

.logo img{
  height:120px;
}

/* CARRITO */

.cart-icon{
position:relative;
display:flex;
align-items:center;
}

.cart-img{
width:65px;
}

.cart-count{
position:absolute;
top:-8px;
right:-10px;
background:red;
color:white;
font-size:12px;
padding:2px 6px;
border-radius:50%;
}

/* PRODUCTOS */

.productos{
padding:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

/* TARJETAS */

.producto{
  background:white;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  padding:20px;
  text-align:center;
  transition:0.3s;

  display:flex;              /* 🔥 clave */
  flex-direction:column;
  justify-content:space-between;
  height:100%;               /* 🔥 todas iguales */
}

.producto:hover{
transform:translateY(-5px);
}

/* CONTENEDOR DE IMAGEN */
.producto .img-container{
  width:100%;
  height:250px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.producto .img-container img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:5px;
}

/* TEXTO */

.marca{
color:#888;
font-size:13px;
margin-top:10px;
}

.producto h3{
font-size:16px;
margin:10px 0;
}

.precio{
font-weight:bold;
font-size:18px;
margin:10px 0;
}

/* BOTON */

.boton{
background:black;
color:white;
border:none;
padding:10px 20px;
cursor:pointer;
border-radius:4px;
transition:0.3s;
}

.boton:hover{
background:#1f1d1d;
}

/* FOOTER */

footer{
background:black;
color:white;
text-align:center;
padding:20px;
margin-top:0;
}

/* CONTACTO */

#contacto{
  padding:60px;
  background:black;
  color:white;
}

.contenedor-contacto{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:auto;
  gap:20px;
}

/* COLUMNAS */
.columna{
  flex:1;
}

/* IZQUIERDA */
.izquierda img{
  width:220px;
}

/* CENTRO */
.centro{
  text-align:center;
}

.centro h2{
  font-weight:bold;
}

/* DERECHA */
.derecha{
  text-align:right;
}

.derecha a{
  color:white;
  text-decoration:underline;
}

.btn-unirme{
  display:inline-block;
  background:#48a8dc;
  color:black;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.btn-unirme:hover{
  background:#48a8dc;
  transform:scale(1.05);
}

/* FOOTER */
footer{
  background:black;
  color:white;
  text-align:center;
  padding:20px;
  border-top:1px solid #333;
}
/* ================= RESPONSIVE ================= */

/* IMÁGENES FLEXIBLES */
img{
  max-width:100%;
  height:auto;
}

/* ===== TABLET ===== */
@media (max-width:1024px){

  .productos{
    grid-template-columns:repeat(2,1fr);
  }

}

/* ===== CELULAR ===== */
@media (max-width:768px){

  /* HEADER */
  .header{
    flex-direction:column;
    height:auto;
    padding:20px;
    gap:15px;
  }

  .logo{
    position:static;
    transform:none;
  }

  .logo img{
    height:80px;
  }

  .menu{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:nowrap;
}

.menu a{
    margin-right:0;
    font-size:14px;
    white-space:nowrap;
}

  /* PRODUCTOS */
  .productos{
    grid-template-columns:1fr;
    padding:20px;
  }

  /* IMÁGENES MÁS GRANDES EN CELULAR */
  .producto .img-container{
    height:200px;
  }

  /* CONTACTO */
  .contenedor-contacto{
    flex-direction:column;
    text-align:center;
  }

  .derecha{
    text-align:center;
  }

}

/* ===== PANTALLAS GRANDES ===== */
@media (min-width:1400px){

  .productos{
    grid-template-columns:repeat(4,1fr);
  }

}

.link-product{
  text-decoration:none;
  color:inherit;
  display:block;
}

.link-product:visited,
.link-product:hover,
.link-product:active{
  text-decoration:none;
  color:inherit;
}

.boton-whatsapp{
  display:inline-block;
  margin-top:10px;
  background:black;
  color:white;
  text-decoration:none;
  padding:10px 20px;
  border-radius:4px;
  font-weight:bold;
  transition:0.3s;
}

.boton-whatsapp:hover{
  background:#1f1d1d;
}