.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(153, 112, 0, 0.15) 0%,
    transparent 60%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(153, 112, 0, 0.15);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(153, 112, 0, 0.3);
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 60%);
}

.overview-section {
  padding: 5rem 1.5rem;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.overview-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.overview-text p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--gray-200);
}
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

.categories-section {
  padding: 5rem 1.5rem;
  background: var(--gray-50);
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: block;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.category-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.category-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.category-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.cta-section {
  padding: 5rem 1.5rem;
  background: var(--navy);
}
.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content p {
  color: var(--gray-300);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reviews slider */
.reviews-slider-section {
  padding: 4rem 1.5rem;
  background: var(--white);
  overflow: hidden;
}
.reviews-slider-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--navy);
}
.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 1.5rem;
  animation: slideReviews 40s linear infinite;
  width: max-content;
}
.slider-track:hover {
  animation-play-state: paused;
}
@keyframes slideReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.review-slide {
  min-width: 300px;
  max-width: 350px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.review-slide .slide-stars {
  color: #f39c12;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.review-slide .slide-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-style: italic;
}
.review-slide .slide-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.review-slide .slide-product-link {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: underline;
  display: block;
  margin-top: 0.3rem;
  font-weight: 600;
  transition: color 0.2s;
}
.review-slide .slide-product-link:hover {
  color: var(--navy);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-section {
    min-height: 70vh;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .review-slide {
    min-width: 260px;
  }
}
