.bg-purple {
  background: #7a2ee6;
}
.hide {
  display: none;
}
.hide-important {
  display: none !important;
}
.header-menu a {
  color: #000; /* Black text */
  text-decoration: none; /* No underline */
  font-weight: 500; /* Optional: make it stand out a little */
}
.header-menu a:hover {
  text-decoration: underline; /* Underline only on hover */
}
.custom-header-menu {
  margin-left: 20px; /* moves the whole menu to the right */
}
.custom-header-menu li a {
  text-decoration: none !important; /* removes underline */
  color: #282c2f; /* optional: make it Bootstrap secondary */
  font-weight: 600;
}
.footer {
  background: #0e2333;
  color: #d9e5ef;
}
.footer h5,
.footer h4 {
  color: #fff !important;
}
.footer a {
  color: #d9e5ef;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.copyright {
  background: #0b1c2b;
}
.footer .mini {
  font-size: 0.95rem;
  line-height: 1.65;
}
.footer .list-unstyled li {
  margin: 0.45rem 0;
}
.footer .icon-li i {
  width: 20px;
  display: inline-block;
}
.footer .chev-li i {
  width: 14px;
  margin-right: 0.4rem;
}
.footer .play-badge {
  height: 40px;
}
.footer .pay-badges img {
  height: 28px;
  margin-right: 0.5rem;
}
.footer .brand-copy {
  max-width: 420px;
}
.question-highlight {
  color: #fd605b !important;
}
.razorpay-form-container {
  text-align: center;
}
.razorpay-payment-button {
  display: inline-block;
  margin: 0 auto;
}
.toast.text-bg-success {
  background-color: var(--bs-success) !important;
  color: #fff !important;
}
.faq-question {
  color: #fb7a50 !important;
}
.faq-answer {
  color: #000 !important;
}
/* Default hidden */
#accountMenu {
  display: none;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  right: 0;
  left: auto;
  margin-top: 0; /* no gap under the trigger */
  transition: opacity 120ms ease;
}
/* Shown state (we'll toggle this class from JS) */
#accountArea.show .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.blink-text {
  animation: blink 2.5s infinite;
}
.add-cart-btn {
  background-color: #fd605b !important;
}
.purple-text {
  color: #fd605b !important;
}
.zoom-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.zoom-wrap img {
  transition: transform 0.28s ease;
}
.zoom-wrap:hover img {
  transform: scale(1.08);
}
/* keep the zoomed image under borders */
.products-grid .zoom-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 0;
}
.products-grid .zoom-wrap img {
  transition: transform .28s ease;
}
.products-grid .zoom-wrap:hover img {
  transform: scale(1.08);
}
/* draw the card border above the image so it never disappears */
.products-grid .products-mini-item {
  position: relative;
}
.products-grid .products-mini-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #dee2e6; /* match your .border color */
  border-radius: 8px; /* match your card rounding */
  pointer-events: none;
  z-index: 2; /* above image/heart */
}
.txt-black {
  color: #000 !important;
}
.readonline-light {
  background-color: white !important;
}
.cat-title {
  font-weight: 100;
}
.add-to-cart {
  height: 40px;
  /* width: 75%; */
}
/* Mobile Menu Styles */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}
#mobileMenu.show {
  transform: translateX(0);
}
#mobileMenu .list-group-item {
  border: none;
  padding: 1rem;
}
#mobileMenu .list-group-item a {
  color: #282c2f;
  text-decoration: none;
  font-weight: 600;
}
#mobileMenu .list-group-item a:hover {
  text-decoration: underline;
}
.no-display{
  visibility: hidden;
}

/* Hero carousel images */
.hero-img {
  width: 100%;
  height: 500px; /* desktop default */
  object-fit: cover;
  object-position: center;
}

/* 🔹 Mobile fix: make image fully cover increased height */
@media (max-width: 576px) {
  .hero-img {
    height: 400px !important; /* adjust to your liking */
    width: 100%;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
  }
}
@media (max-width: 576px) {
  .owl-carousel .hero-img {
    height: 500px !important;
    width: 100% !important;
  }
}
@media (max-width: 576px) {
  .hero-img {
    height: 100vh !important;
  }
}
/* 🔹 Default desktop hero height */
.hero-img {
  width: 100%;
  /* height: 600px; */
  /* object-fit: cover; */
}

/* 🔹 Increase height for small screens (mobile) */
@media (max-width: 576px) {
  .hero-img {
    height: 380px !important; /* increase value as you want, e.g. 400px */
  }
}
.hero-cta {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .hero-cta {
    bottom: 15%; /* adjust for better visual balance */
  }
}

@media (max-width: 576px) {
  /* Target images inside the hero carousel */
  #heroCarousel .hero-img[src*="banner/1.jpg"] {
    content: url("/assets/img/banner/mobile/1.png");
  }
  #heroCarousel .hero-img[src*="banner/2.jpg"] {
    content: url("/assets/img/banner/mobile/2.png");
  }
  #heroCarousel .hero-img[src*="banner/3.jpg"] {
    content: url("/assets/img/banner/mobile/3.png");
  }
  #heroCarousel .hero-img[src*="banner/4.jpg"] {
    content: url("/assets/img/banner/mobile/4.png");
  }
}

/* Default Explore button */
.hero-cta.btn {
  /* background-color: #0d6efd;
  border: 2px solid #0d6efd; */
  color: #fff;
  transition: all 0.3s ease;
}

/* 🔹 On hover — transparent with border and text color retained */
.hero-cta.btn:hover {
  background-color: var(--bs-primary) !important;
  
  /* color: #0d6efd !important;
  border-color: #0d6efd !important; */
}
.noborder-nopadding{
  border:0px 0px 0px 0px !important;
  padding:0px 0px 0px 0px !important;
}
.height-100{
  height: 80px !important;
}

  .info-boxes .col-custom {
    border-color: #ddd;
  }

  @media (max-width: 576px) {
    .info-boxes .col-custom {
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
    }
  }
  .app-primary-color{
    color: #7A42B5 !important;
  }
  .border-primary{
    border-color: #7A42B5 !important;
  }
  .app-primary-color-btn{
    background-color: #7A42B5 !important;
    border-color: #7A42B5 !important;
  }