/* Basic layout structure */
.buy-again-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Content and sidebar layout */
.buy-again-content-wrapper {
    display: flex;
    flex-wrap: wrap;
}

/* Left sidebar with filters */
.buy-again-sidebar {
    width: 25%;
    padding-right: 30px;
    box-sizing: border-box;
}

/* Right side with products */
.buy-again-products {
    width: 75%;
    box-sizing: border-box;
}

/* Shop - loop header */
.shop-loop-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.buy-again-products div.product-wrapper {
    background-color:#fff !important;
}

/* Sorting dropdown position */
.wd-shop-tools {
    display: flex;
    align-items: center;
    gap: 10px 30px;
}

/* Per page options (show) */
.per-page-border {
    position: relative;
}
.per-page-border:after {
    content: "/";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ccc; 
}
.per-page-variation:last-child + .per-page-border {
    display: none;
}
.wd-products-per-page a{
    padding: 0 7px;
    color: #767676;
}
.wd-products-per-page a.current-variation, 
.wd-products-shop-view a.current-variation {
    color: #333;
    font-weight: 600;
}

/* View options (grid) */
.wd-products-shop-view a {
    color: #bbb;
}
.wd-products-shop-view {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px .9em;
    line-height: 1;
}
.wd-products-shop-view a:before {
    font-family: 'woodmart-font' !important;
    font-size: 180%;
    font-weight: 400;
}
.wd-products-shop-view a.per-row-2:before {
    content: "\f12b";
}
.wd-products-shop-view a.per-row-4:before {
    content: "\f12d";
}
.wd-products-shop-view a.per-row-6:before {
    content: "\f12f";
}
.wd-filter-list .wc-layered-nav-term.wd-active a {
    color: #333;
    font-weight: 600;
}

/* .buy-again-wrapper .wd-swatches-filter.wd-checkboxes-on li.wd-active>a:before {
    background-color: rgb(22,8,85,1);
    border-color: rgb(22,8,85,1);
} */

/* Parent-children category filter dropdown */
.buy-again-wrapper .cat-parent {
    position: relative;
}
.buy-again-wrapper .cat-parent > a {
    position: relative;
    padding-right: 20px;
}
.buy-again-wrapper .widget_product_categories .wd-cats-toggle:after {
    content: "\f129";
    font-family: "woodmart-font";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.buy-again-wrapper .cat-parent .wd-cats-toggle.toggle-active:after {
    transform: translate(-50%, -50%) rotate(180deg);
}
.buy-again-wrapper .cat-parent .children {
    display: none;
}
.buy-again-wrapper .cat-parent.current-cat .children,
.buy-again-wrapper .cat-parent .children.list-shown {
    display: block !important;
}


/* Responsive styles */
@media (max-width: 768px) {
    .buy-again-sidebar {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .buy-again-products {
        width: 100%;
    }
    
    .buy-again-wrapper .shop-loop-head {
        flex-direction: column;
        align-items: flex-start;
    }
}