/* BASIC css start */
/* ============================================================
   THE LAB CHEMICAL — 상품상세 CSS  (product-detail.css)
   ▸ 좌: 이미지 갤러리 (메인 + 썸네일)
   ▸ 우: 브랜드·상품명·가격 요약 + 테이블형 SKU + 구매버튼
============================================================ */

#productDetail { font-family: var(--font); color: var(--text); }

/* loc-navi */
.loc-navi {
  margin-bottom: 18px; font-size: 12.5px; color: var(--text-muted);
}
.loc-navi a { color: inherit; text-decoration: none; }
.loc-navi a:hover { color: var(--navy); }

/* ── 상단 2단 ── */
.prd-top {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

/* ═══════════════════════════════
   왼쪽: 이미지 갤러리
═══════════════════════════════ */
.prd-gallery {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

/* 메인 이미지 */
.prd-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.prd-main-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.prd-main-img:hover img { transform: scale(1.06); }

/* 썸네일 행 */
.prd-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }

.prd-thumb-item {
  width: 68px; height: 68px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  background: var(--bg); flex-shrink: 0;
  transition: border-color var(--ease);
}
.prd-thumb-item img { width: 100%; height: 100%; object-fit: contain; }
.prd-thumb-item:hover { border-color: rgba(12,2,91,.35); }
.prd-thumb-item.active { border-color: var(--navy); }

/* ═══════════════════════════════
   오른쪽: 정보 영역
═══════════════════════════════ */
.center-section { min-width: 0; }

/* 브랜드 */
.prd-brand-wrap {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.prd-brand-wrap a {
  font-size: 14px; font-weight: 700;
  color: var(--text-muted); text-decoration: none;
  transition: color var(--ease);
}
.prd-brand-wrap a:hover { color: var(--navy); }
.prd-brand-sep { color: var(--border); font-size: 15px; }

/* 상품명 */
.prd-name {
  font-size: 22px; font-weight: 800;
  color: var(--text); line-height: 1.38;
  letter-spacing: -.4px; margin: 0 0 6px;
}

/* 서브명 */
.prd-subname {
  font-size: 13px; color: var(--text-sub);
  line-height: 1.55; margin: 0 0 18px;
}

/* 가격 요약 */
.prd-price-summary {
  display: flex; align-items: baseline; gap: 10px;
  justify-content: flex-end;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 14px 0 10px;
}
.prd-price-label { font-size: 13px; color: var(--text-sub); }
.prd-price-value {
  font-size: 28px; font-weight: 900;
  color: var(--navy); letter-spacing: -.5px;
}
.prd-price-vat { font-size: 12px; color: var(--text-muted); }
#MK_p_total { color: var(--navy); }

/* ═══════════════════════════════
   SKU 안내 배너
═══════════════════════════════ */
.sku-guide-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff;
  border: 1px solid rgba(12,2,91,.13);
  border-radius: var(--radius);
  padding: 11px 15px; margin-bottom: 14px;
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  line-height: 1.55;
}
.sku-guide-notice .sku-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.sku-guide-notice span { font-weight: 400; color: var(--text-sub); }

/* ═══════════════════════════════
   SKU 테이블
═══════════════════════════════ */
.sku-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
}
.sku-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}

/* 헤더 */
.sku-table thead th {
  padding: 11px 12px;
  background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 700;
  text-align: center; letter-spacing: .02em;
  border-right: 1px solid rgba(255,255,255,.1);
}
.sku-table thead th:last-child { border-right: none; }
.sku-table thead th.th-spec { text-align: center; }
.sku-table thead th small { font-weight: 400; opacity: .8; }

/* 바디 행 */
.sku-table tbody tr {
  border-bottom: 1px dashed var(--border);
  background: #fff;
  transition: background var(--ease);
  cursor: pointer;
}
.sku-table tbody tr:last-child { border-bottom: none; }
.sku-table tbody tr:hover { background: rgba(12,2,91,.04); }
.sku-table tbody tr.sku-selected { background: rgba(12,2,91,.07); }
.sku-table tbody tr.sku-soldout { opacity: .5; cursor: not-allowed; pointer-events: none; }

.sku-table tbody td {
  padding: 11px 12px;
  text-align: center; vertical-align: middle;
  border-right: 1px solid var(--border);
}
.sku-table tbody td:last-child { border-right: none; }

/* 품목코드 */
.td-code {
  font-size: 11.5px; color: var(--text-muted);
  font-family: 'Consolas', monospace; white-space: nowrap;
}
/* 규격 (product@subname) */
.td-spec {
  text-align: center; font-weight: 600; color: var(--text);
  width: 250px; min-width:160px;   /* 규격 컬럼 넓게 */
}
/* 가격 */
.td-price { font-weight: 800; color: var(--navy); white-space: nowrap; }
.td-price .orig {
  display: block; font-size: 11px; font-weight: 400;
  color: var(--text-muted); text-decoration: line-through; margin-top: 1px;
}
/* 재고 */
.td-stock { font-size: 12px; width: 50px; }
.stock-badge {
  display: inline-flex; align-items: center;
  height: 20px; padding: 0 7px;
  border-radius: 4px; font-size: 11px; font-weight: 700;
}
.stock-badge.ok  { background: #e8f5e9; color: #2e7d32; }
.stock-badge.low { background: #fff8e1; color: #e65100; }
.stock-badge.out { background: #fff3f5; color: #c62828; }

/* 수량 */
.td-qty { min-width: 84px; width: 50px; }
.sku-qty-ctrl {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); border-radius: 7px;
  overflow: hidden; background: var(--bg);
}
.sku-qty-btn {
  width: 27px; height: 29px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); border: none; cursor: pointer;
  font-size: 14px; font-weight: 700; color: var(--text-sub);
  flex-shrink: 0; transition: background var(--ease);
}
.sku-qty-btn:hover { background: var(--navy-lt); color: var(--navy); }
.sku-qty-input {
  width: 34px; height: 29px;
  border: none;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  text-align: center; font-size: 13px; font-weight: 700;
  font-family: var(--font); color: var(--text); background: var(--bg);
  outline: none; -moz-appearance: textfield;
}
.sku-qty-input::-webkit-outer-spin-button,
.sku-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* 체크 */
.td-check { width: 50px; }
.td-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--navy); cursor: pointer;
}

/* ═══════════════════════════════
   구매 버튼
═══════════════════════════════ */
.action-buttons {
  display: flex; gap: 10px; width: 100%; margin-top: 8px;
}
.btn_cart, .btn_buy {
  flex: 1; display: flex; align-items: center; justify-content: center;
  height: 50px; font-size: 15px; font-weight: 700;
  border-radius: var(--radius); cursor: pointer;
  transition: all .15s ease; text-decoration: none;
  border: 1.5px solid var(--navy);
}
.btn_cart { background: var(--bg); color: var(--navy); }
.btn_cart:hover { background: var(--navy-lt); }
.btn_buy  { background: var(--navy); color: #fff; }
.btn_buy:hover { background: var(--navy-dk); }
.btn_soldout {
  width: 100%; text-align: center; padding: 16px 0;
  font-weight: 700; border-radius: var(--radius);
  background: var(--bg-soft); color: var(--text-muted);
  border: 1.5px solid var(--border);
}

/* ═══════════════════════════════
   하단 탭
═══════════════════════════════ */
.detailTab {
  margin: 36px 0 0;
  border-bottom: 2px solid var(--border);
}
.detailTab ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.detailTab ul li a {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--text-muted); padding: 11px 20px;
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: color var(--ease), border-color var(--ease);
}
.detailTab ul li a.active,
.detailTab ul li a:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* 상품 상세 본문 */
.prd-detail {
  padding: 28px 0 20px;
  font-size: 14px; line-height: 1.85; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.prd-detail img { max-width: 100%; height: auto; }

/* 연관상품 */
.item-wrap { margin-top: 20px; }
.item-cont { display: flex; flex-wrap: wrap; gap: 14px; }
.item-list {
  width: 180px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px; box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease);
}
.item-list:hover { box-shadow: var(--shadow-sm); }
.item-list .thumb img { width: 100%; border-radius: 6px; }
.item-list .prd-name a {
  font-size: 12.5px; color: var(--navy);
  font-weight: 700; text-decoration: none;
  display: block; margin-top: 8px; line-height: 1.4;
}
.item-list .prd-price .price { color: var(--navy); font-size: 13px; font-weight: 700; }

/* 리뷰 / QnA */
.review-section, .qna-section {
  margin: 20px 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.tit-detail {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
}
.tit-detail h3 { font-size: 13.5px; font-weight: 700; color: var(--navy); margin: 0; }
.tit-detail .more a { font-size: 12px; color: var(--text-muted); text-decoration: none; }
.tit-detail .more a:hover { color: var(--navy); }
.review-list table, .qna-list table { width: 100%; border-collapse: collapse; }
.review-list th, .review-list td,
.qna-list  th, .qna-list  td {
  padding: 9px 14px; font-size: 13px;
  border-bottom: 1px solid var(--border); text-align: left;
}
.review-list th, .qna-list th {
  background: var(--bg-soft); font-weight: 600; color: var(--text-sub);
}
.review-list tr:last-child td,
.qna-list  tr:last-child td { border-bottom: none; }
.review-list.empty, .qna-list.empty {
  padding: 20px; text-align: center;
  color: var(--text-muted); font-size: 13px;
}

/* 유해물질 모달 */
#hazard-warning-modal {
  display: none; align-items: center; justify-content: center;
  position: fixed; inset: 0; z-index: 9999;
}
#hazard-warning-modal.open { display: flex; }
.hazard-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px);
}
.hazard-modal-box {
  position: relative; background: var(--bg);
  border-radius: var(--radius-lg); padding: 44px 36px;
  box-shadow: var(--shadow-md); width: 90%; max-width: 540px;
  text-align: center; z-index: 10000;
}
.hazard-icon { font-size: 3em; margin-bottom: 8px; }
.modal-title { font-size: 19px; font-weight: 800; margin-bottom: 12px; }
.hazard-modal-msg { font-size: 14px; line-height: 1.8; }
.hazard-modal-msg p { margin: 0 0 8px; }
.hazard-modal-msg small { font-size: 12px; color: var(--text-muted); }
.copy-email { cursor: pointer; color: var(--navy); font-weight: 700; }
.hazard-modal-close {
  margin-top: 20px; padding: 10px 40px;
  background: var(--accent); color: #fff; border: none;
  border-radius: var(--radius); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.hazard-modal-close:hover { background: #b71c1c; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .prd-top { grid-template-columns: 1fr; gap: 24px; }
  .prd-gallery { position: static; }
  .prd-main-img { max-width: 340px; margin: 0 auto 12px; }
}
@media (max-width: 640px) {
  .prd-name { font-size: 18px; }
  .prd-price-value { font-size: 24px; }
  .action-buttons { flex-direction: column; }
  /* 모바일: 품목코드 컬럼 숨김 */
  .sku-table thead th:first-child,
  .sku-table tbody td.td-code { display: none; }
  .sku-table { font-size: 12px; }
}

/* ━━━ MakeShop 원본 영역 숨김 ━━━
   display:none 금지 → MakeShop JS가 DOM을 못 찾음
   시각적으로만 숨기되, 기능은 완전히 살아있어야 함        */
.mk-origin-area {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip: rect(0,0,0,0);
}

/* ━━━ 리뷰/QnA 테이블 ━━━ */
.table-slide { margin-top: 0; overflow-x: auto; }
.table-slide table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table-slide thead th {
  padding: 9px 12px;
  background: var(--bg-soft);
  font-weight: 700; color: var(--text-sub);
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.table-slide tbody td {
  padding: 9px 12px;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
}
.table-slide tbody tr:last-child td { border-bottom: none; }
.table-slide tbody a { color: var(--navy); text-decoration: none; }
.table-slide tbody a:hover { text-decoration: underline; }
.empty-row { text-align: center; color: var(--text-muted); padding: 24px !important; }

.list-btm { padding: 12px 0 4px; display: flex; justify-content: flex-end; }
.btm_write a {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; padding: 0 18px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  font-size: 12.5px; font-weight: 700; text-decoration: none;
  transition: background var(--ease);
}
.btm_write a:hover { background: var(--navy-dk); }

/* 연관상품 장바구니 버튼 */
.related-allbasket { margin-top: 12px; text-align: right; }
.related-allbasket a {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px; padding: 0 18px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; text-decoration: none;
}

/* ━━━ Wish 관련 요소 숨김 ━━━ */
.prd-wish,
#MS_wish_count,
#MS_btn_wish,
.btn_wish { display: none !important; }

/* ━━━ 판매가격 박스 ━━━ */
.prd-price-box {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.price-row {
  display: flex; align-items: baseline;
  gap: 12px; padding: 4px 0;
  font-size: 14px;
}
.price-th {
  width: 80px; flex-shrink: 0;
  font-size: 12px; font-weight: 700;
  color: var(--text-muted);
}
.price-val { color: var(--text); }
.price-original {
  font-size: 12px; color: var(--text-muted);
  text-decoration: line-through; margin-right: 6px;
}
.price-now {
  font-size: 18px; font-weight: 900;
  color: var(--navy); letter-spacing: -.3px;
}

/* 오늘출발 */
.today-delivery {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; margin-bottom: 14px;
  background: #e8f5e9; border-radius: var(--radius);
  border: 1px solid #c8e6c9;
}
.today-delivery .icon {
  background: #2e7d32; color: #fff;
  padding: 2px 8px; border-radius: 4px;
  font-size: 11.5px; font-weight: 700; flex-shrink: 0;
}
.today-delivery .txt { font-size: 13px; color: #1b5e20; }
.today-delivery .txt strong { font-weight: 700; }

/* 서브 액션 버튼 (찜 등) */
.action-buttons-sub { display: none; } /* wish 숨김으로 전체 숨김 */
.action-buttons-pay { margin-top: 8px; }
.btn_subs {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px; margin-top: 8px; width: 100%;
  background: var(--bg); color: var(--navy);
  border: 1.5px solid var(--navy); border-radius: var(--radius);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background var(--ease);
}
.btn_subs:hover { background: var(--navy-lt); }

/* ━━━ Subname 파싱 표시 ━━━ */
.prd-subname-wrap { margin: 8px 0 18px; }
.prd-subname-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.prd-subname-item {
  display: inline-flex; align-items: stretch;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
}
.prd-subname-item.prd-subname-plain {
  border: none; border-radius: 0; overflow: visible;
  background: none; padding: 0;
  font-size: 13px; color: var(--text-sub);
  align-items: center;
}
.subname-key {
  background: var(--navy);
  color: #fff;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .02em;
  padding: 5px 10px;
  white-space: nowrap;
  display: flex; align-items: center;
}
.subname-val {
  background: #fff;
  color: var(--text);
  font-size: 14px; font-weight: 700;
  padding: 5px 11px;
  display: flex; align-items: center;
  white-space: nowrap;
}

/* ━━━ detail_common 영역 ━━━ */
.detail-common-wrap {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}

/* subname 비었을 때 여백 제거 */
.prd-subname-wrap:empty,
.prd-subname-wrap:has(.prd-subname-list:empty) { display: none; }


/* tl-wrap 숨김 제거 — detail 컨텐츠와 충돌 */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   제품상세정보 테이블 (#productWrap)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#productWrap {
  margin: 32px 0 40px;
}
.tit-prd {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  letter-spacing: -.3px;
}
.product-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.product-info-table tr {
  border-bottom: 1px solid var(--border);
}
.product-info-table tr:first-child {
  border-top: 1px solid var(--border);
}
.product-info-table th {
  width: 160px;
  padding: 13px 18px;
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  vertical-align: top;
  font-size: 13.5px;
  white-space: nowrap;
}
.product-info-table td {
  padding: 13px 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  vertical-align: top;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   공통상세설명 (item-under) — 전면 개편
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#item-under {
  max-width: 100%;
  margin: 0;
  font-family: var(--font, 'SUIT', sans-serif);
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  word-break: keep-all;
}

/* ── 섹션 공통 타이틀 ── */
.iu-section-title {
  text-align: center;
  padding: 52px 20px 36px;
}
.iu-section-title .iu-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy, #0C025B);
  opacity: .45;
  margin-bottom: 10px;
}
.iu-section-title h3 {
  font-size: 22px;
  font-weight: 900;
  color: #111;
  letter-spacing: -.4px;
  line-height: 1.3;
}
.iu-section-title h3 em {
  color: var(--navy, #0C025B);
  font-style: normal;
}

/* ── 상단 문의 안내 (iu-hero) ── */
.iu-hero {
  background: linear-gradient(135deg, #0C025B 0%, #1a0a8a 100%);
  color: #fff;
  padding: 56px 32px 48px;
  text-align: center;
}
.iu-hero .iu-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.iu-hero .iu-hero-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -.4px;
}
.iu-hero .iu-hero-title em {
  color: #a5b4fc;
  font-style: normal;
}
.iu-hero-cards {
  display: flex;
  justify-content: center;
  gap: 1px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
}
.iu-hero-cards .card {
  flex: 1;
  padding: 24px 20px;
  background: rgba(255,255,255,.06);
  text-align: center;
}
.iu-hero-cards .card-icon {
  font-size: 22px;
  color: #a5b4fc;
  margin-bottom: 12px;
}
.iu-hero-cards .card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.iu-hero-cards .card-value {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
}

/* ── 구매 안내 (iu-notice) ── */
.iu-notice {
  background: #fff;
  padding-bottom: 48px;
}
.iu-notice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 32px;
  max-width: 960px;
  margin: 0 auto;
}
.iu-notice-card {
  border: 1px solid #e8ecf4;
  border-radius: 16px;
  padding: 28px 24px;
  background: #fafbff;
}
.iu-notice-card .nc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f8;
}
.iu-notice-card .nc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy, #0C025B);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.iu-notice-card .nc-title {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  letter-spacing: -.2px;
}
.iu-notice-list {
  list-style: none;
  margin: 0; padding: 0;
}
.iu-notice-list li {
  position: relative;
  padding: 5px 0 5px 16px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
}
.iu-notice-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 14px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #c5cce0;
}
.iu-notice-list .hi-red  { color: #d63031; font-weight: 700; }
.iu-notice-list .hi-blue { color: var(--navy, #0C025B); font-weight: 700; }
.iu-notice-list .note    { font-size: 12px; color: #aaa; }
.iu-notice-list .note::before { display: none !important; }

/* ── 배송안내 (iu-delivery) ── */
.iu-delivery {
  background: #f7f8fc;
  padding-bottom: 48px;
}
.iu-delivery-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0 32px 36px;
  flex-wrap: wrap;
}
.iu-delivery-icon-card {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(12,2,91,.05);
  transition: transform .2s, box-shadow .2s;
}
.iu-delivery-icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(12,2,91,.10);
}
.iu-delivery-icon-card .dic-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0C025B, #3730a3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: #fff;
}
.iu-delivery-icon-card .dic-title {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.iu-delivery-icon-card .dic-desc {
  font-size: 12.5px;
  color: #888;
  line-height: 1.65;
}
.iu-delivery-notes {
  list-style: none;
  margin: 0 auto;
  padding: 0 32px;
  max-width: 800px;
}
.iu-delivery-notes li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  border-bottom: 1px dashed #e8ecf4;
}
.iu-delivery-notes li:last-child { border-bottom: none; }
.iu-delivery-notes li::before {
  content: '';
  position: absolute;
  left: 4px; top: 16px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--navy, #0C025B);
  opacity: .3;
}
.iu-delivery-notes .hi-red  { color: #d63031; font-weight: 700; }
.iu-delivery-notes .hi-blue { color: var(--navy, #0C025B); font-weight: 700; }
.iu-delivery-notes .hi-ul   { text-decoration: underline; text-underline-offset: 2px; }

/* ── 교환/반품/취소 (iu-return) ── */
.iu-return {
  background: #fff;
  padding-bottom: 48px;
}
.iu-return-list {
  list-style: none;
  margin: 0 auto;
  padding: 0 32px;
  max-width: 800px;
  counter-reset: return-counter;
}
.iu-return-list li {
  counter-increment: return-counter;
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid #f0f2f8;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}
.iu-return-list li:last-child { border-bottom: none; }
.iu-return-list li::before {
  content: counter(return-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy, #0C025B);
  opacity: .35;
}
.iu-return-list .hi-red  { color: #d63031; font-weight: 700; }
.iu-return-list .hi-blue { color: var(--navy, #0C025B); font-weight: 700; }

/* ── 고객센터 배너 (iu-cta) ── */
.iu-cta {
  background: linear-gradient(135deg, #0C025B 0%, #1a0a8a 100%);
  padding: 52px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.iu-cta .cta-logo img { height: 50px; }
.iu-cta .cta-logo-img { filter: brightness(0) invert(1); height: 50px; }
.iu-cta .cta-body { color: #fff; }
.iu-cta .cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
  line-height: 1.7;
}
.iu-cta .cta-contacts {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.iu-cta .cta-contacts li {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.iu-cta .cta-contacts li strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-top: 2px;
}

/* ── 반응형 ── */
@media (max-width: 680px) {
  .iu-hero { padding: 40px 20px 36px; }
  .iu-hero .iu-hero-title { font-size: 20px; }
  .iu-hero-cards { flex-direction: column; gap: 1px; }
  .iu-notice-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .iu-delivery-icons { gap: 16px; padding: 0 20px 28px; }
  .iu-delivery-icon-card { min-width: 140px; }
  .iu-delivery-notes, .iu-return-list { padding: 0 20px; }
  .iu-cta { flex-direction: column; text-align: center; gap: 24px; padding: 36px 20px; }
  .iu-cta .cta-contacts { justify-content: center; }
  .iu-section-title h3 { font-size: 18px; }
  .iu-section-title { padding: 36px 20px 24px; }
}
/* BASIC css end */

