/* =============================================
   GREENBITE - 그린바이트 로스팅 캐슈넛
   CSS Style Sheet
   ============================================= */

/* ---- Variables ---- */
:root {
  --green-dark:   #2d5a27;
  --green-main:   #3d7a3a;
  --green-light:  #5ca656;
  --green-pale:   #e8f5e5;
  --green-muted:  #c8e6c3;

  --pink-main:    #e8546a;
  --pink-light:   #fde8ec;

  --gold-main:    #c8922a;
  --gold-light:   #fff3dc;

  --cream:        #faf7f0;
  --cream-dark:   #f0ebe0;
  --brown-light:  #a08060;

  --text-dark:    #1a1a1a;
  --text-mid:     #3d3d3d;
  --text-light:   #6b6b6b;
  --text-pale:    #9b9b9b;

  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.13);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --radius-full:  9999px;

  --transition:   all 0.3s ease;
  --font-ko:      'Noto Sans KR', sans-serif;
  --font-en:      'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ko);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-ko);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-main);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(61,122,58,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,122,58,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--green-main);
  border-color: var(--green-main);
}
.btn-ghost:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}
.btn-product {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  margin-top: 12px;
}
.pink-btn  { background: var(--pink-main); color: #fff; }
.pink-btn:hover  { background: #d44060; transform: translateY(-2px); }
.green-btn { background: var(--green-main); color: #fff; }
.green-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.gold-btn  { background: var(--gold-main); color: #fff; }
.gold-btn:hover  { background: #a87220; transform: translateY(-2px); }
.btn-naver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #03c75a;
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(3,199,90,0.35);
}
.btn-naver:hover {
  background: #02a84b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,199,90,0.4);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 24px;
}
.sec-header {
  text-align: center;
  margin-bottom: 64px;
}
.sec-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.sec-desc {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-logo-img:hover {
  transform: scale(1.05);
}
/* 스크롤 전(그린 배경): 로고를 흰색 원형 배경 위에 띄워 가독성 확보 */
.navbar:not(.scrolled) .nav-logo {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 4px 12px 4px 4px;
  border: 1px solid rgba(255,255,255,0.25);
}
.navbar:not(.scrolled) .nav-logo-img {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
/* 스크롤 후(흰 배경): 그림자만 */
.navbar.scrolled .nav-logo-img {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.navbar:not(.scrolled) .nav-link { color: var(--white); }
/* 스크롤 후(흰 배경) - hover/active */
.nav-link:hover,
.nav-link.active {
  background: var(--green-pale);
  color: var(--green-dark);
}
/* 스크롤 전(그린 배경) - hover */
.navbar:not(.scrolled) .nav-link:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
/* 스크롤 전(그린 배경) - active: 흰 배경 + 그린 글자로 선명하게 */
.navbar:not(.scrolled) .nav-link.active {
  background: rgba(255,255,255,0.92);
  color: var(--green-dark);
  font-weight: 700;
}
.nav-cta {
  background: var(--green-main);
  color: var(--white) !important;
  padding: 10px 22px;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(61,122,58,0.3);
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: var(--white); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, #4a8c44 50%, #6ab060 100%);
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: var(--white);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: 50px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 35%; opacity: 0.06; }

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-logo-area {
  margin-bottom: 28px;
  display: inline-block;
  /* \ub85c\uace0 \ub91c\uba74 \ubbf8\uc138\ud55c \ubc1d\uc740 \ud6c4\uad11 \ubc30\uacbd (optional) */
  padding: 4px;
  border-radius: var(--radius-full);
}
.hero-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  background: transparent;
  /* 그린 배경 위에서 잘 보이도록 밝은 drop-shadow */
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.22)) brightness(1.05);
  animation: logoPulse 4s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  from { filter: drop-shadow(0 4px 16px rgba(0,0,0,0.22)) brightness(1.05); }
  to   { filter: drop-shadow(0 6px 22px rgba(255,213,79,0.35)) brightness(1.1); }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-em {
  font-style: normal;
  background: linear-gradient(120deg, #ffd54f, #ffab00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-sub strong { color: #ffd54f; font-weight: 700; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.htag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.25);
}
.htag i { color: #a5d6a7; font-size: 0.9rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns .btn-primary { background: #ffd54f; color: var(--green-dark); box-shadow: 0 4px 18px rgba(255,213,79,0.4); }
.hero-btns .btn-primary:hover { background: #ffca28; box-shadow: 0 8px 28px rgba(255,213,79,0.5); }
.hero-btns .btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero-btns .btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* Hero Right - Product Showcase */
.hero-product-showcase { position: relative; }
.hero-product-img-wrap {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.hero-product-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: all 0.5s ease;
  opacity: 1;
}
.hero-product-img.fade-out { opacity: 0; transform: scale(0.96); }
.hero-product-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.thumb-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  padding: 0;
  cursor: pointer;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn.active { border-color: #ffd54f; box-shadow: 0 0 0 3px rgba(255,213,79,0.4); }
.thumb-btn:hover { border-color: rgba(255,255,255,0.7); transform: scale(1.05); }

/* Floating badges */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  font-family: var(--font-ko);
}
.badge-f1 { top: 20px; left: -20px; }
.badge-f2 { bottom: 80px; right: -20px; }
.fb-icon { font-size: 1.5rem; }
.hero-float-badge strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.hero-float-badge small { font-size: 0.75rem; color: var(--text-light); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-full);
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(18px); opacity: 0; }
}

/* =============================================
   BRAND STATS
   ============================================= */
.brand-stats {
  background: var(--white);
  box-shadow: 0 -4px 0 var(--green-main);
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 44px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stat-icon { font-size: 1.6rem; margin-bottom: 4px; }
.stat-val  { font-family: var(--font-en); font-size: 2rem; font-weight: 800; color: var(--green-dark); line-height: 1.1; }
.stat-desc { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }
.stat-sep  { width: 1px; height: 50px; background: var(--cream-dark); }

/* =============================================
   PRODUCTS
   ============================================= */
.products { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.featured-card {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--green-main);
}
.featured-card:hover { transform: translateY(-14px); }

.pc-top {
  position: relative;
  padding: 24px 24px 0;
}
.pink-top  { background: linear-gradient(160deg, #fde8ec 0%, #fff0f3 100%); }
.green-top { background: linear-gradient(160deg, var(--green-pale) 0%, #f0f9ee 100%); }
.gold-top  { background: linear-gradient(160deg, var(--gold-light) 0%, #fffbf0 100%); }

.pc-badge-wrap { margin-bottom: 12px; }
.pc-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
.pc-badge.best    { background: var(--pink-main); color: #fff; }
.pc-badge.life    { background: var(--green-main); color: #fff; }
.pc-badge.premium { background: var(--gold-main); color: #fff; }

.pc-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.pc-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .pc-img { transform: scale(1.04); }
.pc-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-md);
}
.product-card:hover .pc-hover-overlay { opacity: 1; }
.pc-quick-btn {
  background: var(--white);
  color: var(--text-dark);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.pc-quick-btn:hover { background: var(--green-main); color: var(--white); }

.pc-body { padding: 20px 22px 24px; }
.pc-line { display: block; width: 40px; height: 3px; border-radius: 2px; margin-bottom: 12px; }
.pc-name { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.pc-en { font-family: var(--font-en); font-size: 0.8rem; color: var(--text-pale); margin-bottom: 4px; }
.pc-style { font-size: 0.82rem; color: var(--green-main); font-weight: 600; margin-bottom: 10px; }
.pc-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.pc-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.pc-price { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
.pc-price em { font-size: 0.9rem; font-style: normal; }
.pc-origin { font-size: 0.85rem; color: var(--text-pale); text-decoration: line-through; }
.pc-discount { font-size: 0.82rem; font-weight: 700; color: var(--pink-main); }

/* =============================================
   PRIDE (우리의 자랑)
   ============================================= */
.pride { background: var(--white); }
.pride-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 70px;
}
.pride-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pride-img-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 3px solid var(--green-pale);
  border-radius: calc(var(--radius-xl) + 8px);
  z-index: -1;
}
.pride-img { width: 100%; height: auto; object-fit: contain; background: #fdf9f0; }

.pride-cards-col { display: flex; flex-direction: column; gap: 28px; }
.pride-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green-main);
  transition: var(--transition);
}
.pride-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  background: var(--green-pale);
}
.pride-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.pride-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pride-highlight { color: var(--green-main); }
.pride-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* =============================================
   PACKAGING (포장의 기술)
   ============================================= */
.packaging {
  background: linear-gradient(135deg, #1a3d18 0%, var(--green-dark) 50%, #2d5530 100%);
  position: relative;
  overflow: hidden;
}
.packaging::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}
.packaging .section-wrap { max-width: 1160px; }
.pkg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.pkg-text-col .sec-badge { background: rgba(255,255,255,0.15); color: #a5d6a7; }
.pkg-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin: 14px 0 20px;
  line-height: 1.2;
}
.pkg-bye-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,213,79,0.5);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin-bottom: 24px;
}
.bye-text {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffd54f;
  margin-bottom: 4px;
}
.pkg-bye-badge strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.pkg-desc { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 24px; }
.pkg-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.pkg-features li i { color: #a5d6a7; font-size: 0.9rem; }
.packaging .btn-primary {
  background: #ffd54f;
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(255,213,79,0.35);
}
.packaging .btn-primary:hover { background: #ffca28; }

.pkg-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  position: relative;
}
.pkg-img { width: 100%; height: auto; object-fit: cover; }

/* =============================================
   NUTRITION
   ============================================= */
.nutrition { background: var(--cream); }
.nutrition-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.nut-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nut-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.nut-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.antioxidant-card {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, var(--green-pale) 0%, #d4edda 100%);
  border: 2px solid var(--green-main);
}
.nut-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.nut-card-info { display: flex; flex-direction: column; margin-bottom: 6px; }
.nut-val { font-family: var(--font-en); font-size: 1.5rem; font-weight: 800; color: var(--green-dark); }
.nut-label { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); }
.nut-card-desc { font-size: 0.78rem; color: var(--text-light); }

.nut-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.nut-table-hd {
  background: var(--green-dark);
  color: var(--white);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nut-table-hd h3 { font-size: 1rem; font-weight: 700; }
.nut-table-hd span { font-size: 0.82rem; opacity: 0.8; }
.nut-table { width: 100%; border-collapse: collapse; }
.nut-table th {
  background: var(--green-pale);
  padding: 12px 20px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
}
.nut-table td {
  padding: 11px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
}
.nut-table tr:last-child td { border-bottom: none; }
.main-row td { font-weight: 700; background: #f9f6f0; color: var(--text-dark); }
.sub-row td { color: var(--text-pale); font-size: 0.83rem; padding-left: 32px; }
.zero-badge { background: #e8f5e5; color: var(--green-dark); padding: 2px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.protein-row td { color: var(--green-dark); font-weight: 700; }
.low-salt { background: #fff3dc; }
.low-badge { background: var(--gold-main); color: #fff; padding: 2px 8px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; margin-left: 6px; }
.nut-allergen {
  padding: 14px 20px;
  background: #fff8e1;
  font-size: 0.83rem;
  color: #795548;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 2px solid #ffe082;
}
.nut-allergen i { color: #f57c00; }

/* =============================================
   REVIEWS - 완전 재설계 (가독성 최우선)
   ============================================= */
.reviews {
  background: #f7f9f7;
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green-main), #7dc97a, var(--green-dark));
}

/* ── 평점 배너 ── */
.rv-rating-banner {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 48px;
  margin-bottom: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.rvb-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 110px;
}
.rvb-num {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  font-family: var(--font-en);
}
.rvb-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 1.05rem;
}
.rvb-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}
.rvb-divider {
  width: 1px;
  height: 80px;
  background: #e8e8e8;
  margin: 0 36px;
  flex-shrink: 0;
}
.rvb-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rvb-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rvb-score {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 600;
  min-width: 28px;
}
.rvb-track {
  flex: 1;
  height: 10px;
  background: #f0f0f0;
  border-radius: 999px;
  overflow: hidden;
}
.rvb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-main), #7dc97a);
  border-radius: 999px;
  transition: width 1s ease;
}
.rvb-pct {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 700;
  min-width: 34px;
  text-align: right;
}
.rvb-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 100px;
  align-items: center;
  margin-left: 36px;
}
.rvb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.rvb-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-dark);
  font-family: var(--font-en);
  line-height: 1;
}
.rvb-stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ── Swiper 리뷰 ── */
.reviewSwiper {
  padding: 8px 4px 60px !important;
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--green-main) !important;
  background: #fff;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px !important;
  font-weight: 900;
}
.swiper-pagination-bullet-active { background: var(--green-main) !important; }
.swiper-pagination-bullet { width: 10px !important; height: 10px !important; }

/* ── 리뷰 카드 (rv-card) ── */
.rv-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 36px 28px;
  height: 100%;
  min-height: 320px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  border: 1.5px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.rv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-main), #7dc97a);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.rv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(61, 122, 58, 0.13);
}
.rv-card:hover::before { opacity: 1; }

/* 카드 상단 (따옴표 + 별점) */
.rv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rv-quote-icon {
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--green-main);
  font-family: Georgia, serif;
  opacity: 0.25;
  font-weight: 900;
  user-select: none;
}
.rv-stars-row {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 1.1rem;
}

/* 본문 텍스트 */
.rv-main-text {
  font-size: 1.05rem;
  color: #1a1a1a;
  line-height: 1.9;
  flex: 1;
  word-break: keep-all;
}
.rv-main-text strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* 해시태그 */
.rv-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.rv-tags-row span {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
  letter-spacing: -0.3px;
}

/* 카드 하단 (유저 정보) */
.rv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1.5px solid #f5f5f5;
  gap: 12px;
}
.rv-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv-avatar-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(61,122,58,0.25);
}
.rv-username {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
}
.rv-meta {
  font-size: 0.78rem;
  color: #999;
  margin-top: 2px;
}
.rv-product-tag {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rv-product-tag.rv-tag-gift {
  background: #fff3cd;
  color: #856404;
}
.rv-product-tag.rv-tag-pink {
  background: #ffe4ea;
  color: #c0374f;
}

/* 리뷰 CTA */
.review-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f0 100%);
  border-radius: 20px;
  text-align: center;
  border: 1.5px solid #c8e6c9;
}
.review-cta-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  word-break: keep-all;
}

/* ──────────────────────────────────────────────
   RESPONSIVE - Reviews
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .rv-rating-banner {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }
  .rvb-divider { width: 100%; height: 1px; margin: 4px 0; }
  .rvb-right { flex-direction: row; margin-left: 0; }
  .rv-card { padding: 28px 24px 22px; min-height: auto; }
  .rv-quote-icon { font-size: 3.5rem; }
  .rv-main-text { font-size: 0.97rem; }
}

/* =============================================
   구 rv2 잔여 제거 (아래는 비활성)
   ============================================= */

/* 제품 카드 추가 요소 */
.pc-size-badge {
  display: inline-block;
  background: var(--green-main);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
}
.pc-size-badge.gold-size { background: #c8922a; }
.pc-size-badge.green-size { background: #3d7a3a; }

.pc-review-mini {
  font-size: 0.78rem;
  color: #f59e0b;
  font-weight: 600;
  margin-top: -4px;
}

/* 골드 featured 강조 */
.gold-featured {
  border: 2px solid #f59e0b !important;
  box-shadow: 0 8px 40px rgba(197,144,42,0.22) !important;
  transform: translateY(-8px);
}
.gold-featured .pc-top::after {
  content: "🎁 인기 선물";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c8922a, #f59e0b);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* 구매 섹션 옵션 가격 스타일 */
.buy-opt b { font-weight: 700; }

/* =============================================
   BUY SECTION
   ============================================= */
.buy-section { background: var(--cream); }
.buy-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  max-width: 960px;
  margin: 0 auto;
}
.buy-imgs {
  background: var(--cream-dark);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.buy-prod-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.4s ease;
}
.buy-prod-img.fade { opacity: 0; transform: scale(0.97); }
.buy-img-thumbs { display: flex; gap: 10px; justify-content: center; }
.buy-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
}
.buy-thumb:hover { opacity: 0.9; transform: scale(1.05); }
.buy-thumb.active { border-color: var(--green-main); opacity: 1; }

.buy-info { padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; }
.buy-logo-row { margin-bottom: 4px; }
.buy-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  background: transparent;
  /* 흰 배경에서 투명 로고 - drop-shadow로 윤곽 강조 */
  filter: drop-shadow(0 2px 8px rgba(45,90,39,0.18));
  transition: all 0.3s ease;
}
.buy-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(61,122,58,0.3));
}
.buy-title { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
.buy-sub { font-size: 0.88rem; color: var(--green-main); font-weight: 600; }

.buy-options { display: flex; flex-direction: column; gap: 10px; }
.buy-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}
.buy-opt:hover { border-color: var(--green-muted); background: var(--green-pale); }
.buy-opt.active { border-color: var(--green-main); background: var(--green-pale); }
.buy-opt .opt-dot { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; }
.buy-opt strong { font-size: 0.92rem; color: var(--text-dark); display: block; }
.buy-opt span { font-size: 0.85rem; color: var(--text-light); }
.buy-cta { margin-top: 6px; }
.buy-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.buy-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.buy-meta i { color: var(--green-main); font-size: 0.85rem; width: 14px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #111; color: rgba(255,255,255,0.8); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  gap: 56px;
  align-items: start;
}

/* 브랜드 컬럼 */
.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  display: block;
}
.footer-logo:hover { transform: scale(1.04); background: #fff; }

.footer-slogan {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 18px;
}
.footer-social { display: flex; gap: 10px; margin-bottom: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green-main); color: #fff; }

/* 고객센터 */
.footer-cs {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 18px;
}
.footer-cs-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.footer-cs-label i { color: var(--green-main); margin-right: 4px; }
.footer-cs-num {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-en);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-cs-num:hover { color: #7dc97a; }
.footer-cs-hours {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}

/* 링크 컬럼 */
.footer-links-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fl-group h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fl-group a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: var(--transition);
}
.fl-group a:hover { color: #fff; padding-left: 4px; }

/* 상표 등록 컬럼 */
.footer-trademark-col {}
.footer-tm-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tm-title i { color: #f59e0b; margin-right: 5px; }

.footer-tm-table { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.footer-tm-row {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr;
  gap: 8px;
  padding: 7px 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}
.footer-tm-row.header {
  background: rgba(255,255,255,0.06);
  border-radius: 6px 6px 0 0;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-tm-row:not(.header):hover {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75);
}
.footer-tm-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  padding: 10px 14px;
}
.footer-tm-note i { color: #f59e0b; margin-right: 5px; }

/* 사업자 정보 하단바 */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-biz-info {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  row-gap: 4px;
}
.footer-biz-info strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-right: 3px;
}
.fbiz-divider {
  color: rgba(255,255,255,0.18);
  margin: 0 10px;
}
.footer-biz-addr {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-biz-addr i { color: var(--green-main); margin-right: 5px; }
.footer-biz-addr strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-right: 3px;
}
.footer-copy {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}


/* =============================================
   BACK TO TOP
   ============================================= */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 900;
  font-size: 0.9rem;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-tags, .hero-btns { justify-content: center; }
  .badge-f1, .badge-f2 { display: none; }
  .hero-product-img-wrap { max-width: 420px; margin: 0 auto; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { transform: none; }

  .pride-layout,
  .pkg-layout,
  .nutrition-layout { grid-template-columns: 1fr; }
  .pride-img-frame { max-width: 480px; margin: 0 auto; }
  .pkg-img-frame { max-width: 480px; margin: 0 auto; }

  .buy-card { grid-template-columns: 1fr; }
  .buy-imgs { padding: 24px; }
  .buy-prod-img { max-width: 320px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-link { font-size: 1.1rem; padding: 14px 28px; }
  .hamburger { display: flex; z-index: 1001; }

  .products-grid { grid-template-columns: 1fr; }
  .section-wrap { padding: 70px 20px; }
  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .stat-sep { display: none; }

  .footer-links-col { grid-template-columns: repeat(2, 1fr); }
  .footer-tm-table { font-size: 0.68rem; }

  .nut-highlights { grid-template-columns: 1fr 1fr; }
  .pkg-layout { grid-template-columns: 1fr; }
  .pkg-img-col { order: -1; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .buy-info { padding: 24px 20px; }
  .nut-highlights { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-col { grid-template-columns: 1fr; }
  .footer-biz-info { font-size: 0.72rem; }
  .fbiz-divider { margin: 0 6px; }
}

/* =============================================
   AOS Overrides
   ============================================= */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
