 

  /* SEARCH BAR */

  .products-search-box {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 60px;
    border-radius: 120px;
    margin: 5px auto;
  }
  .products-search-box .search-icon, .go-icon {
    position: absolute;
    top: 0;
    height: 60px;
    width: 86px;
    line-height: 61px;
    text-align: center;
  }
  .products-search-box .search-icon {
    left: 0;
    pointer-events: none;
    font-size: 1.22em;
  }

  .products-search-box .go-icon {
    right: 0;
    pointer-events: none;
    font-size: 1.38em;
    will-change: opacity;
    cursor: default;
    opacity: 0;
  }
 
  .products-search-box #search {
    /* font-family: 'Montserrat Alternates', sans-serif; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 120px;
    border: none;
    background: rgba(255,255,255,0);
    padding: 0 68px 0 68px;
    color: var(--primary);
    font-size: 1.32em;
    font-weight: 400;
    letter-spacing: -0.015em;
    outline: none;
    border: solid var(--secondary);
  }
  .products-search-box #search::-webkit-input-placeholder {color: var(--secondary);}
  .products-search-box #search::-moz-placeholder {color: var(--secondary);}
  .products-search-box #search:-ms-input-placeholder {color: var(--secondary);}
  .products-search-box #search:-moz-placeholder {color: var(--secondary);}
  .products-search-box #search::-moz-selection {color: var(--secondary); background: var(--primary);}
  .products-search-box #search::selection {color: var(--secondary); background: var(--primary);}
  
 
  
   

  .menu {
    padding: 15px;
    margin: 15px;
    border-radius: 25px;
    background-color: var(--background2);
  }

  .menu hr{
    margin: 5px auto;
    color: var(--third);
  }



  .product-list{
    padding: 15px; 
    background-color: var(--background2);
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);  
    display: flex;
    flex-direction: row;
    border-bottom: solid 1px var(--secondary);
    max-height: 100px;
    margin-bottom: 5px;
    border-radius: 25px;
  }

  .product-simbol{
    display: flex;
    flex: 15%;
    align-items: center;
  }

  .product-simbol img{
    width: 75px;
    height: 75px;
    transition: transform .2s; /* Animation */
    cursor: pointer;
  }

  .product-simbol img:hover{
    transform: scale(1.1);
  }

  /* IMG-MODAL */

  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation */
  .modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close-modal:hover,
  .close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  

  .product-simbol h3{
    padding: 2px;
    margin-left: 20px;
  }

  /* DROPDOWN */

  .dropdown summary {
    list-style: none;
    list-style-type: none;
  }
  
  .dropdown > summary::-webkit-details-marker {
    display: none;
  }
  
  .dropdown summary:focus {
    outline: none;
  }
  
  
  .dropdown summary:focus {
    outline: none;
  }
  
  .details-info {
    position: absolute;
    margin: 20px 0 0 0;
    padding: 20px 0;
    /* width: var(--dropdown-width); */
    left: 96%;
    margin-left: calc((var(--dropdown-width) / 5)  * -4);
    box-sizing: border-box;
    z-index: 2;
    
    background: var(--dropdown-background);
    border-radius: 6px;
    list-style: none;
  }
  
  .details-info li {
    padding: 0;
    margin: 0;
  }
  
  .details-info li p {
    display: inline-block;
    padding: 10px 0.8rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
    color: var(--dropdown-color);
    text-decoration: none;
  }
  
  .details-info li p:hover {
    background-color: var(--dropdown-highlight);
    color: var(--primary);
  }
  
  /* Dropdown triangle */
  .details-info::before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: -8px;
    left: 90%;
    margin-left: -10px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--dropdown-background) transparent;
  }
  
  
  /* Close the dropdown with outside clicks */
  .dropdown > summary::before {
    display: none;
  }
  
  .dropdown[open] > summary::before {
      content: ' ';
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      z-index: 1;
  }

  /* WISH LIST */
  .wish-list{
    font-size: 25px;
    margin-right: 10px;
  }

  .product-brand{
    flex: 10%;
    margin: auto;
  }

  .product-name {
    flex: 45%;
    margin: auto;
  }

  .product-name h4{
    padding: 2px;
  }

  .product-name p{
    font-size: small;
  }

  .product-price{
    flex: 5%;
    margin: auto;
  }

  .product-price span{
    font-weight: bold;
    padding: 5px;
  }

  .product-option{
    flex: 15%;
    text-align: center;
    margin: auto;
  }

  /* QUANTITY */

  .form__group{
    display: flex;
  }

  .form__label {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1rem;
    margin: auto;
    margin-top: 0.7rem;
    display: block;
    transition: all 0.3s;
    transform: translateY(0rem);
  }
  
  .form__input {
    /* font-family: 'Roboto', sans-serif; */
    color: var(--primary);
    font-size: 1rem;
    margin: 3% auto;
    padding: 0.5rem;
    border-radius: 0.2rem;
    background-color: #ffffff;
    border: none;
    /* width: 90%; */
    display: block;
    border-bottom: 0.3rem solid transparent;
    transition: all 0.3s;
    text-align: center;
  }
  
  .form__input:placeholder-shown + .form__label {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-4rem);
    transform: translateY(-4rem);
  }

  .add_to_cart{
    margin: 5px;
    cursor: pointer;
    background-color: var(--success);
    width: 40px;
    height: 40px;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);  
  }

  .add_to_cart i{
    font-size: 30px;
    color: #ffffff;
    margin: 5px;
  }

  .product-stock{
    flex: 10%;
    text-align: end;
    margin: auto;
  }


  .product-list:hover{
    background-color: var(--secondary);
    color: #ffffff;
  }

  .product-details-button{
    display: none;
  }

  .product-detail-stock{
    display: none;
  }

  @media screen and (max-width: 830px) {

    .products{
        display: flex;
        flex-wrap: wrap;    
    }

    .product-list{
      flex-direction: column;
      max-height: 300px;
      width: 32%;
      margin: 5px auto;
      padding: 5px 0px;
      /* border-radius: 25px; */
      position: relative;
    }

    .wish-list{
        position: absolute;
        left: 3%;
        top: 3%;
        transform: translate(-3%, -3%);
        padding: 5px 7px;
        border-radius: 45px;
        background-color: var(--fourth);
        margin: 0;
        /* animation-name: sclae;
        animation-duration: 0.6s; */
    }

    /* @keyframes scale{
        0%{opacity: 0}
        70%{transform: scale(1.5)}
        100%{transform: scale(1)}
      } */

    .product-list:hover{
        background-color: var(--secondary);
        color: var(--primary);
      }

    .product-simbol{
        display: block;
      }

    .product-simbol h3{
        /* margin: 17px auto; */
        margin: 5px auto;
        margin-bottom: 0;
        text-align: center;
        font-size: 18px;
        /* border-bottom: solid 1px var(--third); */
    }

    .product-simbol img{
        /* width: 100%;
        height: 125px;
        border-top-right-radius: 25px;
        border-top-left-radius: 25px; */
        width: 80%;
        height: 130px;
        border-top-right-radius: 25px;
        border-top-left-radius: 25px;
        margin: 10% 10% 0% 10%;
    }

    .product-simbol img:hover{
        transform: none;   
    }

    .product-details-button{
        display: inline;
        float: right;
        padding-right: 5px;
        font-size: 15px;
    }

    .details-info {
        display: block;
    }

    .product-stock{
        display: none;
    }

    .product-detail-stock{
        display: inline;
        float: left;
        padding-left: 5px;
        font-size: 15px;
    }

    .product-brand{
        position: absolute;
        left: 50%;
        transform: translate(-50%);
    }

    .product-brand h3{
      font-size: 12px;
    }

    /* .product-brand h3:hover{
        color: var(--third);
    } */

    .product-name{
        font-size: 10px;
        text-align: center;

    }

    .product-name h3{
      height: 40px;
    }

    .product-name p, h5 {
        display: none;
    }

    .form__input {
        width: 100%;
        margin: 10px;
        padding: 5px;
    }
    

    .modal-content {
        width: 100%;
    }
    
  }
  
  @media screen and (max-width: 570px) {


    .header{
        margin-left: 80px;
    }

  

    .product-list{
        width: 48%;
    }
    
  }

  @media only screen and (max-width: 1280px) and (min-width: 831px){
    /* For mini-desktop: */

    .wish-list{
      margin-right: 5px;
    }

    .product-simbol h3{
      font-size: inherit;
      margin-left: 5px;
    }
    .product-brand h3{
      font-size: small;
    }

    .product-name h3{
      font-size: inherit;
    }

    .product-name p{
      font-size: x-small;
    }

    .cantitate_input{
      width: 100%;
    }

    .form__input{
      width: 100%;
      margin: 7px 0px;
    }

    .product-stock {
      flex: 5%;
    }
 
  }


 