/* 사용자 공통 스타일 파일입니다. 공통으로 적용할 스타일 코드를 작성해주세요. */
/* 상품진열 M-Point 이미지 스티커 크기 확대 */
display-product .product-thumb__sticker {
  display: inline-block !important;
  line-height: 0 !important;
  margin-top: 6px !important;
}

display-product .product-thumb__sticker img,
display-product .product-thumb__sticker-img {
  width: 128px !important;
  min-width: 128px !important;
  max-width: 128px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* 모바일 보정 */
@media (max-width: 767px) {
  display-product .product-thumb__sticker img,
  display-product .product-thumb__sticker-img {
    width: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;
  }
}

/* 상품상세 M-Point 스티커: 가격과 배송비 사이 */
.product-summary__mpoint-sticker {
  margin: 14px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-summary__mpoint-sticker-item {
  display: inline-block;
  line-height: 0;
}

.product-summary__mpoint-sticker-img {
  width: 170px;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .product-summary__mpoint-sticker {
    margin: 10px 0 14px;
  }

  .product-summary__mpoint-sticker-img {
    width: 130px;
  }
}
