: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--primary:hover{
  color:#000;   /* 글씨 검정 */
}
.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{
  position:relative;
  z-index:1;

  background:url('/natura/img/bg_youtube03.png') center center / cover no-repeat;
  padding:120px 20px;
}

/* 가운데 정렬 */
.youtube-container{
  position:relative;
  z-index:1;

  width:100%;
  max-width:600px;
  margin:0 auto;
}

/* 영상 비율 유지 */
.youtube-wrap{
  position:relative;
  z-index:1;

  width:100%;
  padding-top:56.25%;
  border-radius:8px;
  overflow:hidden;
}

/* 영상 꽉 채우기 */
.youtube-wrap iframe{
  position:absolute;
  top:0;
  left:0;
  z-index:1;

  width:100%;
  height:100%;
  border:0;
}

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

  .youtube-section{
    display:none;
  }

}




/* 상품 탭 */
.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;
}

/* 헤더를 영상보다 위로 */
.header{
  position:relative;
  z-index:9999;
}

/* 헤더 내부 */
.header__inner{
  position:relative;
  z-index:10000;
}

/* 모바일 펼침 메뉴 */
.nav.is-open{
  position:absolute;
  left:16px;
  right:16px;
  top:100%;

  display:flex;
  flex-direction:column;

  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;

  z-index:10001;
  box-shadow:0 15px 35px rgba(0,0,0,.18);
}


/* 제품 카드 */
.nvProduct__image{
  position:relative;
  overflow:hidden;
}

/* 실제 제품 이미지 */
.nvProduct__photo{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* 제품 정보 영역 */
.nvProduct__info{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;
  padding:80px 20px 24px;
  box-sizing:border-box;

  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    rgba(0,0,0,.78)
  );
}

/* 버튼 영역 */
.nvProduct__buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1px;
  margin-bottom:15px;

  opacity:0;
  visibility:hidden;
  transform:translateY(12px);

  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease;
}

/* 카드 오버 시 버튼 표시 */
.nvProduct:hover .nvProduct__buttons{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* 공통 버튼 */
.nvProduct__button{
  display:flex;
  align-items:center;
  justify-content:center;

  min-width:130px;
  height:48px;
  padding:0 16px;
  box-sizing:border-box;

  border-radius:0px;
  font-size:14px;
  font-weight:600;
  line-height:1;
  text-decoration:none;
  cursor:pointer;

  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

/* 제품상세 */
.nvProduct__button--detail{
    background:#111;      /* 완전 검정 */
    color:#fff;
    border:1px solid #111;
}

.nvProduct__button--detail:hover{
    background:#000;
    border-color:#000;
    color:#fff;
    transform:translateY(-2px);
}

/* 제품구매 */
.nvProduct__button--buy{
    background:#ff6b00;   /* 주황 */
    color:#fff;
    border:1px solid #ff6b00;
}

.nvProduct__button--buy:hover{
    background:#fff;
    border-color:#ff7f1a;
    color:#fff;
    transform:translateY(-4px);
}

/* 품절 */
.nvProduct__button--soldout{
  color:#aaa;
  background:rgba(20,20,20,.8);
  border:1px solid rgba(255,255,255,.25);
  cursor:default;
}

/* 버튼 오버 */
.nvProduct__button--detail:hover{
  color:#111;
  background:#fff;
  border-color:#fff;
  transform:translateY(-2px);
}

.nvProduct__button--buy:hover{
  color:#111;
  background:#fff;
  border-color:#fff;
  transform:translateY(-2px);
}

/* 모바일은 오버가 없으므로 버튼 항상 표시 */
@media(max-width:768px){

  .nvProduct__info{
    padding:60px 14px 18px;
  }

  .nvProduct__buttons{
    opacity:1;
    visibility:visible;
    transform:none;
    gap:6px;
    margin-bottom:12px;
  }

  .nvProduct__button{
    min-width:88px;
    height:38px;
    padding:0 12px;
    font-size:13px;
  }


}



/* =========================================================
   Natura Vitalis FAQ
========================================================= */

.nvFaqPage,
.nvFaqPage * {
    box-sizing: border-box;
}

.nvFaqPage {
    color: #152039;
    background: #f6f7f9;
    word-break: keep-all;
}

.nvFaqContainer {
    width: calc(100% - 40px);
    max-width: 1460px;
    margin: 0 auto;
}

/* 상단 타이틀 */
.nvFaqHero {
    padding: 150px 20px 90px;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(247, 248, 250, 1) 100%
        );
}

.nvFaqEyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #d97224;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.nvFaqHero h1 {
    margin: 0;
    color: #111b32;
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.nvFaqHeroText {
    margin: 24px 0 0;
    color: #66758f;
    font-size: 18px;
    line-height: 1.8;
}

/* FAQ 영역 */
.nvFaqSection {
    padding: 20px 0 120px;
}

.nvFaqSection .nvFaqContainer {
    padding: 55px 60px 60px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(25, 38, 61, 0.06);
}

.nvFaqHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.nvFaqHeadTitle h2 {
    margin: 0;
    color: #131d34;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.nvFaqHeadTitle p {
    margin: 12px 0 0;
    color: #74829a;
    font-size: 15px;
    line-height: 1.6;
}

/* 검색 */
.nvFaqSearch {
    width: 100%;
    max-width: 380px;
}

.nvFaqSearchLabel {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

.nvFaqSearchBox {
    position: relative;
}

.nvFaqSearchInput {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 48px 0 18px;
    border: 1px solid #dce3ed;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #19243b;
    font-family: inherit;
    font-size: 15px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.nvFaqSearchInput::placeholder {
    color: #9aa5b8;
}

.nvFaqSearchInput:focus {
    border-color: #d97224;
    box-shadow: 0 0 0 4px rgba(217, 114, 36, 0.1);
}

.nvFaqSearchReset {
    position: absolute;
    top: 50%;
    right: 12px;
    display: none;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #eef1f5;
    color: #68748a;
    font-family: Arial, sans-serif;
    font-size: 21px;
    line-height: 30px;
    cursor: pointer;
    transform: translateY(-50%);
}

.nvFaqSearchReset.is-visible {
    display: block;
}

/* 아코디언 */
.nvFaqList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nvFaqItem {
    overflow: hidden;
    border: 1px solid #dce3ed;
    border-radius: 16px;
    background: #fff;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.nvFaqItem:hover,
.nvFaqItem.is-open {
    border-color: #cbd5e3;
    box-shadow: 0 8px 24px rgba(22, 34, 55, 0.05);
}

.nvFaqItem[hidden] {
    display: none !important;
}

.nvFaqQuestion {
    margin: 0;
    font-size: inherit;
}

.nvFaqButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 62px;
    padding: 17px 22px;
    border: 0;
    background: transparent;
    color: #172138;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.nvFaqQuestionText {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.025em;
}

.nvFaqQ {
    flex: 0 0 auto;
    color: #d97224;
}

.nvFaqIcon {
    position: relative;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

.nvFaqIcon::before,
.nvFaqIcon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 2px;
    background: #27344d;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.nvFaqIcon::before {
    width: 14px;
    height: 2px;
}

.nvFaqIcon::after {
    width: 2px;
    height: 14px;
}

.nvFaqButton[aria-expanded="true"] .nvFaqIcon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* 답변 */
.nvFaqAnswer {
    overflow: hidden;
}

.nvFaqAnswer[hidden] {
    display: none;
}

.nvFaqAnswerInner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0 24px 22px;
    color: #66758f;
    font-size: 16px;
    line-height: 1.75;
}

.nvFaqA {
    flex: 0 0 auto;
    color: #d97224;
    font-weight: 700;
}

.nvFaqAnswerText {
    flex: 1;
    min-width: 0;
}

.nvFaqAnswerText p {
    margin: 0;
}

.nvFaqAnswerText p + p {
    margin-top: 5px;
}

.nvFaqAnswerText strong {
    color: #3b4962;
    font-weight: 700;
}

/* 검색 결과 없음 */
.nvFaqEmpty {
    padding: 60px 20px;
    text-align: center;
}

.nvFaqEmpty strong {
    display: block;
    color: #172138;
    font-size: 20px;
}

.nvFaqEmpty p {
    margin: 10px 0 0;
    color: #7b879a;
    font-size: 15px;
}

/* 하단 문의 */
.nvFaqContact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding: 38px 42px;
    border-radius: 18px;
    background: #151e32;
    color: #fff;
}

.nvFaqContactLabel {
    display: inline-block;
    margin-bottom: 10px;
    color: #e89554;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.nvFaqContact h2 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.nvFaqContact p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.nvFaqContactButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 140px;
    height: 50px;
    padding: 0 25px;
    border-radius: 8px;
    background: #e37b2c;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.nvFaqContactButton:hover {
    background: #f08a3a;
    color: #fff;
    transform: translateY(-2px);
}

/* 태블릿 */
@media screen and (max-width: 1024px) {
    .nvFaqHero {
        padding-top: 120px;
    }

    .nvFaqSection .nvFaqContainer {
        padding: 45px 35px 50px;
    }

    .nvFaqHead {
        align-items: stretch;
        flex-direction: column;
    }

    .nvFaqSearch {
        max-width: none;
    }
}

/* 모바일 */
@media screen and (max-width: 767px) {
    .nvFaqContainer {
        width: calc(100% - 28px);
    }

    .nvFaqPcOnly {
        display: none;
    }

    .nvFaqHero {
        padding: 95px 14px 55px;
    }

    .nvFaqEyebrow {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .nvFaqHero h1 {
        font-size: 36px;
    }

    .nvFaqHeroText {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.7;
    }

    .nvFaqSection {
        padding: 14px 0 70px;
    }

    .nvFaqSection .nvFaqContainer {
        width: calc(100% - 20px);
        padding: 32px 18px 35px;
        border-radius: 18px;
    }

    .nvFaqHead {
        gap: 22px;
        margin-bottom: 22px;
    }

    .nvFaqHeadTitle h2 {
        font-size: 23px;
    }

    .nvFaqHeadTitle p {
        margin-top: 8px;
        font-size: 14px;
    }

    .nvFaqSearchInput {
        height: 48px;
        font-size: 14px;
    }

    .nvFaqItem {
        border-radius: 13px;
    }

    .nvFaqButton {
        min-height: 58px;
        padding: 15px 15px;
    }

    .nvFaqQuestionText {
        gap: 5px;
        font-size: 15px;
        line-height: 1.55;
    }

    .nvFaqAnswerInner {
        gap: 7px;
        padding: 0 16px 18px;
        font-size: 14px;
        line-height: 1.75;
    }

    .nvFaqContact {
        align-items: stretch;
        flex-direction: column;
        margin-top: 35px;
        padding: 28px 23px;
    }

    .nvFaqContact h2 {
        font-size: 22px;
    }

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

    .nvFaqContactButton {
        width: 100%;
    }
}





/* orderguide*/

/* =========================================================
   Natura Vitalis 제품 주문방법 페이지
========================================================= */

.nvOrderPage,
.nvOrderPage * {
    box-sizing: border-box;
}

.nvOrderPage {
    padding-top: 90px;
    background: #f6f7f8;
    color: #172036;
    word-break: keep-all;
}

.nvOrderContainer {
    width: calc(100% - 40px);
    max-width: 1380px;
    margin: 0 auto;
}

/* 상단 */
.nvOrderHero {
    padding: 85px 20px 75px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f6f7f8 100%);
}

.nvOrderEyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #e47422;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.nvOrderHero h1 {
    margin: 0;
    color: #172036;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.nvOrderHero p {
    margin: 24px 0 0;
    color: #69768b;
    font-size: 18px;
    line-height: 1.8;
}

/* 콘텐츠 영역 */
.nvOrderSection {
    padding: 10px 0 120px;
}

/* 탭 */
.nvOrderTabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 850px;
    margin: 0 auto 35px;
    overflow: hidden;
    border: 1px solid #dce1e8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(22, 33, 53, 0.07);
}

.nvOrderTab {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 100px;
    padding: 20px 30px;
    border: 0;
    background: #fff;
    color: #68758a;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.nvOrderTab + .nvOrderTab {
    border-left: 1px solid #e2e6ec;
}

.nvOrderTabNumber {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f2f5;
    color: #778398;
    font-size: 15px;
    font-weight: 800;
}

.nvOrderTabText {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nvOrderTabText strong {
    color: inherit;
    font-size: 21px;
    line-height: 1.3;
}

.nvOrderTabText small {
    color: inherit;
    font-size: 14px;
    opacity: 0.8;
}

.nvOrderTab:hover {
    background: #fff8f3;
    color: #d86817;
}

.nvOrderTab.is-active {
    background: #e87523;
    color: #fff;
}

.nvOrderTab.is-active .nvOrderTabNumber {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* 패널 */
.nvOrderPanel {
    padding: 55px 55px 60px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(24, 36, 58, 0.07);
}

.nvOrderPanel[hidden] {
    display: none !important;
}

.nvOrderPanelHead {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.nvOrderPanelLabel {
    display: inline-block;
    margin-bottom: 12px;
    color: #e87523;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.nvOrderPanelHead h2 {
    margin: 0;
    color: #172036;
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: -0.045em;
}

.nvOrderPanelHead p {
    margin: 18px 0 0;
    color: #68758a;
    font-size: 16px;
    line-height: 1.8;
}

/* 이미지 + 텍스트 */
.nvOrderContent {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    align-items: start;
    gap: 55px;
}

.nvOrderImage {
    overflow: hidden;
    border: 1px solid #e1e5eb;
    border-radius: 18px;
    background: #f7f7f7;
    box-shadow: 0 12px 30px rgba(25, 35, 54, 0.08);
}

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

.nvOrderText {
    padding-top: 5px;
}

.nvOrderTextHead {
    margin-bottom: 28px;
}

.nvOrderTextHead > span {
    display: inline-block;
    margin-bottom: 9px;
    color: #e87523;
    font-size: 13px;
    font-weight: 800;
}

.nvOrderTextHead h3 {
    margin: 0;
    color: #172036;
    font-size: 30px;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

/* 순서 */
.nvOrderSteps {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nvOrderSteps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e2e6ec;
    border-radius: 13px;
    background: #fff;
}

.nvOrderStepNumber {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff1e7;
    color: #df6c1b;
    font-size: 14px;
    font-weight: 800;
}

.nvOrderSteps strong {
    display: block;
    margin: 1px 0 5px;
    color: #202a40;
    font-size: 16px;
}

.nvOrderSteps p {
    margin: 0;
    color: #707c90;
    font-size: 14px;
    line-height: 1.65;
}

/* 구매 안내 */
.nvOrderBenefits {
    margin-top: 22px;
    padding: 21px 23px;
    border-radius: 13px;
    background: #f5f7f9;
}

.nvOrderBenefits > strong {
    display: block;
    margin-bottom: 11px;
    color: #172036;
    font-size: 16px;
}

.nvOrderBenefits ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nvOrderBenefits li {
    position: relative;
    padding-left: 18px;
    color: #667287;
    font-size: 14px;
    line-height: 1.6;
}

.nvOrderBenefits li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #e87523;
    font-weight: 800;
}

/* 구매 버튼 */
.nvOrderButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 60px;
    margin-top: 22px;
    padding: 0 25px;
    border-radius: 9px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.nvOrderButton--member {
    background: #e87523;
}

.nvOrderButton--member:hover {
    background: #d96718;
    color: #fff;
}

.nvOrderButton--guest {
    background: #192135;
}

.nvOrderButton--guest:hover {
    background: #30394d;
    color: #fff;
}

.nvOrderButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(25, 35, 55, 0.16);
}

/* 하단 주의사항 */
.nvOrderNotice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px;
    padding: 25px 28px;
    border: 1px solid #e4e7ec;
    border-radius: 15px;
    background: #fff;
}

.nvOrderNoticeIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff1e7;
    color: #e06b1a;
    font-size: 17px;
    font-weight: 900;
}

.nvOrderNotice strong {
    display: block;
    margin: 2px 0 7px;
    color: #202a3e;
    font-size: 16px;
}

.nvOrderNotice p {
    margin: 0;
    color: #747f91;
    font-size: 14px;
    line-height: 1.7;
}

/* 태블릿 */
@media screen and (max-width: 1050px) {
    .nvOrderContent {
        grid-template-columns: 1fr;
    }

    .nvOrderImage {
        max-width: 760px;
        margin: 0 auto;
    }

    .nvOrderText {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }
}

/* 모바일 */
@media screen and (max-width: 767px) {
    .nvOrderPage {
        padding-top: 70px;
    }

    .nvOrderContainer {
        width: calc(100% - 20px);
    }

    .nvOrderPcOnly {
        display: none;
    }

    .nvOrderHero {
        padding: 55px 15px 45px;
    }

    .nvOrderEyebrow {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .nvOrderHero h1 {
        font-size: 35px;
    }

    .nvOrderHero p {
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.7;
    }

    .nvOrderSection {
        padding: 5px 0 75px;
    }

    .nvOrderTabs {
        margin-bottom: 18px;
        border-radius: 13px;
    }

    .nvOrderTab {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        min-height: 98px;
        padding: 13px 8px;
        text-align: center;
    }

    .nvOrderTabNumber {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .nvOrderTabText {
        gap: 2px;
    }

    .nvOrderTabText strong {
        font-size: 16px;
    }

    .nvOrderTabText small {
        font-size: 11px;
    }

    .nvOrderPanel {
        padding: 35px 16px 38px;
        border-radius: 17px;
    }

    .nvOrderPanelHead {
        margin-bottom: 30px;
    }

    .nvOrderPanelHead h2 {
        font-size: 27px;
    }

    .nvOrderPanelHead p {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.7;
    }

    .nvOrderContent {
        gap: 30px;
    }

    .nvOrderImage {
        border-radius: 12px;
    }

    .nvOrderTextHead {
        margin-bottom: 20px;
    }

    .nvOrderTextHead h3 {
        font-size: 23px;
    }

    .nvOrderSteps li {
        gap: 11px;
        padding: 15px 13px;
    }

    .nvOrderStepNumber {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .nvOrderSteps strong {
        font-size: 15px;
    }

    .nvOrderSteps p {
        font-size: 13px;
    }

    .nvOrderBenefits {
        padding: 18px;
    }

    .nvOrderButton {
        min-height: 55px;
        padding: 0 19px;
        font-size: 15px;
    }

    .nvOrderNotice {
        padding: 20px 17px;
    }
}



/*제품상세*/
.pdTopBar{
    display:flex;
    /*justify-content:flex-end;*/
    align-items:center;
    margin-bottom:48px;
}

.pdProductListBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 18px;
    border:1px solid #ef7622;
    border-radius:4px;
    background:#fff;
    color:#ef7622;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.pdProductListBtn:hover{
    background:#ef7622;
    color:#fff;
}

@media(max-width:850px){

    .pdTopBar{
        justify-content:flex-start;
        margin-bottom:18px;
    }

}




/* 상세 이미지가 공통 스크롤 효과로 사라지는 현상 방지 */
.pdDetails,
.pdDetails__title,
.pdDetails > img,
.pdDetails img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.pdDetails > img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}





.pdDetailItem {
    background: #fff;
}

.pdDetailItem__text {
    max-width: 820px;
    margin: 0 auto;
    padding: 65px 30px 45px;
    text-align: center;
}

.pdDetailItem__text h3 {
    margin: 0 0 18px;
    color: #222;
    font-size: 30px;
    line-height: 1.4;
    word-break: keep-all;
}

.pdDetailItem__text h3::before {
    display: block;
    margin-bottom: 12px;
    color: #ef7622;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
    content: 'NATURA VITALIS';
}

.pdDetailItem__text p {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    font-size: 17px;
    line-height: 2;
    word-break: keep-all;
}

.pdDetailItem__image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

@media screen and (max-width: 850px) {
    .pdDetailItem__text {
        padding: 45px 20px 32px;
    }

    .pdDetailItem__text h3 {
        font-size: 24px;
    }

    .pdDetailItem__text p {
        font-size: 15px;
        line-height: 1.85;
    }
}


.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.logo-text span{
    font-size:15px;
    font-weight:700;
    color:#1b1b1b;
}

.logo-text small{
    font-size:15px;
    font-weight:500;
    color:#666;
    letter-spacing:0.5px;
}
@media (max-width:768px){
    .logo{
        gap:8px;
    }

    .logo-text span{
        font-size:16px;
    }

    .logo-text small{
        font-size:11px;
    }
}