/*
 * The Cater Menu - Accordion Layout Styles
 * Version: 2.2.2 - Final RTL Fix
 */
.tcm-accordion-title {
    cursor: pointer;
    background-color: #894fb3 !important;
    color: #ffffff !important;
    padding: 12px 18px !important;
    margin-top: 5px;
    border: 1px solid #ddd;
    font-weight: bold;
    display: flex !important;
    align-items: center !important;
    text-align: right !important;
}
.tcm-accordion-title:hover {
    background-color: #7a42a1 !important;
}
.tcm-title-content {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2; /* This will be on the right side */
}
.tcm-category-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.tcm-accordion-title::before {
    content: '\25C0' !important; /* Left-pointing triangle */
    font-size: 0.8em !important;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
    order: 1; /* This will be on the left side */
}
.tcm-accordion-title.expanded::before {
    transform: rotate(-90deg) !important;
}
.tcm-accordion-content {
    display: none;
    padding: 15px;
    border: 1px solid #ddd;
    border-top: none;
    background-color: #fff;
}