
.pswc-products-section {
    width: 100%;
    box-sizing: border-box;
    --ps-orange: #f47b20;
    --ps-navy: #003153;
    --ps-text: #303b45;
    --ps-muted: #7b848c;
    --ps-border: #e5e8ec;
    --ps-light: #f7f8fb;
    --ps-image: #f3f4ff;
    padding: 65px 0 80px;
    font-family: inherit;
}

.pswc-layout {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.pswc-sidebar {
    min-width: 0;
}

.pswc-filter-box {
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--ps-border);
    border-radius: 4px;
    background: #fff;
}

.pswc-filter-box h3 {
    margin: 0 0 12px;
    color: var(--ps-navy);
    font-size: 13px;
    font-weight: 700;
}

.pswc-search-form {
    display: flex;
    gap: 5px;
}

.pswc-search {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 9px;
    border: 1px solid var(--ps-border);
    border-radius: 3px;
    font-size: 11px;
    outline: none;
}

.pswc-search:focus {
    border-color: var(--ps-orange);
}

.pswc-search-form button,
.pswc-filter-price,
.pswc-reset {
    border: 0;
    border-radius: 3px;
    padding: 8px 10px;
    background: var(--ps-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.pswc-search-form button:hover,
.pswc-filter-price:hover,
.pswc-reset:hover {
    background: #df6d16;
}

.pswc-price-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--ps-muted);
    font-size: 10px;
}

.pswc-price-min,
.pswc-price-max {
    width: 100%;
    accent-color: var(--ps-orange);
}

.pswc-filter-price {
    margin-top: 10px;
}

.pswc-check {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 8px;
    color: #626a72;
    font-size: 11px;
    cursor: pointer;
}

.pswc-check input {
    accent-color: var(--ps-orange);
}

.pswc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.pswc-tag {
    padding: 5px 8px;
    border: 1px solid var(--ps-border);
    border-radius: 3px;
    background: #fff;
    color: #666;
    font-size: 9px;
    cursor: pointer;
}

.pswc-tag:hover,
.pswc-tag.is-active {
    border-color: var(--ps-orange);
    background: var(--ps-orange);
    color: #fff;
}

.pswc-reset {
    width: 100%;
    background: var(--ps-navy);
}

.pswc-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 15px;
}

.pswc-result-count {
    color: var(--ps-muted);
    font-size: 10px;
}

.pswc-orderby {
    height: 34px;
    min-width: 150px;
    padding: 0 8px;
    border: 1px solid var(--ps-border);
    border-radius: 3px;
    background: #fff;
    color: #555;
    font-size: 10px;
}

.pswc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.pswc-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ps-border);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.045);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pswc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.pswc-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--ps-image);
}

.pswc-image-link img {
    display: block;
    width: 100%;
    height: 205px;
    object-fit: contain;
    transition: transform .35s ease;
}

.pswc-card:hover .pswc-image-link img {
    transform: scale(1.045);
}

.pswc-sale {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ps-orange);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}

.pswc-card-body {
    padding: 13px 14px 15px;
}

.pswc-title {
    min-height: 38px;
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.4;
}

.pswc-title a {
    color: var(--ps-navy);
    text-decoration: none;
}

.pswc-title a:hover {
    color: var(--ps-orange);
}

.pswc-price {
    min-height: 20px;
    margin-bottom: 11px;
    color: var(--ps-orange);
    font-size: 12px;
    font-weight: 700;
}

.pswc-price del {
    margin-right: 5px;
    color: #999;
    font-size: 10px;
}

.pswc-price ins {
    text-decoration: none;
}

.pswc-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 6px 12px;
    border: 1px solid var(--ps-orange);
    border-radius: 3px;
    background: var(--ps-orange);
    color: #fff !important;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none !important;
    transition: .25s ease;
}

.pswc-add-to-cart:hover {
    background: var(--ps-navy);
    border-color: var(--ps-navy);
}

.pswc-no-results {
    padding: 50px 20px;
    border: 1px solid var(--ps-border);
    text-align: center;
    color: var(--ps-muted);
    font-size: 13px;
}

.pswc-loading {
    opacity: .45;
    pointer-events: none;
    transition: opacity .2s ease;
}

.pswc-hidden-count {
    display: none;
}

@media (max-width: 1024px) {
    .pswc-products-section {
        padding: 50px 20px 60px;
    }

    .pswc-layout {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 22px;
    }

    .pswc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pswc-image-link img {
        height: 185px;
    }
}

@media (max-width: 767px) {
    .pswc-products-section {
        padding: 45px 16px 55px;
    }

    .pswc-layout {
        display: block;
    }

    .pswc-sidebar {
        margin-bottom: 25px;
    }

    .pswc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px;
    }

    .pswc-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .pswc-orderby {
        width: 100%;
    }

    .pswc-image-link img {
        height: 160px;
    }

    .pswc-card-body {
        padding: 11px 10px 12px;
    }

    .pswc-title {
        font-size: 11px;
        min-height: 34px;
    }

    .pswc-price {
        font-size: 10px;
    }

    .pswc-add-to-cart {
        width: 100%;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .pswc-grid {
        grid-template-columns: 1fr;
    }

    .pswc-image-link img {
        height: 220px;
    }
}


/* =========================================
   CATEGORY / SUBCATEGORY HIERARCHY
========================================= */
.pswc-category-group{margin:0 0 10px}
.pswc-category-parent{margin-bottom:6px!important;font-weight:600!important;color:#303B45!important}
.pswc-subcategory-list{margin:0 0 8px 22px;padding-left:10px;border-left:1px solid var(--ps-border)}
.pswc-category-child{margin-bottom:6px!important;font-size:10px!important;color:#6B737B!important}
.pswc-category-child input{width:12px;height:12px}
.pswc-category-parent input{width:13px;height:13px}
@media (max-width:767px){
    .pswc-subcategory-list{margin-left:18px;padding-left:8px}
}
