
 /* 전체 상품 영역 */
.product-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

/* =========================
   이미지 영역
========================= */
.product-image {
  flex: 1 1 45%;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* =========================
   기본 정보 영역
========================= */
.product-info {
  flex: 1 1 55%;
  font-size: 14px;
  line-height: 1.7;
}

.product-info > div {
  margin-bottom: 10px;
}

/* 상태 메시지 */
.product-alert .alert {
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
}

.alert.sold-out,
.alert.sale-off {
  color: #ff0000;
  border: 1px solid #ffb3b3;
  background: #fff5f5;
}

/* 가격 */
.product-price-original s {
  color: #999;
}

.product-price-sale {
  font-size: 16px;
  font-weight: bold;
}

.price-consult {
  color: #e02e53;
}

/* 배송 */
.product-delivery-free {
  font-size: 12px;
  color: #eb0090;
}

/* 수량 */
.product-quantity {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 15px 0;
}

/* 수량 증가 버튼 */
.incre_1 {
  width: 28px;
  height: 28px;
  background: url('./image/_h_count_1.png') no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

/* 수량 감소 버튼 */
.incre_2 {
  width: 28px;
  height: 28px;
  background: url('./image/_h_count_2.png') no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
}




.product-quantity input[type="text"] {
  width: 50px;
  text-align: center;
}

/* 옵션 */
.product-option {
  margin: 10px 0;
}

.product-option select {
  width: 100%;
  padding: 6px;
}

/* 총합 */
.product-total {
  margin-top: 20px;
  font-size: 16px;
}

/* SNS */
.product-sns {
  margin-top: 30px;
}

/* =========================
   모바일 반응형
========================= */
@media (max-width: 768px) {

  .product-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .product-image,
  .product-info {
    flex: 1 1 100%;
  }

  .product-info {
    font-size: 15px;
  }

  .product-quantity {
    justify-content: flex-start;
  }
}




/* =========================
   상품 상세정보
========================= */
.product-detail {
  margin: 50px auto 20px auto;
  max-width: 1000px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.product-detail-header {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-detail-content {
  font-size: 14px;
  line-height: 1.8;
}

/* 에디터에서 들어오는 이미지 보호 */
.product-detail-content img {
  max-width: 100%;
  height: auto;
}

.product-detail-content table {
  width: 100%;
}

.buttonBox{margin:30px; auto; text-align: center;}
.buttonBox a{padding:12px 25px; background:#6392a9; 
	               border-radius:10px; color:#fff;}


.review-item {
  display: flex;
  gap: 15px;
}

@media (max-width:768px){
  .review-item {
    flex-direction: column;
  }
}