body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  /* 16px */
  background: linear-gradient(135deg, #f8fafc 0%, #f3e8ff 100%);
  min-height: 100vh;
}
@media (max-width: 767.98px) {
  body {
    padding-bottom: 70px;
  }
}
#ocrParsed {
  display: none !important;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gradient-bg {
  background: linear-gradient(90deg, #673ab7 100%, #725dc1 100%);
  color: white;
  overflow: visible; /* allow dropdowns to escape the navbar container */
}

.category-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  box-shadow: 0 2px 8px rgba(126, 34, 206, 0.10);
  border: 4px solid #fff;
  transition: transform 0.2s;
  background: linear-gradient(135deg, #f3e8ff 0%, #fff 100%);
}

.category-circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.category-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(126, 34, 206, 0.18);
}

.product-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(126, 34, 206, 0.08);
  transition: transform 0.18s;
  background: rgba(255, 255, 255, 0.95);
}

.product-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(126, 34, 206, 0.16);
}

.product-card img {
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid #f3e8ff;
}



.nav-profile {
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(126, 34, 206, 0.10);
}

.section-title {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #613caf;
}

.see-all-link {
  color: #ec4899;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.see-all-link:hover {
  color: #613caf;
  text-decoration: underline;
}

.banner-glass {
  background: linear-gradient(90deg, #613caf 0%, #725dc1 100%);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(126, 34, 206, 0.10);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
}

.banner-glass img {
  width: 100px;
  filter: drop-shadow(0 4px 16px rgba(236, 72, 153, 0.12));
}

.banner-glass::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.banner-glass>* {
  position: relative;
  z-index: 1;
}

.product-card .card-title {
  font-weight: 600;
  font-size: 1rem;
  color: #613caf;
  margin-bottom: 0.25rem;
}

.product-card .card-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1e293b;
}

.product-card del {
  color: #bdbdbd;
  font-size: 0.95rem;
  margin-left: 8px;
}

.product-card .small {
  color: #ec4899;
  font-weight: 500;
}

.fade-in {
  animation: fadeInUp 0.7s cubic-bezier(.39, .575, .565, 1) both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/* About & Testimonial */
.about-section {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(126, 34, 206, 0.08);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(126, 34, 206, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  min-height: 260px;
}

.testimonial-card .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #ec4899;
}

.footer-premium {
  background: linear-gradient(90deg, #613caf 0%, #ec4899 100%);
  color: #fff;
  padding: 2.5rem 0 1rem 0;
}

.footer-premium a {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-premium a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .banner-glass {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .banner-glass img {
    margin-top: 1rem;
  }

  .about-section {
    padding: 1.5rem 1rem;
  }
}

/* Carousel control customization */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
  background-color: #000 !important;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';
}

.carousel-control-prev-icon::before {
  content: '\2039';
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  margin-left: 0.2rem;
}

.carousel-control-next-icon::before {
  content: '\203A';
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  margin-right: 0.2rem;
}
#toastBox {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  /* width: 56%; */
  z-index: 9999999;

  & .toastmsg {
    border: 0px;
    padding: 10px 20px;
    border-radius: 10px;
    width: 400px;
    background:#181e29;
    font-weight: 500;
    margin: 15px 0;
    box-shadow: 0 0 20px black;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px;
    transform: translateX(-100%);
    animation: moveright 0.3s linear forwards;

    & i {
      font-size: 1.5rem;
    }

    & p {
      padding-left: 45px;
      color: #fff;
    }

    &::after,
    &::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 5px;
      animation: anim 5s linear forwards;
    }
  }


  & .error::after,
  & .error::before {
    background: red;
  }

  & .success::after,
  & .success::before {
    background: green;
  }

  & .info::after,
  & .info::before {
    background: dodgerblue;
  }
}

.dropdown-toggle::after
{
  display: none;
}
@keyframes moveright {
  100% {
    transform: translateX(0);
  }
}
@keyframes anim {
  100% {
    width: 0;
  }
}

@media (min-width: 768px) {
  .col-md-3, .col-lg-2 {
    width: 23% !important;
    flex: 0 0 23% !important;
    max-width: 23% !important;
  }
  .col-md-9, .col-lg-10 {
    width: 73% !important;
    flex: 0 0 73% !important;
    max-width: 73% !important;
  }
}


.py-5 {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
}
@media (max-width: 767px) {
  .py-5 {
    padding-top: 60px !important;
    padding-bottom: 20px !important;
  }
}
