.cwpf-wrapper {
    /* display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    width: 100%; */
}

.cwpf-sidebar {
    /* border: 1px solid #b9e6f5; */
    background: #fff;
    /* padding: 22px 18px; */
    height: fit-content;
}

.cwpf-filter-box {
    margin-bottom: 28px;
}

.cwpf-filter-box h4 {
    /* margin: 0 0 14px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: #00a9d6;
    text-transform: uppercase; */
}

.cwpf-filter-row {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0 0 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 13px;
    line-height: 1.3;
    color: #000;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}



/* PRICE RANGE SLIDER */
.cwpf-range-wrap {
    width: 100%;
    padding-top: 10px;
}

.cwpf-range-slider {
    position: relative;
    height: 44px;
    margin-bottom: 8px;
}

.cwpf-range-slider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    height: 2px;
    background: #cfd8d8;
    border-radius: 20px;
}

.cwpf-range-slider::after {
    content: "";
    position: absolute;
    left: var(--range-left, 0%);
    right: var(--range-right, 0%);
    top: 19px;
    height: 4px;
    background: #00bcd4;
    border-radius: 20px;
    z-index: 1;
}

.cwpf-range-slider input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 44px;
    margin: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    z-index: 2;
}

.cwpf-range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border: none;
}

.cwpf-range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    margin-top: -12px;
    border-radius: 50%;
    background: #00c89c;
    border: 9px solid #000;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.cwpf-range-slider input[type="range"]::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
}

.cwpf-range-slider input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00c89c;
    border: 9px solid #000;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.cwpf-price-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    line-height: 1.2;
    color: #000;
    letter-spacing: 0.3px;
}

.cwpf-stock-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    line-height: 1.2;
    color: #000;
    cursor: pointer;
}

.cwpf-stock-filter input {
    position: relative;
    width: 34px;
    height: 15px;
    margin: 0;
    flex: 0 0 34px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #1f1f1f;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.cwpf-stock-filter input::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 3px;
    width: 9px;
    height: 9px;
    background: #2c7777;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cwpf-stock-filter input:checked {
    background: #fff;
    border-color: #1f1f1f;
}

.cwpf-stock-filter input:checked::before {
    left: 14px;
}

@media only screen and (min-width: 1200px) {
    .cwpf-stock-filter input:checked::before {
        left: 20px;
    }
}

.cwpf-clear-filter {
    width: 100%;
    height: 38px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.cwpf-clear-filter:hover {
    background: transparent;
    color: #000;
}

.cwpf-products-area {
    width: 100%;
}

.cwpf-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 18px; */
}

.cwpf-product-card {
    border: 1px solid #b9e6f5;
    background: #fff;
    overflow: hidden;
}

.cwpf-product-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.25;
    overflow: hidden;
    background: #f5f5f5;
}

.cwpf-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cwpf-product-card:hover .cwpf-product-image img {
    transform: scale(1.04);
}

.cwpf-wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    z-index: 2;
}

.cwpf-product-content {
    padding: 13px 14px 16px;
}

.cwpf-product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-size: 9px;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
}

.cwpf-product-meta span:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
}

.cwpf-product-title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;
}

.cwpf-product-title a {
    color: #000;
    text-decoration: none;
}

.cwpf-product-price {
    font-size: 13px;
    line-height: 1.3;
    color: #000;
}

.cwpf-product-price del {
    color: #9a9a9a;
    margin-left: 7px;
}

.cwpf-product-price ins {
    text-decoration: none;
}

.cwpf-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.cwpf-page-number {
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cwpf-page-number.active,
.cwpf-page-number:hover {
    background: #000;
    color: #fff;
}

.cwpf-no-products {
    padding: 40px 20px;
    border: 1px solid #b9e6f5;
    text-align: center;
    font-size: 16px;
}

#cwpf-products-result.cwpf-loading {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 991px) {
    .cwpf-wrapper {
        grid-template-columns: 1fr;
    }

    .cwpf-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .cwpf-product-grid {
        grid-template-columns: 1fr;
    }

    .cwpf-sidebar {
        padding: 18px 14px;
    }
}




/* .product-card {
    padding-bottom:36px
}

.product-card .product-card-inner {
    position:relative;
    padding-bottom:100px;
    background:#fff;
    border:1px solid #48dfdf
}

.product-card .product-card-inner .product-thumb-wrap .product-img-link .product-main-image {
    height:460px;
    width:100%;
    object-fit:cover;
    object-position:top
}

.product-card .product-card-inner .product-content {
    position:absolute;
    bottom:0;
    z-index:1;
    text-align:center;
    left:0;
    right:0;
    margin:auto;
    padding-bottom:60px
}

.product-card .product-card-inner .product-content .product-cats {
    margin-bottom:22px
}

.product-card .product-card-inner .product-content .product-cats .cat-title {
    font-size:10px;
    font-family:"Krona One",sans-serif;
    text-transform:uppercase;
    font-weight:400
}

.product-card .product-card-inner .product-content .product-title {
    font-size:20px;
    line-height:30px;
    color:#000;
    margin-bottom:30px;
    padding:0 32px;
    font-weight:600
}

.product-card .product-card-inner .product-content .product-price {
    font-size:20px
}

.product-card .product-card-inner .product-actions {
    display:flex;
    position:absolute;
    bottom:-26px;
    justify-content:center;
    left:0;
    right:0;
    margin:auto;
    gap:30px;
    z-index:1
}

.product-card .product-card-inner .product-actions .action-btn {
    width:51px;
    height:51px;
    border-radius:50%;
    background:#000
}

.product-card .product-card-inner .product-actions .action-btn.view-btn {
    padding-right:12px
}

.product-card .product-card-inner .product-actions .action-btn.cart-btn {
    padding:13px
}

.product-card .product-card-inner:after {
    position:absolute;
    background:linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, #fff 80%);
    width:100%;
    bottom:100px;
    left:0;
    right:0;
    content:"";
    height:calc(100% - 100px)
}

@media only screen and (min-width: 768px) {
    .product-card .product-card-inner .product-thumb-wrap .product-img-link .product-main-image {
        height:38.2291666667vw
    }

}

@media only screen and (min-width: 1200px) {
    .product-card .product-card-inner {
        padding-bottom:0
    }

.product-card .product-card-inner .product-content {
        text-align:left;
        background:#fff;
        padding:1.4583333333vw 1.9791666667vw;
        transition:.7s
    }

.product-card .product-card-inner .product-content .product-cats .cat-title {
        font-size:.5208333333vw
    }

.product-card .product-card-inner .product-content .product-title {
        font-size:1.25vw;
        line-height:1.5625vw;
        padding:0
    }

.product-card .product-card-inner .product-content .product-price {
        font-size:1.0416666667vw
    }

.product-card .product-card-inner:after {
        height:100%;
        bottom:0
    }

.product-card:hover .product-card-inner .product-content {
        background:none
    }

} */