@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
colores{
    color: #FFA559; 
    color: #454545;
    color: #D9D9D9;
    color: #E8E8E8;
    color: #1ABC00;
}

*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
.carrito ul {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    width: 300px;
    padding: 10px;
    z-index: 1;
    list-style: none;
    font-family: "Poppins";
  }
  #carrito-total{
  color: green;
  }
  .eliminar{
    border: none;
    color: red;
    font-size: 16px;
    font-family: "Roboto";
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    right: 20px;
  }
  .carrito ul.mostrar {
    display: block;
    background-color: #c9c9c9;
    border-radius: 10px 0px 10px 10px;
    z-index: 2;
  }
  
  .carrito.activo {
    background-color: #c9c9c9;
    border-radius: 5px 15px 0px 0px;
    z-index: 2;
  }

  
  .productos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin: 20px;
    justify-content: center;
    z-index: 5;
  }
  .contenedor-productos{
    background-color: #fff;
  }
  .producto {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
  }
  
  .producto img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }
  
  .producto h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "Poppins";
  }
  
  .producto .descripcion {
    margin-bottom: 10px;
    color: #1ABC00;
    font-size: 16px;
    font-family: "Poppins";
  }
  
  .producto .precio{
    font-size: 18px;
    font-weight: bold;
    font-family: "Poppins";
  }
  .producto button{
    width: 120px;
    height: 35px;
    background-color: #D9D9D9;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-family: "Poppins";
    cursor: pointer;
  }


.container_principal {
    position: relative;
    height: 500px;
    top: 0;
  }
  
  .container_principal video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: -1;
  }
  
header{
    background-color: #00000041;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    backdrop-filter: blur(3px);
}
.logo img{
    width: 70px;
}

#carrito-contador{
  color: white;
}

input[type="text"]{
    width: 500px;
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Poppins";
    padding: 5px;
    border: none;
    background-color: #fff;

}
  .content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    width: 80%;
    margin: auto;
    top: 140px;
  }
  .content h1{
    padding: 20px;
    font-size: 35px;
    font-family: "Roboto";
  }
  .content p{
    font-family: "Poppins";
    font-size: 20px;
  }
  
  .imagenes-content-1{
    display: grid;
    position: absolute;
    right: 50px;
    top: 50px;
  }
  .imagenes-content {
     display: grid;
     position: absolute;
     left: 50px;
     bottom: 50px;
}
  .imagenes-content-1 img{
    width: 70px;
    height: auto;
    rotate: 25deg;
  }

  .imagenes-content img {
    width: 70px;
    height: auto;
    rotate: -25deg;
  }
  .carrito button{
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .carrito span{
    font-size: 18px;
    font-family: "Poppins";
  }
  .carrito img{
    width: 42px;
  }
  .productos-decoration{
    display: grid;
    position: absolute;
    left: 30px;
  }
  .productos-decoration img{
    rotate: -25deg;
    width: 90px;
    margin: 140px 10px;
  }
  footer{
    text-align: center;
    color: white;
    font-size: 18px;
    font-family: "Poppins";
    padding: 20px;
    background-color: #454545;
  }
  .carrito ul{
    overflow-y: scroll;
    max-height: 500px;
  }

  @media screen and (max-width: 1000px) {
    .productos {
      display: flex;
      flex-direction: column;
      margin: 20px;
      justify-content: start;
    }
      .carrito ul{
    overflow-y: scroll;
    max-height: 300px;
  }
    
    .producto {
      display: flex;
      flex-direction: row;
      align-items: center;
      text-align: left;
    }
    
    .producto img {
      max-width: 50%;
    }
    
    .producto h2 {
      font-size: 24px;
      margin-bottom: 5px;
      font-family: "Poppins";
    }
    
    .producto .descripcion {
      margin-bottom: 5px;

      font-size: 16px;
      font-family: "Poppins";
    }
    
    .producto .precio{
      font-size: 18px;
      font-weight: bold;
      font-family: "Poppins";
    }
    
    .producto button{
      margin-left: 20px;
      width: 120px;
      height: 35px;

      border: none;
      border-radius: 15px;
      font-size: 18px;
      font-family: "Poppins";
      cursor: pointer;
    }
    .productos-decoration{
        display: none;
    }
    .texto{
        display: block;
        float: right;
        margin: auto;
        padding: 20px;
        padding-right: 50px;
        text-align: center;
        align-items: center;
    }
    .texto p{
        margin: 10px;
    }
  }
  @media screen and (max-width: 700px){
    .productos {
        display: flex;
        flex-direction: column;
        margin: 20px;
        justify-content: start;
      }
        .carrito ul{
      overflow: scroll;
      max-height: 300px;
    }
      
      .producto {
        display: flex;
        flex-direction: row;
        align-items: center;

        padding: 10px;
        text-align: left;
      }
      
      .producto img {
        max-width: 50%;
        margin-right: 0px;
        border-bottom: none;

      }
      
      .producto h2 {
        font-size: 20px;
        margin-bottom: 5px;
        font-family: "Poppins";
      }
      
      .producto .descripcion {
        margin-bottom: 5px;

        font-size: 16px;
        font-family: "Poppins";
      }
      
      .producto .precio{
        font-size: 18px;
        font-weight: bold;
        font-family: "Poppins";
      }
      
      .producto button{
        margin-left: 20px;
        width: 120px;
        height: 35px;

        border: none;
        border-radius: 15px;
        font-size: 18px;
        font-family: "Poppins";
        cursor: pointer;
      }
    .logo img{
        width: 45px;
    }
    .carrito img{
        width: 35px;
    }
    input[type="text"]{
        width: 280px;
        height: 36px;
        border-radius: 10px;
        font-size: 16px;
        font-family: "Poppins";
        padding: 5px;
    
    }
    .carrito ul {
        top: 45px;
      }
      .content h1{
        font-size: 30px;
      }
      .content p{
        font-size: 16px;
      }
      .producto h2 {
        font-size: 20px;
        margin-bottom: 5px;
        font-family: "Poppins";
      }
      
      .producto .descripcion {
        margin-bottom: 5px;

        font-size: 16px;
        font-family: "Poppins";
      }
      
      .producto .precio{
        font-size: 16px;
        font-weight: bold;
        font-family: "Poppins";
      }
      .producto button{
        width: 100px;
        height: 30px;
        border: none;
        border-radius: 15px;
        font-size: 15px;
        font-family: "Poppins";
        cursor: pointer;
      }
      .texto{
        display: block;
        float: right;
        margin: auto;
        padding: 10px;
        padding-right: 30px;
        text-align: center;
        align-items: center;
    }
  }
  @media screen and (max-width: 470px){
    .content h1{
        font-size: 28px;
      }
      .content p{
        font-size: 15px;
      }
      input[type="text"]{
        width: 260px;
        height: 36px;
        border-radius: 10px;
        font-size: 14px;
        font-family: "Poppins";
        padding: 5px;
    
    }
    .producto h2 {
        font-size: 17px;
        margin-bottom: 5px;
        font-family: "Poppins";
      }
      
      .producto .descripcion {
        margin-bottom: 5px;

        font-size: 14px;
        font-family: "Poppins";
      }
      
      .producto .precio{
        font-size: 14px;
        font-weight: bold;
        font-family: "Poppins";
      }
      .producto button{
        width: 100px;
        height: 30px;

        border: none;
        border-radius: 15px;
        font-size: 13px;
        font-family: "Poppins";
        cursor: pointer;
      }
      .texto{
        display: block;
        float: right;
        margin: auto;
        padding: 10px;
        padding-right: 20px;
        text-align: center;
        align-items: center;
    }
    .producto img {
        max-width: 50%;
        margin-right: 0px;
        border-bottom: none;

      }
      .logo img{
        width: 40px;
    }
    .carrito img{
        width: 30px;
    }
    footer p{
        font-size: 15px;
    }
  }