/* --------------------------------
      Section: sub__hunt
--------------------------------- */

.sub__hunt {
  position: relative;
  color: #333333;
  overflow: hidden;
  font-family: "NanumSquareNeo";
}

.sub__hunt_kor,
.sub__hunt_eng {
  font-size: 1.375rem;
  color: #333;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.3px;
  text-align: center;
}

.sub__hunt_kor {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.sub__hunt_card {
  max-width: 1000px;
  margin: 100px auto;
}

.sub__hunt_card ul {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.sub__hunt_card ul li {
  position: relative;
  width: 33.333%;
  background: #3a3a3a;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* 앞면: 기존 카드 내용 */
.card__front {
  transition: opacity 0.3s ease;
  padding: 30px 0;
}

.sub__hunt_card_img {
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub__hunt_card_num {
  font-size: 1.25rem;
}

.sub__hunt_card_text {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

/* 뒷면: 호버 시 나타나는 */
.card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__back .back__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

/* 마우스 올렸을 때 전환 */
.sub__hunt_card ul li:hover .card__front {
  opacity: 0;
}

.sub__hunt_card ul li:hover .card__back {
  opacity: 1;
}

.sub__hunt_step {
  background: #fafafa;
  padding: 60px 0 80px;
}

.sub__hunt_step ul {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.sub__hunt_step ul li {
  position: relative;
}

.sub__hunt_step ul li::after {
  font-family: 'SUIT';
  font-weight: 700;
  content: "<";
  color: #f3bf46;
  position: absolute;
  right: -35px;
  top: 40%;
}

.sub__hunt_step ul li:last-child::after {
  content: none;
}

.sub__hunt_step_img {
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub__hunt_step_text {
  font-size: 1.25rem;
  font-weight: 800;
}

.sub__hunt_visual {
  padding: 100px 20px;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline__row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin: 0px 0;
  position: relative;
}

.timeline__row.left .icon {
  justify-self: end;
}

.timeline__row.left .text {
  justify-self: start;
}

.timeline__row.right .icon {
  justify-self: start;
}

.timeline__row.right .text {
  justify-self: end;
}

/* 말풍선 자체를 선에서 떨어뜨리기 위해 padding 추가 */
.timeline__row.left .col.icon {
  padding-right: 20px;
  /* ← 왼쪽 말풍선은 오른쪽으로 살짝 밀기 */
}

.timeline__row.right .col.icon {
  padding-left: 20px;
  /* → 오른쪽 말풍선은 왼쪽으로 살짝 밀기 */
}

.col.icon .circle {
  background: #333;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.timeline__row.left .circle {
  box-shadow: -10px 0 8px rgba(0, 0, 0, 0.3);
}

.timeline__row.right .circle {
  box-shadow: 10px 0 8px rgba(0, 0, 0, 0.3);
}

/* 왼쪽 말풍선 (꼬리 오른쪽에) */
.timeline__row.left .col.icon .circle::after {
  content: "";
  position: absolute;
  right: -24px;
  /* 꼬리 위치 조정 */
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 36px solid #333;
}

/* 오른쪽 말풍선 (꼬리 왼쪽에) */
.timeline__row.right .col.icon .circle::after {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-right: 36px solid #333;
}

.col.dot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.col.dot .line {
  position: absolute;
  top: -100px;
  bottom: -100px;
  width: 2px;
  background: #313c4d;
  z-index: 0;
}

.col.dot .dot {
  width: 12px;
  height: 12px;
  background: #f2c300;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* 공통 텍스트 박스 */
.text__block {
  max-width: 300px;
}

.text__label {
  font-weight: 800;
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 20px;
}

.text__label .num {
  font-family: "pretendard";
  font-size: 1.75rem;
  font-weight: 800;
  color: #2c3541;
  /* 짙은 남색 느낌 */
  margin-right: 4px;
}

.text__desc {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #666;
  margin: 0;
  word-break: keep-all;
}

/* 왼쪽(아이콘 기준)일 경우 오른쪽 정렬 */
.timeline__row.left .col.text {
  text-align: left;
}

/* 오른쪽(아이콘 기준)일 경우 왼쪽 정렬 */
.timeline__row.right .col.text {
  text-align: right;
}

/* ✅ 1024px 이하 */
@media (max-width: 1024px) {

  /* 카드 영역 */
  .sub__hunt_card ul {
    flex-wrap: wrap;
  }

  .sub__hunt_card ul li {
    width: calc(50% - 0.5rem);
    margin-bottom: 1rem;
  }

  /* 스텝 영역 */
  .sub__hunt_step ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .sub__hunt_step ul li {
    width: calc(33.333% - 0.5rem);
  }

  /* 타임라인 */
  .timeline__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
  }

  .col.icon {
    order: 1;
    margin-bottom: 1rem;
  }

  .col.text {
    order: 2;
    max-width: 100%;
    text-align: center !important;
  }

  .col.dot {
    display: none;
  }

  .col.icon .circle {
    width: 150px;
    height: 150px;
  }

  .timeline__row.left .col.icon .circle::after,
  .timeline__row.right .col.icon .circle::after {
    display: none;
  }

  .text__label {
    font-size: 1rem;
  }

  .text__label .num {
    font-size: 1.5rem;
  }

  .text__desc {
    font-size: 0.95rem;
  }
}

/* ✅ 600px 이하 */
@media (max-width: 600px) {
  .sub__hunt_card ul li {
    width: 100%;
  }

  .sub__hunt_step ul li {
    width: 100%;
  }

  .col.icon .circle {
    width: 120px;
    height: 120px;
  }

  .text__label {
    font-size: 0.95rem;
  }

  .text__label .num {
    font-size: 1.25rem;
  }

  .text__desc {
    font-size: 0.9rem;
  }
}

.evaluation-page-container * {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.evaluation-page-container {
  font-family: 'Noto Sans KR', Arial, sans-serif !important;
  line-height: 1.6 !important;
  color: #333 !important;
  background: white !important;
}

.evaluation-page-container .eval-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 80px 20px !important;
}

/* 맨 위 탭 버튼 */
.evaluation-page-container .eval-tab-buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 15px !important;
  margin-bottom: 60px !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: all 0.8s ease !important;
}

.evaluation-page-container .eval-tab-buttons.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.evaluation-page-container .eval-tab-button {
  background: #333 !important;
  color: white !important;
  border: none !important;
  padding: 12px 30px !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  min-width: 80px !important;
}

.evaluation-page-container .eval-tab-button.active {
  background: #000 !important;
}

.evaluation-page-container .eval-tab-button:hover {
  background: #000 !important;
}

/* 고기 이미지와 텍스트 섹션 */
.evaluation-page-container .eval-product-section {
  margin-bottom: 80px !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: all 0.8s ease !important;
}

.evaluation-page-container .eval-product-section.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.evaluation-page-container .eval-product-image {
  text-align: center !important;
  margin-bottom: 40px !important;
}

.evaluation-page-container .eval-product-image img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
}

.evaluation-page-container .eval-product-image-placeholder {
  width: 100% !important;
  height: 370px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  color: #999 !important;
  font-size: 16px !important;
}

.evaluation-page-container .eval-product-info {
  text-align: left !important;
  margin: 0 auto !important;
}

.evaluation-page-container .eval-product-info div {
  margin-bottom: 8px !important;
  font-size: 18px !important;
  color: #333 !important;
  font-weight: 600;
}

/* 에이징 빙온숙성 결과 제목 */
.evaluation-page-container .eval-section-title {
  text-align: center !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin-bottom: 60px !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: all 0.8s ease !important;
}

.evaluation-page-container .eval-section-title.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 차트 이미지 섹션 */
.evaluation-page-container .eval-chart-section {
  text-align: center !important;
  margin-bottom: 50px !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: all 0.8s ease !important;
}

.evaluation-page-container .eval-chart-section.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.evaluation-page-container .eval-chart-image img {
  max-width: 100% !important;
  height: auto !important;
}

.evaluation-page-container .eval-chart-placeholder {
  width: 100% !important;
  height: 600px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  color: #999 !important;
  font-size: 16px !important;
}

/* 결론 섹션 */
.evaluation-page-container .eval-conclusion {
  background: #333 !important;
  color: white !important;
  padding: 40px !important;
  text-align: center !important;
  border-radius: 8px !important;
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: all 0.8s ease !important;
}

.evaluation-page-container .eval-conclusion.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.evaluation-page-container .eval-conclusion-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  line-height: 1.4 !important;
}

.evaluation-page-container .eval-conclusion-subtitle {
  background: #666 !important;
  color: white !important;
  padding: 4px 12px !important;
  border-radius: 12px !important;
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

/* 탭 컨텐츠 */
.evaluation-page-container .eval-tab-content {
  display: none !important;
}

.evaluation-page-container .eval-tab-content.active {
  display: block !important;
}

/* 반응형 */
@media (max-width: 768px) {
  .evaluation-page-container .eval-container {
    padding: 60px 15px !important;
  }

  .evaluation-page-container .eval-product-image-placeholder,
  .evaluation-page-container .eval-chart-placeholder {
    height: 250px !important;
    font-size: 14px !important;
  }

  .evaluation-page-container .eval-section-title {
    font-size: 18px !important;
  }

  .evaluation-page-container .eval-tab-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .evaluation-page-container .eval-tab-button {
    width: 100px !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
  }

  .evaluation-page-container .eval-conclusion-title {
    font-size: 16px !important;
  }

  .evaluation-page-container .eval-conclusion-subtitle {
    font-size: 11px !important;
  }

  .evaluation-page-container .eval-product-info {
    font-size: 14px !important;
    padding: 0 20px !important;
  }

  .evaluation-page-container .eval-product-info div {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .evaluation-page-container .eval-container {
    padding: 40px 10px !important;
  }

  .evaluation-page-container .eval-section-title {
    font-size: 16px !important;
  }

  .evaluation-page-container .eval-conclusion {
    padding: 25px !important;
  }

  .evaluation-page-container .eval-product-image-placeholder,
  .evaluation-page-container .eval-chart-placeholder {
    height: 200px !important;
  }
}