.product-card {
    height: 100%;
    transition: transform 0.3s;
    width: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.product-img {
    height: 200px;
    object-fit: contain;
}
.category-sidebar {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    transition: all 0.3s ease;
}
.breadcrumb-item a {
    text-decoration: none;
}
.category-active {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.subcategory-list {
    display: none;
}
.subcategory-list.show {
    display: block;
}
.category-sidebar-container {
    position: fixed;
    left: -100%;
    top: 48px;
    height: calc(100vh - 48px);
    z-index: 1000;
    transition: all 0.3s ease;
    width: 250px;
    background-color: #212529;
    overflow-y: auto;
}
.category-sidebar-container.show {
    left: 0;
}
#sidebar-toggle {
    display: block;
}
.navbar-collapse {
    position: fixed;
    left: -100%;
    top: 48px;
    height: calc(100vh - 48px);
    z-index: 1000;
    transition: all 0.3s ease;
    width: 250px;
}
.navbar-collapse.show {
    left: 0;
}
.col-md-9 {
    margin-left: 0;
    width: 100%;
    transition: margin-left 0.3s ease, width 0.3s ease;
}
@media (max-width: 991px) {
    .category-sidebar-container {
        left: -250px;
        transition: left 0.3s ease;
    }
    .category-sidebar-container.show {
        left: 0;
    }
    #sidebar-toggle {
        display: block;
    }
}
@media (min-width: 992px) {
    .category-sidebar-container {
        left: 0;
        margin-right: 20px;
        overflow-y: auto;
    }
    #sidebar-toggle {
        display: none;
    }
    .navbar-collapse {
        position: static;
        left: auto;
        top: auto;
        height: auto;
        width: auto;
    }
    .container {
        margin-left: 250px;
        width: calc(100% - 250px);
    }
}
.navbar>.container{
    margin-left: 0;
    width: 100%;
}
.container{
    max-width: 100%;
}
.breadcrumb-item+.breadcrumb-item::before{
    content: var(--bs-breadcrumb-divider, ">");
}
.col{
    min-width: 320px;
    max-width: 574px;
}
.navbar{
    padding: 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
}