:root {
    --blue: #2e86ff;
    --panel-w: 320px;
    --panel-h: auto;
    --bg: #fff;
    --muted: #6b7280
}

.category_list {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 20px
}

.category_list a{
    color:#303030;
    border-radius:15px;
     padding:20px
}

.category_list li:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/3
}

.category_list li:nth-child(4) {
    grid-column: 3/5
}

.category_list li:nth-child(11) {
    grid-column: 3/5;
    grid-row: 4/6
}

.category_list li:nth-child(12) {
    grid-column: 1/3
}

.category_list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f5f5f5;
    width: 100%;
    height: 100%
}

.page_title {
    text-align: left
}

.filters {
    padding: 15px
}

.accardion-contener {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px
}

.acardion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0
}

.acardion-content {
    display: none;
    padding: 10px 0
}

.acardion-content.active {
    display: block
}

.acardion-header.active .toggle-icon {
    transform: rotate(180deg)
}

.slider-container {
    position: relative;
    width: 100%;
    height: 5px;
    margin: 20px 0;
    background: #ddd;
    border-radius: 5px
}

.range-track {
    position: absolute;
    height: 5px;
    background: #007bff;
    border-radius: 5px;
    z-index: 1
}

.slider-container input[type=range] {
    position: absolute;
    width: 100%;
    top: -7px;
    z-index: 2;
    background: none;
    pointer-events: none
}

.slider-container input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    -webkit-appearance: none
}

.katalog .row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px
}

.katalog .sidebar {
    border-right: 1px solid #d2d2d2
}

.katalog .sidebar aside {
    margin-top: 50px
}

.filterHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px
}

.filterHeader h3 {
    display: flex;
    align-items: center;
    gap: 5px
}

.product_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.product_header h3 {
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000
}

.product_header h3 span {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #a6a6a6
}

.product_header .sort {
    display: flex;
    align-items: center;
    gap: 10px
}

.product_header .sort select {
    padding: 5px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    outline: none
}

.product_header .sortby {
    display: flex;
    align-items: center;
    gap: 10px
}

.product_header .sortby span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer
}

.product_header .sortby span svg {
    cursor: pointer
}

.product_header .sortby select {
    padding: 5px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    outline: none
}

.product_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0
}

.product_list li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease
}

.product_list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.product_list li .product_image {
    position: relative;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.product_list li .product_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.product_list li .product_image .fa-heart {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    transition: color .2s
}

.product_list li .product_image .fa-heart:hover {
    color: #1c70d0
}

.fa-heart.active {
    color: #1c70d0 !important
}

.product_list li h4 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #000;
    margin: 10px 0
}

.product_list li h4 span {
    display: block;
    margin-top: 4px;
    font-weight: 400;
    font-size: 16px;
    color: #a6a6a6
}

.product_list li .price {
    font-weight: 700;
    color: #111;
    font-size: 18px;
    margin: 10px 15px
}

.product_list li .btn {
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: background .2s
}

.product_list li .btn:hover {
    background: #0056b3
}

@media(max-width: 1024px) {
    .product_list {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width: 768px) {
    .product_list {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

.pagination {
    width: 60%;
    margin: 50px auto
}

.pagination .listpagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.pagination .listpagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000
}

.pagination .listpagination li .active {
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobilfilter {
    display: none
}

@media screen and (max-width: 1200px) {
    .product_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr)
    }
}

@media screen and (max-width: 950px) {
    .product_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .category_list {
        grid-template-columns: repeat(2, 1fr)
    }

    .category_list li {
        grid-column: auto !important;
        grid-row: auto !important
    }

    .category_list li:nth-child(1) {
        grid-row: span 2;
        grid-column: 1/3 !important
    }

    .category_list li:nth-child(4) {
        grid-row: span 2;
        grid-column: 1/3 !important
    }

    .category_list li:nth-child(11) {
        grid-row: span 2;
        grid-column: 1/3 !important
    }

    .category_list li:nth-child(16) {
        grid-row: span 2;
        grid-column: 1/3 !important
    }
}

.buttonfiletr {
    background: #f2f2f2;
    padding: 5px 10px
}

.numberfilter select {
    border: none;
    background: rgba(0, 0, 0, 0)
}

@media screen and (max-width: 850px) {
    .sidebar {
        display: none
    }

    .katalog .row {
        grid-template-columns: 1fr
    }

    .product_header .sortby {
        display: none
    }

    .mobilfilter {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        align-items: center
    }

    .mobilfilter button {
        padding: 10px 20px;
        border: 1px solid #d2d2d2;
        border-radius: 5px;
        background: none;
        font-family: Nunito Sans;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #000;
        display: flex;
        align-items: center;
        gap: 10px
    }

    .mobilfilter button svg {
        font-size: 20px
    }

    .mobilfilter .sortby span {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .mobilfilter #sort {
        display: none
    }

    .filtericon {
        display: flex;
        align-items: center;
        gap: 10px
    }
}

.head_whilsit {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    align-items: center
}

.head_whilsit .btn-clear-wishlist {
    display: flex;
    align-items: center;
    gap: 5px
}

.mt-5 img {
    width: 250px;
    height: 250px
}

.filter_overlay {
    position: fixed;
    z-index: 18;
    width: 80%;
    top: 0;
    left: -100%;
    height: 100vh;
    background: #fff;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1019607843);
    transition: left .3s ease
}

.filter_overlay .filterHeader {
    background: linear-gradient(90deg, #1C70D0 0%, #3794FF 100%);
    color: #fff;
    padding: 20px
}

.filter_overlay .filterHeader path {
    stroke: #fff;
    fill: #fff
}

.filter_overlay.activemenu {
    left: 0
}

.panel {
    width: var(--panel-w);
    background: var(--bg);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .12);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    position: relative
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(180deg, var(--blue), #2a6bf0);
    color: #fff
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600
}

.size-badge {
    background: rgba(255, 255, 255, .12);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px
}

.panel-close {
    background: rgba(0, 0, 0, 0);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px
}

.panel-list {
    padding: 8px 0;
    background: #fff
}

.panel-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    transition: background .12s
}

.panel-item:hover {
    background: #f8fafc
}

.panel-item .label {
    font-size: 15px;
    color: #111827
}

.muted {
    color: var(--muted);
    font-size: 13px
}

.check {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--blue);
    border-radius: 4px
}

.check.hidden {
    opacity: 0;
    visibility: hidden
}

.panel-item.selected {
    background: #f0f6ff
}

.panel-item.selected .check {
    opacity: 1;
    visibility: visible
}

.demo-wrap {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 50vh;
    background: #fff;
    transition: top .3s ease
}

.demo-wrap .panel {
    width: 100%
}

.demo-wrap.activemenu {
    top: 0;
    z-index: 20
}

#openfiletridaaa {
    background: #f2f2f2;
    padding: 5px
}

#openfiletridaaa span {
    display: flex;
    align-items: center;
    gap: 5px
}

.btn-clear-wishlist {
    background: none;
    border: none;
    cursor: pointer
}

@media screen and (max-width: 600px) {
    .product_list li {
        padding: 10px
    }
}