.ks-shop-page-builder {
    width: 100%;
}

.ks-shop-wrap {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 48px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.ks-shop-wrap.no-sidebar {
    grid-template-columns: 1fr;
}


.ks-shop-wrap .ks-shop-sidebar {
    padding-top: 10px;
    width: 260px !important;
}

.ks-filter-title {
    font-size: 28px;
    margin-bottom: 26px;
    font-weight: 600;
}

.ks-filter-block {
    border-bottom: 1px solid #eee;
    padding-bottom: 22px;
    margin-bottom: 22px;
}

.ks-filter-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ks-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ks-filter-list li {
    margin-bottom: 11px;
}

.ks-filter-list a {
    color: #111;
    font-size: 14px;
    text-decoration: none;
}

.ks-filter-list span {
    margin-left: 4px;
    color: #555;
}

.ks-price-line {
    height: 4px;
    background: #111;
    border-radius: 20px;
    margin-bottom: 14px;
}

.ks-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ks-price-inputs input {
    height: 42px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0 12px;
}

.ks-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ks-size-list span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #eee;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.ks-color-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ks-color-list li,
.ks-filter-block label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.ks-color-dot {
    width: 16px;
    height: 16px;
    background: #e7b3ad;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.ks-shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.ks-shop-sort select {
    border: 0;
    background: transparent;
    font-size: 14px;
}

.ks-grid-icons {
    display: flex;
    gap: 10px;
}

.ks-grid-icons span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
}

.ks-grid-icons .active {
    background: #111;
    color: #fff;
}

.ks-shop-products {
    display: grid;
}

.ks-shop-products.ks-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ks-shop-products.ks-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ks-shop-products.ks-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}



 

 

 
 
     
.ks-price del {
    color: #999;
    font-weight: 400;
    margin-right: 5px;
}

@media (max-width: 991px) {
    .ks-shop-wrap {
        grid-template-columns: 1fr;
    }

    .ks-shop-products.ks-cols-3,
    .ks-shop-products.ks-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .ks-shop-products.ks-cols-2,
    .ks-shop-products.ks-cols-3,
    .ks-shop-products.ks-cols-4 {
        grid-template-columns: 1fr;
    }
}




.ks-filter-block .ks-filter-content {
    display: block;
}

.ks-filter-block:not(.is-open) .ks-filter-content {
    display: none;
}

.ks-filter-block.is-open .ks-filter-heading span {
    transform: rotate(180deg);
}

.ks-filter-heading {
    cursor: pointer;
}

.ks-price-filter button {
    margin-top: 10px;
    width: 100%;
    height: 38px;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    cursor: pointer;
}









.ks-shop-sidebar .ks-accordion-title {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.ks-shop-sidebar .ks-accordion-title h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.ks-shop-sidebar .ks-filter-arrow {
    font-size: 14px;
    transition: transform .25s ease;
}

.ks-shop-sidebar .ks-accordion-title[aria-expanded="false"] .ks-filter-arrow {
    transform: rotate(-90deg);
}

.ks-shop-sidebar .ks-collapse {
    display: none;
}

.ks-shop-sidebar .ks-collapse.show {
    display: block;
}

.ks-shop-sidebar .collapse-body {
    padding-bottom: 20px;
}

.ks-shop-sidebar .br-line {
    border-bottom: 1px solid #e5e5e5;
}

.ks-price-range {
    position: relative;
    height: 32px;
    margin-bottom: 14px;
}

.ks-price-range input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    appearance: none;
    height: 4px;
    background: #111;
}

.ks-price-range input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 3px solid #111;
    border-radius: 50%;
    background: #fff;
    pointer-events: auto;
    cursor: pointer;
}

.price-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.price-val_wrap {
    height: 44px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-val_wrap input {
    border: 0;
    outline: 0;
    width: 100%;
    font-weight: 600;
    background: transparent;
}

.price-val_wrap input[type=number] {
    border: 0;
    outline: 0;
    width: 100%;
    font-weight: 600;
    background: transparent;
}




.ks-apply-filter {
    width: 100%;
    margin-top: 14px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-weight: 600;
}

























































































































































/* .ks-product-card .product-color_list:empty {
    display: none !important;
}

.ks-product-card .product-action_bot {
    opacity: 1 !important;
    transform: none !important;
}  
.ks-product-card .product-action_list {
    opacity: 0;
    transform: translateX(10px);
    transition: .25s ease;
}

.ks-product-card:hover .product-action_list {
    opacity: 1;
    transform: translateX(0);
}

.ks-product-card .img-hover {
    opacity: 0;
}

.ks-product-card:hover .img-hover {
    opacity: 1;
}

.ks-product-card:hover .img-product {
    opacity: 0;
}

.ks-fallback-stars .ks-star {
    color: #e6a800;
    font-size: 14px;
    line-height: 1;
} */




























.ks-product-card:hover .product-action_bot .tf-btn {
    background: #111;
    color: #fff;
}

.ks-product-card {
    position: relative;
}

.ks-product-card .card-product_wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f3f3;
}

.ks-product-card .product-img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.ks-product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .3s ease, transform .4s ease;
}

.ks-product-card .img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.ks-product-card:hover .img-hover {
    opacity: 1;
}

.ks-product-card:hover .img-product {
    opacity: 0;
}

.ks-product-card .product-badge_list {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ks-product-card .product-badge_item {
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.ks-product-card .product-badge_item.new {
    background: #43a72f;
}

.ks-product-card .product-badge_item.sale {
    background: #dc5b3f;
}

.ks-product-card .product-action_list {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(10px);
    transition: .25s ease;
}

.ks-product-card:hover .product-action_list {
    opacity: 1;
    transform: translateX(0);
}

.ks-product-card .box-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ks-product-card .product-action_bot {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 7;
    opacity: 0;
    transform: translateY(12px);
    transition: .25s ease;
}

.ks-product-card:hover .product-action_bot {
    opacity: 1;
    transform: translateY(0);
}

.ks-product-card .product-action_bot .tf-btn {
    height: 44px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
}

.ks-product-card .product-marquee_sale {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    z-index: 4;
    background: #111;
    color: #fff;
    border-radius: 999px;
    overflow: hidden;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 700;
}

.ks-product-card:hover .product-marquee_sale {
    opacity: 0;
}

.ks-product-card .initial-child-container {
    display: flex;
    gap: 8px;
    white-space: nowrap;
    animation: ksMarquee 8s linear infinite;
}

@keyframes ksMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ks-product-card .card-product_info {
    padding-top: 16px;
}

.ks-product-card .name-product {
    display: inline-block;
    color: #111;
    font-size: 16px;
    margin-bottom: 6px;
}

.ks-product-card .price-wrap {
    margin-top: 6px;
    font-weight: 700;
    color: #db5a3c;
}

.ks-product-card .price-wrap del {
    color: #aaa;
    margin-left: 6px;
    font-weight: 400;
}

.ks-product-card .product-color_list {
    display: flex;
    gap: 10px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.ks-product-card .swatch-value {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: block;
}

.ks-product-card .product-color-item.active .swatch-value {
    outline: 1px solid #111;
    outline-offset: 3px;
}




















.ks-shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.ks-custom-sort {
    position: relative;
}

.ks-custom-sort .btn-select {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
}

.ks-custom-sort .ks-sort-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    border-radius: 10px;
    padding: 8px;
    z-index: 99;
    display: none;
}

.ks-custom-sort.is-open .ks-sort-menu {
    display: block;
}

.ks-custom-sort .select-item {
    display: block;
    padding: 10px 12px;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
}

.ks-custom-sort .select-item:hover,
.ks-custom-sort .select-item.active {
    background: #f1f1f1;
}

.ks-layout-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ks-layout-switcher .ks-view-layout {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background: #f5f5f5;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ks-layout-switcher .ks-view-layout.active {
    background: #111;
    color: #fff;
}

.ks-meta-filter-shop {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ks-applied-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ks-chip {
    background: #eeeeee;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.ks-shop-products.ks-layout-list {
    display: grid;
    grid-template-columns: 1fr !important;
}

.ks-shop-products.ks-layout-list .ks-product-card {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 30px;
    align-items: start;
}

.ks-shop-products.ks-layout-list .card-product_wrapper {
    width: 100%;
}

.ks-shop-products.ks-layout-list .product-img {
    height: 440px;
}

.ks-shop-products.ks-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ks-shop-products.ks-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ks-shop-products.ks-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 767px) {
    .ks-shop-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ks-shop-products.ks-layout-list .ks-product-card {
        grid-template-columns: 1fr;
    }
}










































.ks-actions-hover .product-action_list {
    opacity: 0;
    transform: translateX(10px);
}

.ks-actions-hover:hover .product-action_list {
    opacity: 1;
    transform: translateX(0);
}

.ks-actions-normal .product-action_list {
    opacity: 1;
    transform: none;
}

.ks-action-left {
    left: 14px;
    right: auto;
}

.ks-action-right {
    right: 14px;
    left: auto;
}

.ks-action-top {
    top: 14px;
    left: 50%;
    right: auto;
    flex-direction: row;
    transform: translateX(-50%);
}

.ks-action-bottom {
    bottom: 70px;
    top: auto;
    left: 50%;
    right: auto;
    flex-direction: row;
    transform: translateX(-50%);
}

.product-size_list {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    font-weight: 600;
}

.product-color_list:empty,
.product-size_list:empty {
    display: none !important;
}