




#app {
  flex: 1;
  background-color: #fff;
}

/* Promotion / featured products section */
.promotion-section {
  min-height: 100vh;
  background-color: #FFF0F6 !important;
}

.promotion-section h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #F72585;
  margin-bottom: 2rem;
}

/* How It Works section */
.how-it-works-section {
  background-color: #fff;
}

.how-it-works-section h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #F72585;
}

.hiw-step {
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: #FFF0F6;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(247, 37, 133, 0.12);
}

.hiw-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F72585;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.hiw-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 0.75rem;
}

.hiw-step p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 0;
}

/* FAQ section */
#faq {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#faq h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #F72585;
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  background: #FFF0F6;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(247, 37, 133, 0.07);
  transition: box-shadow 0.2s;
}

.faq-item--open {
  box-shadow: 0 4px 20px rgba(247, 37, 133, 0.13);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d2d2d;
}

.faq-question:hover {
  color: #F72585;
}

.faq-chevron {
  color: #F72585;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item--open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

.faq-answer-inner a {
  color: #F72585;
  text-decoration: none;
}

.faq-answer-inner a:hover {
  text-decoration: underline;
}

#search-bar-product {
  height: 50px;
  margin-bottom: 50px;
  width: 600px;
  max-width: 600px;
  outline: none;
  border: none;
  border-radius: 0.7rem;
  border-color: rgb(233, 233, 233);
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.07);
}

#search-bar-product:focus {
  border: none;
  outline: none; /* Remove the default outline */
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.12);
}

.fullscreen-div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 1);
  z-index: 9999;
  display: none;

  display: flex;
  justify-content: center;
  align-items: center;
}

#logo-spalsh {
  width: 30vh;
  height: 30vh;
  animation: grow 10s ease-in-out infinite;
}

@keyframes grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5); /* Grow to 1.5x its size */
  }
  100% {
    transform: scale(1); /* Back to original size */
  }
}

/*------------------------ folder names ------------------------*/

.folder-name-area {
  display: flex; /* Use Flexbox */
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 6px;
  padding-right: 6px;
}

.folder-name-area::-webkit-scrollbar {
  display: none;
}

.folder-name {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  height: 38px;
  border-radius: 2rem;
  margin-right: 0.5rem;
  background-color: #fff;
  border: 2px solid #f5d6e8;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, border-color 0.2s;
}

.folder-name-text {
  color: #555;
  text-align: center;
  margin-bottom: 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.folder-name:hover {
  background-color: #F72585;
  border-color: #F72585;
}
.folder-name:hover .folder-name-text {
  color: #fff;
}

.folder-name-active {
  background-color: #F72585;
  border-color: #F72585;
}

.folder-name-text-active {
  color: #fff;
}

/*------------------------ folder names ------------------------*/

.card-img-top {
  object-fit: cover;
  height: 22rem;
}

.scrolling-photo-slider {
  overflow: hidden;
  background-color: #fff;
}
.slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.slider {
  display: flex;
  gap: 10px;
  animation: scroll 100s linear infinite;
}

.slider-image-wrapper {
  /* margin-right: 1rem; */
}

.slider img {
  height: 200px; /* Adjust height as needed */
  width: auto;
  border-radius: 8px;
  object-fit: cover;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}



































































