.router-link {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 48px !important;
  color: #222b45 !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  margin: 0% !important;
  padding: 0.5% !important;
  font-family: 'Open Sans', sans-serif !important;
  text-align: center !important;
  white-space: normal !important;
  word-wrap: break-word !important;
}
.router-link:hover {
  width: fit-content !important;
  background-color: #ffc35b !important;
  border: 0px !important;
  cursor: pointer !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: inline-block;
}
.grid-container {
  position: relative !important;
  width: 100% !important;
  height: fit-content;
  background-color: white !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Tablet view */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra small mobile view */
@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* Default desktop view */
.grid-child {
  height: 500px !important;
  width: 100% !important;
  position: absolute !important;
  z-index: 900 !important;
  display: none;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-template-rows: 1fr;
  grid-template-areas: 'categories subcategories' !important;
}

/* Tablet view */
@media (max-width: 1024px) {
  .grid-child {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-areas: 'categories' 'subcategories' !important;
    display: block !important;
    height: 400px !important;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .grid-child {
    grid-template-columns: 1fr !important;
    grid-template-areas: 'categories' 'subcategories' !important;
    display: block !important;
    height: 350px !important;
  }
}

/* Extra small mobile view */
@media (max-width: 480px) {
  .grid-child {
    grid-template-columns: 1fr !important;
    grid-template-areas: 'categories' 'subcategories' !important;
    display: block !important;
    height: 300px !important;
  }
}

/* Default desktop view */
.grid-child-categories {
  padding: 0.5% !important;
  grid-area: categories !important;
  height: 100% !important;
  flex-wrap: wrap !important;
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  .grid-child-categories {
    padding: 1% !important;
    flex-wrap: wrap !important;
    display: flex !important;
    justify-content: space-evenly;
  }
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .grid-child-categories {
    padding: 2% !important;
    flex-wrap: wrap !important;
    display: flex !important;
    justify-content: center;
  }
}

/* Extra small mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .grid-child-categories {
    padding: 3% !important;
    flex-wrap: wrap !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: auto !important;
  }
}

/* Default desktop view */
.grid-child-category-name-container {
  width: 32% !important;
  height: fit-content !important;
  padding: 1% 2% !important;
  margin: 0% !important;
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  .grid-child-category-name-container {
    width: 48% !important;
    padding: 1.5% 3% !important;
  }
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .grid-child-category-name-container {
    width: 100% !important;
    padding: 2% 3% !important;
  }
}

/* Extra small mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .grid-child-category-name-container {
    width: 100% !important;
    padding: 3% 4% !important;
  }
}

/* Default desktop view */
.grid-child-icon {
  height: 45px !important;
  width: 50px;
  background-repeat: no-repeat !important;
  background-size: 25px !important;
  padding: 10px !important;
  background-color: #ffc35b !important;
  background-position: center;
  border-radius: 10px;
}


/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  .grid-child-icon {
    height: 40px !important;
    width: 40px;
  }
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .grid-child-icon {
    height: 35px !important;
    width: 35px;
  }
}

/* Extra small mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .grid-child-icon {
    height: 30px !important;
    width: 30px;
  }
}

/* Default desktop view */
.grid-text-align {
  color: #222b45 !important;
  font-size: 1rem !important;
  margin: 0% !important;
  text-decoration: none !important;
  width: 80% !important;
  text-align: -webkit-left !important;
  padding: 0 0 0 4%;
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  .grid-text-align {
    font-size: 0.95rem !important;
    width: 85% !important;
    padding: 5% !important;
    text-align: left !important;
  }
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .grid-text-align {
    font-size: 0.9rem !important;
    width: 90% !important;
    padding: 6% !important;
    text-align: left !important;
  }
}

/* Extra small mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .grid-text-align {
    font-size: 0.85rem !important;
    width: 95% !important;
    padding: 8% !important;
    text-align: left !important;
  }
}


.categoryName-container:after {
  content: '';
  width: 15%;
  height: 2px;
  background: #ffc35b;
  position: absolute;
  margin: 70px auto 0 auto;
  display: none;

}

.categoryName-container:hover:after {
  display: block;
}

/* Default desktop view */
.subcategory-container-menu {
  height: 100% !important;
  overflow: scroll !important;
  width: 100% !important;
  padding: 0% !important;
  background-color: white !important;
}

/* Style the scrollbar */
.subcategory-container-menu::-webkit-scrollbar {
  width: 8px;
}

.subcategory-container-menu::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

.subcategory-container-menu::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.subcategory-container-menu::-webkit-scrollbar-track {
  background-color: white;
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  .subcategory-container-menu {
    height: 80vh !important;
    overflow: auto !important;
    padding: 2% !important;
  }
}

/* Optional: Adjust scrollbar for tablets */
.subcategory-container-menu::-webkit-scrollbar {
  width: 6px;
}

.subcategory-container-menu::-webkit-scrollbar-thumb {
  background-color: #888;
}

.subcategory-container-menu::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.subcategory-container-menu::-webkit-scrollbar-track {
  background-color: white;
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
  .subcategory-container-menu {
    height: 70vh !important;
    overflow: auto !important;
    padding: 4% !important;
  }

  /* Optional: Adjust scrollbar for mobile */
  .subcategory-container-menu::-webkit-scrollbar {
    width: 4px;
  }

  .subcategory-container-menu::-webkit-scrollbar-thumb {
    background-color: #888;
  }

  .subcategory-container-menu::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  .subcategory-container-menu::-webkit-scrollbar-track {
    background-color: white;
  }
}

/* Extra small mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .subcategory-container-menu {
    height: 60vh !important;
    overflow: auto !important;
    padding: 5% !important;
  }

  /* Optional: Adjust scrollbar for very small screens */
  .subcategory-container-menu::-webkit-scrollbar {
    width: 4px;
  }

  .subcategory-container-menu::-webkit-scrollbar-thumb {
    background-color: #888;
  }

  .subcategory-container-menu::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  .subcategory-container-menu::-webkit-scrollbar-track {
    background-color: white;
  }
}

.rpoints-btn:hover {
  transform: scale(1.1);
}

.rpoints-btn-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0% !important;
  padding: 5px !important;
}

.rpoints-btn-mobile h2 {
  margin: 0% !important;
  font-size: 0.8rem;
  text-align: center;
}

.rpoints-btn-mobile:hover {
  transform: scale(1.1);
}

.btn-link-mobile:hover {
  transform: scale(1.1);
}

a:hover {
  text-decoration: none !important;
}

.testimonials {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  padding: 25px;
  border-radius: 10px;
}

.testimonials .testimonial-img {
  width: 100px;
  height: 100px;
}

.testimonials .details {
  text-align: center;
}

.testimonials .ratingContainer {
  padding: 0px;
  margin-top: 10px;
  font-size: 21px;
}

.yellow {
  color: #ffc35b;
}

.view-more {
  width: fit-content !important;
  height: fit-content !important;
  border: 0px !important;
  cursor: pointer;
}

li:hover {
  cursor: pointer;
}

/*footer*/
.footer-container {
  width: 100% !important;
  height: fit-content !important;
  margin: 0% !important;
  background-color: #f08f58 !important;
}

.footer-center {
  width: 100% !important;
  height: fit-content !important;
}

.footer-center-sub-items {
  width: 100% !important;
  height: fit-content !important;
  flex-wrap: wrap !important;
}

.footer-center .pw-50 {
  width: 50% !important;
}

.footer-center a {
  width: fit-content !important;
  height: fit-content !important;
}

.footer-center a img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
}

.align-footer-center {
  width: 100% !important;
  height: fit-content !important;
  margin-top: 1% !important;
  padding: 0% 4% !important;
}

.footer-logo {
  width: 20% !important;
  height: 5rem !important;
  object-fit: contain !important;
}

.footer-align-body {
  width: 100% !important;
  height: fit-content !important;
  padding: 1% 4% !important;
}

.footer-center-align-body {
  width: 100% !important;
  height: fit-content !important;
  margin-top: 2% !important;
}

.footer-center-align-body .pw-15 {
  width: 15% !important;
}

.footer-center-align-body .pw-37 {
  width: 37% !important;
}

.footer-center-align-items {
  width: 100% !important;
  height: fit-content !important;
  border-bottom: 1px solid white;
  padding-bottom: 1% !important;
  margin-bottom: 1% !important;
}

.footer-center-align-sub-items {
  width: 32% !important;
  height: fit-content !important;
}

.footer-center-align-sub-items h1 {
  width: 100% !important;
  height: fit-content !important;
  text-align: left !important;
  color: white !important;
  margin-bottom: 5% !important;
  font-size: 1.2rem !important;
  font-weight: 500;
}

.footer-align-sub-items {
  margin: 0% !important;
  padding: 0% !important;
  width: 100% !important;
  height: fit-content !important;
}

.footer-align-sub-items a {
  width: 100% !important;
  height: fit-content !important;
  text-align: left !important;
  text-wrap: wrap !important;
  font-size: 1rem !important;
  color: white !important;
}

.footer-align-sub-items a:hover {
  text-decoration: none;
  color: #ffc35b !important;
  cursor: pointer !important;
}

.border-none {
  border-bottom: 0px solid white !important;
}

button.btn.blog_btn.f-w {
  font-size: 16px !important;
  font-weight: 500 !important;
}

.rpoints-btn img {
  width: 34px;
}

/* Responsive adjustments */

/* For devices smaller than 768px (tablets and smaller) */
@media screen and (max-width: 768px) {
  .testimonials {
    padding: 15px;
    border-radius: 8px;
  }

  .testimonials .testimonial-img {
    width: 80px;
    height: 80px;
  }

  .testimonials .ratingContainer {
    font-size: 18px;
  }

  .footer-center .pw-50 {
    width: 100% !important;
  }

  .footer-logo {
    width: 30% !important;
  }

  .footer-center-align-body .pw-15 {
    width: 100% !important;
  }

  .footer-center-align-body .pw-37 {
    width: 100% !important;
  }

  .footer-center-align-sub-items h1 {
    font-size: 1rem !important;
  }

  .footer-center-align-sub-items {
    width: 100% !important;
    margin-bottom: 10px;
  }

  .footer-align-sub-items a {
    font-size: 0.9rem !important;
  }

  .footer-align-sub-items a:hover {
    color: #ffc35b !important;
  }
}

/* For devices smaller than 480px (mobiles) */
@media screen and (max-width: 480px) {
  .testimonials {
    padding: 10px;
  }

  .testimonials .testimonial-img {
    width: 70px;
    height: 70px;
  }

  .testimonials .ratingContainer {
    font-size: 16px;
  }

  .footer-logo {
    width: 40% !important;
  }

  .footer-center-align-body .pw-15 {
    width: 100% !important;
    text-align: center;
  }

  .footer-center-align-body .pw-37 {
    width: 100% !important;
    text-align: center;
  }

  .footer-center-align-sub-items h1 {
    font-size: 1rem !important;
  }

  .footer-align-sub-items a {
    font-size: 0.8rem !important;
  }
}

.wishlist-icon:hover {
  transform: scale(1.2);
}

.btn-link {
  padding: .375rem .75rem;
}

.btn-link img {
  width: 34px;
}

.btn-link:hover {
  text-decoration: none !important;
}

.btn-link-mobile {
  padding: 5px;
}

.btn-link-mobile img {
  width: 34px;
}

.btn-link-mobile:hover {
  text-decoration: none !important;
}

.background-color-white {
  background-color: white !important;
}

.btn-font-mobile {
  width: 100% !important;
  height: 100% !important;
  text-align: center;
  font-size: 0.7rem !important;
  border: 0px !important;
  background-color: transparent !important;
}

input[type=checkbox],
input[type=radio] {
  margin: 5px;
}

.margin-p-2 {
  margin: 2%;
}

.filter-option-label {
  cursor: pointer;
}

.cursor {
  cursor: auto;
}

.cursor:hover {
  cursor: pointer;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background-color: #ffc35b !important;
}

@media only screen and (max-width:767px) {
  .categoryName:after {
    display: none !important;
  }

  .dropdown-item.active,
  .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #ffc35b !important;
  }
}

.category-child:hover {
  background-color: #ffc35b !important;
}
.buttonPagination {
  width: 18%;
}
@media only screen and (max-width:767px) {
.buttonPagination {
  width: 100%;
}
.cross-icon-container {
  position: absolute;
  margin-bottom: 20%;
  right: 31px;
}
}

.shippingTime:hover {
  color: #ffc35b !important;
}

.view-as{
  column-gap: 10px;
}

.subCategoryName-dropdown h1{
  margin-bottom: 0% !important;
  margin-top: 0% !important;
  font-size: 1rem !important;
  color: #222b45 !important;
}