 
.sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    height: 100%;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.nav-item-hover{
    cursor: pointer;
    transition: color 0.3s ease;
}
.nav-item-hover:hover {
     color: #2f00ffdc !important;
}
.nav-link:hover {
     color: #2f00ffdc !important;
}
.product-card {
    flex: 0 0 auto;
    width: 200px;
}

.section-title {
    margin-top: 60px;
}
.scroll-wrapper{
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.product-card {
    border: 1px solid #ddd;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.menu-item {
    color: #000;
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-block;
    padding: 2px 4px;
    
}

.menu-item:hover {
    color: #29fd0d;
    text-decoration: none;
}

.hover-effect:hover {
    background-color: #f8f9fa;
    transform: scale(1.02);
    transition: 0.2s ease-in-out;
}

.hover-effect:hover h6 {
    color: #0dfd2d;
}

.login-button a {
    background-color: #388f20;
    border: none;
    color: white;
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 30px;

}

.login-button a:hover {
    color: #f8f8f8;
    background-color: #068d06;
}
.category-link {
    display: block;
    padding: 8px 12px;
    color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-link:hover {
     color: #2eb940; /* Bootstrap primary */
    text-decoration: none;
}
.list-group-item a{
    text-decoration: none;
    color: rgb(58, 58, 58);
}
.card-header{
    background-color: #0eb941;
}
.btn{
    background-color: #478a4c; 
    text-decoration: none;
    color: rgb(255, 255, 255);
}
 
.btn a{
 text-decoration: none;
 color: #f3f0f0;
}
.btn a:hover{
    color: #000;
}
.list-group-item a:hover{
    color:#06ac06;
}
/* Styling the product cards */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 1.25rem;
}

.card-img-top {
    border-radius: 10px;
    max-height: 200px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.card-img-top:hover {
    transform: scale(1.05);
}

/* Flexbox layout to ensure card elements are well aligned */
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
    .row-cols-md-4 {
        row-gap: 15px;
    }
}

@media (max-width: 991px) {
    .row-cols-sm-3 {
        row-gap: 20px;
    }
    .card-body {
        padding: 1rem;
    }
}

@media (max-width: 767px) {
    .row-cols-2 {
        row-gap: 25px;
    }
    .card {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .card {
        margin-bottom: 10px;
    }
    .card-body h6 {
        font-size: 14px;
    }
}

