/* Hero Section */
#hero {
  height: 380px;
  background-image: url("../assets/images/hero-lg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero h2 {
  color: var(--text-secondary);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  #hero {
    height: 867px;
  }
}

@media (max-width: 500px) {
  #hero {
    height: 424px;
  }
  #hero img {
    width: 205px;
  }
  #hero h2 {
    font-size: 14px;
  }
}

/* Aim Seciton Starts */
#aim {
  background-image: url("../assets/images/hero-bg-5.webp");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.aim-content h2 {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}
.aim-content p {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: left;
  border-radius: 8px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.moodboard-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.moodboard-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-secondary);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.smooth {
  text-align: center;
  writing-mode: vertical-rl;
  transform: rotate(360deg);
}
.charm {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .moodboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Best Seller Section */
#best-seller-section {
  background: var(--bg-secondary);
}

#best-seller-section h2 {
  color: var(--text-primary);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}


/* Add this CSS for responsiveness */
.products-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.products-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.products-slider::-webkit-scrollbar {
  display: none;
}

.prev-btn,
.next-btn {
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  z-index: 10;
  background-color: var(--text-secondary);
}

.prev-btn {
  left: 5px;
}
.next-btn {
  right: 5px;
}

.dots-container {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease-in-out;
}

.dot.active {
  background-color: var(--text-secondary);
}
