  body {
      background-color: #F8F9FA;
      font-family: 'Playfair Display', serif;
  }

  .img-hover-wrapper {
      position: relative;
      overflow: hidden;
  }

  .default-img,
  .hover-img {
      transition: opacity 0.75s ease-in-out;
      display: block;
  }

  .hover-img {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      z-index: 1;
  }

  .hover-card-wrapper:hover .default-img {
      opacity: 0;
  }

  .hover-card-wrapper:hover .hover-img {
      opacity: 1;
  }

  .quick-buy-btn {
      position: absolute;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      transition: all 0.5s ease-in-out;
  }


  .showOnImgHover {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.img-hover-wrapper:hover .showOnImgHover {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767.98px) {
  .showOnImgHover {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: none !important;
  }
  .quick-buy-btn.d-md-block {
    display: none !important;
  }
  
}



  /* Heart styles */
  .heart-icon {
      font-size: 0.98rem;
      color: transparent;
      -webkit-text-stroke: 1px black;
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .heart-icon:hover {
      color: rgb(170, 169, 169);
  }

  .heart-icon.clicked {
      color: black;
  }


    .custom-description p {
    all: unset; /* Reset all default and inherited styles */
    display: block; /* Bring back block layout */
    margin: 0 0 1em 0; /* Add spacing if needed */
    color: inherit; /* Inherit muted text color */
    font-size: inherit;
    line-height: inherit;
}





  /*---------Amination of simran kaur Styles-------------- */
  .navbar-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
  }

  @media (max-width: 991.98px) {

      /* lg and below */
      .navbar-center {
          position: static;
          transform: none;
      }
  }

  .line-wrapper {
      position: relative;
      height: 1px;
      width: 100%;
      margin-top: 20px;
      background-color: transparent;
      overflow: visible;
  }

  /* Line base style */
  .animated-line {
      position: relative;
      height: 1px;
      background-color: #0A0908;
  }

  /* LEFT LINE */
  .left-line {
      width: 0;
      animation: growLeftLine 2s forwards;
  }

  /* Dot appears at end of LEFT line */
  .left-line::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      width: 6px;
      height: 6px;
      background-color: #0A0908;
      border-radius: 50%;
      transform: translate(50%, -50%);
  }

  /* RIGHT LINE */
  .right-line {
      width: 0;
      animation: growRightLine 2s forwards;
      float: right;
  }

  /* Dot appears at end of RIGHT line */
  .right-line::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 6px;
      height: 6px;
      background-color: #0A0908;
      border-radius: 50%;
      transform: translate(-50%, -50%);
  }

  /* Animations */
  @keyframes growLeftLine {
      from {
          width: 0;
      }

      to {
          width: 100%;
      }
  }

  @keyframes growRightLine {
      from {
          width: 0;
      }

      to {
          width: 100%;
      }
  }

  /*-------- END Amination of simran kaur Styles--------- */


  /************************************/
  /*---------Pagination-------------- */
  /************************************/
  /* .my-pagination-wrapper{
       font-family: "Bellefair", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0px;
  }
   .active>.page-link,
    .page-link.active {
      background-color: #000000;
      border-color: #000000;
    }

    .pagination {
      --bs-pagination-color: #333333;
      --bs-pagination-hover-color: #333333;
      --bs-pagination-focus-color: #333333;
      --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(51, 51, 51, 0.25);
      
    } */

    .my-pagination-wrapper {
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0px;
}

.my-pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* spacing between page numbers */
  border: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.my-pagination-wrapper .page-link {
  color: #333333;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.my-pagination-wrapper .page-link:hover {
  text-decoration: underline;
  background: none;
  color: #000;
}

.my-pagination-wrapper .page-item.active .page-link {
  font-weight: 700;
  text-decoration: underline;
  background-color: transparent !important;
  border: none;
  color: #000;
}

.my-pagination-wrapper .page-item.disabled .page-link {
  color: #bbb;
  pointer-events: none;
  background: none;
  border: none;
}

.my-pagination-wrapper .page-item:first-child .page-link,
.my-pagination-wrapper .page-item:last-child .page-link {
  font-size: 18px;
}



@media (max-width: 576px) {
  .my-pagination-wrapper .pagination {
    flex-wrap: wrap;
    gap: 10px;
  }

  .my-pagination-wrapper .page-link {
    font-size: 14px;
    padding: 4px 8px;
  }

 
  .my-pagination-wrapper .pagination .page-item.d-none.d-sm-inline {
    display: inline !important;
  }
}

 .my-pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
            /* Optional */
        }

/* ---------------END Pagination--------------- */








/* WebKit (Chrome, Safari) */
input[type="range"].form-range::-webkit-slider-runnable-track {
  height: 1px;
  background: black;
}

input[type="range"].form-range::-webkit-slider-thumb {
  background-color: black;
  border: none;
  height: 14px;
  width: 14px;
  margin-top: -6px; /* Center the thumb on the 1px track */
  border-radius: 50%;
  appearance: none;
}

/* Firefox */
input[type="range"].form-range::-moz-range-track {
  height: 1px;
  background: black;
}

input[type="range"].form-range::-moz-range-thumb {
  background-color: black;
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
}

/* Edge / IE */
input[type="range"].form-range::-ms-track {
  height: 1px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type="range"].form-range::-ms-fill-lower,
input[type="range"].form-range::-ms-fill-upper {
  background: black;
}

input[type="range"].form-range::-ms-thumb {
  background-color: black;
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
}

/* Remove focus shadow */
input[type="range"].form-range:focus {
  box-shadow: none;
}

.range-wrapper {
  position: relative;
  width: 100%;
}

.range-tooltip {
  position: absolute;
  top: 22px; /* above the slider */
  background: black;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.accordion-button{color:rgb(33, 37, 41);}

.accordion-button:not(.collapsed) {
  background-color: rgba(33, 37, 41, 0.1);
}

.accordion-button:focus  {
  box-shadow: inset 0 -1px 0 rgba(33, 37, 41, 0.1);
  border: 1px solid rgba(33, 37, 41, 0.1);
}

/* .accordion {
  --bs-accordion-bg: none;
} */

/* .accordion-button {
  background-color: transparent !important;
} */

/* .accordion-button::after {
  display: none !important;
} */
