/* Add these to the top of your CSS */
.navbar.bootsnav {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar.bootsnav .navbar-brand img {
    max-height: 50px;
    transition: all 0.3s ease;
}

.navbar.bootsnav.navbar-fixed {
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar.bootsnav .navbar-nav > li > a {
    transition: all 0.3s ease;
    position: relative;
}

.navbar.bootsnav .navbar-nav > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: #29C9C0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar.bootsnav .navbar-nav > li.active > a:after,
.navbar.bootsnav .navbar-nav > li > a:hover:after {
    transform: scaleX(1);
}

.wishlist-menu p {
   
	display: inline-block;

}


@media screen and (max-width: 768px) {
    .wishlist-menu p {
        display: none;
    }
}
/** ADD YOUR AWESOME CODES HERE **/