/* 商品敘述 */
.l-product {
  margin: 60px 0 104px 0;
}

.product-card__head {
  padding: 16px 0 30px 0;
  border-bottom: solid 1px #c9c9c9;
}

.product-card__title-group {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.product-card__btn-heart-pc {
  font-size: 20px;
  color: #ffad4f;
  margin-bottom: 16px;
}

.product-card__btn-heart-m {
  font-size: 20px;
  color: #ffad4f;
  display: none;
}

.product-card__countdown {
  background: url("/assets/img/product/discount-bg.png"), #111;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 2px;
}

.product-countdown__bg {
  display: inline-block;
  border-radius: 2px;
  background-image: linear-gradient(
    to top,
    #6d6d6d,
    #6d6d6d 50%,
    #343434 50%,
    #343434
  );
  font-size: 28px;
  padding: 6px;

  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-size: 28px;
  font-weight: bold;
  width: 28px;
  text-align: center;
  color: #ffad4f;
  margin-left: 6px;
}

.product-countdown__bg + .product-countdown__bg {
  margin-left: 2px;
}

.product-countdown__text {
  font-size: 18px;
  font-weight: 500;
  margin-left: 6px;
}

.product-card__price-group {
  display: flex;
  background: #f8f8f8;
  padding: 16px 18px;
  align-items: end;
}

.product-card__price {
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
}

.product-card__price:first-letter {
  font-size: 18px;
  line-height: 18px;
}

.product-card__price--discount {
  color: #ee5151;
}

.product-card__deleted-price {
  font-size: 18px;
  line-height: 18px;
  padding: 0 6px 0 0;
  color: #333;
  text-decoration: line-through;
}

.product-card__body {
  margin-top: 30px;
}

.details__li {
  margin-bottom: 22px;
}

.details__lable {
  width: 64px;
  display: inline-block;
  margin-right: 32px;
}

.details__quantity {
  display: inline-flex;
}

.quantity__number {
  line-height: 40px;
  font-size: 18px;
  font-weight: bold;
  padding: 0 16px;
}

.quantity__button {
  width: 40px;
  line-height: 40px;
  border: solid 1px #888;
  text-align: center;
  vertical-align: middle;
}

.quantity__button--disable {
  opacity: 0.4;
}

.product-card__btn-group {
  padding-top: 16px;
  display: flex;
}

.product-card__btn {
  height: 56px;
  line-height: 56px;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 16px;
  width: 100%;
}

.product-card__btn--add-cart {
  border: 1px solid #111;
  margin-right: 30px;
}

.product-card__btn--buy {
  background: #ffad4f;
}

@media (max-width: 576px) {
  .product-card__btn-group {
    flex-direction: column;
  }

  .product-card__title {
    margin-bottom: 22px;
  }

  .product-card__btn--add-cart {
    margin-right: 0px;
  }

  .product-card__btn-heart-pc {
    display: none;
  }

  .product-card__btn-heart-m {
    display: block;
  }
}

/* === 商品 左邊圖 === */

.carousel__img {
  border-radius: 2px;
  border: solid 1px #ddd;
}

.carousel__img--big {
  height: 328px;
  width: 100%;
  object-fit: contain;
}

.carousel__img--small {
  height: 80px;
  width: 123px;
}

.carousel__stage {
  display: flex;
  justify-content: space-between;
  margin: 16px 0 24px 0;
  width: 100%;
  position: relative;
}

.carousel__nav {
  width: 30px;
  height: 56px;
  line-height: 56px;
  vertical-align: middle;
  text-align: center;
  border-radius: 2px;
  color: white;
  background-color: #ddd;
  font-size: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__nav--prev {
  left: 0;
}

.carousel__nav--next {
  right: 0;
}

.sns {
  display: flex;
}

.sns__icon {
  font-size: 28px;
}

.sns__icon + .sns__icon {
  margin-left: 16px;
}

/* 產品介紹 */

.intro__head {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  background: var(--black-100);
  border-radius: 2px;
}

.intro__body {
  padding: 40px 24px;
}
