.cat-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 20px;
}

.cat-panel__title {
    display: block;
    font-weight: 500;
    margin: 0;
    padding: 5px 0;
    text-decoration: none;
    color: var(--theme-palette-color-8) !important;
    border-bottom: 1px var(--theme-palette-color-14) solid;
}

.cat-panel__children {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    padding: 0 !important;
}

.cat-panel__child {
    font-size: 12.5px;
    text-decoration: none;
    color: var(--theme-palette-color-9);
}

.cat-panel__child:hover {
    color: var(--theme-palette-color-8);
}

.cat-panel__child span {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cat-panel {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cat-panel__group {
        margin-bottom: 12px;
    }

    .cat-panel__title {
        font-size: 15px;
        padding: 4px 0;
    }

    .cat-panel__children {
        flex-direction: column;
        gap: 0;
        padding: 3px 0 0 !important;
    }

    .cat-panel__child {
        display: block;
        font-size: 14px;
        padding: 2px 0;
    }
}

ul.pcl-branch {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.has-children ul.pcl-branch {
    padding-inline-start: 15px !important;
}

.pcl-item {
    position: relative;
    padding: 2px 0;
}

.pcl-row {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: top;
    width: fit-content !important;
}

.pcl-img {
    display: inline-block;
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.pcl-img--empty {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.pcl-imgspacer {
    display: inline-block;
    width: 10px;
    height: 0;
}

.pcl-link {
    padding: 0;
}

.pcl-link:hover {
    color: var(--theme-palette-color-1);
}

.pcl-branch[data-depth="0"] > .pcl-item > .pcl-row .pcl-link {
    font-weight: 600 !important;
}

.pcl-item.is-open.is-active > .pcl-row > .pcl-link,
.pcl-item.is-open > .pcl-row > .pcl-link.is-active {
    font-weight: 600;
    color: var(--theme-palette-color-1);
}

.pcl-toggle {
    position: relative;
    justify-self: start;
    width: 18px;
    height: 18px;
    margin: 2px 0 0 0;
    border-radius: 5px;
    background-color: var(--theme-palette-color-10);
    cursor: pointer;
    z-index: 2;
}

.pcl-toggle::before {
    content: '\276F';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 10px;
    transform: translate(-50%, -50%) rotate(90deg);
}

.pcl-item.is-open > .pcl-row > .pcl-toggle {
    background-color: var(--theme-palette-color-2);
    color: var(--theme-palette-color-8);
}

.pcl-item.is-open > .pcl-row > .pcl-toggle::before {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.pcl-item > .pcl-row .pcl-toggle:hover {
    background-color: var(--theme-palette-color-1);
    transition: var(--theme-transition);
}

.pcl-item > .pcl-row > .pcl-toggle:hover::before {
    color: var(--theme-palette-color-8);
}

.pcl-toggle--empty {
    pointer-events: none;
}

li:not(.is-open) .pcl-toggle--empty {
    opacity: 0.30;
}

.pcl-toggle--empty::before {
    content: "\2015" !important;
    transform: translate(-50%, -50%) rotate(0) !important;
}

.pcl-children {
    position: relative;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.pcl-wrap.pcl-ready .pcl-children {
    transition-property: max-height, opacity;
    transition-duration: 360ms, 180ms;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1), ease-out;
}

.pcl-item.is-open > .pcl-children {
    max-height: 2000px;
    opacity: 1;
}

.pcl-children[hidden] {
    display: block;
    max-height: 0;
    opacity: 0;
}

.pcl-children::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 3px;
    left: 3px;
    width: 0.5px;
    background: var(--theme-palette-color-10);
}

.pcl-item.is-active > .pcl-row::before {
    background: var(--theme-palette-color-10);
}

.pcl-item.is-active > .pcl-children::before {
    background: var(--theme-palette-color-10);
}

.ct-search-results .ct-search-item > span:not(.ct-media-container) {
    white-space: pre-line;
}

.ct-search-results .rzcg-search-sku {
    display: block;
    font-weight: 400;
    opacity: 0.7;
}
