.main_product {
  padding-top: 100px;
  padding-bottom: 100px;
}

.main_product_title {   /* 메인 제목 */
  text-align: center;
  font-size: 32px; /* 글꼴 크기 및 두께 */
  font-weight: 700;
  color: #222222; /* 글자 색상 (진한 검정) */ 
  margin-bottom: 12px; /* 아래 부제목과의 간격 */
  letter-spacing: -0.5px;  /* 자간 살짝 좁게 해서 가독성 높임 */
  display: block;
}

.main_product_subtitle {   /* 서브 제목 */
  text-align: center;
  font-size: 16px;  /* 부제목 글꼴 크기 */
  color: #666666; /* 부제목 색상 (회색톤) */
  font-weight: 400;
  display: block;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3열 배치 */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-item {
  text-align: center;
  text-decoration: none; /* 링크 밑줄 제거 */
  color: inherit;
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-10px); /* 마우스 올리면 살짝 들림 */
}

.product-item img {
  width: 100%;
  height: auto;
  background-color: #f9f9f9; /* 이미지 배경색 */
  border-radius: 8px;
}

.product-name {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
}

.product-price {
  margin-top: 5px;
  font-weight: bold;
  color: #d35400; /* 주황색 포인트 */
}

/* 버튼을 감싸는 컨테이너 (중앙 정렬용) */
.button_container {
  margin-top: 50px;
  text-align: center;
  width: 100%;
}

/* 전체 제품 보기 버튼 스타일 */
.view_all_btn {
  display: inline-block;
  padding: 12px 36px;       /* 위아래, 좌우 여백 */
  background-color: #ba3d08; /* 이미지 속 특유의 갈색빛 도는 오렌지색 */
  color: #ffffff !important; /* 글자색 흰색 */
  text-decoration: none;    /* 밑줄 제거 */
  font-size: 15px;          /* 글꼴 크기 */
  font-weight: 500;         /* 글꼴 두께 */
  border-radius: px;       /* 모서리 아주 살짝만 둥글게 */
  transition: background-color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  border: none;
}

/* 마우스를 올렸을 때 효과 (Hover) */
.view_all_btn:hover {
  background-color: #9e3306; /* 마우스 올리면 조금 더 진해짐 */
  opacity: 0.9;
}