/* BASIC css start */
/* =========================================================
   IBLANK 모바일 상품상세 전체 CSS
   - 기존 중복 선택자 제거
   - 첨부된 모바일 레이아웃 기준 재정리
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

#container,
#contents,
.shopdetail,
.shopdetailItem,
.prd-detail {
  max-width: 100%;
}

.shopdetail {
  background: #fff;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* 공통 제목 */
.shopdetail h3 {
  margin: 0 0 10px;
  padding: 10px 15px;
  background: #fff;
  color: #111;
  font-weight: 700;
}

.shopdetail h3 .fa {
  float: right;
  font-size: 1.5em;
}

/* =========================================================
   상단 상품 이미지
   ========================================================= */
.shopdetail .shopdetailInfo .shopdetailInfoTop {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: #fff;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .sub-slide {
  grid-column: 1 / -1;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f6f6f6;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .sub-slide .swiper-slide {
  padding: 0;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .sub-slide figure {
  margin: 0;
  padding: 0;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .sub-slide .swiper-wrapper,
.shopdetail .shopdetailInfo .shopdetailInfoTop .sub-slide .swiper-slide,
.shopdetail .shopdetailInfo .shopdetailInfoTop .sub-slide figure {
  height: 100%;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .sub-slide figure {
  margin: 0;
  padding: 0;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .sub-slide figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sub-slide .swiper-button-next,
.sub-slide .swiper-button-prev {
  display: none;
}

/* 썸네일 아래 검은색 바 내비게이션 */
.sub-pagination-out {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  min-height: 20px;
  margin: 0;
  padding: 8px 16px 10px;
  box-sizing: border-box;
}

.sub-pagination-out .swiper-pagination-bullet {
  width: 18px;
  height: 3px;
  margin: 0 !important;
  border-radius: 0;
  background: #d6d6d6;
  opacity: 1;
  transition: width .2s ease, background-color .2s ease;
}

.sub-pagination-out .swiper-pagination-bullet-active {
  width: 30px;
  background: #111;
}

/* 자동 구매 배지 */
#autoPurchaseBadge {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: max-content;
  margin: 8px 0 12px 16px;
  padding: 6px 10px;
  border-radius: 18px;
  background: #22355e;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  white-space: nowrap;
  animation: floatBadge 2.5s ease-in-out infinite;
}

.purchase-badge::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #22355e;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* 관심상품 / 공유 */
.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom {
  position: relative;
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 16px 4px 12px;
  text-align: right;
  font-size: 20px;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #888;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom .wish-heart {
  display: block;
  color: #8a8a8a;
  font-size: 28px;
  line-height: 22px;
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom div.collapse {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 120;
  width: 100vw;
  height: auto;
  padding: 20px 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, .15);
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom div.collapse.show {
  display: block;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom div.collapse .title {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.4;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom div.collapse .close-btn {
  position: absolute;
  top: 0;
  right: 15px;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul li {
  flex: 0 0 20%;
  text-align: center;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul li a {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul li a.facebook { background-image: url(http://iblank.img13.kr/sns-icons/facebook.png); }
.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul li a.twitter { background-image: url(http://iblank.img13.kr/sns-icons/twitter.png); }
.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul li a.kakaotalk { background-image: url(http://iblank.img13.kr/sns-icons/kakaotalk.png); }
.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul li a.kakaostory { background-image: url(http://iblank.img13.kr/sns-icons/kakaostory.png); }

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul li a.share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ccc;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .shopdetailButtonBottom ul li a.share::before {
  content: "\f0c1";
  font-family: "FontAwesome";
  font-size: 30px;
}

/* 상품명 */
.shopdetail .shopdetailInfo .shopdetailInfoTop .name-wrap {
  grid-column: 1 / -1;
  padding: 0 16px 12px;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .name-wrap h2 {
  margin: 0;
  padding: 4px 0 4px;
  color: #111;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.3px;
}

.shopdetail .shopdetailInfo .shopdetailInfoTop .name-wrap .subname {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   가격 / 상품설명 / 배송비
   ========================================================= */
.shopdetail .shopdetailInfo .shopdetailInfoBottom {
  background: #fff;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoValue {
  position: relative;
  margin: 0 16px;
  padding: 2px 0 0;
}

/* 판매가 + 소비자가 한 줄 */
.mobile-price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
  padding: 6px 0 19px;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
}

.mobile-sale-price {
  color: #111;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.4px;
}

.mobile-sale-price .won {
  margin-left: 1px;
  font-size: 15px;
  font-weight: 600;
}

.mobile-consumer-price {
  color: #999;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  text-decoration-thickness: 1px;
}

.mobile-price-row .disc_percent {
  color: #777;
  font-size: 11px;
  font-weight: 400;
}

/* 상품설명 / 배송비 / 기타 정보 행 */
.mobile-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #e8e8e8;
}

.mobile-info-row .shopdetailInfoName {
  flex: 0 0 80px;
  width: 80px;
  color: #777;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.mobile-info-row .shopdetailInfoCont {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  color: #333;
  font-size: 15px;
  font-weight: 500;  
  line-height: 1.45;
  word-break: keep-all;
}

/* 상품설명 */
.mobile-description-row .shopdetailInfoCont {
  padding-right: 4px;
}

/* 배송비 */
.mobile-delivery-row {
  align-items: center;
}

.mobile-delivery-row .shopdetailInfoCont {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.mobile-delivery-row .shopdetailInfoCont a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #222;
  font-size: 15x;
  font-weight: 500;  
  line-height: 1.4;
}

.mobile-delivery-row .fa-info-circle {
  color: #333;
  font-size: 14px;
}

.mobile-delivery-row .region {
  margin-left: 0;
}

.shopdetailInfoDelivery {
  padding: 10px 16px;
}

/* =========================================================
   색상정보
   ========================================================= */
.mobile-color-info {
  margin: 0 16px;
  padding: 16px 0 18px;
  border-bottom: 1px solid #e8e8e8;
}

.mobile-color-title {
  margin: 0 0 10px;
  color: #444;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.mobile-color-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 9px;
  column-gap: 0;
}

.mobile-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 12px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #444;
  cursor: pointer;
  transition: margin-right .35s ease;
}

.mobile-color-chip.is-active {
  margin-right: 0;
}

.mobile-color-dot {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  box-sizing: border-box;
}

.mobile-color-selected-name {
  display: inline-block;
  align-self: center;
  max-width: 0;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  color: #111;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition:
    max-width .35s ease,
    margin-left .35s ease,
    margin-right .35s ease,
    opacity .25s ease;
}

.mobile-color-selected-name.is-visible {
  max-width: 160px;
  margin-left: 6px;
  margin-right: 12px;
  opacity: 1;
}

.mobile-color-chip.is-active .mobile-color-dot {
  border: 1px solid #d3d3d3;
  box-shadow: none;
}

.mobile-color-selected {
  margin-top: 10px;
  color: #777;
  font-size: 11px;
}

.mobile-color-selected strong {
  color: #111;
  font-weight: 700;
}

/* =========================================================
   옵션 / 수량 / 총금액
   ========================================================= */
.shopdetail .shopdetailInfo .shopdetailInfoBottom .option_area.fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  animation: qbuy 150ms linear 1 normal;
}

@keyframes qbuy {
  from { bottom: -65px; }
  to { bottom: 0; }
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .option_area.fixed .option_tk {
  height: 150px;
  padding: 14px 0;
  overflow-y: auto;
  background: #fff;
}

.fixed-btn1 {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 51;
  display: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #191919;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
}

.fixed-btn1.fixed {
  position: fixed;
  display: block;
}

.option_area.fixed .fixed-btn1.fixed {
  position: relative;
  display: block;
  height: auto;
}

.fixed-btn1 .btn_option {
  position: absolute;
  top: -19px;
  left: 50%;
  margin-left: -34px;
}

.fixed-btn1 a.buy_a {
  display: block;
  height: 50px;
  margin: 9px 14px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  box-sizing: border-box;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 16px;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect p:last-child {
  margin-bottom: 0;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .shopdetailInfoName {
  flex: 0 0 76px;
  width: 76px;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0 !important;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .shopdetailInfoCont {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin-left: 0;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .shopdetailInfoCont select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #dedede;
  border-radius: 2px;
  background: #fff;
  color: #333;
  font-size: 14px;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .opt-com {
  justify-content: flex-end;
  text-align: right;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .add-option-sel {
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .add-option select {
  margin-bottom: 10px;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .add-option .shopdetailInfoName {
  padding-top: 11px;
  vertical-align: top;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .shopdetailInfoCount .txt-qnty {
  width: 40px !important;
  height: 32px;
  padding: 0;
  border: 1px solid #ddd;
  text-align: center;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .shopdetailInfoCount .fa-plus,
.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .shopdetailInfoCount .fa-minus {
  width: 30px;
  height: 30px;
  background: #bbb;
  color: #fff;
  font-size: 11px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoSelect .shopdetailInfoCount .fa-plus {
  margin: 0 4px;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoMultiSelect {
  background: #fff;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailInfoMultiSelect .MK_optAddWrap #MK_innerOptScroll {
  margin: 13px 16px 0;
  padding: 0 16px;
  background: #f3f3f3;
}

.MK_optAddWrap .MK_inner-opt-cm li {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid #c7c7c7;
}

.MK_optAddWrap .MK_inner-opt-cm li:last-child { border-bottom: 0; }
.MK_optAddWrap .MK_inner-opt-cm .MK_p-name { display: block; padding-right: 30px; }
.MK_optAddWrap .MK_inner-opt-cm .MK_qty-ctrl { margin-top: 8px; }
.MK_optAddWrap .MK_inner-opt-cm .MK_qty-ctrl input[type="tel"] { width: 50px; padding: 0 6px; }
.MK_optAddWrap .MK_inner-opt-cm .MK_btn-del { position: absolute; top: 12px; right: 0; }
.MK_optAddWrap .MK_inner-opt-cm .MK_btn-del img { width: 20px; }
.MK_optAddWrap .MK_inner-opt-cm .MK_price { position: absolute; right: 0; bottom: 17px; font-size: 1.3em; }

.MK_optAddWrap .MK_inner-opt-cm .MK_qty-ctrl .btn-type-02 {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #000;
  color: #fff;
  line-height: 35px;
  text-align: center;
  vertical-align: middle;
}

.MK_optAddWrap .total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 17px 16px;
  border-top: 1px solid #ededed;
  font-size: 13px;
  text-align: right;
}

.MK_optAddWrap .MK_total {
  margin-left: auto;
  color: #111;
  font-size: 22px;
  font-weight: 700;
}

.MK_optAddWrap .MK_txt-won {
  font-size: 17px;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailTotal {
  padding: 15px 16px;
  background: #fff;
  font-size: 1.2em;
  text-align: right;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailTotal em {
  margin-left: 16px;
  color: #111;
  font-size: 1.333em;
}

.buy_on {
  display: none;
  padding: 10px 14px;
  background: #fff;
  text-align: center;
}

.buy_on a {
  display: inline-block;
  width: 48%;
  height: 38px;
  margin: 0;
  border: 1px solid #191919;
  background: #fff;
  color: #191919;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 38px;
  box-sizing: border-box;
}

.buy_on a.buy {
  background: #191919;
  color: #fff;
}

.buy_on a.buy img {
  width: 15px;
  height: auto;
  padding-right: 6px;
  vertical-align: middle;
}

/* =========================================================
   구매 버튼 / 네이버페이
   ========================================================= */
.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton {
  padding: 0 16px 20px;
  text-align: center;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton .shopdetailButtonTop a {
  display: inline-block;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  box-sizing: border-box;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton .shopdetailButtonTop a.buy {
  width: 100%;
  height: 42px;
  margin: 12px 0 8px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  line-height: 42px;
  font-weight: 700;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton .shopdetailButtonTop a.cart,
.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton .shopdetailButtonTop a.wish {
  width: 49%;
  height: 38px;
  border: 1px solid #191919;
  background: #fff;
  color: #191919;
  line-height: 38px;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton .shopdetailButtonTop a.cart { float: left; }
.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton .shopdetailButtonTop a.wish { float: right; }

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton .shopdetailButtonBottom {
  margin: 20px 0;
}

.shopdetail .shopdetailInfo .shopdetailInfoBottom .shopdetailButton .shopdetailButtonBottom img {
  width: 45px;
  height: auto;
  margin: 0 2px;
}

#nhn_btn,
#payco_order_btn {
  padding-top: 10px;
  padding-bottom: 20px;
}

.shopdetail .okdgg-checkout {
  margin-top: 15px;
}

.shopdetail .okdgg-checkout img {
  max-width: 90%;
  height: auto;
}

/* =========================================================
   혜택 안내
   ========================================================= */
.mobile-benefit-guide {
  margin: 20px 0 0;
  padding: 0 16px 36px;
  background: #fff;
}

.mobile-benefit-guide h3 {
  margin: 0 0 24px;
  padding: 0 0 10px;
  border-bottom: 1px solid #aaa;
  background: #fff;
  color: #222;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.mobile-benefit-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.mobile-benefit-item {
  position: relative;
  flex: 1 1 25%;
  min-width: 0;
  padding: 0 5px;
  text-align: center;
  box-sizing: border-box;
}

.mobile-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 10px;
}

.mobile-benefit-icon img {
  display: block;
  width: auto;
  max-width: 48px;
  max-height: 44px;
  height: auto;
}

.mobile-benefit-item p {
  margin: 0;
  color: #222;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -.2px;
  word-break: keep-all;
}

/* =========================================================
   쿠폰 / 관련상품
   ========================================================= */
.shopdetail .shopdetailCoupon {
  margin-top: 15px;
}

.shopdetail .shopdetailCoupon .shopdetailCouponGet {
  padding: 0 15px;
}

.shopdetail .shopdetailCoupon .shopdetailCouponGet .image_src {
  max-width: 100%;
  padding-bottom: 5px;
}

.shopdetail .shopdetailCoupon .shopdetailCouponGet li dl {
  position: relative;
  height: 34px;
  padding: 10px 0 10px 92px;
  border-bottom: 1px dashed #cbcbcb;
  background: url("/images/d3/m_04/bg_coupon@2x.gif") no-repeat left center;
  background-size: 81px auto;
}

.shopdetail .shopdetailCoupon .shopdetailCouponGet li:last-child { border-bottom: 0; }
.shopdetail .shopdetailCoupon .shopdetailCouponGet .MS_coupon dt { position: absolute; top: 10px; left: 0; width: 82px; color: #fff; text-align: center; }
.shopdetail .shopdetailCoupon .shopdetailCouponGet .MS_coupon dt strong { font-weight: 400; }
.shopdetail .shopdetailCoupon .shopdetailCouponGet .MS_coupon h4 { font-weight: 700; }

.shopdetailRelation {
  margin-bottom: 30px;
}

/* =========================================================
   비슷한 상품 모바일 슬라이드
   ========================================================= */
.mobile-similar-products {
  width: 100%;
  margin: 0;
  padding: 80px 0 60px;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
}

.mobile-similar-products .mobile-similar-title {
  margin: 0;
  padding: 0 16px 20px;
  background: transparent;
  color: #444;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -.4px;
  text-align: left;
}

.mobile-similar-swiper {
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.mobile-similar-swiper .swiper-wrapper {
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-similar-swiper .mobile-similar-item {
  height: auto;
  margin: 0;
  padding: 0;
  background: #fff;
  box-sizing: border-box;
}

.mobile-similar-link {
  display: block;
  width: 100%;
  color: #111;
  text-decoration: none;
}

.mobile-similar-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  box-sizing: border-box;
}

.mobile-similar-image img {
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.mobile-similar-info {
  display: block;
  min-height: 65px;
  padding: 12px 6px 10px;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
}

.mobile-similar-name {
  display: block;
  overflow: hidden;
  margin: 0 0 3px;
  color: #222;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-similar-price {
  display: block;
  color: #222;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}

/* =========================================================
   후기 / 상품정보 / 배송교환 고정 탭
   ========================================================= */
/* 상품상세 탭이 고정될 때 공통 모바일 헤더 숨김 */
#header {
  transition: transform .18s ease, opacity .18s ease;
}

body.iblank-detail-tabs-fixed #header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}   
   
/* =========================================================
   후기 / 상품정보 / 배송교환 / 상품문의 고정 탭
   ========================================================= */
.mobile-detail-tab-wrap {
  position: relative;
  width: 100%;
  min-height: 48px;
  background: #fff;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #dcdcdc;
  box-sizing: border-box;
}

.mobile-detail-tab-wrap.is-fixed .mobile-detail-tabs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  box-sizing: border-box;
}

.mobile-detail-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  box-sizing: border-box;
}

.mobile-detail-tabs a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 48px;
  margin: 0;
  padding: 0 4px;
  color: #222;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}

.mobile-detail-tabs a span {
  display: block;
  white-space: nowrap;
}

.mobile-detail-tabs a.atv {
  font-weight: 700;
}

.mobile-detail-tabs a.atv::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 2px;
  background: #111;
}

.detail-section {
  position: relative;
  background: #fff;
  scroll-margin-top: 48px;
}

.detail-section-review {
  padding-top: 0;
}

.detail-section-info,
.detail-section-policy {
  border-top: 8px solid #f5f5f5;
}

.detail-section-head {
  padding: 18px 16px 12px;
  color: #111;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}



/* 기존 상세 팝업 버튼 숨김 */
.shopdetail .shopdetailItem .shopdetailItemPopup {
  margin: 0;
  padding: 0 16px;
  text-align: center;
}

.shopdetail .shopdetailItem .shopdetailItemPopup > a,
.shopdetail .shopdetailItem .shopdetailItemPopup .shopdetailItemZoom {
  display: none;
}

/* 상세 콘텐츠 */
.prd-detail {
  text-align: center;
}

.shopdetail .shopdetailItem .shopdetailImage img {
  max-width: 100% !important;
  height: auto !important;
}

.shopdetail .shopdetailItem .shopdetailImage table {
  width: 100% !important;
  table-layout: auto !important;
}

.shopdetail .shopdetailItem .shopdetailImage object,
.shopdetail .shopdetailItem .shopdetailImage iframe {
  width: 100% !important;
}

.shopdetail .shopdetailItem .shopdetailNotify {
  margin-top: 24px;
}

.shopdetail .shopdetailItem .shopdetailNotify .shopdetailNotifyInfo {
  padding: 0 15px;
}

.shopdetail .shopdetailItem .shopdetailNotify .shopdetailNotifyInfo dt {
  margin-bottom: 2px;
  font-weight: 700;
}

.shopdetail .shopdetailItem .shopdetailNotify .shopdetailNotifyInfo dd {
  margin: 0 0 25px 6px;
}

.policy-banner {
  margin: 0 0 14px !important;
  padding: 0 16px !important;
}

.mobile-policy-box {
  margin-bottom: 20px;
}

/* 접기/펼치기 */
.collapse.detail {
  height: 100px;
  overflow: hidden;
  opacity: .5;
}

.collapse.detail.show {
  height: auto;
  opacity: 1;
}

.btn-collapse {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 90%;
  margin: -1px auto 0;
  padding: 15px 0 40px;
  border: 1px solid #ccc;
  border-radius: 0 0 5px 5px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.btn-collapse::after {
  content: attr(data-open);
  margin-left: 6px;
}

.btn-collapse.show::after {
  content: attr(data-close);
}

.btn-collapse::before {
  content: "\f107";
  position: absolute;
  bottom: 5px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transform: translateX(-15px);
  font-family: "FontAwesome";
}

.btn-collapse.show::before {
  content: "\f106";
}

/* =========================================================
   AI 리뷰 요약
   ========================================================= */
.iblank-mobile-ai-review-summary {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 28px 14px 30px;
  overflow: visible;
  background: #f6f7fb;
  text-align: left;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", sans-serif;
}

.iblank-mobile-ai-review-summary * {
  max-width: 100%;
  box-sizing: border-box;
}

.iblank-mobile-ai-review-head {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin: 0 0 20px;
}

.iblank-mobile-ai-review-icon {
  display: block;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  object-fit: contain;
  animation: mobileAiIconFloat 2.4s ease-in-out infinite;
}

@keyframes mobileAiIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.iblank-mobile-ai-review-title {
  flex: 0 1 auto;
  min-width: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -.35px;
  white-space: nowrap;
}

.iblank-mobile-ai-review-info {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  height: 18px;
  margin-left: 2px;
  line-height: 1;
}

.iblank-mobile-ai-review-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f96a3;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  cursor: help;
}

.iblank-mobile-ai-review-tooltip {
  position: absolute;
  right: -8px;
  bottom: calc(100% + 8px);
  z-index: 20;
  display: block;
  min-width: 156px;
  padding: 6px 8px;
  border-radius: 3px;
  background: #333;
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -.2px;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-sizing: border-box;
}

.iblank-mobile-ai-review-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border-width: 5px 5px 0;
  border-style: solid;
  border-color: #333 transparent transparent;
}

.iblank-mobile-ai-review-info:hover .iblank-mobile-ai-review-tooltip,
.iblank-mobile-ai-review-info:focus-within .iblank-mobile-ai-review-tooltip {
  opacity: 1;
  visibility: visible;
}

.iblank-mobile-ai-review-subtitle {
  margin: 0 0 20px;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -.2px;
}

.iblank-mobile-ai-review-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin: 0 0 20px;
}

.iblank-mobile-ai-review-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: auto;
  max-width: 100%;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e8ebf2;
  color: #444;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.15px;
  white-space: nowrap;
  box-sizing: border-box;
}

.iblank-mobile-ai-review-chip span:last-child {
  display: inline-block;
  white-space: nowrap;
}

.iblank-mobile-ai-review-check {
  flex: 0 0 auto;
  color: #1f3f98;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.iblank-mobile-ai-review-result {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -.2px;
  white-space: nowrap;
}

.iblank-mobile-ai-review-result-icon {
  flex: 0 0 auto;
  font-size: 17px;
  line-height: 1;
}

.iblank-mobile-ai-review-result-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
   기타 기존 기능
   ========================================================= */
.shopdetail .shopdetailRelationItem {
  padding: 0 15px 30px;
}

.shopdetail .shopdetailRelationItem .listName input {
  float: right;
}

.shopdetail .shopdetailRelationItem .btn_cart {
  display: block;
  width: 290px;
  margin: 0 auto;
  padding: 10px 0;
  background: #393939;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.cs-button {
  bottom: 53px !important;
}

.shopdetail .soldout_anchor {
  display: block !important;
}

.shopdetail .MK_btn-sms {
  display: inline-block;
  width: 100%;
  height: 35px;
  border: 1px solid #808080;
  border-radius: 3px !important;
  background: linear-gradient(to bottom, #636363, #5e5e5e);
  color: #fff;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  background-clip: padding-box;
}

.shopdetail .MK_btn-sms span {
  padding-left: 24px;
  background: url(/images/d3/m_01/bull/alarm_fff@2x.png) no-repeat 0 50%;
  background-size: 18px 14px;
}

.detail-appn {
  margin: 35px 20px 0 14px;
}

.detail-appn .manual-wrap .manual-top .count { font-size: 15px; }
.detail-appn .manual-wrap .manual-top .time { padding-left: 12px; font-size: 13px; }
.detail-appn .graph-inn { margin: 26px 0 44px; }
.detail-appn .ab .num { font-size: 13px; }

.manual-wrap .manual-top {
  font-family: "Montserrat", sans-serif;
}

.manual-wrap .manual-top .count {
  color: #010101;
  font-size: 18px;
}

.manual-wrap .manual-top .time {
  padding-left: 15px;
  color: #595959;
  font-size: 16px;
}

.graph-inn {
  position: relative;
  max-width: 384px;
  height: 4px;
  margin: 41px 0 55px;
  background: #d4d4d4;
}

.sell-line {
  height: 4px;
  background: #76a2e5;
}

.ab {
  position: absolute;
  top: -4px;
  line-height: 14px;
}

.ab .num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.ab .circle {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: -3px;
  margin-bottom: 3px;
  border-radius: 50%;
  font-size: 1px;
  line-height: 0;
  vertical-align: top;
}

.ab.wrap1 { left: 0; text-align: left; }
.ab.wrap1 .circle { background: #8dcd45; }
.ab.wrap2 { top: -7px; text-align: center; }
.ab.wrap2 .num { position: absolute; top: -20px; left: 50%; width: 100px; margin-left: -50px; color: #000; white-space: nowrap; }
.ab.wrap2 .circle { background: #76a2e5; }
.ab.wrap2 .circle.sell { width: 17px; height: 17px; }
.ab.wrap3 { right: 0; text-align: right; }
.ab.wrap3 .circle { background: #907de5; }

.youtube {
  width: 100%;
  max-width: 840px;
  height: 57vw;
}

.image-slide {
  position: relative;
  margin: 30px auto;
  overflow: hidden;
}

/* iOS 옵션 선택 시 자동 확대 방지 */
input[type="text"],
input[type="date"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="password"],
select {
  font-size: 16px;
}



/* BASIC css end */

