/* ===================================
   Color Variables & Reset
   =================================== */
:root {
  /* Primary Brand Colors - bavita Green Tone */
  --primary-orange: #3E8E3F;        /* Main brand green (냉큼 그린) */
  --primary-orange-light: #5DAA5A;  /* Lighter green */
  --sunshine-yellow: #FFC93C;       /* 생글 사과 Yellow accent */
  --yellow-light: #FFE08A;
  --coral-red: #FF8A3D;             /* 생글 샐러리 Orange accent (secondary CTA) */
  --coral-dark: #F0762A;
  
  /* Product / SKU Colors (냉큼 4종 라인업) */
  --sku-apple: #FFC93C;         /* 생글 사과 - Yellow */
  --sku-apple-light: #FFE08A;
  --sku-celery: #FF8A3D;        /* 생글 샐러리 - Orange */
  --sku-celery-light: #FFAE72;
  --sku-blueberry: #7B4FA6;     /* 든든 블루베리 - Purple */
  --sku-blueberry-light: #9B72C4;
  --sku-mango: #8BC34A;         /* 쑥쑥 망고당근 - Lime Green */
  --sku-mango-light: #AED581;

  /* Legacy aliases kept for backward compatibility within this file */
  --orange-juice: var(--sku-celery);
  --orange-juice-light: var(--sku-celery-light);
  --papaya-juice: var(--sku-apple);
  --carrot-juice: var(--sku-mango);
  --green-juice: var(--sku-mango);
  --green-juice-light: var(--sku-mango-light);
  --purple-juice: var(--sku-blueberry);
  --purple-juice-light: var(--sku-blueberry-light);
  --red-juice: #EF5350;
  --red-juice-dark: #E53935;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --bg-light-purple: #EDF6EA;
  --bg-light-gray: #F5F7F4;
  --text-dark: #2C2C2C;
  --text-black: #1A1A1A;
  --border-gray: #E5E5E5;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

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

/* ===================================
   Buttons
   =================================== */
.btn-primary {
  background: var(--text-black);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  padding: 12px 32px;
  border: 2px solid var(--text-dark);
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

.btn-text {
  background: transparent;
  padding: 8px 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.btn-text:hover {
  color: var(--primary-orange);
}

/* ===================================
   Promotion Bar
   =================================== */
.promo-bar {
  background: var(--bg-light-purple);
  padding: 12px 20px;
  text-align: center;
  font-size: 15px;
}

.promo-bar p {
  margin: 0;
  color: var(--text-dark);
}

.promo-link {
  color: var(--primary-orange);
  text-decoration: underline;
  font-weight: 500;
  margin-left: 8px;
}

.promo-link:hover {
  color: var(--coral-red);
}

/* ===================================
   Header Navigation
   =================================== */
.header {
  background: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.menu-toggle {
  display: none;
  background: transparent;
  font-size: 24px;
  color: var(--text-dark);
}

.logo h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-orange);
  letter-spacing: -0.5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo-tagline {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.55;
  letter-spacing: 0.5px;
  margin-top: -2px;
}

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  background: transparent;
  font-size: 20px;
  color: var(--text-dark);
  padding: 8px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--coral-red);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
  padding: 80px 20px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: var(--white);
  z-index: 2;
}

.hero-title {
  font-size: 56px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title-artistic {
  font-family: 'Black Han Sans', 'Jua', sans-serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.15);
  animation: fadeInScale 1s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

.hero-features i {
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===================================
   Quick Access Section
   =================================== */
.quick-access {
  padding: 60px 20px;
  background: var(--white);
}

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

.quick-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-light-gray);
  border-radius: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: var(--primary-orange);
  color: var(--white);
}

.quick-card i {
  font-size: 48px;
  color: var(--primary-orange);
  margin-bottom: 20px;
  transition: var(--transition);
}

.quick-card:hover i {
  color: var(--white);
}

.quick-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.quick-card p {
  font-size: 15px;
  opacity: 0.8;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 12px;
  color: var(--text-black);
}

.section-header p {
  font-size: 18px;
  color: var(--text-dark);
  opacity: 0.8;
}

/* ===================================
   Products Section
   =================================== */
.products-section {
  padding: 80px 20px;
  background: var(--white);
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background: var(--bg-light-gray);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
}

.filter-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
}

.filter-btn.active {
  background: var(--primary-orange);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  z-index: 2;
}

.badge-new {
  background: var(--green-juice);
}

.badge-sale {
  background: var(--red-juice);
}

.badge-popular {
  background: var(--primary-orange);
}

.product-image {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: var(--bg-light-gray);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Fallback styling for images */
.product-image img[src=""],
.product-image img:not([src]) {
  display: none;
}

/* Category-based placeholder backgrounds (냉큼 4종 SKU) */
.product-card[data-category="apple"] .product-image {
  background: linear-gradient(135deg, #FFF6DA, #FFEFC2);
}

.product-card[data-category="celery"] .product-image {
  background: linear-gradient(135deg, #FFEBDC, #FFDDC2);
}

.product-card[data-category="blueberry"] .product-image {
  background: linear-gradient(135deg, #EDE4F5, #E1D3EF);
}

.product-card[data-category="mango"] .product-image {
  background: linear-gradient(135deg, #EEF6E3, #E3F0D3);
}

.product-info {
  text-align: center;
}

.product-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-black);
}

.product-tagline {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.65;
  margin-bottom: 10px;
}

.product-size {
  font-size: 15px;
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 14px;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.product-card .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  background: var(--primary-orange);
}

.product-card .btn-primary:hover {
  background: var(--coral-red);
}

/* Remove product color backgrounds - using real images now */

/* ===================================
   Flavors Section
   =================================== */
.flavors-section {
  padding: 80px 20px;
  background: var(--bg-light-gray);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flavor-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.flavor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.flavor-color {
  width: 100%;
  height: 180px;
  transition: var(--transition);
  overflow: hidden;
}

.flavor-color img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.flavor-card:hover .flavor-color img {
  transform: scale(1.06);
}

.flavor-card[data-flavor="apple"] .flavor-color {
  background: linear-gradient(135deg, var(--sku-apple), var(--sku-apple-light));
}

.flavor-card[data-flavor="celery"] .flavor-color {
  background: linear-gradient(135deg, var(--sku-celery), var(--sku-celery-light));
}

.flavor-card[data-flavor="blueberry"] .flavor-color {
  background: linear-gradient(135deg, var(--sku-blueberry), var(--sku-blueberry-light));
}

.flavor-card[data-flavor="mango"] .flavor-color {
  background: linear-gradient(135deg, var(--sku-mango), var(--sku-mango-light));
}

.flavor-info {
  padding: 24px;
}

.flavor-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-black);
}

.flavor-info p {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 12px;
}

.flavor-count {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-light-gray);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
  padding: 80px 20px;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-orange), var(--coral-red));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-photo {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-orange), var(--coral-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  background: var(--text-black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-black);
}

.step p {
  font-size: 15px;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.6;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
  padding: 80px 20px;
  background: var(--bg-light-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-orange), var(--coral-red));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-black);
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.6;
}

/* ===================================
   Brand Story Section
   =================================== */
.brand-story {
  padding: 90px 20px;
  background: linear-gradient(135deg, #EDF6EA 0%, #F5F7F4 100%);
}

.brand-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.brand-story-inner-full {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
}

.brand-story-inner-full .brand-story-text {
  text-align: center;
}

.brand-story-inner-full .brand-story-text .lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.brand-story-inner-full .brand-story-text .subscription-features {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.brand-story-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.brand-story-text .badge {
  background: var(--primary-orange);
  color: var(--white);
  backdrop-filter: none;
}

.brand-story-text h2 {
  font-size: 38px;
  margin: 20px 0 20px;
  color: var(--text-black);
}

.brand-story-text .lead {
  color: var(--text-dark);
  opacity: 0.85;
  margin-bottom: 30px;
}

.brand-story-text .subscription-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-story-text .subscription-features i {
  color: var(--white);
  background: var(--primary-orange);
}

.company-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.company-card img {
  width: 90px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.company-card-info p {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.55;
  margin: 0;
}

.company-card-info p strong {
  color: var(--text-black);
}

.company-card-info i {
  color: var(--primary-orange);
  width: 14px;
  margin-right: 4px;
}

/* ===================================
   Subscription Section
   =================================== */
.subscription-section {
  padding: 80px 20px;
  background: var(--white);
}

.subscription-hero {
  background: linear-gradient(135deg, var(--primary-orange), var(--coral-red));
  color: var(--white);
  padding: 60px;
  border-radius: 24px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.subscription-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.subscription-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.subscription-content h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.lead {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.subscription-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subscription-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.subscription-features i {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.plan-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.plan-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-black);
}

.plan-price {
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-orange);
}

.period {
  font-size: 18px;
  color: var(--text-dark);
  opacity: 0.6;
}

.plan-desc {
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-gray);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.plan-features i {
  color: var(--green-juice);
  font-size: 14px;
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-section {
  padding: 80px 20px;
  background: var(--bg-light-gray);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--sunshine-yellow);
  font-size: 18px;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--coral-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-black);
}

.author-info span {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.6;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-gray);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary-orange);
  width: 32px;
  border-radius: 6px;
}

/* ===================================
   Instagram Section
   =================================== */
.instagram-section {
  padding: 80px 20px;
  background: var(--white);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.instagram-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-orange), var(--coral-red));
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.instagram-item:hover {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay i {
  font-size: 36px;
  color: var(--white);
}

.instagram-item {
  display: block;
}

.instagram-cta {
  text-align: center;
  margin-top: 32px;
}

.instagram-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-orange), var(--coral-red));
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.newsletter-content h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.newsletter-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
}

.newsletter-form .btn-primary {
  background: var(--text-black);
  white-space: nowrap;
  border-radius: 50px;
}

.newsletter-form .btn-primary:hover {
  background: var(--text-dark);
}

.newsletter-note {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 16px;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-4px);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary-orange);
}

.footer-col ul li i {
  margin-right: 8px;
  color: var(--primary-orange);
}

.business-info {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.business-info p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.business-info p strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-orange);
}

/* ===================================
   Shopping Cart Sidebar
   =================================== */
.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 22px;
  color: var(--text-black);
}

.cart-close {
  background: transparent;
  font-size: 24px;
  color: var(--text-dark);
  padding: 4px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dark);
  opacity: 0.5;
}

.empty-cart i {
  font-size: 64px;
  margin-bottom: 20px;
}

.empty-cart p {
  font-size: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-gray);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--bg-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-black);
}

.cart-item-size {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 8px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary-orange);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.quantity-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
}

.quantity {
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.remove-btn {
  background: transparent;
  color: var(--red-juice);
  padding: 4px 8px;
  font-size: 14px;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-gray);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-black);
}

.cart-footer .btn-primary {
  margin-bottom: 12px;
  background: var(--primary-orange);
}

.cart-footer .btn-secondary {
  border-color: var(--border-gray);
  color: var(--text-dark);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===================================
   Affiliate / Corporate Inquiry Modal
   =================================== */
.inquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.inquiry-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.inquiry-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.inquiry-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-light-gray);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-dark);
}

.inquiry-modal-close:hover {
  background: var(--border-gray);
}

.inquiry-modal h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--text-black);
}

.inquiry-modal-desc {
  font-size: 14px;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 28px;
  line-height: 1.6;
}

.inquiry-form-row {
  margin-bottom: 18px;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.inquiry-form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-black);
  margin-bottom: 8px;
}

.inquiry-form-row .req {
  color: var(--red-juice);
}

.inquiry-form-row input,
.inquiry-form-row select,
.inquiry-form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-gray);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-black);
  outline: none;
  transition: var(--transition);
}

.inquiry-form-row input:focus,
.inquiry-form-row select:focus,
.inquiry-form-row textarea:focus {
  border-color: var(--primary-orange);
}

.inquiry-form-row textarea {
  resize: vertical;
}

.inquiry-agree {
  background: var(--bg-light-gray);
  padding: 16px;
  border-radius: 12px;
}

.inquiry-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-black);
  cursor: pointer;
  margin-bottom: 0 !important;
}

.inquiry-checkbox input {
  width: auto !important;
  margin-top: 3px;
}

.inquiry-agree-note {
  font-size: 12px;
  color: var(--text-dark);
  opacity: 0.75;
  margin-top: 10px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .inquiry-modal {
    padding: 28px 20px;
  }

  .inquiry-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .flavors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid::before {
    display: none;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .subscription-plans {
    grid-template-columns: 1fr;
  }
  
  .plan-card.featured {
    transform: scale(1);
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header .container {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-text#loginBtn {
    padding: 8px 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  /* 모바일에서는 CTA 버튼을 숨기고 장바구니로 주문 유도 */
  .header-actions .btn-primary {
    display: none;
  }

  .promo-bar {
    padding: 10px 14px;
    font-size: 13px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  
  .nav.active {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-title-artistic {
    font-size: 48px;
  }
  
  .hero-image {
    height: 350px;
  }
  
  .hero-banner-img {
    border-radius: 16px;
  }
  
  .quick-cards {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .flavors-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-slider {
    grid-template-columns: 1fr;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .subscription-hero {
    padding: 40px 30px;
  }
  
  .subscription-content h2 {
    font-size: 32px;
  }

  .brand-story-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .brand-story-media img {
    height: 260px;
  }

  .brand-story-text .subscription-features {
    text-align: left;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-title-artistic {
    font-size: 36px;
    letter-spacing: 1px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-image {
    height: 280px;
  }
  
  .hero-banner-img {
    border-radius: 12px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn-large {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
