/* ==========================================================================
   Heart to Kiss — Product Detail Page
   fromtome 스타일: 미니멀, 흰 배경, 검정 텍스트, 이미지 좌 / 정보 우
   ========================================================================== */

.product-page {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: 40px;
  padding-bottom: 96px;
}

/* ── 브레드크럼 ───────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 12px;
  color: #aaa;
}

.breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: color 160ms;
}

.breadcrumb a:hover { color: #1A1A1A; }

.breadcrumb__sep { color: #ddd; }

/* ── 2열 레이아웃 (이미지 | 정보) ────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: 55fr 45fr;
    gap: 64px;
  }
}

/* ── 이미지 갤러리 ────────────────────────────────────── */
.product-gallery {
  position: relative;
}

@media (min-width: 768px) {
  .product-gallery {
    position: sticky;
    top: 80px;
  }
}

.product-gallery__main {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 12px;
  cursor: zoom-in;
}

.product-gallery__main img,
.product-gallery__main .gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.product-gallery__thumb {
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 160ms;
}

.product-gallery__thumb.is-active {
  border-color: #1A1A1A;
}

.product-gallery__thumb img,
.product-gallery__thumb div {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 상품 정보 패널 ───────────────────────────────────── */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-info__cat {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-info__name {
  font-family: var(--font-headline, 'Pretendard', sans-serif);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  line-height: 1.25;
  margin: 0 0 20px;
}

.product-info__price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.product-info__price {
  font-family: var(--font-numeric, 'Inter', monospace);
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.product-info__price--orig {
  font-size: 16px;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 400;
}

.product-info__discount {
  font-size: 14px;
  font-weight: 700;
  color: #E53935;
}

/* 배송 뱃지 */
.product-info__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.product-badge--ship {
  background: #f0faf6;
  color: #2e7d5e;
  border: 1px solid #b7ecd9;
}

.product-badge--pay {
  background: #FEF9E7;
  color: #8B6914;
  border: 1px solid #FDE68A;
}

/* 옵션 선택 */
.product-option {
  margin-bottom: 20px;
}

.product-option__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.product-option__guide {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  cursor: pointer;
  text-decoration: underline;
}

.product-option__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  min-width: 48px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  background: #fff;
  cursor: pointer;
  transition: all 160ms;
  letter-spacing: 0.02em;
}

.size-btn:hover {
  border-color: #1A1A1A;
}

.size-btn.is-active {
  border-color: #1A1A1A;
  background: #1A1A1A;
  color: #fff;
}

.size-btn:disabled {
  color: #ccc;
  border-color: #eee;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* 수량 */
.product-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.product-qty__label {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  flex-shrink: 0;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.qty-control__btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1A1A1A;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 150ms;
  line-height: 1;
}

.qty-control__btn:hover { background: #f5f5f5; }

.qty-control__val {
  width: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  line-height: 36px;
  user-select: none;
}

/* CTA 버튼 */
.product-cta {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-cart {
  flex: 1;
  min-height: 52px;
  border: 1.5px solid #1A1A1A;
  border-radius: 4px;
  background: #fff;
  color: #1A1A1A;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 200ms;
}

.btn-cart:hover {
  background: #f5f5f5;
}

.btn-buy {
  flex: 1;
  min-height: 52px;
  border: none;
  border-radius: 4px;
  background: #1A1A1A;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 200ms;
}

.btn-buy:hover { opacity: 0.82; }

/* 찜 버튼 */
.btn-wish {
  width: 52px;
  height: 52px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms;
  flex-shrink: 0;
}

.btn-wish:hover { border-color: #1A1A1A; }
.btn-wish.is-wished { border-color: #E53935; color: #E53935; }

/* 알림 (사이즈 미선택 등) */
.product-notice {
  font-size: 12px;
  color: #E53935;
  margin: -12px 0 12px;
  display: none;
}

.product-notice.is-visible { display: block; }

/* 배송 정보 */
.product-shipping {
  padding: 16px;
  background: #fafafa;
  border-radius: 6px;
  margin-bottom: 28px;
}

.product-shipping__row {
  display: flex;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.product-shipping__row + .product-shipping__row {
  margin-top: 6px;
}

.product-shipping__key {
  flex-shrink: 0;
  font-weight: 600;
  color: #1A1A1A;
  min-width: 56px;
}

/* ── 상품 상세 탭 ─────────────────────────────────────── */
.product-tabs {
  margin-top: 64px;
  border-top: 2px solid #1A1A1A;
}

.product-tabs__nav {
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  gap: 0;
}

.product-tab-btn {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #aaa;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 160ms;
  margin-bottom: -1px;
}

.product-tab-btn.is-active {
  color: #1A1A1A;
  border-bottom-color: #1A1A1A;
}

.product-tab-panel {
  padding: 32px 0;
  display: none;
}

.product-tab-panel.is-active { display: block; }

.product-tab-panel p,
.product-tab-panel li {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.product-tab-panel ul {
  padding-left: 20px;
}

.product-detail-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* 상세 설명 placeholder */
.detail-placeholder {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 64px;
  text-align: center;
  color: #bbb;
  font-size: 14px;
}

/* ── 연관상품 ─────────────────────────────────────────── */
.related-section {
  margin-top: 80px;
}

.related-section__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ── 로딩 / 에러 상태 ─────────────────────────────────── */
.product-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
  color: #aaa;
  font-size: 14px;
}

.product-loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #eee;
  border-top-color: #1A1A1A;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── 장바구니 담기 토스트 ─────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1A1A1A;
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 500;
  opacity: 0;
  transition: opacity 260ms, transform 260ms var(--ease-out-soft, cubic-bezier(0.22,1,0.36,1));
  pointer-events: none;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .product-page {
    padding-inline: 16px;
    padding-top: 24px;
  }
  .product-cta { flex-direction: column; }
  .btn-wish { width: 100%; height: 48px; }
}

/* ==========================================================================
   [P0-1] 네이버페이 (NPAY) 버튼
   ========================================================================== */
.npay-cta {
  margin-bottom: 24px;
}

.btn-npay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #03C75A;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 200ms, transform 120ms;
  position: relative;
  overflow: hidden;
}

.btn-npay:hover {
  opacity: 0.88;
}

.btn-npay:active {
  transform: scale(0.98);
}

.npay-logo {
  flex-shrink: 0;
}

/* 네이버 N 로고 텍스트 대신 SVG 배경 방식 */
.btn-npay .npay-logo text {
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
}


/* ==========================================================================
   [P0-3] 아코디언 (Option info / Payment / Exchange / 이벤트)
   ========================================================================== */
.product-accordion {
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 8px;
}

.acc-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.acc-header:hover .acc-header__title {
  color: #1A1A1A;
}

.acc-header__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #555;
  transition: color 160ms;
  flex: 1;
}

.acc-item.is-open .acc-header__title {
  color: #1A1A1A;
}

.acc-header__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1);
  color: #aaa;
}

.acc-item.is-open .acc-header__icon {
  transform: rotate(45deg);
  color: #1A1A1A;
}

.acc-icon-v {
  transition: opacity 200ms;
}

.acc-item.is-open .acc-icon-v {
  opacity: 0;
}

/* 아코디언 바디 — max-height 트릭 */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.22,1,0.36,1);
}

.acc-item.is-open .acc-body {
  max-height: 600px;
}

/* Option info — 사이즈 표 */
.acc-option-body {
  padding-bottom: 20px;
}

.acc-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 16px;
}

.acc-size-table th,
.acc-size-table td {
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.acc-size-table th {
  font-weight: 600;
  color: #888;
  background: #fafafa;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.acc-size-table td {
  color: #555;
}

.acc-material {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acc-material p {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.acc-material strong {
  color: #1A1A1A;
  margin-right: 6px;
}

/* Payment */
.acc-pay-body {
  padding-bottom: 20px;
}

.acc-pay-title {
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 12px;
}

.acc-pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.acc-pay-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
  background: #f8f8f8;
  border-radius: 4px;
  padding: 6px 12px;
}

.acc-pay-item--npay {
  background: #e8f9ef;
  color: #028846;
}

.acc-pay-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #ddd;
  flex-shrink: 0;
}

.acc-pay-icon--card   { background: #1A1A1A; }
.acc-pay-icon--vbank  { background: #4A90D9; }
.acc-pay-icon--npay   { background: #03C75A; }
.acc-pay-icon--kakao  { background: #FEE500; }
.acc-pay-icon--toss   { background: #0064FF; }

.acc-pay-notice {
  font-size: 11px;
  color: #aaa;
  line-height: 1.7;
  margin: 2px 0;
}

/* Exchange / Return */
.acc-return-body {
  padding-bottom: 20px;
}

.acc-return-list {
  padding-left: 16px;
  margin: 0 0 12px;
}

.acc-return-list li {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2px;
}

.acc-return-list strong {
  color: #1A1A1A;
}

.acc-return-notice {
  font-size: 12px;
  color: #888;
  background: #fafafa;
  border-radius: 4px;
  padding: 10px 14px;
  margin: 0;
}

/* 이벤트 */
.acc-event-body {
  padding-bottom: 20px;
}

.acc-event-title {
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 10px;
}

.acc-event-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.acc-event-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.acc-event-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 100px;
  background: #FFC107;
  color: #1A1A1A;
  flex-shrink: 0;
  white-space: nowrap;
}

.acc-event-badge--text {
  background: #e8e8e8;
  color: #555;
}

.acc-event-note {
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   상품 상세 본문 (아코디언 위 항상 펼침)
   ========================================================================== */
.product-detail-body {
  max-width: 1200px;
  margin: 64px auto 0;
  padding-inline: 24px;
}

.product-detail-body .detail-placeholder {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 64px;
  text-align: center;
  color: #bbb;
  font-size: 14px;
}

@media (max-width: 767px) {
  .product-detail-body {
    padding-inline: 16px;
    margin-top: 40px;
  }
  .product-detail-body .detail-placeholder {
    padding: 40px 20px;
  }
}


/* ==========================================================================
   [P0-2] 리뷰 탭 — 작성 폼
   ========================================================================== */
.review-form-wrap {
  padding: 32px 0 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 8px;
}

.review-form__title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* 별점 선택 */
.review-form__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.star-btn {
  background: transparent;
  border: none;
  padding: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: transform 120ms;
}

.star-btn:hover {
  transform: scale(1.15);
}

.star-label {
  font-size: 13px;
  color: #aaa;
  margin-left: 8px;
}

/* 폼 필드 */
.review-form__field {
  margin-bottom: 18px;
}

.review-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

@media (max-width: 480px) {
  .review-form__row {
    grid-template-columns: 1fr;
  }
}

.review-form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.review-form__req {
  color: #E53935;
  margin-left: 2px;
}

.review-form__hint {
  font-weight: 400;
  color: #aaa;
}

.review-form__textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body, 'Pretendard', sans-serif);
  color: #1A1A1A;
  resize: vertical;
  outline: none;
  transition: border-color 160ms;
  box-sizing: border-box;
  line-height: 1.7;
}

.review-form__textarea:focus {
  border-color: #1A1A1A;
}

.review-form__char-count {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #bbb;
  margin-top: 4px;
}

.review-form__input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body, 'Pretendard', sans-serif);
  color: #1A1A1A;
  outline: none;
  transition: border-color 160ms;
  box-sizing: border-box;
}

.review-form__input:focus {
  border-color: #1A1A1A;
}

.review-form__notice {
  font-size: 11px;
  color: #aaa;
  line-height: 1.7;
  margin: 0 0 20px;
}

.review-form__submit {
  width: 100%;
  height: 52px;
  background: #1A1A1A;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 200ms;
}

.review-form__submit:hover { opacity: 0.82; }
.review-form__submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* 사진 첨부 */
.review-photo-drop {
  border: 1.5px dashed #ddd;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  transition: border-color 160ms, background 160ms;
  min-height: 72px;
}

.review-photo-drop.is-dragover {
  border-color: #1A1A1A;
  background: #fafafa;
}

.review-photo-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 72px;
  height: 72px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
  cursor: pointer;
  color: #aaa;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 160ms;
  flex-shrink: 0;
}

.review-photo-add:hover {
  border-color: #1A1A1A;
  color: #1A1A1A;
  background: #f0f0f0;
}

.review-photo-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-photo-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: visible;
}

.review-photo-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  border: 1px solid #eee;
}

.review-photo-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1A1A1A;
  color: #fff;
  border: none;
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

/* 리뷰 목록 */
.review-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-empty {
  text-align: center;
  color: #aaa;
  font-size: 14px;
  padding: 40px 0;
}

.review-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.review-item--new {
  animation: review-pop 300ms cubic-bezier(0.22,1,0.36,1);
}

@keyframes review-pop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review-item__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.review-item__stars {
  display: flex;
  gap: 2px;
}

.review-item__author {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
}

.review-item__date {
  font-size: 12px;
  color: #bbb;
  margin-left: auto;
}

.review-item__content {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin: 0;
  word-break: break-word;
}

.review-item__photos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 4px;
}

.review-item__photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
  cursor: pointer;
}


/* ==========================================================================
   [P0-4] 모바일 sticky bottom CTA
   ========================================================================== */
.mobile-sticky-bar {
  display: none; /* 기본 숨김, 모바일만 */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
  z-index: 450;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }
  /* body 하단 패딩 (푸터가 sticky bar에 가리지 않게) */
  body {
    padding-bottom: 64px;
  }
  /* 모바일에서 카카오 플로팅 위치 조정 */
  .kakao-float {
    bottom: 76px;
  }
  /* 토스트 위치 조정 */
  .cart-toast {
    bottom: 76px;
  }
}

/* 찜 버튼 */
.msb-wish {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #1A1A1A;
  font-size: 10px;
  font-weight: 600;
  gap: 2px;
  cursor: pointer;
  transition: all 200ms;
  flex-shrink: 0;
}

.msb-wish:hover,
.msb-wish.is-wished {
  border-color: #E53935;
  color: #E53935;
}

/* 장바구니 버튼 */
.msb-cart {
  flex: 1;
  height: 48px;
  border: 1.5px solid #1A1A1A;
  border-radius: 6px;
  background: #fff;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 200ms;
  white-space: nowrap;
}

.msb-cart:hover {
  background: #f5f5f5;
}

/* BUY NOW 버튼 */
.msb-buy {
  flex: 1.2;
  height: 48px;
  border: none;
  border-radius: 6px;
  background: #1A1A1A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 200ms;
  white-space: nowrap;
}

.msb-buy:hover { opacity: 0.82; }

/* ==========================================================================
   리뷰 탭 — 포인트 적립 안내 배너
   ========================================================================== */
.review-point-banner {
  background-color: var(--color-bg-warm, #F8F1E9);
  border: 1px solid var(--color-border, #E8E0D5);
  border-radius: 8px;
  padding: var(--space-4, 24px);
  margin: var(--space-5, 32px) 0 var(--space-4, 24px);
}

.review-point-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3, 16px);
}

.review-point-banner__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.review-point-banner__text {
  flex: 1;
}

.review-point-banner__text > strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-primary, #1A1A1A);
  margin-bottom: var(--space-2, 8px);
}

.review-point-banner__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2, 8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-point-banner__list li {
  font-size: 0.88rem;
  color: var(--color-text-secondary, #6B6B6B);
  line-height: 1.6;
}

.review-point-banner__list li strong {
  color: var(--color-text-primary, #1A1A1A);
  font-weight: 600;
}

.review-point-banner__note {
  font-size: 0.78rem;
  color: var(--color-text-secondary, #6B6B6B);
  opacity: 0.75;
  margin: 0;
}
