/* Product List */
.product-list-wrapper {
  padding-top: 64px;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  row-gap: 64px;
}

.product-card {
  width: 384px;
  border-radius: 4px;
  overflow: hidden;
}

.product-card__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.product-card__image {
  width: 100%;
  height: 216px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__info {
  width: 100%;
  padding-top: 20px;
  box-sizing: border-box;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2.5px 7.5px;
  background: #8B6E00;
  border-radius: 4px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 13.5px;
  margin-bottom: 12px;
}

.product-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  color: #353535;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.375;
  margin: 0;
}

.product-card__price-tax {
  color: #858585;
}

.product-card__arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.product-card__link:hover {
  opacity: 0.9;
}

@media screen and (max-width: 1200px) {
  .product-list {
    gap: 12px;
    row-gap: 40px;
  }
  .product-card {
    width: calc(50% - 6px);
  }
}

@media screen and (max-width: 890px) {

  .product-card__price {
    display: flex;
    flex-direction: column;
  }
  .product-card__info {
    padding-top: 8px;
  }
  .product-card__badge {
    margin-bottom: 4px;
    height: auto;
    padding: 2.5px 7.5px;
  }
}

@media screen and (max-width: 400px) {
  .product-card__image {
    height: 98px;
  }
}
