* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Raleway", serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6;
    color: rgb(69, 9, 18);
  }

  .show-product{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center; 
    align-items: center;
  }
  .show-product-container{
    width: 750px;
    height: 70%;
    border-radius: 10px;
    border: 1px solid white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .show-product-img, .show-product-description{
    width: 50%;
    height: 80%;
    padding: 15px;    
  }

  .show-product-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .show-product-description{
    font-family: "Raleway", serif;
    text-align: center;
    color: white;
   /* text-shadow: 2px 2px 5px red;*/
  }

  .measures-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .measures{
    font-size: 18px;
    width: 55px;
    height: 45px;
    background-color: rgb(122, 15, 31);
    margin: 5px;
    border-radius: 10px;
    text-align: center;

  }

  .btn {
    margin-top: 15px;
    display: inline-block;
    font-family: "Raleway", serif;
    background: rgba(255, 255, 255, 0);
    font-size: 20px;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 3px solid rgb(122, 15, 31);
    border-radius: 15px;
  }
  
  .btn:hover {
    background: rgb(122, 15, 31);
    color: white;
    transition: 0.5s;
  }

  .close{
    font-size: 20px;
    text-decoration: underline;
  }

  .close:hover{
    color: rgba(255, 255, 255, 0.504);
    cursor: pointer;
  }
  


  .img-logo{
    width: 200px;
    margin: auto;
  }
  .img-logo img{
    width: 200px;
    height: 100px;
  }
  /**/
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .browser{
    width: 350px;
    height: 40px;
    margin: auto;
    margin-top: 10px;
    
  }

  .categories{
    width: 200px;
    height: 40px;
    margin: auto;
    margin-top: 15px;
    opacity: 0;
  }
  .browser input, .categories select{
    width: 100%;
    height: 100%;
    border: 2px solid rgba(128, 128, 128, 0.555);
    border-radius: 10px;
    font-family: "Raleway", serif;
    padding: 10px;
    color: rgb(69, 9, 18);
    font-size: 15px;
  }
  .browser input{
    border-radius: 17px;
  }

  .categories select{
    padding-right: 15px;
  }

  .products{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
    padding: 20px;
  }

  .product{
    background-color: #f4f4f4;
    display: block;
    width: 315px;
    height: 415px;
    padding: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    margin: 15px;
  }

  .product:hover img{
    transform: scale(1.05);

  }

  .img-produtc{
    width: 100%;
    height: 300px;
    overflow: hidden;    
  }

  .img-produtc img{
    display: block;
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease;
    /*object-fit: cover;*/
  }

  .name-product{
    margin-top: 15px;
    width: 100%;
    font-size: 17px;
    text-align: center;
  }

 /* Responsive Design */
 @media (max-width: 810px) {
  .show-product-container{
    width: 90%;
    
    
  }
 }

 @media (max-width: 670px) {
    .show-product-container{
      overflow-y: scroll;
      height: 90%;
    }

    .show-product-description{
      margin: auto;
      width: 90%;
      height: 50%;
      padding: 15px;    
    }

    .show-product-img{
      width: 350px;
      height: 350px;
      margin: auto;
    }
 }

 @media (max-height: 780px) {
  .space{
    display: none;
  }
 }