/* ========================================
   티카페알케미 | Tea Café Alchemy
   Brand CSS - v1.0
   ======================================== */

/* === CSS Variables === */
:root {
  --green-dark:   #2D5016;
  --green-main:   #4A7C2F;
  --green-mid:    #6B9E47;
  --green-light:  #A8C97A;
  --green-pale:   #E8F4D9;
  --gold:         #C8A96E;
  --gold-light:   #E8D5A8;
  --cream:        #FAF6EE;
  --brown:        #5C3D1E;
  --brown-light:  #8B6340;
  --text-dark:    #1A1A1A;
  --text-mid:     #444444;
  --text-light:   #888888;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --transition:   0.3s ease;
  --font-serif:   'Noto Serif KR', serif;
  --font-sans:    'Noto Sans KR', 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-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Utility === */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,124,47,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-main);
  border-color: var(--green-main);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-dark:hover {
  background: var(--green-main);
  color: var(--white);
}

.full-w { width: 100%; justify-content: center; }

/* ========================================
   HEADER
   ======================================== */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.78rem;
  padding: 6px 24px;
  letter-spacing: 0.03em;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.8rem; }
.logo-text {
  font-family: var(--font-serif);
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-ko {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.3px;
  font-style: normal;
}
.logo-en {
  font-size: 0.62rem;
  font-weight: 400;
  font-style: italic;
  color: var(--green-main);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
}
.nav-links li a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover {
  color: var(--green-main);
  background: var(--green-pale);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--green-main); color: var(--white); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#main-header.scrolled .navbar {
  box-shadow: var(--shadow-md);
}

/* ========================================
   HERO
   ======================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(74,124,47,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(200,169,110,0.3) 0%, transparent 50%),
    linear-gradient(135deg, #1a2f0a 0%, #2D5016 40%, #3d6b20 70%, #1a2f0a 100%);
  background-size: cover;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10,20,5,0.35);
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 60px;
  max-width: 800px;
}

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  color: var(--white);
}
.hero-title-en {
  display: block;
  font-size: clamp(1rem, 2.8vw, 1.7rem);
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 0.1em;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   NOTICE BANNER
   ======================================== */
.notice-banner {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
}
.notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ========================================
   ABOUT
   ======================================== */
#about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}

.about-img-main {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-light) 50%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-lg);
}

.about-tag {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
}
.about-tag1 { top: 20px; right: -20px; color: var(--green-main); }
.about-tag2 { bottom: 60px; left: -20px; color: var(--brown); }
.about-tag3 { bottom: 20px; right: 10px; color: var(--gold); }

.about-text { max-width: 560px; }

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-body {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.9;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--green-main);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item span { font-size: 0.8rem; color: var(--text-light); }

/* ========================================
   FEATURES
   ======================================== */
#features {
  padding: 60px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--green-pale);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.875rem; color: var(--text-light); }

/* ========================================
   SHOP SECTION
   ======================================== */
#shop-section {
  padding: 100px 0;
  background: var(--cream);
}

.shop-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* 카테고리 탭 */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2rem;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--green-pale);
  color: var(--text-mid);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}

/* 검색바 */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: 50px;
  padding: 10px 20px;
  transition: var(--transition);
}
.search-bar:focus-within {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(74,124,47,0.12);
}
.search-bar i { color: var(--text-light); }
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: transparent;
}

/* 상품 그리드 */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

/* 로딩 */
.loading-spinner {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--text-light);
}
.loading-spinner i { font-size: 2rem; margin-bottom: 1rem; color: var(--green-main); }

/* 상품 카드 */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
/* 실물 사진이 등록된 경우 */
.product-card-img.has-photo {
  background: #f0f0f0;
}
.product-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-photo {
  transform: scale(1.05);
}
.product-card-img.cat-salad_lunch    { background: linear-gradient(135deg, #F0FFF4, #B2DFBC); }
.product-card-img.cat-sandwich_lunch { background: linear-gradient(135deg, #FFF8E7, #FFE4B5); }
.product-card-img.cat-snack_lunch    { background: linear-gradient(135deg, #FFF0F5, #FFD6E7); }
.product-card-img.cat-catering       { background: linear-gradient(135deg, #F0F8FF, #C8E6FF); }
.product-card-img.cat-gift           { background: linear-gradient(135deg, #FFF5E6, #FFE0B2); }
.product-card-img.cat-tea_education  { background: linear-gradient(135deg, #F0FFF0, #C8EFC8); }
.product-card-img.cat-tea_shop       { background: linear-gradient(135deg, var(--green-pale), #D0E8B0); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green-main);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.product-badge.gold { background: var(--gold); }
.product-badge.blue { background: #4A90D9; }

.product-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-size: 0.72rem;
  color: var(--green-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.product-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.product-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-serif);
}
.product-min {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
}

.add-cart-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.add-cart-btn:hover { background: var(--green-dark); transform: scale(1.1); }

.no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--text-light);
  font-size: 1rem;
}

/* ========================================
   GIFT HIGHLIGHT (답례품)
   ======================================== */
#gift-highlight {
  padding: 100px 0;
  background: linear-gradient(160deg, #FFF9F0 0%, #FFF3E0 50%, #FDEBD0 100%);
  position: relative;
  overflow: hidden;
}
#gift-highlight::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(200,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
#gift-highlight::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(200,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.gift-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.gift-desc { max-width: 680px; margin: 0 auto; }

.gift-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 2rem;
  position: relative; z-index: 1;
}
/* 6개 카드용 3열 그리드 */
.gift-products-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* 호두정과 6구 그리드 (3열 × 2행) */
.gift-products-walnut {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 2rem;
  position: relative; z-index: 1;
}

/* 호두정과 카드: 기존 gift-card보다 살짝 컴팩트 */
.gift-walnut-card {
  padding: 1.5rem 1.2rem;
}
.gift-walnut-card .gift-card-emoji { font-size: 2rem; }
.gift-walnut-card .gift-card-info h3 { font-size: 1rem; }
.gift-walnut-card .gift-card-info p  { font-size: 0.82rem; }

/* 가격 강조 */
.wn-price {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: var(--brown) !important;
  letter-spacing: -0.3px;
}
.gift-card-featured .wn-price { color: var(--gold-light) !important; }

/* 특허 뱃지 색 */
.wn-patent {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
}

/* 카테고리 구분 라벨 */
.gift-category-label {
  max-width: 1100px;
  margin: 0 auto 1.2rem;
  position: relative; z-index: 1;
}
.gift-category-label span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.18);
  border: 1.5px solid rgba(200,169,110,0.45);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.3px;
}

.gift-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(200,169,110,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.gift-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(200,169,110,0.25);
  transform: translateY(-6px);
}
.gift-card-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #FFFDF5, #FFF8E7);
}

.gift-featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #E8C070);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(200,169,110,0.4);
  letter-spacing: 0.05em;
}

.gift-card-emoji {
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.gift-card-info { flex: 1; }
.gift-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200,169,110,0.12);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gift-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.gift-card-info p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.gift-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
}

.gift-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  max-width: 860px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--brown-light);
  position: relative; z-index: 1;
}
.gift-notice i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.gift-notice strong { color: var(--brown); }

/* 반응형 */
@media (max-width: 1000px) {
  .gift-products-grid  { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .gift-products-walnut { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .gift-products       { grid-template-columns: 1fr; max-width: 480px; }
  .gift-products-grid  { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .gift-products-walnut { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gift-products       { gap: 16px; }
  .gift-products-walnut { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gift-walnut-card    { padding: 1.2rem 0.9rem; }
  .gift-products-grid { grid-template-columns: 1fr; }
  .gift-card { padding: 1.5rem; }
  .gift-card-emoji { font-size: 3rem; }
}

/* ========================================
   SALAD HIGHLIGHT
   ======================================== */
#salad-highlight {
  padding: 90px 0;
  background: linear-gradient(160deg, #f2fdf4 0%, #dff5e3 50%, #c8efd0 100%);
}
#salad-highlight .section-label { color: var(--green-main); }
#salad-highlight .section-title { color: var(--green-dark); }

.salad-hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.salad-hl-lead {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.salad-hl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.salad-hl-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.salad-hl-list li i { color: var(--green-main); font-size: 1rem; flex-shrink: 0; }

/* 카드 그리드 기본 */
.salad-hl-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
/* 6개 카드: 3열 × 2행 */
.salad-hl-cards-6 {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.salad-hl-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.salad-hl-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.salad-hl-card.featured {
  background: linear-gradient(145deg, var(--green-dark), var(--green-main));
  color: var(--white);
  border-color: var(--green-main);
}
.salad-hl-card.featured strong { color: var(--white); }
.salad-hl-card.featured .shc-price { color: var(--gold-light); }
.shc-emoji { font-size: 2.2rem; }
.salad-hl-card strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
}
.shc-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-main);
}
.shc-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--green-main);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.shc-badge.new     { background: #1565c0; }
.shc-badge.premium { background: var(--gold); color: var(--green-dark); }
.shc-badge.group   { background: var(--brown); }

/* 반응형 */
@media (max-width: 860px) {
  .salad-hl-grid { grid-template-columns: 1fr; gap: 40px; }
  /* 6개 카드 태블릿: 2열 × 3행 */
  .salad-hl-cards-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .salad-hl-cards   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .salad-hl-cards-6 { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ========================================
   TEA EDUCATION HIGHLIGHT
   ======================================== */
#edu-highlight {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #3d6b20 100%);
  color: var(--white);
}
#edu-highlight .section-label { color: var(--gold-light); }
#edu-highlight .section-title { color: var(--white); }
#edu-highlight p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.edu-list { margin-bottom: 2.5rem; }
.edu-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.edu-list li i { color: var(--gold-light); font-size: 1.1rem; }

.edu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
/* 그리드형 카드: 4열 */
.edu-cards-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* 그룹 레이블 */
.edu-group-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.edu-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.edu-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem 0.8rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.edu-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.edu-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}

/* 명상 카드 — 보랏빛 계열 */
.edu-card.meditation {
  background: rgba(120, 80, 180, 0.22);
  border-color: rgba(160, 110, 220, 0.35);
}
.edu-card.meditation:hover {
  background: rgba(120, 80, 180, 0.32);
}
.edu-card.meditation.featured {
  background: linear-gradient(135deg, #7c4dbe, #a96ce8);
  border-color: #b07fe0;
}

/* 기공 카드 — 청록 계열 */
.edu-card.qigong {
  background: rgba(20, 140, 120, 0.22);
  border-color: rgba(30, 180, 150, 0.35);
}
.edu-card.qigong:hover {
  background: rgba(20, 140, 120, 0.32);
}
.edu-card.qigong.featured {
  background: linear-gradient(135deg, #148c78, #1fbfa0);
  border-color: #28d4b0;
}

.edu-card-icon { display: block; font-size: 1.6rem; margin-bottom: 0.4rem; }
.edu-card strong { display: block; font-size: 0.78rem; margin-bottom: 0.3rem; color: var(--white); line-height: 1.3; }
.edu-price { font-size: 0.88rem; font-weight: 700; color: var(--gold-light); }
.edu-card.featured .edu-price { color: var(--white); }
.edu-card.meditation .edu-price,
.edu-card.meditation.featured .edu-price,
.edu-card.qigong .edu-price,
.edu-card.qigong.featured .edu-price { color: rgba(255,255,255,0.95); }

/* ========================================
   CATERING HIGHLIGHT
   ======================================== */
#catering-highlight {
  padding: 100px 0;
  background: var(--white);
}
#catering-highlight .section-label { color: var(--green-main); }

.catering-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.catering-card {
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.catering-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.catering-card.featured {
  border-color: var(--green-main);
  background: var(--green-dark);
  color: var(--white);
}
.catering-card.featured ul li { color: rgba(255,255,255,0.8); }

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}

.catering-num {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--green-main);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.catering-card.featured .catering-num { color: var(--gold-light); }

.catering-type {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.catering-card.featured .catering-type { color: rgba(255,255,255,0.7); }

.catering-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}
.catering-card.featured .catering-price { color: var(--white); }

.catering-card ul {
  margin-bottom: 2rem;
  text-align: left;
}
.catering-card ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 8px;
}
.catering-card ul li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
}
.catering-card.featured ul li::before { color: var(--gold-light); }

/* 인당 단가 배너 */
.catering-price-banner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto 3rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--green-pale);
  box-shadow: var(--shadow-sm);
}
.cpb-item {
  flex: 1;
  text-align: center;
  padding: 1.8rem 1rem;
}
.cpb-item.featured {
  background: linear-gradient(135deg, var(--green-dark), #3d6b20);
}
.cpb-item.featured strong { color: var(--white); }
.cpb-item.featured p { color: rgba(255,255,255,0.75); }

.cpb-divider {
  width: 1px;
  background: var(--green-pale);
  margin: 1rem 0;
}
.cpb-grade {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.cpb-grade.basic    { background: #E8F4D9; color: var(--green-main); }
.cpb-grade.standard { background: #E8F0FF; color: #4A6FD9; }
.cpb-grade.premium  { background: var(--gold-light); color: var(--brown); }

.cpb-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  font-family: var(--font-serif);
  margin-bottom: 0.3rem;
}
.cpb-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* 가격 범위 표시 */
.catering-price-range {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.catering-price-range span { font-size: 1.3rem; }
.catering-price-range em   { font-style: normal; font-size: 0.85rem; color: var(--text-light); font-weight: 400; }
.catering-card.featured .catering-price-range { color: var(--white); }
.catering-card.featured .catering-price-range em { color: rgba(255,255,255,0.6); }

/* 모달 케이터링 단가 선택 버튼 */
.modal-options.catering-price-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.option-btn.catering-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--green-pale);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}
.option-btn.catering-opt:hover,
.option-btn.catering-opt.selected {
  border-color: var(--green-main);
  background: var(--green-pale);
}
.copt-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  font-family: var(--font-serif);
}
.copt-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
  background: #f0f0f0;
  padding: 3px 12px;
  border-radius: 50px;
}
.option-btn.catering-opt.selected .copt-label {
  background: rgba(74,124,47,0.15);
  color: var(--green-dark);
}
.modal-catering-note {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--green-dark);
  margin-bottom: 1.2rem !important;
  line-height: 1.6;
}

/* 케이터링 메뉴 구성표 */
/* 상품 카드 구성 목록 */
.card-menu-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.card-menu-list li {
  font-size: 0.75rem;
  color: var(--text-mid);
  background: rgba(74,124,47,0.07);
  border-radius: 30px;
  padding: 2px 9px;
  white-space: nowrap;
}

/* 모달 구성 목록 */
.modal-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
}
.modal-menu-list li {
  font-size: 0.84rem;
  color: var(--text-mid);
  padding: 5px 10px;
  background: rgba(74,124,47,0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.catering-menu-table-wrap {
  margin: 4px 0 8px;
  animation: fadeIn 0.25s ease;
}
.catering-menu-items li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.catering-grade-compare {
  padding-top: 4px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 반응형 */
@media (max-width: 700px) {
  .catering-price-banner { flex-direction: column; }
  .cpb-divider { width: auto; height: 1px; margin: 0 1rem; }
}

/* ========================================
   SANDWICH MENU POPUP PANEL
   ======================================== */
#sandwich-menu-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 20px;
}
#sandwich-menu-popup.open {
  display: flex;
  animation: smPopupIn 0.3s ease;
}
@keyframes smPopupIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.sm-popup-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.sm-popup-header {
  background: linear-gradient(135deg, #FFF8E7, #FFE4B5);
  padding: 20px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(200,169,110,0.3);
  flex-shrink: 0;
}
.sm-popup-header h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sm-popup-header h2 span.sm-header-sub {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-sans);
}
.sm-popup-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.sm-popup-close:hover { background: rgba(0,0,0,0.16); color: var(--text-dark); }

.sm-popup-body {
  overflow-y: auto;
  padding: 20px 28px 24px;
  flex: 1;
}
.sm-popup-body::-webkit-scrollbar { width: 6px; }
.sm-popup-body::-webkit-scrollbar-track { background: var(--cream); }
.sm-popup-body::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }

/* 그룹 제목 */
.sm-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-main);
  text-transform: uppercase;
  padding: 10px 0 8px;
  margin-top: 10px;
  border-bottom: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sm-group-title:first-child { margin-top: 0; }

/* 메뉴 행 */
.sm-menu-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  align-items: center;
  gap: 8px 16px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.18s;
  border-radius: 8px;
  cursor: pointer;
}
.sm-menu-row:hover { background: rgba(255,232,160,0.25); }

.sm-menu-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 7px;
}
.sm-menu-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  white-space: nowrap;
}
.sm-menu-badge.green { background: var(--green-main); }
.sm-menu-badge.blue  { background: #4A90D9; }

.sm-menu-items {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.5;
}
.sm-menu-items .sm-tag {
  display: inline-block;
  background: rgba(74,124,47,0.08);
  border-radius: 20px;
  padding: 1px 7px;
  margin: 1px 2px 1px 0;
  font-size: 0.72rem;
  color: var(--text-mid);
}

.sm-menu-price {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
  text-align: right;
}
.sm-menu-min {
  font-size: 0.68rem;
  color: var(--text-light);
  text-align: right;
}

/* 하단 주문 안내 */
.sm-popup-footer {
  flex-shrink: 0;
  padding: 14px 28px;
  background: var(--cream);
  border-top: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.sm-popup-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sm-popup-footer .btn { font-size: 0.88rem; padding: 9px 22px; }

@media (max-width: 600px) {
  .sm-popup-inner { max-height: 95vh; border-radius: var(--radius-md); }
  .sm-popup-header { padding: 16px 18px 12px; }
  .sm-popup-header h2 { font-size: 1.1rem; }
  .sm-popup-body { padding: 14px 16px 18px; }
  .sm-menu-row { grid-template-columns: 1fr auto; gap: 4px 10px; }
  .sm-menu-items { display: none; }
  .sm-popup-footer { padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ========================================
   REVIEWS
   ======================================== */
#reviews {
  padding: 100px 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-light);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { font-size: 1.1rem; margin-bottom: 0.8rem; }
.review-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
}
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--green-main); }

/* ========================================
   CONTACT
   ======================================== */
#contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-list { margin-bottom: 2rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--green-pale);
}
.contact-list li i { color: var(--green-main); font-size: 1rem; margin-top: 2px; min-width: 18px; }

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.sns-btn.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
}
.sns-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sns-btn.business-card-link {
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
}
.sns-btn.business-card-link:hover { background: var(--green-main); border-color: var(--green-main); }

/* 입금 계좌 박스 */
.contact-bank-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--green-pale), #f0f9e4);
  border: 2px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  margin-bottom: 1.5rem;
}
.bank-icon {
  width: 46px; height: 46px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bank-icon i { color: var(--white); font-size: 1.1rem; }
.bank-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.bank-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
}

/* 폼 */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  outline: none;
  background: var(--white);
  transition: var(--transition);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(74,124,47,0.1);
}
.form-group textarea { resize: vertical; }

/* ========================================
   FOOTER
   ======================================== */
#main-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-sns a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-sns a:hover { background: var(--gold); }
.footer-links h4, .footer-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--gold-light); }
.footer-info p { font-size: 0.85rem; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom p { margin-bottom: 4px; }

/* ========================================
   창업문의 탭 시스템
   ======================================== */
.contact-tab-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.contact-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid var(--green-main);
  background: transparent;
  color: var(--green-main);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition);
}
.contact-tab-btn:hover {
  background: var(--green-pale);
}
.contact-tab-btn.active {
  background: var(--green-main);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74,124,47,0.25);
}
.contact-tab-panel {
  display: none;
}
.contact-tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ── 창업 헤더 ── */
.franchise-hero {
  text-align: center;
  margin-bottom: 3rem;
}
.franchise-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.franchise-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}
.fb-badge.green {
  background: rgba(74,124,47,0.12);
  color: var(--green-dark);
  border: 1.5px solid rgba(74,124,47,0.3);
}
.fb-badge.gold {
  background: rgba(200,169,110,0.15);
  color: #8a6200;
  border: 1.5px solid rgba(200,169,110,0.4);
}

/* ── 창업 장점 카드 ── */
.franchise-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 3.5rem;
}
.fa-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,124,47,0.1);
  transition: var(--transition);
}
.fa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.fa-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}
.fa-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  font-family: var(--font-serif);
}
.fa-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── 창업 절차 ── */
.franchise-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.8rem;
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  gap: 10px;
}
.franchise-section-title i {
  color: var(--green-main);
}
.franchise-process-wrap {
  margin-bottom: 3.5rem;
}
.franchise-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.fs-step {
  flex: 1;
  min-width: 130px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,124,47,0.1);
  transition: var(--transition);
}
.fs-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.fs-num {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
.fs-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.fs-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}
.fs-step p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.fs-arrow {
  display: flex;
  align-items: center;
  padding: 0 6px;
  color: var(--green-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 60px;
}

/* ── 창업 비용 표 ── */
.franchise-cost-wrap {
  margin-bottom: 3.5rem;
}
.franchise-cost-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,124,47,0.15);
}
.fct-row {
  display: grid;
  grid-template-columns: 1.8fr 1.4fr 1.4fr 1.4fr;
  gap: 0;
}
.fct-row span {
  padding: 13px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
}
.fct-row span:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.06);
}
.fct-row.header span {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}
.fct-row:not(.header):nth-child(even) span {
  background: rgba(74,124,47,0.04);
}
.fct-row:not(.header):hover span {
  background: rgba(74,124,47,0.08);
}
.fct-row .free {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.95rem;
}
.fct-row.highlight span {
  background: rgba(200,169,110,0.15) !important;
  font-weight: 700;
  color: var(--brown);
}
.fct-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.8rem;
  padding-left: 4px;
}

/* ── 창업 문의 폼 ── */
.franchise-form-wrap {
  margin-top: 1rem;
}
.franchise-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.franchise-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74,124,47,0.1);
}
.fci-item > i {
  font-size: 1.4rem;
  color: var(--green-main);
  margin-top: 2px;
  flex-shrink: 0;
}
.fci-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 4px;
  font-weight: 700;
}
.fci-item p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}

/* 반응형 */
@media (max-width: 900px) {
  .franchise-advantages { grid-template-columns: repeat(2, 1fr); }
  .franchise-form-grid  { grid-template-columns: 1fr; gap: 24px; }
  .fct-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .fct-row span { padding: 10px 10px; font-size: 0.8rem; }
}
@media (max-width: 600px) {
  .contact-tab-btn { padding: 10px 20px; font-size: 0.85rem; }
  .franchise-advantages { grid-template-columns: 1fr; }
  .franchise-steps { flex-direction: column; align-items: stretch; gap: 12px; }
  .fs-arrow { display: none; }
  .fct-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .fct-row span:last-child { display: none; }
  .franchise-form-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CART SIDEBAR
   ======================================== */
.cart-sidebar {
  position: fixed;
  top: 0; right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { right: 0; }

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--green-pale);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cart-close:hover { background: #ffebeb; color: #e00; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 12px;
  color: var(--text-light);
}
.cart-empty span { font-size: 3rem; }
.cart-empty p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--green-pale);
}
.cart-item-emoji {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-info .cart-item-opt {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--green-pale);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--green-pale); color: var(--green-main); }
.qty-val { font-size: 0.88rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}
.remove-item-btn {
  color: #ccc;
  font-size: 0.85rem;
  transition: var(--transition);
}
.remove-item-btn:hover { color: #e00; }

.cart-footer {
  padding: 16px 24px 24px;
  border-top: 2px solid var(--green-pale);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.cart-total strong { font-size: 1.3rem; color: var(--green-dark); }
.cart-notice { font-size: 0.75rem; color: var(--text-light); margin-bottom: 1rem; }

/* ========================================
   PRODUCT MODAL
   ======================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  z-index: 1;
  transition: var(--transition);
}
.modal-close:hover { background: #ffebeb; color: #e00; }

.modal-img {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-content {
  padding: 2rem;
}
.modal-cat-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-main);
  background: var(--green-pale);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.modal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.modal-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-serif);
  margin-bottom: 0.4rem;
}
.modal-min {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.modal-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.modal-option-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.modal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}
/* 옵션 텍스트가 긴 경우(도시락 구성 등) 세로 목록으로 전환 */
.modal-options.list-style {
  flex-direction: column;
  gap: 8px;
}
.modal-options.list-style .option-btn {
  width: 100%;
  text-align: left;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-options.list-style .option-btn::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #ccc;
  transition: var(--transition);
}
.modal-options.list-style .option-btn.selected::before {
  background: var(--green-main);
  border-color: var(--green-main);
}

.option-btn {
  padding: 6px 16px;
  border-radius: 50px;
  border: 2px solid var(--green-pale);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.option-btn:hover, .option-btn.selected {
  border-color: var(--green-main);
  background: var(--green-pale);
  color: var(--green-dark);
}

.modal-qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.modal-qty span { font-size: 0.9rem; font-weight: 600; }
.modal-qty-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border-radius: 50px;
  padding: 6px 12px;
}
.modal-qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--green-pale);
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-qty-btn:hover { background: var(--green-pale); color: var(--green-main); }
.modal-qty-val { font-weight: 700; font-size: 1rem; min-width: 24px; text-align: center; }

.modal-actions {
  display: flex;
  gap: 12px;
}
.modal-actions .btn { flex: 1; justify-content: center; }

/* ========================================
   TOAST
   ======================================== */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 5000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========================================
   BENEFIT POPUP (혜택 팝업)
   ======================================== */

/* 플로팅 버튼 */
.benefit-fab {
  position: fixed;
  bottom: 90px; right: 28px;
  z-index: 950;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FEE500 0%, #FFCD00 100%);
  border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-fab:hover { transform: translateY(-4px) scale(1.07); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.fab-icon { font-size: 1.4rem; line-height: 1; }
.fab-label { font-size: 0.6rem; font-weight: 700; color: #3A1D1D; }
.fab-ping {
  position: absolute; top: -3px; right: -3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #FF3B30;
  border: 2px solid var(--white);
  animation: ping-anim 1.8s infinite;
}
@keyframes ping-anim {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* 오버레이 */
.benefit-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.benefit-overlay.active { opacity: 1; pointer-events: auto; }

/* 팝업 본체 */
.benefit-popup {
  position: fixed;
  bottom: 0; right: 0;
  width: 420px;
  max-height: 90vh;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  z-index: 2200;
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px -4px 30px rgba(0,0,0,0.18);
}
.benefit-popup.open { transform: translateY(0); }

/* 팝업 헤더 */
.bp-header {
  position: relative;
  padding: 2rem 1.5rem 1.2rem;
  text-align: center;
  overflow: hidden;
  flex-shrink: 0;
}
.bp-header-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FEE500 0%, #FFD600 40%, #FFC107 100%);
  z-index: 0;
}
.bp-header-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.bp-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.12); color: #3A1D1D;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.bp-close:hover { background: rgba(0,0,0,0.22); }
.bp-header-content { position: relative; z-index: 1; }
.bp-logo { font-size: 2.2rem; margin-bottom: 0.4rem; }
.bp-header h2 {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: #3A1D1D; margin-bottom: 0.2rem;
}
.bp-header p { font-size: 0.82rem; color: rgba(58,29,29,0.7); }

/* 탭 */
.bp-tabs {
  display: flex;
  border-bottom: 2px solid var(--green-pale);
  flex-shrink: 0;
}
.bp-tab {
  flex: 1; padding: 12px 8px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition); cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
}
.bp-tab.active { color: #3A1D1D; border-bottom-color: #FEE500; }
.bp-tab i { font-size: 0.9rem; }

/* 탭 콘텐츠 */
.bp-content {
  display: none;
  overflow-y: auto;
  padding: 1.4rem 1.4rem 2rem;
  flex: 1;
}
.bp-content.active { display: block; }

/* 카카오 배너 */
.bp-kakao-banner {
  display: flex; align-items: center; gap: 14px;
  background: #FEE500; border-radius: var(--radius-md);
  padding: 14px 16px; margin-bottom: 1.2rem;
}
.kakao-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: rgba(0,0,0,0.08); border-radius: 50%; }
.bp-kakao-banner strong { display: block; font-size: 0.9rem; font-weight: 700; color: #3A1D1D; }
.bp-kakao-banner span { font-size: 0.78rem; color: rgba(58,29,29,0.7); }

/* 혜택 카드 (친구추천) */
.bp-benefit-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 1.4rem;
}
.bp-benefit-card {
  border-radius: var(--radius-md); padding: 1.2rem 1rem; text-align: center;
  border: 2px solid var(--green-pale);
}
.bp-benefit-card.referrer { background: linear-gradient(135deg, #FFFDF0, #FFF9D0); border-color: #FEE500; }
.bp-benefit-card.referee  { background: linear-gradient(135deg, #F0FFF4, #D4EED8); border-color: var(--green-light); }
.bp-bc-icon { font-size: 1.8rem; margin-bottom: 0.3rem; }
.bp-bc-label { font-size: 0.72rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }
.bp-bc-point { font-size: 1.4rem; font-weight: 800; color: #C8760A; font-family: var(--font-serif); margin-bottom: 0.4rem; }
.bp-bc-desc { font-size: 0.75rem; color: var(--text-mid); line-height: 1.5; }

/* 참여 방법 */
.bp-steps { background: var(--cream); border-radius: var(--radius-md); padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.bp-steps h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.7rem; }
.bp-steps ol { padding: 0; display: flex; flex-direction: column; gap: 8px; }
.bp-steps li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-mid); }
.step-num {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-main); color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* 추천 코드 */
.bp-code-box {
  display: flex; align-items: center; gap: 8px;
  background: #FFF8DC; border: 1.5px dashed #FFC107;
  border-radius: var(--radius-md); padding: 10px 14px;
  margin-bottom: 1rem;
}
.bp-code-label { font-size: 0.72rem; font-weight: 600; color: var(--text-light); white-space: nowrap; }
.bp-code { font-size: 1rem; font-weight: 800; color: #C8760A; font-family: monospace; letter-spacing: 0.08em; flex: 1; }
.bp-copy-btn {
  flex-shrink: 0; padding: 5px 12px; border-radius: 50px;
  background: var(--green-main); color: var(--white);
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.bp-copy-btn:hover { background: var(--green-dark); }

/* 카카오 채널 버튼 */
.btn-kakao-channel {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px;
  background: #FEE500; color: #3A1D1D;
  border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  transition: var(--transition); margin-bottom: 0.8rem;
  text-decoration: none;
}
.btn-kakao-channel:hover { background: #FFD600; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(254,229,0,0.5); }

.bp-fine { font-size: 0.73rem; color: var(--text-light); text-align: center; line-height: 1.5; }

/* 포인트 히어로 */
.bp-point-hero {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--green-dark), #3d6b20);
  border-radius: var(--radius-md); padding: 16px;
  margin-bottom: 1.2rem; color: var(--white);
}
.point-hero-icon { font-size: 2.5rem; flex-shrink: 0; }
.point-hero-text strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.point-hero-text span { font-size: 0.8rem; color: var(--gold-light); }

/* 포인트 카드 */
.bp-point-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 1.4rem; }
.bp-point-card {
  border-radius: var(--radius-md); padding: 1rem 0.7rem; text-align: center;
  border: 2px solid var(--green-pale); background: var(--white); position: relative;
  transition: var(--transition);
}
.bp-point-card:hover { border-color: var(--green-main); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bp-point-card.highlight { border-color: var(--gold); background: linear-gradient(135deg, #FFFDF5, #FFF8E7); }
.ppc-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white); font-size: 0.62rem; font-weight: 700;
  padding: 2px 10px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.05em;
}
.ppc-icon { font-size: 1.6rem; margin-bottom: 0.3rem; }
.ppc-name { font-size: 0.75rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; line-height: 1.4; }
.ppc-rate { font-size: 1.6rem; font-weight: 800; color: var(--green-main); font-family: var(--font-serif); line-height: 1; margin-bottom: 0.3rem; }
.ppc-desc { font-size: 0.68rem; color: var(--text-light); line-height: 1.4; }

/* 포인트 계산기 */
.bp-calculator {
  background: var(--cream); border-radius: var(--radius-md);
  padding: 1.2rem; margin-bottom: 1.2rem;
}
.bp-calculator h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 6px; }
.bp-calculator h4 i { color: var(--green-main); }
.calc-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 0.8rem; }
.calc-row label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); white-space: nowrap; }
.calc-input-wrap { display: flex; align-items: center; gap: 6px; }
.calc-input-wrap input {
  width: 130px; padding: 8px 12px;
  border: 2px solid #E0E0E0; border-radius: var(--radius-sm);
  font-size: 0.9rem; outline: none; font-family: var(--font-sans);
  transition: var(--transition); text-align: right;
}
.calc-input-wrap input:focus { border-color: var(--green-main); }
.calc-input-wrap span { font-size: 0.85rem; color: var(--text-mid); }
.calc-result {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border-radius: var(--radius-sm); padding: 10px 14px;
  border: 1.5px solid var(--green-pale);
}
.calc-result span { font-size: 0.82rem; color: var(--text-mid); }
.calc-result strong { font-size: 1.3rem; font-weight: 800; color: var(--green-dark); font-family: var(--font-serif); }

/* 포인트 안내 */
.bp-point-guide { margin-bottom: 1.2rem; }
.bp-point-guide h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.7rem; }
.bp-point-guide ul { display: flex; flex-direction: column; gap: 7px; }
.bp-point-guide li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: var(--text-mid); }
.bp-point-guide li i { color: var(--green-main); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }

/* 포인트 문의 버튼 */
.btn-point-inquiry {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: var(--green-main); color: var(--white);
  border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  transition: var(--transition); text-decoration: none;
}
.btn-point-inquiry:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(74,124,47,0.35); }

/* 반응형 */
@media (max-width: 480px) {
  .benefit-popup { width: 100%; border-radius: 20px 20px 0 0; }
  .bp-benefit-cards { grid-template-columns: 1fr 1fr; }
  .bp-point-cards { grid-template-columns: repeat(3,1fr); }
  .benefit-fab { bottom: 80px; right: 16px; width: 54px; height: 54px; }
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .navbar { padding: 0 20px; }
  .nav-links li a { font-size: 0.78rem; padding: 5px 8px; }
  .about-grid, .edu-grid, .contact-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 40px;
    gap: 4px;
    z-index: 1500;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 16px; font-size: 0.95rem; border-radius: 8px; }

  .about-grid, .edu-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .catering-cards { grid-template-columns: 1fr; max-width: 400px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .edu-cards { grid-template-columns: repeat(2, 1fr); }
  .edu-card.featured { grid-column: span 2; }
  .edu-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-cards-grid .edu-card.featured { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
}

@media (max-width: 600px) {
  .header-top { display: none; }
  .hero-title { font-size: 2.8rem; }
  .hero-badges { gap: 6px; }
  .hero-badges span { font-size: 0.75rem; padding: 5px 12px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .about-img-wrap { max-width: 280px; }
  .about-img-main { font-size: 5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .about-stats { flex-direction: column; gap: 1rem; text-align: center; }
  .category-tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: 0.8rem; }
  .edu-cards { grid-template-columns: 1fr; }
  .edu-card.featured { grid-column: span 1; }
  .edu-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
