li {
    list-style-type: none;
}

.sidebarButton {
    /* Block */
    display: flex;
    padding: 12px 36px;
    margin-bottom: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start */
    background-color: white;
    border: none;
    /* Text */
    font-weight: 500;
    font-size: 18px;
    transition: ease 0.3s all;
    -moz-transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
}

.sidebarButton:hover {
    background: #CCC;
}

.sidebar .button-primary {
    margin-bottom: 12px;
}

.sidebar .list-group-item {
    border: none;
    padding: 12px 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar .list-group-item:hover {
    background-color: #CCC;
    color: #000;
}

.subcategory-item.active {
    background-color: var(--bg-green);
    color: #000;
}

.categorySide {
    border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.categorySide .sidebar {
    position: sticky !important;
    top: 20px !important;
}

.productItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 4px;
    overflow: hidden;
}

.productItem .productName {
    margin-top: 12px;
}

.productItem img {
    aspect-ratio: 1/1;
    max-width: 100%;
    object-fit: cover;
}

#allProductButton.active {
    background-color: var(--bg-green);
    color: #000;
}