:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e2e8f0;
  --soft:#f5f7fb;
  --primary:#2563eb;
  --dark:#0b1220;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{ max-width:100%; display:block; border-radius:0; }
a{ color:inherit; text-decoration:none; }

.container{
  max-width:1600px;
  margin:auto;
  padding:50px 60px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.container01{
  max-width:1600px;
  margin:auto;
  padding:50px 60px;
  border-radius:20px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.muted{ color:var(--muted); }
.badge{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
  cursor:pointer;
}
.btn--primary{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}
.btn--ghost{
  background:transparent;
}
.btn--dark{
  background:#111827;
  border-color:#111827;
  color:#fff;
}
.btn--full{ width:100%; }

/* Header */
.header{
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
}

.header__inner{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 30px;
  box-sizing:border-box;
}
.logo{ font-weight:900; letter-spacing:-.5px; }
.nav{
  display:none;
  gap:14px;
  align-items:center;
}
.nav a{
  padding:10px 10px;
  border-radius:10px;
}
.nav a:hover{ background:var(--soft); }

.nav__toggle{
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  padding:10px 12px;
  font-size:16px;
}

/* 모바일에서 메뉴 펼침 */
.nav.is-open{
  position:absolute;
  left:16px;
  right:16px;
  top:56px;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px;
}

/* Hero */
.hero{
  padding:28px 0 24px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:center;
}
.hero__text h1{
  margin:10px 0 10px;
  font-size:32px;
  line-height:1.2;
  letter-spacing:-1px;
}
.hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:16px 0;
}
.hero__info{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.infoBox{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.infoBox__label{ font-size:12px; color:var(--muted); }
.infoBox__value{ display:block; margin-top:2px; }

/* Strip */
.strip{
  background:linear-gradient(90deg, #2563eb, #60a5fa);
  color:#fff;
  padding:14px 0;
}
.strip__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Sections */
.section{ padding:40px 20px; }
.section--soft{ background:var(--soft); }
.section--dark{ background:var(--dark); color:#fff; }
.section__head{ margin-bottom:18px; }
.section__head h2{
  margin:0 0 6px;
  font-size:24px;
  letter-spacing:-.5px;
}
.section--dark .muted{ color:rgba(255,255,255,.7); }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.section--dark .card{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.12); }

/* Icon Grid */
.iconGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.iconItem{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.icon{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
}

/* Table */
.tableWrap{
  overflow:auto;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.table{
  width:100%;
  border-collapse:collapse;
  min-width:680px; /* 모바일에서 가로스크롤 */
}
.table th, .table td{
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:14px;
}
.table thead th{
  background:#f8fafc;
  position:sticky;
  top:0;
}

/* Cases */
.caseList{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.case{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.case__body h3{ margin:0 0 6px; }

/* FAQ */
.faq__item{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
  background:#fff;
  margin-bottom:10px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:800;
}
.faq__body{ margin-top:10px; color:var(--muted); }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.form{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  margin-top:16px;  
  padding:14px;
}
label{ display:block; font-weight:700; margin-bottom:10px; }
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  outline:none;
}
.section--dark input, .section--dark textarea{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  color:#fff;
}
.form__hint{ margin:8px 0 0; font-size:12px; opacity:.8; }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:24px 0 76px; /* 하단 고정 CTA 공간 */
}
.footer__grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
}
.footer__links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
}

/* Sticky CTA (Mobile) */
.stickyCta{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px 12px;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--line);
  display:flex;
  gap:10px;
  z-index:60;
}
.stickyCta__btn{
  flex:1;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 0;
  text-align:center;
  font-weight:900;
  background:#fff;
}
.stickyCta__btn--primary{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

/* ✅ 반응형(태블릿 이상) */
@media (min-width: 768px){
  .nav{ display:flex; }
  .nav__toggle{ display:none; }

  .hero{ padding:48px 0; }
  .hero__grid{ grid-template-columns: 1.1fr .9fr; gap:24px; }
  .hero__text h1{ font-size:44px; }

  .cards{ grid-template-columns: repeat(3, 1fr); }
  .iconGrid{ grid-template-columns: repeat(4, 1fr); }

  .case{ grid-template-columns: 280px 1fr; align-items:center; }
  .contact{ grid-template-columns: 1fr 1fr; align-items:start; }

  .stickyCta{ display:none; }
}

/* 유튜브 전체 섹션 */
.youtube-section{
  background: url('/natura/img/bg_youtube03.png') center center / cover no-repeat;
  padding:120px 20px;
}

/* 가운데 정렬 */
.youtube-container{
  max-width:600px;
  margin:0 auto;
  left:200;  
}

/* 영상 비율 유지 */
.youtube-wrap{
  position:relative;
  padding-top:56.25%;   /* 16:9 */
  border-radius:8px;
  overflow:hidden;
  /*box-shadow:0 10px 30px rgba(0,0,0,0.2);*/
}

/* 영상 꽉채우기 */
.youtube-wrap iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}






/* 상품 탭 */
.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 18px;
}

.tab{
  border:1px solid var(--line);
  background:#fff;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  cursor:pointer;
}

.tab.is-active{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

/* 탭 패널 show/hide */
.tabPanel{ display:none; }
.tabPanel.is-active{ display:block; }

/* 이미지 5개 반응형 갤러리 */
.productGallery{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.productGallery img{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
}

/* 빈칸(450/540 준비중) */
.productGallery--empty .emptyBox{
  height:220px;
  border-radius:16px;
  border:1px dashed var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  background:#fff;
  font-weight:800;
}

/* 반응형: 태블릿 */
@media (min-width: 768px){
  .productGallery{ grid-template-columns: repeat(2, 1fr); }
  .productGallery--empty .emptyBox{ height:240px; }
}

/* 반응형: PC */
@media (min-width: 1024px){
  .productGallery{ grid-template-columns: repeat(3, 1fr); }
}


.nav a.active-link{
  background: var(--soft);
  font-weight: 900;
}



/* 탭 안 이미지: 풀사이즈 없이 "원본 비율 + 센터 정렬" */
.proShot{
  position: relative;
  display: flex;
  justify-content: center;   /* 가운데 정렬 */
  padding: 24px 0;
}

/* 이미지: container(1600) 안에서 최대폭만 제한 */
.proShot__img{
  display:block;
  max-width: 100%;           /* 모바일 대응 */
  width: auto;               /* 원본 기준 */
  height: auto;
  border-radius: 0px;
  border: 0px solid var(--line);

}

/* 라벨(01~05) */
.proShot__label{
  position:absolute;
  left: 16px;
  top: 16px;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-weight:900;
  padding:8px 12px;
  border-radius:12px;
  font-size:14px;
}


/* 메인비주얼(메뉴 아래 큰 이미지) */
.mainVisual{
  width:100%;
  margin:0px 0;
}

.mainVisual__box{
  width:100%;
  height:720px;
  overflow:hidden;
}

.mainVisual__img{
  width:100%;
  height:100%;
  object-fit:cover;      /* 핵심 */
  object-position:center; /* 중앙 기준 */
  display:block;
}

/* 모바일 여백 조금 줄이기 */
@media (max-width:768px){
  .mainVisual__box{
    height:260px;
  }
}


/* ------------------------------
   Plan Cards (Glass Light)
------------------------------ */
.planCards{
  padding-top: 10px; /* 위 섹션과 간격 미세조정 */
  padding-bottom: 10px;
}

.planGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
}

.planCard{
  position:relative;
  display:block;
  padding:26px 26px 22px;
  border-radius:18px;
  text-decoration:none;
  overflow:hidden;

  /* glass */
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);

  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 150px;
}

.planCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.planCard__brand{
  display:block;
  font-size:12px;
  opacity:.72;
  margin-bottom:12px;
}

.planCard__title{
  display:block;
  font-size:34px;
  letter-spacing:-.6px;
  color:#111;
  margin-bottom:14px;
}

.planCard__cta{
  font-size:14px;
  opacity:.8;
}

/* color bubble */
.planCard::after{
  content:"";
  position:absolute;
  right:-52px; bottom:-52px;
  width:210px; height:210px;
  border-radius:50%;
  opacity:.28;
}

/* subtle diagonal sheen */
.planCard::before{
  content:"";
  position:absolute;
  left:-40%;
  top:-60%;
  width:140%;
  height:140%;
  transform: rotate(12deg);
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  opacity:.45;
  pointer-events:none;
}

.planCard--360::after{ background:#1e66ff; }
.planCard--450::after{ background:#25b75f; }
.planCard--540::after{ background:#ff9f0a; }

/* 모바일: 1열 */
@media (max-width: 900px){
  .planGrid{ grid-template-columns: 1fr; gap:16px; }
  .planCard__title{ font-size:28px; }
}



/* 상품 카드 탭 */
.productTabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:40px;
}

/* 카드 */
.productCard{
  position:relative;
  border:0;
  padding:30px;
  border-radius:12px;
  color:#fff;
  text-align:left;
  cursor:pointer;
  font-weight:600;
  transition:.2s;
}

.productCard strong{
  display:block;
  font-size:30px;
  margin-top:6px;
}

.productBrand{
  font-size:12px;
  opacity:.8;
}

/* 카드 색상 */
.productCard--360{
  background:linear-gradient(135deg,#2b6cff,#1a46a0);
}

.productCard--450{
  background:linear-gradient(135deg,#5db347,#2e7d32);
}

.productCard--540{
  background:linear-gradient(135deg,#ffae2b,#ef6c00);
}

/* 카드 장식 */
.productCard::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:160px;
  height:160px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
}

/* hover */
.productCard:hover{
  transform:translateY(-5px);
}

/* 선택된 카드 */
.productCard.is-active{
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* 모바일 */
@media (max-width:900px){

.productTabs{
grid-template-columns:1fr;
gap:16px;
}

.productCard strong{
font-size:24px;
}

}





/* ==========================
   Compare Table - Emphasis
========================== */
.tableWrap{
  padding: 14px;
  border-radius: 0;
  background: #fff;
  border: 0;                   /* ✅ 제거 */
  box-shadow: 0 12px 28px rgba(16,24,40,.10);
}

/* 표 전체 */
.table{
  width:100%;
  border-collapse: collapse;
  border-spacing: 0;
  background:#fff;
}

/* 헤더 */
.table thead th{
  position: sticky;            /* 모바일 가로스크롤 시 헤더 유지(선택효과) */
  top: 0;
  z-index: 1;
  padding: 16px 14px;
  font-size: 15px;
  font-weight: 800;
  color:#0b1220;
  background: linear-gradient(180deg, #f7faff, #eef4ff);
  border-bottom: 2px solid #d7e3ff;
}

/* 첫 컬럼(구분) 강조 */
.table thead th:first-child,
.table tbody td:first-child{
  font-weight: 800;
  color:#0b1220;
  background: #fbfcff;
}

/* 바디 */
.table tbody td{
  padding: 8px 8px;
  font-size: 18px;
  line-height: 1.5;
  color:#1f2937;
  border-bottom: 0;   /* ✅ 제거 */
}

/* 줄무늬(가독성) */
.table tbody tr:nth-child(even) td{
  background: #fcfdff;
}

/* hover 강조 */
.table tbody tr:hover td{
  background: #f3f7ff;
}

/* 세로 구분선 더 선명하게 */
.table thead th + th,
.table tbody td + td{
  border-left: 1px solid #e2eaf7;
}

/* 컬럼별 포인트(360/450/540) - 위쪽 바 */
.table thead th:nth-child(2){
  box-shadow: inset 0 4px 0 #1e66ff;
}
.table thead th:nth-child(3){
  box-shadow: inset 0 4px 0 #25b75f;
}
.table thead th:nth-child(4){
  box-shadow: inset 0 4px 0 #ff9f0a;
}

/* O / X 가 더 눈에 띄게 (텍스트 기반) */
.table td{
  word-break: keep-all;
}

/* 모바일에서 표가 너무 눌리면 */
@media (max-width: 768px){
  .tableWrap{ padding: 10px; border-radius: 14px; }
  .table thead th{ padding: 14px 12px; font-size: 14px; }
  .table tbody td{ padding: 12px; font-size: 13px; }
}



/* 360 / 450 / 540 상품명만 크게 */
.table thead th:nth-child(n+2){
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  padding: 22px 10px;
  letter-spacing:-1px;
}

/* 구분은 원래 크기 유지 */
.table thead th:first-child{
  font-size: 16px;
  font-weight: 600;
}

/* 표 내용 글씨 */
.table td{
  font-size: 22px;
  padding: 18px 10px;
  text-align: center;
}

/* 구분 열 */
.table td:first-child{
  text-align: left;
  font-weight: 600;
}


.hero{
  background:#f5f7fb;   /* 원하는 배경색 */
  padding:80px 0;
}



.hero__info{
  display:flex;
  gap:20px;
  margin-top:35px;
}

/* 기본 카드 */
.infoBox{
  border-radius:16px;
  padding:26px 34px;
  min-width:240px;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
  position:relative;
  overflow:hidden;
  color:#fff;
}

/* 둥근 패턴 */
.infoBox::after{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  background:rgba(255,255,255,0.15);
  border-radius:50%;
  right:-40px;
  top:-30px;
}

/* 상담전화 (주황색) */
.infoBox:nth-child(1){
  background:linear-gradient(135deg,#f97316,#ea580c);
}

/* 운영시간 (회색) */
.infoBox:nth-child(2){
  background:linear-gradient(135deg,#6b7280,#4b5563);
}

/* 라벨 */
.infoBox__label{
  display:block;
  font-size:14px;
  color:#ffffff;
  opacity:0.9;
  margin-bottom:6px;
}

/* 값 */
.infoBox__value{
  font-size:30px;
  font-weight:800;
  letter-spacing:1px;
  color:#fff;
}

.hero__info{
  display:flex;
  gap:20px;
  margin-top:35px;
}

/* 상담전화 (더 넓게) */
.infoBox:nth-child(1){
  flex:1.4;
}

/* 운영시간 */
.infoBox:nth-child(2){
  flex:1;
}

.compareSection{
  background:#f4f8fb;
}

.compareCards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:34px;
}

.compareCard{
  position:relative;
  background:#fff;
  border-radius:28px;
  padding:34px 30px;
  box-shadow:0 18px 45px rgba(20,40,80,.08);
  overflow:hidden;
}

.compareCard::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
}

.compareCard--blue::before{background:#2563eb;}
.compareCard--green::before{background:#22c55e;}
.compareCard--orange::before{background:#f59e0b;}

.compareCard__badge{
  display:inline-flex;
  padding:7px 13px;
  border-radius:999px;
  background:#eef4ff;
  color:#2563eb;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.compareCard--green .compareCard__badge{
  background:#ecfdf3;
  color:#16a34a;
}

.compareCard--orange .compareCard__badge{
  background:#fff7ed;
  color:#ea580c;
}

.compareCard h3{
  font-size:28px;
  line-height:1.25;
  margin-bottom:26px;
  color:#0f172a;
}

.compareCard ul{
  list-style:none;
  padding:0;
  margin:0;
}

.compareCard li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:15px 0;
  border-bottom:1px solid #edf1f5;
  font-size:16px;
}

.compareCard li:last-child{
  border-bottom:0;
}

.compareCard li span{
  color:#64748b;
  font-weight:500;
}

.compareCard li strong{
  color:#0f172a;
  font-weight:700;
  text-align:right;
}

/* 모바일 */
@media(max-width:768px){
  .compareCards{
    grid-template-columns:1fr;
    gap:16px;
    margin-top:22px;
  }

  .compareCard{
    border-radius:20px;
    padding:26px 22px;
  }

  .compareCard h3{
    font-size:24px;
    margin-bottom:20px;
  }

  .compareCard li{
    font-size:14px;
    padding:13px 0;
  }

  .compareCard li strong{
    max-width:55%;
    word-break:keep-all;
  }
}

.fullImgSection{

  background:#f4f8fb;
}

.fullImgSection .container{
  background:#fff;
  border-radius:28px;
  padding:60px; /* 🔥 핵심 (PC도 적용) */
  overflow:hidden;
  box-shadow:0 18px 45px rgba(20,40,80,.08);
  box-sizing:border-box;
}

.fullImgSection img{
  width:100%;
  display:block;
  border-radius:18px; /* 🔥 이미지도 살짝 둥글게 */
}

/* 모바일 */
@media(max-width:768px){
  .fullImgSection{
  }

  .fullImgSection .container{
    border-radius:18px;
    padding:16px; /* 🔥 모바일 여백 최적화 */
  }

  .fullImgSection img{
    border-radius:12px;
  }
}



.kakaoCard{
  display:block;

  border-radius:24px;
  padding:20px;
  box-shadow:0 18px 45px rgba(20,40,80,.08);
  transition:all .2s ease;
}

.kakaoCard img{
  width:100%;
  display:block;
  border-radius:16px;
}

/* 살짝 떠오르는 효과 */
.kakaoCard:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(20,40,80,.12);
}

/* 모바일 */
@media(max-width:768px){
  .kakaoCard{
    padding:0px;
    border-radius:18px;
  }

  .kakaoCard img{
    border-radius:12px;
  }
}


.privacyBox{
  margin-top:16px;
}

.privacyBox textarea{
  width:100%;
  height:80px;
  border-radius:12px;
  padding:14px;
  font-size:11px;
  line-height:1.6;
  letter-spacing:-1px;
  resize:none;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.06);
  color:#ddd;
  overflow-y:auto;
}

/* 체크박스 */
.privacyCheck{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  font-size:13px;
  color:#ddd;
}

.privacyCheck input{
  width:16px;
  height:16px;
}


html{
  scroll-behavior:smooth;
}

.dotNav{
  position:fixed;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  z-index:9998;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.dotNav a{
  position:relative;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#bbb;
  display:block;
  transition:.25s;
}

.dotNav a:hover{
  background:#ff5a00;
  transform:scale(1.25);
}

.dotNav a span{
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  background:#111;
  color:#fff;
  font-size:13px;
  padding:6px 10px;
  border-radius:20px;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transition:.25s;
}

.dotNav a:hover span{
  opacity:1;
  visibility:visible;
}

@media(max-width:768px){
  .dotNav{
    display:none;
  }
}

.heroSlider{
  overflow:hidden;
  position:relative;
}

.heroSlider__track{
  display:flex;
  width:200%;
  animation: heroSlide 8s infinite;
}

.heroSlider__item{
  width:50%;
  flex-shrink:0;
}

.heroSlider__item img{
  width:100%;
  height:auto;
  display:block;
}

@keyframes heroSlide{
  0%{ transform:translateX(0); }
  40%{ transform:translateX(0); }

  50%{ transform:translateX(-50%); }
  90%{ transform:translateX(-50%); }

  100%{ transform:translateX(0); }
}

/* ======================
   상단 연락처 바
====================== */
.topBar{
  width:100%;
  background:#f5f5f5;
  border-bottom:1px solid #e5e5e5;
}

.topBar__inner{
  max-width:1400px;
  margin:0 auto;
  padding:10px 30px;

  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.topBar__right{
  display:flex;
  align-items:center;
  gap:16px;

  font-size:15px;
  font-weight:500;
}

.topBar__right a{
  color:#111;
  text-decoration:none;
}

.topBar__right strong{
  color:#0374da;
  font-size:17px;
  font-weight:700;
}

.topBar__divider{
  color:#bbb;
}

/* ======================
   모바일
====================== */
@media(max-width:768px){

  .topBar{
    display:none;   /* 모바일은 숨김 */
  }

}

.privacy_layer{
  display:none;
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.55);
  z-index:20000;
}

.privacy_pop{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:90%;
  max-width:720px;
  max-height:80vh;
  background:#fff;
  border-radius:16px;
  padding:28px;
  box-sizing:border-box;
  overflow-y:auto;
}

.privacy_pop h3{
  margin:0 0 20px;
  font-size:24px;
  color:#111;
}

.privacy_content{
  font-size:15px;
  line-height:1.7;
  color:#333;
}

.privacy_content h4{
  margin:22px 0 8px;
  font-size:17px;
  color:#111;
}

.privacy_close{
  position:absolute;
  right:18px;
  top:14px;
  border:0;
  background:none;
  font-size:30px;
  cursor:pointer;
}

@media(max-width:768px){
  .privacy_pop{
    width:92%;
    max-height:82vh;
    padding:24px 18px;
  }

  .privacy_pop h3{
    font-size:21px;
  }

  .privacy_content{
    font-size:14px;
  }
}

/* ==========================
   나투라비탈리스 제품 슬라이드
========================== */

.nvProducts{
  padding:80px 20px;
  background:#f4f6f9;
}

.nvProducts__container{
  width:min(1600px, 100%);
  margin:0 auto;
  /*padding:50px 100px 42px;
  background:#fff;
  border-radius:22px;
  box-shadow:0 10px 40px rgba(0,0,0,.08);
  overflow:hidden;*/
}

.nvProducts__head{
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:36px;
}

.nvProducts__head > div:first-child{
    width:100%;
    text-align:center;
}

.nvProducts__eyebrow{
    display:block;
    margin-bottom:8px;

    color:#55715d;
    font-size:13px;
    font-weight:700;
    letter-spacing:.16em;

    text-align:center;
}

.nvProducts__head h2{
    margin:0;

    color:#171717;
    font-size:clamp(30px,4vw,48px);
    line-height:1.2;
    letter-spacing:-.04em;

    text-align:center;
}

.nvProducts__head p{
    margin:12px 0 0;

    color:#777;
    font-size:16px;

    text-align:center;
}

.nvProducts__controls{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);

    display:flex;
    gap:10px;
    flex-shrink:0;
}

.nvProducts__controls{
  display:flex;
  gap:10px;
  flex-shrink:0;
}

.nvProducts__arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  padding:0;
  border:1px solid #d7d7d7;
  border-radius:50%;
  background:#fff;
  color:#222;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  transition:.25s ease;
}

.nvProducts__arrow:hover{
  background:#222;
  color:#fff;
  border-color:#222;
}

.nvProducts__viewport{
  width:100%;
  overflow:hidden;
}

.nvProducts__track{
  display:flex;
  align-items:stretch;
  /*gap:30px;*/  
  gap:0px;
  transition:transform .55s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

/* 제품 1개 */
.nvProduct{
  flex:0 0 calc((100% - 3px) / 4);
  min-width:0;
  background:transparent;
  border:0;
  box-shadow:none;
}

/* 제품 링크 */
.nvProduct__link{
  position:relative;
  display:block;
  width:100%;
  color:inherit;
  text-decoration:none;
  overflow:hidden;
}

/* 제품 이미지 */
.nvProduct__image{
  position:relative;
  width:100%;
  aspect-ratio:3 / 5;
  padding:0;
  background:#f7f7f7;
  overflow:hidden;
}

.nvProduct__image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transition:transform .45s ease;
}

/* 이미지 위 오버레이 */
.nvProduct__info{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  min-height:auto;
  padding:80px 24px 30px;
  text-align:center;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.28) 35%,
    rgba(0,0,0,.82) 100%
  );
  opacity:0;
  visibility:hidden;
  transform:translateY(18px);
  transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .35s ease;
}

.nvProduct__category{
  display:block;
  margin-bottom:7px;
  color:rgba(255,255,255,.82);
  font-size:14px;
}

.nvProduct__info h3{
  min-height:auto;
  margin:0;
  color:#fff;
  font-size:22px;
  font-weight:700;
  line-height:1.4;
  letter-spacing:-.03em;
  word-break:keep-all;
}

.nvProduct__price{
  display:block;
  margin-top:10px;
  color:#fff;
  font-size:25px;
  font-weight:800;
  line-height:1.3;
}

.nvProduct:hover .nvProduct__info{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.nvProduct:hover .nvProduct__image img{
  transform:scale(1.04);
}

.nvProducts__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:30px;
}

.nvProducts__dot{
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#c9c9c9;
  cursor:pointer;
  transition:.25s ease;
}

.nvProducts__dot.is-active{
  width:24px;
  border-radius:10px;
  background:#4d6654;
}

/* 태블릿: 2개 */
@media(max-width:1024px){
  .nvProducts__container{
    padding:42px 36px 36px;
  }

  .nvProducts__track{
    gap:20px;
  }

  .nvProduct{
    flex-basis:calc((100% - 20px) / 2);
  }
}

/* 모바일: 1개 */
@media(max-width:640px){
  .nvProducts{
    padding:50px 14px;
  }

  .nvProducts__container{
    width:100%;
    padding:30px 18px 28px;
    border-radius:18px;
  }

  .nvProducts__head{
    position:relative;
    justify-content:center;
    align-items:center;
    margin-bottom:28px;
  }

  .nvProducts__controls{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
  }

  .nvProducts__head h2{
    font-size:28px;
  }

  .nvProducts__head p{
    font-size:14px;
  }

  .nvProducts__controls{
    gap:6px;
  }

  .nvProducts__arrow{
    width:42px;
    height:42px;
    font-size:18px;
  }

  .nvProducts__track{
    gap:14px;
  }

  .nvProduct{
    flex-basis:100%;
  }

  .nvProduct__info{
    opacity:1;
    visibility:visible;
    transform:none;
    padding:70px 18px 22px;
  }

  .nvProduct__info h3{
    font-size:20px;
  }

  .nvProduct__price{
    font-size:22px;
  }
  
}


/* 제품 본 이미지 */
.nvProduct__image > img:not(.nvProduct__badge){
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .45s ease;
}

/* 쾰른리스트 마크 */
.nvProduct__image .nvProduct__badge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:10;

  width:68px !important;
  height:68px !important;
  max-width:68px !important;

  object-fit:contain !important;
  object-position:center;

  background:transparent;
  border-radius:50%;
  padding:0;

  box-shadow:none;
  pointer-events:none;

  transform:none;
}

/* ========================================
   NATURA VITALIS AWARD
======================================== */

.nvAwards {
  padding: 80px 0 90px;
  background: #fff;
}

.nvAwards__inner {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.nvAwards__text {
  margin-bottom: 45px;
  text-align: center;
}

.nvAwards__eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  color: #315f61;
}

.nvAwards__title {
  margin: 0;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.045em;
  color: #111;
}

.nvAwards__desc {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #777;
  word-break: keep-all;
}

.nvAwards__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.nvAwards__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 24px 15px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
}

.nvAwards__item:last-child {
  border-right: 0;
}

.nvAwards__item img {
  display: block;
  width: 100%;
  max-width: 155px;
  height: 135px;
  object-fit: contain;
  transition: transform .3s ease;
}

.nvAwards__item:hover img {
  transform: translateY(-5px);
}

/* 태블릿 */
@media (max-width: 1100px) {
  .nvAwards__inner {
    width: min(100% - 40px, 1500px);
  }

  .nvAwards__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .nvAwards__item:nth-child(3) {
    border-right: 0;
  }

  .nvAwards__item:nth-child(-n+3) {
    border-bottom: 1px solid #e8e8e8;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .nvAwards {
    padding: 55px 0 65px;
  }

  .nvAwards__inner {
    width: calc(100% - 30px);
  }

  .nvAwards__text {
    margin-bottom: 30px;
  }

  .nvAwards__title {
    font-size: 28px;
  }

  .nvAwards__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .nvAwards__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvAwards__item {
    min-height: 145px;
    padding: 18px 10px;
  }

  .nvAwards__item:nth-child(3) {
    border-right: 1px solid #e8e8e8;
  }

  .nvAwards__item:nth-child(even) {
    border-right: 0;
  }

  .nvAwards__item:nth-child(-n+4) {
    border-bottom: 1px solid #e8e8e8;
  }

  .nvAwards__item img {
    max-width: 120px;
    height: 105px;
  }
}




/* ===========================
   MESSAGE
=========================== */

.nvMessage{
    max-width:1400px;
    margin:120px auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:520px 1fr;
    gap:90px;
    align-items:center;
}

.nvMessage__videoWrap{
    position:relative;
    width:100%;
    padding-top:125%;   /* 세로형 */
    border-radius:24px;
    overflow:hidden;
    background:#eee;
}

.nvMessage__videoWrap iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

.nvMessage__eyebrow{
    display:block;
    margin-bottom:18px;

    color:#7b8b88;
    font-size:13px;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.nvMessage__title{
    margin:0 0 35px;

    font-size:clamp(40px,4vw,64px);
    line-height:1.15;
    font-weight:700;
    color:#1d1d1d;
}

.nvMessage__title em{
    font-style:italic;
    font-weight:300;
}

.nvMessage__content p{
    margin:0 0 22px;

    font-size:18px;
    line-height:1.9;
    color:#555;
}

.nvMessage__ceo{
    margin-top:55px;
}

.nvMessage__ceo strong{
    display:block;
    font-size:34px;
    font-style:italic;
    color:#222;
}

.nvMessage__ceo span{
    display:block;
    margin-top:8px;

    font-size:18px;
    color:#666;
    font-style:italic;
}


@media (max-width:991px){

    .nvMessage{
        grid-template-columns:1fr;
        gap:45px;
        margin:70px auto;
        padding:0 20px;
    }

    .nvMessage__videoWrap{
        padding-top:56.25%;   /* 16:9 */
    }

    .nvMessage__title{
        font-size:36px;
    }

    .nvMessage__content p{
        font-size:16px;
    }

    .nvMessage__ceo strong{
        font-size:28px;
    }

}

.section-space{
    padding:140px 0;
}