.product-list {
  padding: 8px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
  row-gap: 12px;
  grid-auto-rows: minmax(max-content, auto);
  margin-bottom: 20px;
}

.product-list .product-card-mobile {
  padding: 12px;
  box-sizing: border-box;
  box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.11);
  border-radius: 8px;
  background-color: #ffffff;
  position: relative;
}

.product-list .product-card-mobile .discount-tag {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: #ebc726;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-list .product-card-mobile .discount-percentage {
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0.04em;
  color: #ee4d2d;
}

.product-list .product-card-mobile .discount-text {
  font-size: 10px;
  line-height: 11px;
  color: #ffffff;
  margin-top: 2px;
}

.product-list .product-card-mobile .discount-text:after {
  content: "";
  width: 0;
  height: 0;
  left: 0;
  bottom: -4px;
  position: absolute;
  border-color: transparent #b6d61dbd;
  border-style: solid;
  border-width: 0 16px 4px;
}

.product-list .product-card-mobile .img-wrapper {
  background: #f1fff3;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc((100vw / 2) - 24px - 24px - 8px);
}

.product-list .product-card-mobile img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.product-list .product-detail {
  justify-content: space-between;
}

.product-list .product-detail .detail-wrapper {
  min-height: 68px;
  display: flex;
  flex-direction: column;
}

.product-list .product-detail .product-name {
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.04em;
  color: #000000;
  margin: 12px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-list .product-detail .product-discount {
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.04em;
  color: #656565;
  margin-top: 6px;
  text-decoration: line-through;
}

.product-list .product-detail .product-price {
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.04em;
  color: #00cc5e;
}

.product-list .product-detail .product-description {
  display: none;
}

.product-list .product-detail .button {
  margin-top: 12px;
  height: 40px;
  font-size: 15px;
}

.product-list .product-detail .marketplace-button {
  display: none;
}

.product-pagination-mobile {
  margin: 20px 0 80px;
  width: 100%;
}

.product-pagination-mobile.button {
  margin: 28px auto 100px;
  width: calc(100vw - 48px);
  background-color: #ffffff;
  border: 2px solid #3e4444;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: bold;
}

/* responsive */

@media screen and (min-width: 768px) {
  .container-coffee {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    width: 100%;
  }

  .product-list {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .product-list .product-card-mobile {
    box-shadow: none;
    display: flex;
    border-top: 1px solid #707070;
    border-radius: 0;
    padding: 24px 0px;
    background-color: transparent;
  }

  .product-list .product-card-mobile:last-child {
    border-bottom: 1px solid #707070;
  }

  .product-list .product-card-mobile .product-detail {
    width: calc(100% - 200px);
  }

  .product-list .product-card-mobile .img-wrapper {
    height: 200px;
    width: 200px;
    margin-right: 40px;
    position: relative;
  }

  .product-list .product-card-mobile img {
    width: 100%;
    cursor: pointer;
  }

  .product-list .product-card-mobile .product-detail {
    display: flex;
  }

  .product-list .product-card-mobile .button {
    margin: auto 0 auto auto;
    width: 188px;
    min-width: 188px;
  }

  .product-list .product-card-mobile .product-name {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.04em;
  }

  .product-list .product-card-mobile .discount-tag {
    width: 36px;
    height: 36px;
  }

  .product-list .product-card-mobile .discount-text:after {
    border-width: 0 18px 4px;
  }

  .product-list .product-card-mobile .discount-percentage {
    font-size: 13px;
    margin-top: 4px;
  }

  .product-list .product-card-mobile .discount-text {
    font-size: 12px;
    margin-top: 4px;
  }

  .product-list .product-detail .price-wrapper {
    display: flex;
    gap: 16px;
  }

  .product-list .product-detail .product-discount {
    font-size: 15px;
  }

  .product-list .product-card-mobile .product-price {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.04em;
  }

  .product-list .product-detail .product-description {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #1f1f1f;
    margin-top: 12px;
    padding-right: 40px;
  }

  .product-list .product-detail .mobile-only {
    display: none;
  }

  .product-list .product-detail .marketplace-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .product-list .product-detail .marketplace-button .button {
    margin: 0;
  }

  .product-pagination-mobile {
    display: none;
  }
}
