.ankasoft-dcm-wrapper {
    display: flex;
    gap: 25px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.ankasoft-parent-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 0 0 300px;
    border-right: 1px solid #EAEAEA;
    height: 70vh;
    overflow-y: auto;
}

.ankasoft-parent-cat-list .parent-cat-item a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    color: #333;
    font-weight: 500;
    margin-bottom: 2px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ankasoft-parent-cat-list .parent-cat-item a.active,
.ankasoft-parent-cat-list .parent-cat-item a:hover {
    background-color: #FFF;
    color: #000;
}

.ankasoft-child-cat-content {
    flex: 1;
    height: 70vh;
    overflow-y: auto;
    background-color: #F7F9FC;
    padding: 20px;
    border-radius: 8px;
}

.ankasoft-child-cat-content .ankasoft-placeholder {
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 15px;
    text-align: center;
}

.ankasoft-child-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ankasoft-child-grid.ankasoft-no-child {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 15px;
}

.child-cat-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    color: #333;
    transition: transform 0.2s ease;
}

.child-cat-item a:hover {
    transform: translateY(-3px);
}

.child-cat-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f8f8f8;
    border: 1px solid #EEE;
}

.child-cat-item span {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.ankasoft-parent-cat-list,
.ankasoft-child-cat-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ankasoft-parent-cat-list::-webkit-scrollbar,
.ankasoft-child-cat-content::-webkit-scrollbar {
    display: none;
}

.ankasoft-cat-accordion {
    background-color: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.ankasoft-cat-accordion ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ankasoft-cat-accordion ul ul {
    padding-left: 15px;
    border-left: 1px solid #EAEAEA;
    margin-left: 10px;
    margin-top: 10px;
}

.ankasoft-cat-accordion .cat-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #3C434A;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color .2s ease, color .2s ease;
}

.ankasoft-cat-accordion .cat-item a:hover {
    background-color: #F0F5FA;
    color: #0056b3;
}

.ankasoft-cat-accordion .cat-item.active>a {
    color: #0056b3;
    font-weight: 700;
    background-color: #F0F5FA;
}

.ankasoft-cat-accordion .cat-item>ul {
    display: none;
    margin-top: 5px;
}

.ankasoft-cat-accordion .acc-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid currentColor;
    transition: transform .3s ease;
}

.ankasoft-cat-accordion .cat-item.open>a>.acc-arrow {
    transform: rotate(90deg);
}

.ankasoft-no-products-message{text-align:center;padding:40px 20px;border:1px dashed #ddd;border-radius:8px;color:#666;background-color:#f9f9f9}