/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #FFF0E6 0%, #FFE8F2 50%, #FFF8F2 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 560px;
}

.hero-badge {
  display: inline-block;
  background: white;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(255,78,142,0.15);
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 8px;
  background: rgba(255,78,142,0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-price-original {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.hero-price-sale {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
}

.hero-price-badge {
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-product-item {
  background: white;
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.hero-product-item:hover {
  transform: translateY(-4px) rotate(2deg);
  box-shadow: var(--shadow-hover);
}

.hero-product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 8px;
}

.hero-product-emoji {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--cream2);
  border-radius: 8px;
  margin-bottom: 8px;
}

.hero-product-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.hero-product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.hero-wave {
  margin-top: 40px;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
  background: white;
}

/* ========== HOW TO USE ========== */
.how-section {
  background: linear-gradient(135deg, #FFF8F2 0%, #FFE8F2 100%);
}

.how-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.how-step {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  max-width: 200px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.how-step:hover {
  transform: scale(1.07);
  box-shadow: var(--shadow-hover);
}

.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img {
  font-size: 40px;
  margin-bottom: 12px;
}

.how-step h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.how-arrow {
  font-size: 24px;
  color: var(--primary-light);
  flex-shrink: 0;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-product {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: #FFE8F2;
  padding: 3px 10px;
  border-radius: 20px;
}

.review-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.review-date {
  font-size: 12px;
  color: var(--text-light);
}

/* ========== CTA ========== */
.cta-section {
  padding: 80px 0;
  background: white;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8CB5 100%);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
}

.cta-box h2 span {
  background: rgba(255,255,255,0.25);
  padding: 0 8px;
  border-radius: 8px;
}

.cta-box p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-box .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-box .btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== MOBILE STICKY CTA ========== */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 12px 16px;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-cta-bar.visible {
    transform: translateY(0);
  }
  .mobile-cta-bar .btn {
    flex: 1;
    padding: 14px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-bottom: 0;
  }

  .hero-title { font-size: 36px; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-products { grid-template-columns: repeat(3, 1fr); }

  .how-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .how-step { max-width: 100%; }
  .how-arrow { transform: rotate(90deg); }

  .reviews-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 26px; }

  /* 브랜드 소개 모바일 */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-image-wrap {
    order: -1;
  }
  .about-image-wrap img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
  }
  .about-content .section-title h2 {
    text-align: center;
    font-size: 22px;
  }
  .about-content .section-title h2::after {
    margin: 10px auto;
  }
  #about-desc {
    text-align: center;
    font-size: 14px !important;
  }
  .about-badges {
    justify-content: center;
  }
}

/* ========== ABOUT SECTION ========== */
.about-section { background: var(--cream2); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-content .section-title h2 { text-align: left; }
.about-content .section-title h2::after { margin: 12px 0; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text);
}

