 

 
  
   

  .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: 20%;
    align-items: center;
  }

  .product-simbol img{
    width: 50px;
    height: 50px;
    transition: transform .2s; /* Animation */
    cursor: pointer;
  }

  .product-simbol img:hover{
    transform: scale(1.2);
  }

  /* 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) / 2)  * -1);
    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: -10px;
    left: 50%;
    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: 30%;
    margin: auto;
  }

  .product-name h4{
    padding: 2px;
  }

  .product-name p{
    font-size: small;
  }

  .product-price{
    flex: 10%;
    margin: auto;
  }

  .product-price span{
    font-weight: bold;
    padding: 5px;
  }

  .product-option{
    flex: 20%;
    text-align: center;
    margin: auto;
  }

  /* QUANTITY */

  .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);
  }

  .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: 0;
      /* 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(--third);
        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: 5px 14%;
        margin-bottom: 0;
        text-align: center;
    }

    .product-simbol img{
        width: 100%;
        height: 150px;
        border-top-right-radius: 25px;
        border-top-left-radius: 25px;
    }

    .product-simbol img:hover{
        transform: none;   
    }

    .product-details-button{
        display: inline;
        float: right;
        padding: 5px;
        font-size: 20px;
    }

    .details-info {
        display: block;
    }

    .product-stock{
        display: none;
    }

    .product-detail-stock{
        display: inline;
        float: left;
        padding: 5px;
        font-size: 15px;
    }

    .product-brand{
        position: absolute;
        left: 50%;
        transform: translate(-50%);
    }

    /* .product-brand h3:hover{
        color: var(--third);
    } */

    .product-name{
        font-size: small;
        text-align: center;

    }

    .product-name p{
        display: none;
    }

    .form__input {
        width: 70%;
    }
    

    .modal-content {
        width: 100%;
    }
    
  }
  
  @media screen and (max-width: 570px) {



    .header{
        margin-left: 80px;
    }

  

    .product-list{
        width: 48%;
    }

    
   
    
  }


 