


 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}



/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}



/*** Navbar Start ***/

#navbarcontainer {box-shadow: 5px 4px 12px 2px #a5d6a7;margin-bottom:20px;}
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    
    border-bottom: 0px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
		
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}


/*** Navbar End ***/

/*** Categories Start ***/

/* Styles for desktop view */
  @media (min-width: 768px) {
    .container-fluid #my-categories-71697044 {
		
      margin-top: 30px; /* Adjust this value as needed */
    }
  }

  /* Styles for mobile view */
  @media (max-width: 767px) {
    .container-fluid #my-categories-71697044 {
      margin-top: 0; /* Adjust this value for mobile view */
    }
	#searchandcart {margin-bottom:20px;}
  }


/* Styles for tablets (768px to 1024px) */
  @media (min-width: 768px) and (max-width: 1024px) {
    .container-fluid #my-categories-71697044 {
      margin-top: 20px; /* Adjust this value for tablet view */
    }
  }
/*** Categories End ***/



/*** Hero Header ***/


.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 50px;
}

.carousel-control-prev {
    margin-left: 20px;
}

/*** Hero Header end ***/

















/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/

.navbar-sticky {
         position: fixed;
         top: 0;
         left: 0;
         right: 0;
         z-index: 1000;
         background: #81d4fa;
         }
         .navbar-container {
         padding-top: 70px; /* Adjust this value to add space below the sticky navbar */
         }
         .container-fluid #my-categories-71697044 {
         margin-top: 30px; /* Adjust this value as needed */
         }
         .hero-header {
         padding-top: 5px; /* Adjust this value as needed */
         }