.bc-menu-container {
    position: relative;
    display: inline-block;
}

/**/
/**/

.bc-dropdown-btn {
    background-color: #0066cc;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 270px;
    height: 70px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    outline: none;
    position: relative;
    z-index: 11;
}

.bc-dropdown-btn:hover {
    background-color: #005bb5;
}

.bc-dropdown-btn:focus {
    outline: none;
}

.bc-dropdown-btn:active {
    background-color: #004c99;
    transform: scale(0.98);
    box-shadow: 0 2px 5px rgba(0, 76, 153, 0.3);
}

.bc-dropdown-btn .grid-icon {
    display: grid;
    grid-template-columns: repeat(3, 6px);
    grid-template-rows: repeat(3, 6px);
    grid-gap: 0px;
    margin-right: 15px;
}

.bc-dropdown-btn .grid-icon .dot {
    width: 3px;
    height: 3px;
    background-color: white;
}

/**/
/**/

.bc-dropdown-menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    list-style-type: none;
    padding: 10px 0;
    width: 270px;
    z-index: 10;
    background-color: #f3f3f3;
    border-radius: 4px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #bbb transparent;
}

.bc-category-header {
    padding: 13px 28px;
    font-weight: 500;
    border-bottom: 1px solid #f3f3f3;
    text-transform: uppercase;
}

/**/
/**/

.bc-dropdown-menu .bc-category-item {
    display: flex;
    align-items: center;
    padding: 8px 28px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.bc-dropdown-menu .bc-category-item:hover {
    background-color: #e0e0e0;
}

.bc-category-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/**/
/**/
.bc-mega-menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 290px;
    width: 620px;
    background-color: #f4f4f4;
    border-radius: 4px;
    padding: 24px;
    z-index: 9;
}

.bc-sub-category {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bc-sub-category .subcategory-item {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bc-sub-category .subcategory-item a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

.sub-subcategory-list {
    padding-top: 8px;
    font-size: 13px;
    color: #777;
    border-top: 1.5px solid #ddd;
}

.sub-subcategory-list a {
    margin-bottom: 3px;
}
