
/* 배경 이미지 */
.sub-visual-bg {
  position: absolute;
  inset: 0;
  background-image: url("/static/img/product.png");
  background-size: cover;
  background-position: center;
}

.sub-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* 숫자 올릴수록 더 어두움 */
  z-index: 1;
}

.product-detail {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  margin-top: 40px;
}
.detail-image {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 24px;
  aspect-ratio: 1 / 1;
}
/* 초기 상태: 숨김 */
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;

  opacity: 0;
  transform: scale(1);
  transition: opacity 0.4s ease;
}
/* 로드 완료 후 */
.detail-image img.loaded {
  opacity: 1;
}


.info-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 24px;
}

.product-spec {
  width: 100%;
  border-collapse: collapse;
}

.product-spec th,
.product-spec td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  font-size: 17px;
  vertical-align: top;
}

.product-spec th {
  width: 120px;
  background: #fafafa;
  color: #555;
  font-weight: 500;
  text-align: left;
}

.product-desc {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed #ddd;
}

.product-desc h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.product-desc p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  white-space: pre-line;
}

.detail-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size:16px; /* 목록으로 버튼 크기 */ 
}



@media (max-width: 768px) {

  /* ===== 서브 비주얼 ===== */
  .sub-visual {
    height: 200px;
  }

  .sub-visual-content {
    padding: 0 16px;
  }

  .sub-visual-content h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  /* ===== 제품 상세 레이아웃 ===== */
  .product-detail {
    grid-template-columns: 1fr;   /* 좌우 → 세로 */
    gap: 24px;
    margin-top: 24px;
  }

  /* 이미지 영역 */
  .detail-image {
    padding: 16px;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
  }

  /* 정보 카드 */
  .info-card {
    padding: 16px;
  }

  /* ===== 스펙 테이블 ===== */
  .product-spec th,
  .product-spec td {
    padding: 8px 10px;
    font-size: 14px;
  }

  .product-spec th {
    width: 90px;                  /* 모바일에서 과도한 폭 방지 */
  }

  /* ===== 설명 ===== */
  .product-desc {
    margin-top: 16px;
    padding-top: 16px;
  }

  .product-desc h3 {
    font-size: 16px;
  }

  .product-desc p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ===== 버튼 ===== */
  .detail-actions {
    margin-top: 20px;
    justify-content: center;      /* 모바일 중앙 배치 */
  }

  .btn-outline {
    width: 100%;                  /* 터치 영역 확보 */
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
  }
}


