.products-container {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  padding: 50px 0;
  gap: 50px;
  justify-content: space-evenly;
}
.products-container .product-item .product-imgs-wrapper {
  height: 300px;
  width: 300px;
  border: 5px solid rgb(68, 67, 67);
  border-radius: 80px;
}
.products-container .product-item .product-imgs-wrapper .product-imgs {
  width: 100%;
  height: 100%;
}
.products-container .product-item .product-imgs-wrapper .product-imgs img {
  width: 100%;
  height: 100%;
  display: block;
}
.products-container .product-item .product-desc {
  display: flex;
  text-transform: uppercase;
  justify-content: space-evenly;
  margin: 0 auto;
  margin-top: 20px;
  border: 2px solid black;
  padding-right: 20px;
  background-color: papayawhip;
  border-radius: 150px;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 15px;
}

.section_1 {
  display: flex;
  justify-content: space-evenly;
  padding: 3rem 0;
}
.section_1 .cat-item .bag_icon {
  background-color: rgb(219, 221, 221);
  border-radius: 100px;
  border: 2px solid black;
  height: 300px;
  width: 300px;
  display: block;
  margin-bottom: 1rem;
}
.section_1 .cat-item .icon_name {
  border-radius: 50px;
  display: flex;
  justify-content: space-around;
}
.section_1 .cat-item .icon_name a {
  text-decoration: none;
}
.section_1 .cat-item .icon_name a:hover {
  padding-right: 20px;
  background-color: rgb(228, 187, 133);
  border-radius: 0px 33px 30px 0;
}
.section_1 .cat-item .icon_name h4 {
  border: 20px solid rgb(129, 100, 61);
  background-color: rgb(129, 100, 61);
  border-radius: 0px 200px 200px 0;
  text-transform: uppercase;
  padding-right: 20px;
  color: white;
  cursor: pointer;
}

@media (max-width: 500px) {
  .section_1 {
    display: block;
  }
  .section_1 .cat-item {
    margin-bottom: 20px;
  }
  .section_1 .cat-item .bag_icon {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .products-container {
    display: block;
    width: 100%;
  }
  .products-container .product-item {
    margin: 0 auto;
  }
  .products-container .product-item:not(:last-child) {
    margin-bottom: 3rem;
  }
}/*# sourceMappingURL=products.css.map */