 * {
     transition: all 0.3s;
     font-family: Lato, Poppins, Arial, Helvetica, sans-serif;
 }

 ::-webkit-scrollbar {
     width: 10px;
 }

 ::-webkit-scrollbar-track {
     background-color: #000;
 }

 ::-webkit-scrollbar-thumb {

     border-radius: 8px;
     box-shadow: auto;
     background: #ee9ca7;
     /* fallback for old browsers */
     background: -webkit-linear-gradient(to bottom, #ffdde1, #ee9ca7);
     /* Chrome 10-25, Safari 5.1-6 */
     background: linear-gradient(to bottom, #ffdde1, #ee9ca7);
     /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
 }

 #category-zoom:hover img {
     transform: scale(1.2);
     overflow: hidden;
     cursor: pointer;
 }

 #product-zoom:hover img {
     transform: scale(1.1);
     overflow: hidden;
 }

 .carousel-control-next-icon,
 .carousel-control-prev-icon {
     visibility: hidden;
 }

 nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
 }

 nav.sticky {
     background: #fff;
     box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
 }

 .navbar {
     background: transparent;
 }

 a.nav-link {
     color: #333;
 }