/* 2. Elements Styling */
/*font-family: 'Open Sans', sans-serif;
font-family: 'Righteous', cursive;*/

body {
  color: #1f1f1f;
  font-family: 'Open Sans', sans-serif;
  position: relative;
}

.productos-container {
  column-count: 3; /* Ajusta el número de columnas aquí */
}

.producto {
  break-inside: avoid-column; /* Evita que un producto se divida entre columnas */
  margin-bottom: 30px;
}


a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;

}


a:hover{
  color: #084887;


}

.hover-border {
  position: relative;
  padding-bottom: 5px;
}

.hover-border::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #000;
  transition: width 0.3s ease-in-out;
}

.hover-border:hover::before {
  width: 100%;
}

.espacio-der{

  margin-right: 10px;
}

.espacio-izq{

  margin-left: 10px;
}

/*=============================================
AJUSTE FLEX
=============================================*/

.buscador-input{

    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.cart-total{

    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    text-align: center;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.form-direccion{

    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    text-align: center;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}


/*=============================================
ICONO DE CANTIDAD DE CARRITO
=============================================*/

.cantidad-item{
  width: 15px;
  height: 15px;
  font-size: 10px;
  line-height: 15px;
  color: #ffffff;
  font-weight: 400;

  background-color: #bb9078;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

/*=============================================
Carrito
=============================================*/

.img-cart{
  width: 150px;

}

.checkout-cart{
  border-radius: 10px;
  background-color: #282828;
  color: #fff;
  padding: 10px 20px;
  transition: color 0.3s ease;
  margin-top: 20px;

}

.checkout-cart:hover{
  background-color: #6B6B6B;
  color: #fff;
  transition: color 0.3s ease;

}
