/* =============================================
   JL푸드 - 오렌지 테마 축산 도매몰
   style.css
   ============================================= */

/* CSS 변수 */
:root {
  --orange-main: #ff6b00;
  --orange-dark: #e55c00;
  --orange-light: #ff8c33;
  --orange-pale: #fff4eb;
  --orange-border: #ffd9b3;

  --dark: #1a1a2e;
  --dark-2: #222235;
  --text-main: #1f1f1f;
  --text-sub: #666;
  --text-light: #999;

  --white: #ffffff;
  --bg-light: #fafafa;
  --bg-gray: #f5f5f5;
  --border: #e8e8e8;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --shadow-orange: 0 4px 20px rgba(255,107,0,.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --header-h: 130px;
  --transition: all .28s cubic-bezier(.4,0,.2,1);
}

/* 리셋 */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  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, ol { list-style: none; }

/* 컨테이너 */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   공지 배너
   ============================================= */
.notice-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  z-index: 1000;
}
.notice-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 60px 0 24px;
  white-space: nowrap;
  animation: scrollText 30s linear infinite;
}
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.notice-scroll:hover { animation-play-state: paused; }
.notice-item { color: #ccc; }
.notice-item i { color: var(--orange-main); }
.notice-bar .divider { color: #444; }
.notice-close {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  color: #aaa; width: 24px; height: 24px;
  border-radius: 50%; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.notice-close:hover { background: var(--orange-main); color: white; }

/* =============================================
   헤더
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: box-shadow .3s ease;
}

/* 유틸 메뉴 */
.header-util {
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.header-util .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.util-left, .util-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.util-link {
  font-size: 12px;
  color: var(--text-sub);
  transition: var(--transition);
}
.util-link:hover { color: var(--orange-main); }
.util-link i { margin-right: 3px; font-size: 11px; }
.util-highlight { color: var(--orange-main); font-weight: 600; }
.util-right .divider { color: #ccc; font-size: 11px; }

/* 메인 헤더 */
.header-main {
  padding: 16px 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* 로고 */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900;
  color: white; letter-spacing: -1px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}
.logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 24px; font-weight: 900;
  color: var(--dark); line-height: 1;
}
.logo-sub {
  font-size: 11px; color: var(--text-light);
  letter-spacing: .5px; margin-top: 2px;
}

/* 검색창 */
.search-wrap { flex: 1; max-width: 700px; }
.search-box {
  display: flex;
  align-items: center;
  border: 2px solid var(--orange-main);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: white;
  transition: box-shadow .3s;
}
.search-box:focus-within {
  box-shadow: 0 0 0 3px rgba(255,107,0,.2);
}
.category-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 0 16px; height: 48px;
  background: var(--orange-main); color: white;
  font-size: 13px; font-weight: 600;
  border-right: none; white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.category-toggle:hover { background: var(--orange-dark); }
.search-input {
  flex: 1; height: 48px;
  padding: 0 16px; border: none; outline: none;
  font-size: 14px; color: var(--text-main);
  font-family: inherit;
}
.search-input::placeholder { color: #bbb; }
.search-btn {
  width: 56px; height: 48px;
  background: var(--orange-main); color: white;
  font-size: 18px; flex-shrink: 0;
  transition: background .2s;
}
.search-btn:hover { background: var(--orange-dark); }

/* 검색 인기어 */
.search-popular {
  display: flex; align-items: center;
  gap: 8px; margin-top: 8px;
  flex-wrap: wrap;
}
.pop-label { font-size: 12px; color: var(--text-light); flex-shrink: 0; }
.pop-tag {
  font-size: 12px; color: var(--text-sub);
  background: var(--bg-gray); border-radius: var(--radius-full);
  padding: 3px 10px;
  transition: var(--transition);
}
.pop-tag:hover { background: var(--orange-pale); color: var(--orange-main); }

/* 헤더 아이콘 */
.header-icons {
  display: flex; gap: 4px; flex-shrink: 0;
}
.icon-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 8px 12px; position: relative;
  font-size: 11px; color: var(--text-sub);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.icon-btn i { font-size: 20px; color: var(--dark); transition: var(--transition); }
.icon-btn:hover { background: var(--orange-pale); }
.icon-btn:hover i { color: var(--orange-main); }
.icon-btn .badge {
  position: absolute; top: 6px; right: 8px;
  background: var(--orange-main); color: white;
  font-size: 10px; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* GNB */
.gnb {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
}
.gnb-list {
  display: flex; align-items: center;
}
.gnb-item > a {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 20px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
  white-space: nowrap;
}
.gnb-item > a i { font-size: 13px; }
.gnb-item > a:hover { color: var(--orange-main); background: rgba(255,107,0,.1); }
.gnb-special > a { color: var(--orange-light) !important; font-weight: 700; }
.gnb-special > a:hover { color: white !important; background: var(--orange-main) !important; }

/* 메가 메뉴 */
.gnb-item.has-mega { position: relative; }
.mega-menu {
  position: absolute; top: 100%; left: 0;
  background: white; border-top: 3px solid var(--orange-main);
  box-shadow: var(--shadow-lg);
  padding: 24px; display: flex; gap: 32px;
  min-width: 360px; z-index: 100;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all .25s ease;
}
.gnb-item.has-mega:hover .mega-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-col h4 {
  font-size: 13px; font-weight: 700; color: var(--orange-main);
  margin-bottom: 10px; padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.mega-col a {
  display: block; font-size: 13px; color: var(--text-sub);
  padding: 5px 0; transition: var(--transition);
}
.mega-col a:hover { color: var(--orange-main); padding-left: 6px; }

/* 전체 카테고리 드롭다운 */
.cat-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: white; border-top: 3px solid var(--orange-main);
  box-shadow: var(--shadow-lg);
  z-index: 998;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .3s ease;
}
.cat-dropdown.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.cat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; padding: 32px 24px;
}
.cat-group { padding: 0 16px; }
.cat-group + .cat-group { border-left: 1px solid var(--border); }
.cat-title {
  font-size: 14px; font-weight: 700; color: var(--dark);
  margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.cat-title i { color: var(--orange-main); }
.cat-group a {
  display: block; font-size: 13px; color: var(--text-sub);
  padding: 5px 0; transition: var(--transition);
}
.cat-group a:hover { color: var(--orange-main); }

/* =============================================
   버튼 공통
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600;
  transition: var(--transition); cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange-main); color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,107,0,.4); }
.btn-outline {
  background: transparent; color: white;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn-white {
  background: white; color: var(--orange-main);
  font-weight: 700;
}
.btn-white:hover { background: var(--orange-pale); transform: translateY(-2px); }
.btn-white-sm {
  display: inline-block; padding: 8px 16px;
  background: rgba(255,255,255,.2); color: white;
  border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.4); transition: var(--transition);
}
.btn-white-sm:hover { background: rgba(255,255,255,.35); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-more {
  background: white; color: var(--text-sub);
  border: 2px solid var(--border); border-radius: var(--radius-full);
  padding: 12px 36px; font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.btn-more:hover { border-color: var(--orange-main); color: var(--orange-main); background: var(--orange-pale); }

/* =============================================
   메인 히어로 슬라이더
   ============================================= */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
}
.hero-slider {
  display: flex; height: 100%;
  transition: transform .7s cubic-bezier(.77,0,.175,1);
}
.slide {
  min-width: 100%; height: 100%;
  display: flex; align-items: center;
  padding: 0 0 0 0;
  position: relative;
  overflow: hidden;
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 80px;
  width: 100%;
}
.slide-badge {
  display: inline-block;
  background: rgba(255,107,0,.9); color: white;
  font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 20px;
  animation: fadeInDown .6s .2s both;
}
.slide-title {
  font-size: 52px; font-weight: 900; line-height: 1.2;
  color: white; margin-bottom: 20px;
  animation: fadeInUp .6s .3s both;
}
.slide-title .highlight { color: var(--orange-light); }
.slide-desc {
  font-size: 16px; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 32px;
  animation: fadeInUp .6s .4s both;
}
.slide-btns {
  display: flex; gap: 16px;
  animation: fadeInUp .6s .5s both;
}
.slide-stats {
  display: flex; align-items: center; gap: 24px;
  margin-top: 40px;
  animation: fadeInUp .6s .6s both;
}
.stat-item { text-align: center; }
.stat-num {
  display: block; font-size: 32px; font-weight: 900; color: white; line-height: 1;
}
.stat-num small { font-size: 18px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; display: block; }
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.25);
}

/* 슬라이드 비주얼 데코 */
.slide-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%; display: flex; align-items: center; justify-content: center;
}
.visual-circle {
  position: absolute; border-radius: 50%;
  opacity: .08;
}
.circle-1 {
  width: 500px; height: 500px;
  background: var(--orange-main);
  right: -100px; top: -100px;
  animation: pulse 4s ease-in-out infinite;
}
.circle-2 {
  width: 300px; height: 300px;
  background: white;
  right: 80px; top: 80px;
  animation: pulse 4s 1s ease-in-out infinite;
}
.visual-meat-icon {
  position: relative; z-index: 1;
  font-size: 160px; color: rgba(255,255,255,.05);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .08; }
  50% { transform: scale(1.05); opacity: .12; }
}

/* 슬라이드 2 비주얼 */
.slide-visual-2 { justify-content: center; }
.promo-badge-wrap { text-align: center; animation: float 4s ease-in-out infinite; }
.promo-circle {
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 4px solid rgba(255,255,255,.4);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.promo-pct { font-size: 72px; font-weight: 900; color: white; line-height: 1; }
.promo-txt { font-size: 18px; color: rgba(255,255,255,.9); font-weight: 700; }

/* 슬라이드 3 비주얼 */
.slide-visual-3 { justify-content: center; animation: float 5s ease-in-out infinite; }
.coupon-visual { perspective: 800px; }
.coupon-card {
  width: 240px; background: white;
  border-radius: var(--radius-lg);
  padding: 24px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transform: rotate(-8deg);
  animation: float 5s ease-in-out infinite;
}
.coupon-top { font-size: 14px; font-weight: 700; color: var(--orange-main); }
.coupon-amount { font-size: 40px; font-weight: 900; color: var(--dark); margin: 8px 0; }
.coupon-bot {
  font-size: 13px; color: var(--text-sub);
  background: var(--orange-pale); padding: 6px; border-radius: var(--radius-sm);
}

/* 슬라이더 컨트롤 */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.2); color: white;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  z-index: 10; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); transition: var(--transition);
}
.slider-btn:hover { background: var(--orange-main); border-color: var(--orange-main); transform: translateY(-50%) scale(1.05); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: var(--transition);
}
.dot.active { background: white; width: 24px; border-radius: 4px; }

/* 슬라이드 진입 애니메이션 */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   퀵 서비스 바
   ============================================= */
.quick-service {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}
.quick-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.quick-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  transition: var(--transition);
  border-right: 1px solid var(--border);
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: var(--orange-pale); }
.quick-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange-main); flex-shrink: 0;
  transition: var(--transition);
}
.quick-item:hover .quick-icon { background: var(--orange-main); color: white; transform: scale(1.1); }
.quick-title { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.quick-sub { display: block; font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* =============================================
   섹션 공통
   ============================================= */
section { padding: 64px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-size: 26px; font-weight: 800; color: var(--dark);
  position: relative; padding-bottom: 12px;
}
.section-title::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 40px; height: 4px;
  background: var(--orange-main); border-radius: 2px;
}
.section-sub { font-size: 14px; color: var(--text-sub); margin-top: 8px; }
.view-all {
  font-size: 14px; color: var(--text-sub);
  display: flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.view-all:hover { color: var(--orange-main); }

/* =============================================
   카테고리 퀵 아이콘
   ============================================= */
.cat-quick { background: var(--bg-light); }
.cat-icons {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.cat-icon-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  padding: 20px 12px;
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0; transform: translateY(20px);
}
.cat-icon-item.visible { opacity: 1; transform: translateY(0); }
.cat-icon-item:hover {
  border-color: var(--orange-main);
  box-shadow: 0 4px 16px rgba(255,107,0,.15);
  transform: translateY(-4px);
}
.cat-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--orange-main);
  transition: var(--transition);
}
.cat-icon-item:hover .cat-icon-wrap { background: var(--orange-main); color: white; transform: rotate(-5deg) scale(1.1); }
.cat-icon-special { background: var(--orange-main) !important; color: white !important; }
.cat-icon-item span { font-size: 13px; font-weight: 600; color: var(--text-main); text-align: center; }

/* =============================================
   상품 그리드
   ============================================= */
.products { background: var(--white); }
.tab-btns { display: flex; gap: 8px; }
.tab-btn {
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; border: 2px solid var(--border);
  color: var(--text-sub); transition: var(--transition);
  background: white; font-family: inherit;
}
.tab-btn:hover { border-color: var(--orange-main); color: var(--orange-main); }
.tab-btn.active { background: var(--orange-main); color: white; border-color: var(--orange-main); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0; transform: translateY(24px);
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover {
  border-color: var(--orange-main);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-img-wrap {
  position: relative; aspect-ratio: 1;
  overflow: hidden;
}
.product-img-placeholder {
  width: 100%; height: 100%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: var(--orange-main);
  transition: transform .4s ease;
}
.product-img-placeholder.bg-red { background: #fff0f0; color: #e53e3e; }
.product-img-placeholder.bg-pink { background: #fff5f5; color: #d63384; }
.product-img-placeholder.bg-brown { background: #fdf5f0; color: #8b4513; }
.product-img-placeholder.bg-yellow { background: #fffcf0; color: #d4a017; }
.product-img-placeholder.bg-orange { background: #fff4eb; color: #ff6b00; }
.product-img-placeholder.bg-dark { background: #f0f0f5; color: #3a3a5c; }
.product-img-placeholder.bg-teal { background: #f0faf7; color: #2d8c7a; }

.product-card:hover .product-img-placeholder { transform: scale(1.08); }

/* 실제 상품 이미지 */
.product-img-real {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-real { transform: scale(1.06); }

.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 4px; flex-wrap: wrap;
}
.badge-best, .badge-new, .badge-hot, .badge-sale, .badge-grade {
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.badge-best { background: var(--orange-main); color: white; }
.badge-new { background: #22c55e; color: white; }
.badge-hot { background: #ef4444; color: white; }
.badge-sale { background: var(--dark); color: white; }
.badge-grade { background: rgba(255,255,255,.95); color: var(--orange-dark); }

.wish-btn {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #ccc; transition: var(--transition);
  backdrop-filter: blur(4px);
}
.wish-btn:hover { color: #e53e3e; background: white; transform: scale(1.15); }

.product-info { padding: 16px; }
.product-brand { font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
.product-name {
  font-size: 15px; font-weight: 700; color: var(--dark);
  line-height: 1.4; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-meta { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.meta-tag {
  font-size: 11px; color: var(--text-sub);
  background: var(--bg-gray); padding: 2px 8px;
  border-radius: var(--radius-full);
}
.product-price {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.price-sale {
  font-size: 12px; font-weight: 700; color: white;
  background: var(--orange-main); padding: 2px 6px; border-radius: 4px;
}
.price-original { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.price-current { font-size: 18px; font-weight: 900; color: var(--dark); }
.product-unit { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.cart-btn {
  width: 100%; padding: 10px;
  background: var(--orange-pale); color: var(--orange-main);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition); font-family: inherit;
}
.cart-btn:hover { background: var(--orange-main); color: white; }

.more-btn-wrap { text-align: center; margin-top: 40px; }

/* =============================================
   기획전
   ============================================= */
.promo { background: var(--bg-light); }
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
}
.promo-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.promo-inner { padding: 40px; height: 100%; position: relative; overflow: hidden; }
.promo-main .promo-inner { min-height: 320px; display: flex; align-items: flex-end; }
.promo-content { position: relative; z-index: 2; }
.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,.25); color: white;
  font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.promo-main .promo-content h3 { font-size: 36px; font-weight: 900; color: white; line-height: 1.2; margin-bottom: 12px; }
.promo-main .promo-content p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 20px; }
.promo-deco {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  z-index: 1;
}
.deco-circle {
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 2px dashed rgba(255,255,255,.3);
}
.deco-num {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 80px; font-weight: 900; color: rgba(255,255,255,.2);
}
.promo-deadline {
  padding: 12px 20px; background: var(--dark);
  color: var(--orange-light); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.promo-side { display: flex; flex-direction: column; gap: 20px; }
.promo-small .promo-inner { padding: 28px; display: flex; align-items: center; min-height: 150px; }
.promo-small .promo-content h3 { font-size: 22px; font-weight: 900; color: white; line-height: 1.3; margin-bottom: 8px; }
.promo-small .promo-content p { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 12px; }

/* =============================================
   배송 안내
   ============================================= */
.delivery-info { background: var(--dark); }
.delivery-info .section-title { color: white; }
.delivery-info .section-title::after { background: var(--orange-main); }
.delivery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.delivery-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.delivery-card:hover { background: rgba(255,107,0,.1); border-color: rgba(255,107,0,.3); }
.delivery-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white; margin-bottom: 16px;
}
.delivery-card h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 10px; }
.delivery-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; }
.delivery-card p strong { color: var(--orange-light); }
.delivery-tag {
  display: inline-block; margin-top: 12px;
  background: rgba(255,107,0,.2); color: var(--orange-light);
  font-size: 12px; font-weight: 600; padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* =============================================
   구매 후기
   ============================================= */
.reviews { background: var(--bg-light); }
.review-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: white; padding: 24px;
  border-radius: var(--radius-md); border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.reviewer-info { display: flex; align-items: center; gap: 8px; }
.reviewer-icon { font-size: 32px; color: #ddd; }
.reviewer-name { display: block; font-size: 14px; font-weight: 600; color: var(--dark); }
.reviewer-grade {
  display: block; font-size: 11px; color: var(--orange-main);
  background: var(--orange-pale); padding: 2px 8px; border-radius: var(--radius-full);
}
.review-stars { color: #fbbf24; font-size: 14px; }
.review-product {
  font-size: 13px; color: var(--text-light); margin-bottom: 8px;
  padding: 4px 0; border-top: 1px solid var(--border);
}
.review-text { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 12px; }
.review-date { font-size: 12px; color: var(--text-light); }

/* =============================================
   회원 등급
   ============================================= */
.membership { background: white; }
.membership-wrap {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; overflow: hidden; position: relative;
}
.membership-wrap::before {
  content: '';
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,.2), transparent);
  right: -100px; top: -100px; border-radius: 50%;
}
.membership-info { position: relative; z-index: 1; }
.membership-info h2 { font-size: 32px; font-weight: 900; color: white; margin-bottom: 12px; }
.membership-info p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 28px; }
.membership-grades {
  display: flex; gap: 20px; position: relative; z-index: 1;
}
.grade-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
}
.grade-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.grade-basic { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.grade-silver { background: linear-gradient(135deg, #b0b0b0, #d8d8d8); color: white; }
.grade-gold { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: white; }
.grade-vvip { background: linear-gradient(135deg, var(--orange-main), var(--orange-dark)); color: white; }
.grade-name { font-size: 14px; font-weight: 700; color: white; }
.grade-benefit { font-size: 12px; color: rgba(255,255,255,.6); text-align: center; max-width: 100px; }

/* =============================================
   고객센터
   ============================================= */
.cs-section { background: var(--bg-light); }
.cs-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 40px; align-items: start;
}
.cs-main {
  background: white; padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.cs-main h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.cs-num { font-size: 36px; font-weight: 900; color: var(--orange-main); margin: 12px 0; }
.cs-hours { margin-bottom: 24px; }
.cs-hour-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--bg-gray);
  font-size: 14px;
}
.cs-hour-row span { color: var(--text-sub); }
.cs-hour-row strong { color: var(--dark); }
.cs-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cs-link-item {
  background: white; padding: 20px 24px;
  border-radius: var(--radius-md); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
}
.cs-link-item:hover { border-color: var(--orange-main); box-shadow: 0 4px 12px rgba(255,107,0,.1); }
.cs-link-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange-main); flex-shrink: 0;
  transition: var(--transition);
}
.cs-link-item:hover .cs-link-icon { background: var(--orange-main); color: white; }
.cs-link-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
.cs-link-item p { font-size: 13px; color: var(--text-sub); margin-top: 2px; }
.cs-arr { margin-left: auto; color: var(--text-light); font-size: 14px; }

/* =============================================
   고정 플로팅 메뉴
   ============================================= */
.quick-float {
  position: fixed; right: 20px; bottom: 100px;
  z-index: 990;
  display: flex; flex-direction: column; gap: 6px;
}
.qf-item {
  width: 48px; height: 48px; border-radius: 50%;
  background: white; color: var(--text-sub);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition);
  position: relative; border: 1px solid var(--border);
}
.qf-item:hover { background: var(--orange-main); color: white; border-color: var(--orange-main); transform: scale(1.1); }
.qf-badge {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange-main); color: white;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.qf-top { background: var(--dark); color: white; border-color: var(--dark); }
.qf-top:hover { background: var(--orange-main); border-color: var(--orange-main); }
.qf-chat {
  width: 56px; height: 56px;
  background: var(--orange-main); color: white;
  border-radius: 50%; font-size: 22px;
  box-shadow: var(--shadow-orange);
  display: flex; align-items: center; justify-content: center;
  margin-top: 8px; transition: var(--transition);
}
.qf-chat:hover { background: var(--orange-dark); transform: scale(1.1); }

/* =============================================
   푸터
   ============================================= */
.site-footer { background: var(--dark); }
.footer-top {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-top .container {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark-sm {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--orange-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: white;
}
.logo-name-sm { display: block; font-size: 18px; font-weight: 900; color: white; }
.logo-sub-sm { display: block; font-size: 11px; color: rgba(255,255,255,.5); }
.footer-links { display: flex; align-items: center; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-links .emph { color: rgba(255,107,0,.8); }
.footer-bottom { padding: 28px 0; }
.footer-info p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 2; }
.footer-info p strong { color: rgba(255,255,255,.8); }
.footer-cert { margin-top: 8px; display: flex; gap: 16px; }
.footer-cert span { font-size: 12px; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 4px; }
.footer-cert span i { color: var(--orange-main); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 16px; }

/* =============================================
   스크롤 reveal 애니메이션
   ============================================= */
.reveal-section {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-section.visible {
  opacity: 1; transform: translateY(0);
}

/* =============================================
   반응형
   ============================================= */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-icons { grid-template-columns: repeat(4, 1fr); }
  .membership-grades { gap: 12px; }
}

@media (max-width: 992px) {
  .header-main .container { flex-wrap: wrap; }
  .search-wrap { order: 3; flex: 1 1 100%; max-width: 100%; }
  .hero { height: 480px; }
  .slide-title { font-size: 38px; }
  .slide-content { padding: 0 40px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-side { flex-direction: row; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .membership-wrap { flex-direction: column; gap: 32px; }
  .cat-icons { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .header-util { display: none; }
  .header-icons .icon-btn span { display: none; }
  .category-toggle span { display: none; }
  .hero { height: 400px; }
  .slide-title { font-size: 28px; }
  .slide-stats { display: none; }
  .slide-visual { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-icons { grid-template-columns: repeat(4, 1fr); }
  .gnb-list { overflow-x: auto; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .cs-links { grid-template-columns: 1fr; }
  .membership-grades { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .slide-content { padding: 0 24px; }
  .slide-title { font-size: 24px; }
  .slide-btns { flex-direction: column; gap: 10px; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-icons { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cat-icon-item { padding: 12px 8px; }
  .cat-icon-wrap { width: 44px; height: 44px; font-size: 18px; }
  .delivery-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-item:last-child { border-right: 1px solid var(--border); }
  .membership-wrap { padding: 32px 24px; }
}
