.navbar-nav .nav-link{
    color:#0d6efd;
    font-weight:600;
    padding:10px 18px;
    margin-left:5px;
    border-radius:6px;
    transition:0.3s;
}

.navbar-nav .nav-link:hover{
    background:#0d6efd;
    color:white !important;
}

.navbar-nav .nav-link.active{
    background:#0d6efd;
    color:white !important;
}
body {
    background: #f8f9fa;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar-nav .nav-link {
    color: #0d6efd;
    font-weight: 600;
    padding: 10px 18px;
    margin-left: 5px;
    border-radius: 6px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    background: #0d6efd;
    color: white !important;
}

.logo img {
    height: 60px;
}

}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#0d6efd;
}

.category-box{
    background:white;
    border:1px solid #ddd;
    border-radius:5px;
    padding:15px;
}

.product-card{
    background:white;
    border:1px solid #ddd;
    border-radius:6px;
    padding:15px;
    margin-bottom:20px;
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:contain;
}

.footer{
    background:#212529;
    color:white;
    padding:15px;
    margin-top:30px;
}
 

.carousel-control-next-icon{
    background-color:black;
    border-radius:50%;
    padding:20px;
}


.thumbImage{
    cursor:pointer;
    opacity:0.7;
    transition:all .2s ease;
}

.thumbImage:hover{
    opacity:1;
    transform:scale(1.05);
}

.thumbImage.active-thumb{
    opacity:1;
    border:3px solid #0d6efd;
}