:root {
    --sizenavbar: 60px;
  }
  
*{
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: black;
    font-size: 1rem;
}
a:hover{
    color: gold;
}
.navbar{
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: var(--sizenavbar);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    padding: 10px 10px 10px 10px;
    border-bottom: 2px solid gold;
}
.navbar .links{
    display: flex;
    gap: 2rem;
}
.navbar .toggle_btn{
    color: black;
    font-size: 1.5 rem;
    cursor: pointer;
    display: none;
    padding: 0 10px 0 0;
}
.action_btn{
    background-color: red;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}
.action_btn:hover{
    scale: 1.15;
    color: #fff;
}
.imglogotipo{
    width: 100%;
    height: 40px;
}


/* DROPDOWN MENU */
.dropdown_menu{
    position: fixed;
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    height: 240px;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* RESPONSIVE MENU */
@media (max-width: 992px){
    .navbar .links, .navbar .action_btn{
        display: none;
    }
    .navbar .toggle_btn{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }
}

@media (max-width: 576px){
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}
body{
  background-image: url(../../images/texturablanca.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.container{
    padding-top: 60px;
    width: 100%;
}

/* CATALOGO */
.catalogo{
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    padding: 40px;
    justify-content: center;
  }
  @media (max-width: 560px){
    .catalogo{
      grid-template-columns: 100%;
    }
  }
  .productcard{
    list-style: none;
    font-size: 1.5rem;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .productimg{
    width: 650px;
    height: auto;
  }
  @media (max-width: 560px){
    .productimg{
      width: 100%;
      height: auto;
    }
  }
  .productprecio{
    color: red;
    font-size: 20px;
  
  }
  .productboton{
    background-color: gold; /* Green */
    border-radius: 12px;
    color: white;
    padding: 5px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* SE USA PARA OCULTAR LOS PRODUCTOS */ 
  .hidden{
    display: none;
  }
  
  /* ESTILOS DE INPUT DE BUSQUEDA CATALOGO PRINCIPAL */ 
  .containerinputbuscar{
    display: grid;
    place-content: center;
    padding-top: 25px;
  }
  .inputbuscar{
     text-align: center;
     align-items: center;
     width: 600px;
     padding: 10px;
    /* margin: 8px 0 0 263px; */
     display: grid;
     place-content: center;

     border: none;
     border-bottom: 1px solid #ccc;
     outline: none;
     padding-bottom: 5px;
  
  }
  @media (max-width: 850px){
    .inputbuscar{
      /* width: 100%; */
      margin: 0px 0px 0px 0px;
    }
  }
