#containers {
  padding-top: 100px;
  display: flex;
  flex-direction: row;
}

.tag-title {
  text-align: center;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.search-text {
  text-align: center;
}

.product-sold-out {
  height: 20px;
}

.sold-out {
  color: rgb(95, 186, 113);
  margin: 0;
}

.top-padding {
  margin-bottom: 21px;
}


.product-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.product-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 350px;
    height: auto;
    padding-bottom: 1%;
    word-break: break-word;
}

.registered-product-list {
  width: 75%;
}

.new-product-image {
  width: 300px;
  height: 300px;
}

.product-image {
  width: 200px;
  height: 200px;
  margin-top: 10px; 
  margin-bottom: 10px;
}

.type,
.price {
  margin-top: 10px;
  margin-bottom: 10px;
}

.links {
  width: 250px;
  height: 250px;
  background-color: red;
  border: 5px solid red;
}

.view-product {
  background-color: slateblue;
  color:white;
  width: 75px;
  height: 30px;
  border: none;
  border-radius: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'Short Stack';
}

.highlight-product {
  background-color: rgb(218, 218, 0);
  color:white;
  width: 50px;
  height: 30px;
  border: none;
  border-radius: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'Short Stack';
}

.slateblue-hover:hover {
  background-color: rgb(125, 114, 198) !important;
} 

.yellow-hover:hover {
  background-color: rgb(200, 200, 0) !important;
} 

.brightness {
  filter: brightness(75%);
}

/* --- Janela reduzida --- */

@media screen and (max-width: 1200px) {

  #containers {
    flex-direction: column;
 }

.registered-product-list {
    width: 100%;
    height: auto;
    overflow-y: hidden;
}

.product-count {
  padding-left: 6.5%;
  padding-right: 6.5%;
  margin-bottom: 30px;
}

}

@media screen and (max-width: 800px) {
  .product-list {
    flex-direction: column;
  }
}

@media screen and (max-width: 500px) {

.tag-title {
  font-size: 22.5px;
}

.product-count {
  padding-left: 0;
  padding-right: 0;
}

}

@media screen and (max-width: 320px) {

  .tag-title {
    font-size: 18.5px;
 }

  #containers {
      width: 111.75%;
  } 

}