<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Product Categories */

.custom-product-categories {
    display: block;
    width: 100%;
}

.custom-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

.custom-category-item {
    margin: 0; /* Remove margin */
    text-align: left;
    display: flex;
    align-items: center;
    padding: 10px 0; /* Add padding for better spacing */
    border-top: 1px solid #ddd; /* Add border top */
    position: relative; /* Ensure toggle icon is positioned correctly */
    cursor: pointer; /* Make the entire item clickable */
    flex-direction: column; /* Stack items vertically */
}

.custom-category-item &gt; a {
    display: flex;
    align-items: center;
    width: 100%;
}

.custom-category-item img {
    width: 24px; /* Set width */
    height: auto; /* Set height to auto */
    margin-right: 10px; /* Space between image and text */
}

.custom-category-item .custom-category-name {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    text-transform: uppercase; /* Make text uppercase */
    font-weight: 700; /* Bold text */
    height: 36px; /* Set height */
    line-height: 36px; /* Vertically center text */
    flex-grow: 1; /* Allow text to take available space */
}

/* Subcategory lists */
.custom-subcategories-list,
.custom-sub-subcategories-list {
    display: none; /* Hide initially */
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 6px;
    padding-left: 20px; /* Indent for hierarchy */
}

/* Subcategory items */
.custom-subcategory-item,
.custom-sub-subcategory-item {
    padding: 10px 14px;
    box-shadow: inset 0 -1px 0 0 #ddd;
}

.custom-subcategory-item:last-child,
.custom-sub-subcategory-item:last-child {
    box-shadow: unset;
}


.custom-subcategories-list a,
.custom-sub-subcategories-list a {
    color: #333;
}

.custom-subcategory-item .custom-subcategory-title {
    display: block;
    background-color: #eb0029;
    color: white;
    font-weight: 600 !important;
    padding: 5px 10px;
    margin-top: 10px;
    text-decoration: none;
}

.custom-sub-subcategories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-sub-subcategory-item {
    padding: 5px 20px;
    border-bottom: 1px solid #eb0029;
}

.custom-sub-subcategory-item:last-child {
    border-bottom: none; /* Remove bottom border for the last item */
}

.custom-sub-subcategory-item .custom-sub-subcategory-name {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    line-height: 20px;
}

/* Ensure alignment of image and text in parent category */
.custom-category-item &gt; a &gt; img {
    margin-right: 10px;
}

.custom-category-item &gt; a &gt; span {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Adjustments to keep subcategories below the parent category */
.custom-category-item {
    display: block;
}

.custom-category-item .toggle-icon {
    position: absolute;
    right: 10px;
    top: 28px;
    transform: translateY(-50%);
    padding: 6px 12px;
    border-radius: 5px;
    background-color: #f6f6f6;
}

/* Base styles for the toggle icon */
.toggle-icon i {
    transition: transform 0.3s ease; /* Smooth rotation */
    font-size: 16px; /* Adjust the size of the icon */
    color: #333; /* Icon color */
}

/* Rotate 180 degrees when the parent has the 'open' class */
.custom-category-item.open .toggle-icon i {
    transform: rotate(180deg);
}

/* Optional: Positioning for toggle icons */
.custom-category-item .toggle-icon,
.custom-subcategory-item .toggle-icon {
    position: absolute;
    right: 10px;
    top: 28px;
    transform: translateY(-50%);
}</pre></body></html>