.catalog {
  width: 100%;
  margin-top: 160px;
  margin-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .catalog {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.catalog__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 35px;
}

@media screen and (max-width: 1280px) {
  .catalog__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .catalog__container {
    margin-top: 20px;
  }
}

@media screen and (max-width: 630px) {
  .catalog__container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
.section_catalog .section__content:not(:last-child) {
  margin-bottom: 30px;
}
.section_catalog .section__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px -15px 0;
}

.product_catalog {
  width: 50%;
  padding: 15px;
}

.product_catalog .product__container {
  height: 100%;
  background-color: rgba(244, 243, 245, 1);
  border-radius: 20px;
  padding: 5px;
}
.product_catalog .product__container:hover :is(.headline-h5) {
  color: #ef4824;
}
.product_catalog .product__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.product_catalog .product__content {
  padding: 25px 50px 25px 20px;
}
.product_catalog .product__title {
  max-width: 340px;
}
.product_catalog .product__description {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(43, 41, 39, 0.55);
  margin-top: 15px;
  margin-bottom: 15px;
}
.product_catalog .product__price {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  color: rgba(239, 72, 36, 1)
}

.catalog__card {
  height: 100%;
  background-color: rgba(244, 243, 245, 1);
  border-radius: 20px;
  padding: 30px 40px 25px 30px;
  position: relative;
}

.catalog__card:hover .headline-h5 {
  color: #ef4824;
}

@media screen and (max-width: 900px) {
  .catalog__card {
    padding: 10px;
  }

  .section_catalog .section__wrapper {
    margin: 20px -10px 0;
  }
  .product_catalog {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .catalog__card {
    height: 235px;
    border-radius: 10px;
    padding: 15px;
  }

  .product_catalog {
    width: 100%;
  }
  .product_catalog .product__image {
    height: 350px;
  }
}
@media screen and (max-width: 578px) {
  .product_catalog .product__image {
    height: 285px;
  }
}

@media screen and (max-width: 375px) {
  .catalog__card {
    padding: 10px;
  }
}

.catalog__card > img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 30px auto 30px auto;
}

@media screen and (max-width: 900px) {
  .catalog__card > img {
    width: 120px;
    height: 120px;
    margin: 15px auto 0 auto;
  }
}

.catalog__card > .headline-h5 {
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .catalog__card > .headline-h5 {
    font-size: 18px !important;
    line-height: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .catalog__card > .headline-h5 {
    margin: 25px 0 0 0;
  }
}

@media screen and (max-width: 445px) {
  .catalog__card > .headline-h5 {
    margin: 10px 0 0 0;
  }
}

@media screen and (max-width: 375px) {
  .catalog__card > .headline-h5 {
    margin: 25px 0 0 0;
    font-size: 16px !important;
    line-height: 16px !important;
  }
}

.catalog__card > .headline-h5:hover {
  color: rgba(239, 72, 36, 1);
  cursor: pointer;
}

.card__quantity {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(239, 72, 36, 1);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 1);
  width: 98px;
  height: 30px;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .card__quantity {
    height: 25px;
    font-size: 10px;
    top: 7px;
    right: 7px;
    width: 84px;
  }
}

.catalog-button {
  width: 100%;
  height: 60px;
  margin-top: 40px !important;
}

@media screen and (max-width: 768px) {
  .catalog-button {
    height: 55px;
    margin-top: 20px !important;
  }
}
