/* ============================================================
   황홀스레 B2B 랜딩페이지 CSS
   컬러: 노랑(#FFD600) · 화이트 · 쿠키 브라운(#C8722A)
   ============================================================ */

/* ── 리셋 & 기본 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #2D2012;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── 컬러 변수 ── */
:root {
  --yellow: #FFD600;
  --yellow-dark: #F0C800;
  --yellow-pale: #FFFDE7;
  --yellow-bg: #FFF9E3;
  --brown: #C8722A;
  --brown-dark: #9B5010;
  --brown-deep: #2D2012;
  --gray-100: #f8f6f2;
  --gray-200: #eee9e0;
  --gray-400: #b5a898;
  --gray-600: #7a6a58;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

/* ── 레이아웃 유틸 ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.bg-white { background: var(--white); }
.bg-yellow { background: var(--yellow-bg); }

/* ── 섹션 헤더 ── */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-eye {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--yellow-pale);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brown-deep);
  margin-bottom: 14px;
}
.sec-title em { color: var(--brown); font-style: normal; }
.sec-sub { font-size: 0.98rem; color: var(--gray-600); }

/* ── 공통 버튼 ── */
.btn-kakao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FAE100;
  color: #3A1D1D;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(250,225,0,0.45);
  white-space: nowrap;
}
.btn-kakao:hover {
  background: #F0D800;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(250,225,0,0.55);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--brown-deep);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--brown-deep);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--brown-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown-deep);
  color: var(--yellow);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--brown-deep);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-dark:hover {
  background: #1A1208;
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--yellow-bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-scene {
  position: relative;
  width: 160px; height: 160px;
  margin: 0 auto 24px;
}
.loader-svg {
  width: 160px; height: 160px;
  animation: ldrSpin 2.4s linear infinite, ldrBounce 1.2s ease-in-out infinite alternate;
  filter: drop-shadow(0 12px 28px rgba(200,114,42,0.32));
}
@keyframes ldrSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ldrBounce {
  from { transform: rotate(0deg) translateY(0); }
  to   { transform: rotate(360deg) translateY(-14px); }
}

/* 반짝이 파티클 */
.loader-scene > span {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  animation: sparkPop 1.6s ease-in-out infinite;
}
.ls1 { width: 10px; height: 10px; top: 4px;  left: 20px; animation-delay: 0s;   }
.ls2 { width:  8px; height:  8px; top: 20px; right: 8px; animation-delay: 0.3s; }
.ls3 { width: 12px; height: 12px; bottom: 10px; left: 10px; animation-delay: 0.6s; }
.ls4 { width:  7px; height:  7px; bottom: 16px; right: 20px; animation-delay: 0.9s; }
@keyframes sparkPop {
  0%, 100% { transform: scale(0); opacity: 0; }
  50%       { transform: scale(1.4); opacity: 1; }
}

.loader-brand {
  font-family: 'Noto Serif KR', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 6px;
}
.loader-msg { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 24px; }
.loader-bar-wrap {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
}
.loader-bar {
  width: 200px; height: 6px;
  background: var(--gray-200);
  border-radius: 6px; overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--brown));
  border-radius: 6px;
  width: 0%;
  transition: width 0.05s linear;
}
.loader-pct { font-size: 0.85rem; font-weight: 700; color: var(--brown); min-width: 36px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Noto Serif KR', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--brown-deep);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 0.92rem; font-weight: 500;
  color: var(--gray-600);
  padding: 7px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--brown-deep); background: var(--gray-100); }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--brown-deep) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: all 0.25s;
}

/* 모바일 드롭다운 */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 8px 0 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 28px;
  font-size: 1rem; font-weight: 500;
  color: var(--brown-deep);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--gray-100); }
.mob-cta {
  margin: 8px 24px 0 !important;
  background: var(--yellow) !important;
  color: var(--brown-deep) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  text-align: center !important;
  padding: 14px 28px !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow-bg);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(200,114,42,0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brown);
  background: rgba(200,114,42,0.10);
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--brown-deep);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--brown);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px; right: 0;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  opacity: 0.7;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-desc strong { color: var(--brown-deep); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 36px;
  max-width: 640px;
  margin: 0 auto;
}
.hn-item { text-align: center; padding: 0 24px; }
.hn-item strong {
  display: block;
  font-size: 1.5rem; font-weight: 900;
  color: var(--brown);
  font-family: 'Noto Serif KR', serif;
}
.hn-item span { font-size: 0.78rem; color: var(--gray-600); }
.hn-div { width: 1px; height: 40px; background: var(--gray-200); flex-shrink: 0; }

/* 배경 장식 쿠키 */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.deco-ck { position: absolute; }
.dk1 { width: 180px; top: 8%;    left: -3%;  animation: floatA 6s  ease-in-out infinite; }
.dk2 { width: 120px; top: 55%;   left: 2%;   animation: floatB 7s  ease-in-out infinite 1s; }
.dk3 { width: 200px; top: 5%;    right: -2%; animation: floatA 8s  ease-in-out infinite 0.5s; }
.dk4 { width: 140px; bottom: 8%; right: 3%;  animation: floatB 6.5s ease-in-out infinite 1.5s; }
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(6deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(-5deg); }
}

.scroll-down {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
  animation: arrowBounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--brown-deep);
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}
.ticker-track span {
  font-size: 0.88rem; font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.03em;
  padding: 0 14px;
}
.ticker-track .tk-dot { color: var(--brown); padding: 0 2px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PRODUCTS
   ============================================================ */

/* 스마트스토어 배너 */
.store-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--yellow-bg);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  margin-bottom: 36px;
  transition: all var(--transition);
  gap: 16px;
}
.store-banner:hover {
  background: var(--yellow-pale);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.sb-left {
  display: flex; align-items: center; gap: 16px;
}
.sb-left i { font-size: 1.4rem; color: var(--brown); flex-shrink: 0; }
.sb-left strong { display: block; font-weight: 700; color: var(--brown-deep); font-size: 1rem; }
.sb-left span { font-size: 0.85rem; color: var(--gray-600); }
.sb-arrow {
  font-size: 0.9rem; font-weight: 700;
  color: var(--brown);
  white-space: nowrap; flex-shrink: 0;
}

/* 제품 그리드 */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prod-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}
.prod-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 제품 썸네일 색상 블록 */
.prod-thumb {
  position: relative;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px 16px;
}
.pt-yellow { background: linear-gradient(135deg, #FFF8DC 0%, #FFE082 100%); }
.pt-orange { background: linear-gradient(135deg, #FFDAB9 0%, #FFA07A 100%); }
.pt-pink   { background: linear-gradient(135deg, #FFE4E1 0%, #FFB6C1 100%); }
.pt-green  { background: linear-gradient(135deg, #F0FFF0 0%, #C8E6C9 100%); }
.pt-brown  { background: linear-gradient(135deg, #FFF3E0 0%, #FFCC80 100%); }

/* 배지 */
.prod-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.badge-green  { background: #E8F5E9; color: #2E7D32; }
.badge-yellow { background: var(--yellow); color: var(--brown-deep); }
.badge-red    { background: #FFEBEE; color: #C62828; }

/* 제품 정보 */
.prod-info { padding: 20px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-info h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 8px;
}
.prod-info p {
  font-size: 0.87rem; color: var(--gray-600);
  line-height: 1.65; margin-bottom: 14px; flex: 1;
}
.prod-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.prod-tags span {
  font-size: 0.73rem; font-weight: 600;
  color: var(--brown);
  background: var(--yellow-pale);
  padding: 3px 10px; border-radius: 50px;
}
.prod-go {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--brown);
  transition: gap var(--transition);
}
.prod-card:hover .prod-go { gap: 10px; }

/* 더보기 카드 */
.prod-more {
  background: var(--brown-deep) !important;
  border-color: var(--brown-deep) !important;
}
.prod-more:hover {
  border-color: var(--yellow) !important;
  background: #1A1208 !important;
}
.prod-more-link {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 12px;
  color: var(--white);
  height: 100%;
}
.pmc-icon {
  width: 60px; height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--brown-deep);
}
.prod-more-link h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.prod-more-link p  { color: rgba(255,255,255,0.65); font-size: 0.87rem; }
.pmc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: var(--brown-deep);
  font-size: 0.87rem; font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  margin-top: 4px;
  transition: all var(--transition);
}
.prod-more:hover .pmc-btn { background: var(--yellow-dark); }

/* ============================================================
   REVIEWS
   ============================================================ */

/* 별점 요약 */
.rating-summary {
  display: flex;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}
.rs-big { text-align: center; flex-shrink: 0; }
.rs-num {
  display: block;
  font-size: 3.6rem; font-weight: 900;
  color: var(--brown);
  font-family: 'Noto Serif KR', serif;
  line-height: 1;
}
.rs-stars { color: var(--yellow); font-size: 1rem; margin: 8px 0 6px; }
.rs-label { font-size: 0.8rem; color: var(--gray-600); }
.rs-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 14px; }
.rsb { display: flex; align-items: center; gap: 12px; }
.rsb-name { font-size: 0.88rem; font-weight: 600; color: var(--brown-deep); width: 88px; flex-shrink: 0; }
.rsb-track { flex: 1; height: 8px; background: var(--gray-200); border-radius: 6px; overflow: hidden; }
.rsb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--brown));
  border-radius: 6px;
  transition: width 1.2s ease;
}
.rsb-val { font-size: 0.86rem; font-weight: 700; color: var(--brown); width: 28px; text-align: right; }

/* 후기 그리드: featured 전폭 + 하단 5개 3열 */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.rv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 14px;
}
.rv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--yellow); }

/* Featured 카드 */
.rv-featured {
  grid-column: 1 / -1;
  background: var(--brown-deep);
  border-color: transparent;
}
.rv-featured blockquote { color: rgba(255,255,255,0.85); font-size: 1rem; }
.rv-featured .rv-meta strong { color: var(--white); }
.rv-featured .rv-product { color: var(--yellow); background: rgba(255,214,0,0.12); }

.rv-top { display: flex; align-items: center; gap: 12px; }
.rv-ava {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); flex-shrink: 0;
}
.rv-meta { flex: 1; }
.rv-meta strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--brown-deep); }
.rv-stars { color: var(--yellow); font-size: 0.78rem; margin-top: 3px; }
.rv-badge {
  font-size: 0.7rem; font-weight: 700;
  background: var(--yellow); color: var(--brown-deep);
  padding: 3px 10px; border-radius: 50px;
  flex-shrink: 0;
}
blockquote {
  font-size: 0.9rem; color: var(--gray-600);
  line-height: 1.75; font-style: italic; flex: 1;
}
.rv-product {
  font-size: 0.78rem; font-weight: 600;
  color: var(--brown);
  padding: 5px 12px;
  background: var(--yellow-pale);
  border-radius: 50px;
  display: inline-block;
  align-self: flex-start;
}

/* 카운터 */
.review-nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.rn-item strong {
  display: block;
  font-size: 2.2rem; font-weight: 900;
  color: var(--brown);
  font-family: 'Noto Serif KR', serif;
  margin-bottom: 6px;
}
.rn-item p { font-size: 0.85rem; color: var(--gray-600); }

/* ============================================================
   TRUST / BRAND
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.tc {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.tc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.tc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.tc-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.tc h4 { font-size: 1rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 10px; }
.tc p  { font-size: 0.87rem; color: var(--gray-600); line-height: 1.65; }

/* 미디어 스트립 */
.media-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--yellow-bg);
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 22px 32px;
  flex-wrap: wrap;
}
.ms-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brown); flex-shrink: 0;
}
.ms-items { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.ms-item { display: flex; align-items: center; gap: 12px; }
.ms-item i { font-size: 1.2rem; color: var(--brown); flex-shrink: 0; }
.ms-item strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--brown-deep); }
.ms-item em { font-size: 0.8rem; color: var(--gray-600); font-style: normal; }
.ms-div { width: 1px; height: 36px; background: var(--gray-200); }

/* ============================================================
   B2B
   ============================================================ */
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.b2b-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.b2b-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.b2b-icon {
  width: 52px; height: 52px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--brown-deep);
  margin-bottom: 14px;
}
.b2b-card h4 { font-size: 1rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 8px; }
.b2b-card p  { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 16px; }
.b2b-card ul { display: flex; flex-direction: column; gap: 8px; }
.b2b-card li { font-size: 0.85rem; color: var(--brown-deep); display: flex; align-items: center; gap: 8px; }
.b2b-card li i { color: var(--brown); font-size: 0.75rem; flex-shrink: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFB300 100%);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner-inner { max-width: 600px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 12px;
}
.cta-banner p { font-size: 1rem; color: rgba(45,32,18,0.75); margin-bottom: 32px; }
.cta-banner strong { color: var(--brown-deep); font-weight: 700; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT (카카오 전용)
   ============================================================ */
.kakao-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

/* 메인 CTA 카드 */
.kakao-main-card {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  text-align: center;
  box-shadow: 0 8px 36px rgba(255,214,0,0.38);
}
.kmc-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.kmc-icon {
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.kmc-top h3 { font-size: 1.3rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 4px; }
.kmc-top p  { font-size: 0.9rem; color: rgba(45,32,18,0.65); }
.kakao-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brown-deep);
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 44px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  margin-bottom: 14px;
}
.kakao-btn-main:hover {
  background: #1A1208;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.kmc-note { font-size: 0.82rem; color: rgba(45,32,18,0.55); }

/* 안내 3개 */
.kakao-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ki-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.ki-card:hover { background: var(--yellow-pale); border-color: var(--yellow); transform: translateY(-3px); }
.ki-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--brown-deep);
  margin: 0 auto 14px;
}
.ki-card h4 { font-size: 1rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 8px; }
.ki-card p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* 프로세스 */
.kakao-process {
  background: var(--brown-deep);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  text-align: center;
}
.kakao-process h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--yellow);
  margin-bottom: 28px;
}
.kp-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.kp-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  min-width: 130px; text-align: center;
}
.kp-num { font-size: 0.72rem; font-weight: 900; color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 10px; }
.kp-icon {
  width: 42px; height: 42px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--brown-deep);
  margin: 0 auto 10px;
}
.kp-step h5 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.kp-step p  { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.kp-arrow   { color: var(--yellow); font-size: 1rem; flex-shrink: 0; }

/* 하단 후기 + 스토어 */
.kakao-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.kb-review {
  background: var(--yellow-bg);
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 24px 22px;
}
.kb-stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 10px; }
.kb-review p {
  font-size: 0.9rem; color: var(--brown-deep);
  font-style: italic; line-height: 1.7; margin-bottom: 8px;
}
.kb-review span { font-size: 0.8rem; color: var(--gray-600); }

.kb-store {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--brown-deep);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  color: var(--white);
  transition: all var(--transition);
}
.kb-store:hover { background: #1A1208; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.kb-store i { font-size: 1.4rem; color: var(--yellow); flex-shrink: 0; }
.kb-store strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.kb-store span { font-size: 0.83rem; color: rgba(255,255,255,0.65); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brown-deep);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-inner {
  display: flex;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}
.footer-brand { flex: 0 0 260px; }
.fb-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Noto Serif KR', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.fb-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.fb-tags span {
  font-size: 0.75rem; font-weight: 600;
  background: rgba(255,255,255,0.10);
  color: var(--yellow);
  padding: 4px 12px; border-radius: 50px;
}
.footer-store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--brown-deep);
  font-weight: 700; font-size: 0.9rem;
  padding: 10px 22px; border-radius: 50px;
  transition: all var(--transition);
}
.footer-store-btn:hover { background: var(--yellow-dark); }

.footer-links { display: flex; gap: 48px; flex: 1; flex-wrap: wrap; }
.fl-group { display: flex; flex-direction: column; gap: 10px; }
.fl-group h5 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 4px;
}
.fl-group a { font-size: 0.87rem; color: rgba(255,255,255,0.60); transition: color var(--transition); }
.fl-group a:hover { color: var(--white); }
.fl-more { color: var(--yellow) !important; font-weight: 600; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   SCROLL TOP BTN
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 46px; height: 46px;
  background: var(--brown-deep);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0; pointer-events: none;
  z-index: 900;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: #1A1208; transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE — 태블릿 (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .prod-grid       { grid-template-columns: repeat(2, 1fr); }
  .b2b-grid        { grid-template-columns: repeat(2, 1fr); }
  .trust-grid      { grid-template-columns: repeat(2, 1fr); }
  .review-grid     { grid-template-columns: repeat(2, 1fr); }
  .review-nums     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner    { flex-direction: column; gap: 36px; }
  .footer-brand    { flex: unset; }
  .kakao-info-grid { grid-template-columns: repeat(2, 1fr); }
  .kakao-bottom-row{ grid-template-columns: 1fr; }
  .rating-summary  { padding: 32px 36px; }
}

/* ============================================================
   RESPONSIVE — 모바일 (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .sec-head { margin-bottom: 40px; }

  /* 내비게이션 */
  .nav-links  { display: none; }
  .nav-burger { display: flex; }

  /* 히어로 */
  .hero { padding: 96px 20px 60px; }
  .hero-deco { display: none; }
  .hero-numbers {
    padding: 18px 20px;
    gap: 0;
  }
  .hn-item { padding: 0 16px; }
  .hn-item strong { font-size: 1.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-kakao, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  /* 티커 */
  .ticker-wrap { padding: 10px 0; }

  /* 제품 */
  .store-banner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sb-arrow { align-self: flex-end; }
  .prod-grid { grid-template-columns: 1fr; }

  /* 후기 */
  .rating-summary { flex-direction: column; gap: 24px; padding: 24px; }
  .review-grid    { grid-template-columns: 1fr; }
  .rv-featured    { grid-column: auto; }
  .review-nums    { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 24px 16px; }

  /* 신뢰 */
  .trust-grid { grid-template-columns: 1fr; }
  .ms-items   { flex-direction: column; gap: 14px; }
  .ms-div     { display: none; }

  /* B2B */
  .b2b-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-kakao.btn-lg, .btn-outline-dark.btn-lg { width: 100%; max-width: 340px; justify-content: center; }

  /* 카카오 */
  .kakao-main-card { padding: 28px 20px; }
  .kmc-top { flex-direction: column; text-align: center; }
  .kakao-btn-main { padding: 16px 28px; font-size: 1rem; width: 100%; justify-content: center; }
  .kakao-info-grid  { grid-template-columns: 1fr; }
  .kakao-process    { padding: 28px 16px; }
  .kp-row { flex-direction: column; gap: 8px; }
  .kp-arrow { transform: rotate(90deg); }
  .kakao-bottom-row { grid-template-columns: 1fr; }

  /* 푸터 */
  .footer-links { gap: 28px; }
}

/* ============================================================
   RESPONSIVE — 소형 모바일 (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-numbers { flex-direction: column; gap: 12px; }
  .hn-div { width: 80%; height: 1px; }
  .b2b-grid { grid-template-columns: 1fr; }
  .sec-title { font-size: 1.65rem; }
  .review-nums { grid-template-columns: repeat(2, 1fr); }
  .kp-step { min-width: 100px; padding: 16px 16px; }
}
