/* Pretendard - OpenType (.otf) */
@font-face {
    font-family: 'Pretendard';
    src: url('./fonts/Pretendard-Bold.otf') format('opentype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('./fonts/Pretendard-SemiBold.otf') format('opentype');
    font-weight: 600; /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('./fonts/Pretendard-Medium.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('./fonts/Pretendard-Regular.otf') format('opentype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('./fonts/Pretendard-Light.otf') format('opentype');
    font-weight: 300; /* Light */
    font-style: normal;
}

/* Oswald - TrueType (.ttf) */
@font-face {
    font-family: 'Oswald';
    src: url('./fonts/Oswald-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('./fonts/Oswald-SemiBold.ttf') format('truetype');
    font-weight: 600; /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('./fonts/Oswald-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

/* 2. 실제 적용 */
body {
    font-family: 'Pretendard-Local', sans-serif;
}

.heading {
    font-family: 'Oswald-Local', sans-serif;
}

기본 초기화
* {
box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Pretendard', sans-serif; overflow-x: hidden;
}

/* 슬라이더 메인 컨테이너 */
.slider {
  position: relative;
  width: 100%;
  height: 800px; /* 높이는 필요에 따라 조정 */
  overflow: hidden;
  background-color: #f0f0f0;
}

/* 슬라이드들이 담긴 마스크 */
.slider-mask {
  display: flex;
  width: 200%; /* 슬라이드 개수에 맞춰 조정 (2개면 200%) */
  height: 100%;
  /* Duration 500ms & Easing ease 적용 */
  transition: transform 500ms ease; 
}

/* 개별 슬라이드 */
.slide {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* 이미지를 배경처럼 배치 */
.slide-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 기존 background-size: cover와 동일한 역할 */
  z-index: 1; /* 이미지 뒤로 보내기 */
}

/* 콘텐츠가 이미지 위로 올라오도록 설정 */
.slide-content {
  position: relative;
  z-index: 2;
  /* 기존 스타일 유지 (중앙 정렬 등) */
  text-align: center;
  color: white;
  text-align: left;
  align-items: flex-start; /* PC: 가로 왼쪽 정렬 */
  margin-top: 150px;
  padding-left: 20%;
}

h1, .heading-1 {
  font-family: 'Oswald', sans-serif; /* Oswald 폰트 적용 */
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.text-block-1 {
  font-family: 'Oswald', sans-serif; /* Oswald 폰트 적용 */
  font-weight: 400;
  font-size: 40px;
  line-height: 40px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.button-1 {
  display: inline-block; 
  padding: 12px 30px; border: 1px solid white; color: white; 
  font-family: "Pretendard Variable", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 20px;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  padding: 18px 45px;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 10px;
}

.button-1:hover {
  background: white; color: #557b97;
}

/* 슬라이드 네비게이션 (Dots) */
.slide-nav {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 3px; /* Spacing 3px 반영 */
}

.nav-dot {
width: 10px;
height: 10px;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%; /* Rounded 반영 */
cursor: pointer;
/* Shadow 반영 */
box-shadow: 0 2px 4px rgba(0,0,0,0.2); 
transition: background-color 0.3s;
}

.nav-dot.active {
background-color: white;
}






/* section-2 전체 레이아웃 */
.section-details {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: #edf5ff;
}

/* 부모 박스를 가로 정렬로 설정 */
.details-main-container {
    display: flex;
    justify-content: center; /* 중앙 정렬 */
    align-items: stretch; /* 왼쪽과 오른쪽 높이를 비슷하게 맞춤 */
    max-width: 1200px;
    margin: 60px auto;
    gap: 40px; /* 왼쪽과 오른쪽 사이 여백 */
    padding: 0 20px;
}

/* 왼쪽 영역 너비 조절 */
.details-header {
    flex: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 10px; /* 전체 박스 곡률 10px */
    padding: 40px 20px;
    justify-content: center; /* 세로 중앙 */
    align-items: center;     /* 가로 중앙 */
    height: auto; 
}

/* 오른쪽 탭 영역 너비 조절 */
.tabs-container {
    flex: 7; /* 나머지 공간 차지 */
    background-color: #f9f9f9;
    border-radius: 10px;
    height: 750px;
}

/* 상단 헤더 영역 */
.details-header { margin-bottom: 60px; }
.product-image {
    width: 500px;
    margin-bottom: 18px;
    border-radius: 30px;
}

.details-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #b1b1b1;
}

/* 탭 메뉴 디자인 */
.tab-menu {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #edf5ff;
  max-width: 1200px;
  margin: 0 auto 10px;
}

.tab-link {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 15px 25px;
  border: none;
  background: none;
  cursor: pointer;
  color: #c5c5c5;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  flex: 1;                /* 버튼 너비 동일하게 분배 */
  text-align: center;
  word-break: keep-all;   /* 단어 단위 줄바꿈으로 깔끔하게 유지 */
}

.tab-link.active {
  color: #557b97;
  border-bottom: 3px solid #003b4e; /* 활성화된 탭 하단 강조 */
}

/* 탭 내용 영역 */
.tab-pane {
  display: none; /* 기본적으로 숨김 */
  animation: fadeIn 0.5s ease; /* 전환 시 부드러운 효과 */
}

.tab-pane.active { display: block; }

.ingredient-box {
  height: 100%;
  margin: 0 auto;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.ingredient-name {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #557b97; /* 포인트 컬러 */
}

.ingredient-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  height: 80px;
}

.ingredient-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 25px;
    border-radius: 15px;
}

/* 페이드인 애니메이션 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}





/* section-3 */
/* 섹션 레이아웃 */
.section-brand-value {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.value-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 60px;
  color: #003b4e;
}

/* 카드 컨테이너: 가로 정렬 및 높이 일치 */
.value-container {
  display: flex;
  justify-content: center;
  align-items: stretch; /* 카드들의 하단 높이를 동일하게 고정 */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 개별 카드 */
.value-card {
  flex: 1;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
  transform: translateY(-5px); /* 살짝 떠오르는 효과 */
}

/* 카드 이미지: 곡률 10px 및 높이 고정 */
.bv-img {
  width: 100%;
  height: 220px;
  border-radius: 10px; /* 요청하신 곡률 */
  margin-bottom: 25px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 카드 텍스트 */
.card-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: #003b4e;
}

.card-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: center;
  word-break: keep-all; /* 한글 줄바꿈 최적화 */
}



/* section-4 */
/* 섹션 전체 레이아웃 */
.section-about {
  padding: 80px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  align-items: center; /* 세로축 중앙 정렬 */
  justify-content: center; /* 가로축 중앙 정렬 */
  max-width: 1100px;
  width: 100%;
  gap: 80px; /* 로고와 텍스트 사이 간격 */
}

/* 왼쪽 로고 영역 */
.about-logo-box {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* 로고를 오른쪽(중앙쪽)으로 밀착 */
}

.about-logo {
  max-width: 250px; /* 로고 크기 적절히 조절 */
  height: auto;
}

/* 오른쪽 텍스트 영역 */
.about-content {
  flex: 1.5; /* 텍스트 영역을 로고보다 조금 더 넓게 */
  text-align: left;
}

.about-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
  letter-spacing: 1px;
}

.about-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  word-break: keep-all; /* 한글 단어 단위 줄바꿈 */
  max-width: 500px; /* 가독성을 위해 한 줄 길이 제한 */
}





/* section-5 */
/* 섹션 설정: 카드가 쌓일 만큼의 충분한 높이 확보 */
.section-stack {
  padding: 100px 0;
  background-color: #557b97;
  position: relative;
  width: 100%;
}

.stack-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* 스티키 카드 핵심 설정 */
.sticky-card {
    position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 800px; /* 카드 높이 고정 */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1); /* 겹칠 때 생기는 그림자 */
  background-color: #fff;
}

/* 각 카드가 멈추는 상단 위치 (조금씩 다르게 설정하여 겹침 효과 극대화) */
.card-1 { z-index: 1; }
.card-2 { z-index: 2; }
.card-3 { z-index: 3; }

/* 카드 내부 이미지 */
.stack-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 이미지가 박스에 꽉 차게 */
  display: block;
}

/* 이미지 위 어두운 오버레이 (선택 사항) */
.overlay-opacity {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 사진을 살짝 차분하게 */
  pointer-events: none; }


.sticky-card {
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}






/* section-6 */
.section-review {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.review-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 60px;
  color: #003b4e;
}

/* 4개씩 자동 정렬되는 그리드 */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border: 1px solid #003b4e;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  /* 요청하신 그림자: 4px 4px 8px */
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.review-img-box {
  width: 100%;
  height: 180px;
  border-radius: 10px; /* 이미지 곡률 10px */
  overflow: hidden;
  margin-bottom: 15px;
}

.review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-subject {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003b4e;
  word-break: keep-all;
}

.review-text {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  word-break: keep-all;
}





/* FAQ 섹션 전체 */
.section-faq {
  padding: 100px 20px;
  background-color: #edf5ff; /* 연한 배경색으로 섹션 구분 */
  text-align: center;
}

.faq-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 32px;
  margin-bottom: 60px;
  color: #003b4e;
}

/* 2열 그리드 레이아웃 */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 가로 2개 배치 */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* 개별 FAQ 카드 스타일 */
.faq-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #edf5ff;
  text-align: left;
  /* 요청하신 아웃 쉐도우 수치 적용 */
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 질문 텍스트 (Q.) */
.faq-question {
  font-family: 'Pretendard', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #003b4e;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* 답변 텍스트 (A.) */
.faq-answer {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  word-break: keep-all;
}





/* footer */
/* 푸터 전체 배경 및 여백 */
.footer-section {
  background-color: #557b97; /* 이미지의 남색 배경색 */
  padding: 60px 20px 40px;
  color: #fff;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* 로고 스타일 */
.footer-logo {
  width: 120px;
  filter: brightness(0) invert(1); /* 검정 로고를 흰색으로 변경 */
  margin-bottom: 40px;
}

/* 메뉴 네비게이션 */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 40px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
}

/* 구분선 */
.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
}

/* 기업 정보 텍스트 */
.footer-info {
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.footer-info p {
  margin: 5px 0;
}

.company-name {
  font-weight: 700;
  margin-bottom: 10px !important;
}

.footer-info a {
  color: inherit;
  text-decoration: none;
}

.copyright {
  margin-top: 30px !important;
  font-size: 12px;
  opacity: 0.6;
}

/* 페이지 내부 이동 시 부드럽게 스크롤 되도록 설정 (CSS 최상단에 추가 권장) */
html {
  scroll-behavior: smooth;
}



/* -----------------------------------------------------------
   [Responsive Design - 추가분]
----------------------------------------------------------- */

/* 1. 태블릿 사이즈 (1024px 이하) */
@media (max-width: 1024px) {
    /* 슬라이더 높이 및 폰트 조절 */
    .slider { 
      height: 500px; 
    }
    .heading-1, .slide-content {
      font-size: 50px;
      line-height: 50px;
      text-align: center;
     }
    
    .slide-content {
      padding: 0;
      left: 50%;
    }

    /* 상세정보 섹션: 가로 배열 유지하되 비율 조정 */
    .details-main-container { gap: 20px; }
    .product-image { width: 100%; max-width: 100%; }
    .details-header {
        flex: 3 !important; 
        min-width: 0; /* flex 박스 안에서 텍스트/이미지 넘침 방지 */
    }

    .tabs-container {
        flex: 7 !important;
        min-width: 0;
        height: auto !important; /* 고정 높이 해제 */
    }

    .tab-menu {
        flex-wrap: nowrap;       /* 줄바꿈 방지 */
        overflow-x: auto;        /* 탭이 너무 많으면 좌우 스크롤 허용 */
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start; /* 모바일에서는 왼쪽부터 시작 */
    }

    /* 브랜드 밸류 & 리뷰: 4열 -> 2열로 변경 */
    .value-container,
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid; /* flex에서 grid로 전환하여 정렬 유지 */
        gap: 20px;
    }

    /* About 섹션 간격 축소 */
    .about-container { gap: 40px; }
}

/* 2. 모바일 일반 사이즈 (768px 이하) */
@media (max-width: 768px) {
    /* 메인 슬라이더 */
    .slider {
      height: 500px;
      justify-content: center;
    }

    .slide-bg img {
        width: 100%;
        height: 100%;
        /* 이미지가 찌그러지지 않고 영역을 채우되, 중앙을 기준으로 맞춤 */
        object-fit: cover; 
        object-position: center; 
    }

    .slide-content {
      margin-top: 0; /* margin 대신 padding이나 flex로 위치 잡는 것이 안전합니다 */
      position: absolute;
      top: 50%; /* 세로 중앙 */
      left: 50%; /* 가로 중앙 */
      transform: translate(-50%, -50%); /* 정확한 중앙 정렬 */
      width: 90%; /* 모바일에서는 너비를 넓게 사용 */
      text-align: center; /* 모바일은 중앙 정렬이 가독성이 좋습니다 */
      padding-left: 0; /* PC용 패딩 해제 */
      z-index: 2;
    }

    .heading-1 { 
        font-size: 32px; 
        line-height: 1.2; 
        margin-bottom: 10px; 
    }
    .text-block-1 { 
        font-size: 20px; 
        line-height: 1.4; 
        margin-bottom: 20px; 
    }
    
    .button-1 {
        padding: 12px 30px;
        font-size: 16px;
    }

    /* 상세정보 섹션: 좌(헤더)/우(탭)를 세로로 쌓음 */
    .details-main-container {
        margin: 20px auto;
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center;
        width: 100%;
        max-width: 100vw;        /* 뷰포트 너비를 절대 넘지 않음 */
        padding: 0 15px;         /* 좌우 여백 확보 */
        margin: 0 auto;
        box-sizing: border-box;  /* 패딩이 너비에 포함되도록 설정 */
    }

    .tabs-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 500px;
        flex: none;               /* flex 비율 해제 */
        margin: 0 auto;
    }

    .tab-menu {
        flex-wrap: nowrap;       /* 줄바꿈 방지 */
        overflow-x: auto;        /* 탭이 너무 많으면 좌우 스크롤 허용 */
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start; /* 모바일에서는 왼쪽부터 시작 */
    }

    .tab-link {
        flex: 0 0 auto;          /* 탭 버튼이 찌그러지지 않게 */
        min-width: 80px;         /* 최소 너비 보장 */
    }

    .ingredient-box {
        padding: 20px 10px;
    }

    .ingredient-name {
        font-size: 18px;
    }

    .ingredient-desc {
        font-size: 14px;
    }

    .value-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* 가로축 중앙 정렬 */
        justify-content: center;
        gap: 30px;
    }

    .value-card {
        width: 100%;
        max-width: 300px; /* 카드가 너무 퍼지지 않게 제한 */
        margin: 0 auto;   /* 부모 안에서 중앙 배치 */
        text-align: center;
    }

    .details-header {
        width: 100%;
        align-items: center;
        padding: 0;
    }
    .product-image {
        margin: 0 auto 20px auto; /* 이미지 중앙 배치 */
        max-width: 100%;         /* 부모보다 커지지 않게 */
        height: auto;            /* 비율 유지 */
    }

    /* About 섹션: 로고와 글자 세로 정렬 */
    .about-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .about-logo-box { justify-content: center; }
    .about-content { text-align: center; }
    .about-desc { margin: 0 auto; }

    /* 스티키 스택 카드: 모바일에서는 높이를 줄여 가독성 확보 */
    .sticky-card { height: 500px; }

    /* 3. 리뷰(Review) 섹션: 카드 내부 요소 중앙 정렬 */
    .review-grid {
        display: flex; /* grid 대신 flex로 변경하여 중앙 제어 용이하게 함 */
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .review-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* FAQ 섹션: 2열 -> 1열 */
    .faq-grid { grid-template-columns: 1fr; }

    /* 푸터: 메뉴 간격 축소 및 세로 배치 고려 */
    .footer-nav {
        gap: 30px;
        flex-wrap: wrap; /* 공간 부족 시 자동 줄바꿈 */
        display: flex;
        flex-direction: column; /* 세로로 쌓기 */
        align-items: center;    /* 메뉴 글자들 가로 중앙 */
        justify-content: center;
        width: 100%;
        margin: 0 auto 40px auto;
    }
    .footer-link {
        text-align: center;
        width: auto;
        display: inline-block;
    }
}

/* 3. 소형 모바일 (480px 이하) */
@media (max-width: 480px) {
    /* 섹션 공통 여백 축소 */
    .section-details, .section-brand-value, .section-about, .section-review, .section-faq {
        padding: 50px 15px;
    }

    /* 타이틀 크기 일괄 축소 */
    .value-title, .review-title, .faq-title, .about-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .product-image {
        max-width: 280px; /* 화면보다 커지지 않게 조정 */
    }

    .tab-link {
        font-size: 11px;
        padding: 10px 2px;
    }

    /* 브랜드 밸류 & 리뷰: 모든 카드를 1열로 배치 */
    .value-container,
    .review-grid {
        grid-template-columns: 1fr;
    }

    /* 푸터 링크 글자 크기 조절 */
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3개씩 두 줄로 배치 */
        gap: 15px;
    }
    .footer-link { font-size: 14px; }
    
    /* 상세페이지 탭 메뉴 글자 크기 */
    .tab-link { padding: 10px 5px; font-size: 12px; }
}