.header-section {
  text-align: center;
  padding: 32px 16px 24px;
  background: linear-gradient(180deg, #e3f2fd 0%, #fff 100%);
}

.brand-title {
  font-size: 32px;
  font-weight: 600;
  color: #00a6ff;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.brand-subtitle {
  font-size: 13px;
  color: #00a6ff;
  opacity: 0.8;
}

/* Carousel */
.carousel-container {
  margin: 0 -16px 24px;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.slide-text p {
  font-size: 14px;
  opacity: 0.95;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: #00a6ff;
}

/* Shop Section */
.shop-section {
  padding: 0 0 24px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.section-subtitle {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
  padding: 16px 8px;
  border-radius: 12px;
  transition: all 0.3s;
}

.feature-item:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-name {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
