.archive .shop-page-title .breadcrumb-inner {
    background-color: #DBEBDB;
    padding: 8px 0;
}

.archive .shop-page-title .woocommerce-breadcrumb {
    display: flex;
    gap: var(--size-1);
    color: var(--color-primary-1);
}

.archive .shop-page-title .woocommerce-breadcrumb a,
.archive .shop-page-title .woocommerce-breadcrumb .divider {
    font-weight: 400;
    color: var(--color-primary-1);
}

.archive .shop-page-title .woocommerce-breadcrumb {
    font-weight: 600;
}

.archive .shop-page-title .page-title-inner {
    padding: var(--size-2) var(--size-1);
}

.archive .shop-page-title .page-title-inner img {
    border-radius: var(--size-1);
    margin-bottom: var(--size-2);
    width: 100%;
}

.archive .shop-page-title .page-title-inner h1 {
    text-transform: uppercase;
    color: var(--color-primary-1);
    font-size: var(--size-3);
    font-weight: 900;
    font-family: var(--font-f);
}

.archive #filter-attributes {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    gap: var(--size-1);
    background-color: white;
    padding: var(--size-1);
    border-radius: var(--size-1);
    box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--size-2);
}

.archive #filter-attributes .filter-group h4 {
    font-size: var(--size-1);
    line-height: 1.2;
    color: var(--color-primary-1);
    margin-bottom: var(--size-0);
}

.archive #filter-attributes .seperator {
    width: 100%;
    height: calc(100% - 30px);
    background-color: #D2D2D2;
}

.archive #filter-attributes .list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--size-0);
}

.archive #filter-attributes .filter-group .list input[type="checkbox"] {
    display: none;
}

.archive #filter-attributes .filter-group .list .filter-label {
    display: grid;
    justify-content: center;
    margin-bottom: 0;
    background-color: var(--bg-color);
    border-radius: var(--size-0);
    border: 1px solid #E8E8E8;
    padding: 4px;
    font-size: var(--size-f-3);
    letter-spacing: -0.3px;
    text-align: center;
    line-height: 1.6;
    cursor: pointer;
}

.archive #filter-attributes .filter-group .list .filter-label.checked {
    box-shadow: 0 4px 10px -1px rgba(0, 0, 0, 0.2);
    border-color: #F5A623;
}

.archive #filter-attributes .filter-group .list .filter-label p {
    padding: 4px;
}

.archive #filter-attributes .filter-group .list .filter-label img {
    width: 100%;
    height: 64px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--size-0);
}

.archive .product-section {
    border: none;
}

.archive .product-section .row {
    margin: 0 -12px !important;
}

.archive .product-section .section-title {
    font-size: var(--size-2);
    line-height: 1.2;
    color: var(--color-primary-1);
    border-bottom: 1px solid #D2D2D2;
    margin-bottom: var(--size-2);
}

.archive .product-section .section-title span {
    font-weight: 700;
    border-bottom: 2px solid #005130;
    padding-bottom: var(--size-0);
}

.archive .sec__content .ts-cat-content-wrapper {
    position: relative;
    margin-bottom: var(--size-2);
}

.archive .sec__content .entry-content {
    max-height: 560px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.archive .sec__content .ts-cat-content-wrapper.expanded .entry-content {
    max-height: 9999px;
}

.archive .sec__content .ts-readmore-btn {
    display: block;
    width: fit-content;
    margin: 16px auto 24px;
    border-radius: var(--size-0);
    border: 1px solid var(--color-primary-1);
    padding: 8px 24px;
    font-size: var(--size-1);
    line-height: 1.2;
    transition: 0.3s;
    cursor: pointer;
}

.archive .sec__content .ts-readmore-btn:hover {
    background: var(--color-primary-1);
    color: white;
}

@media (max-width: 576px) {
    .archive .sec__products .container{
        padding: 0 8px;
    }
    .archive .product-section .row{
        margin: 0 -8px !important;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .archive .product-section .product.col{
        flex-basis: 100%;
        max-width: 100%;
    }
    .archive .shop-page-title .page-title-inner h1 {
        text-align: center;
    }

    .archive #filter-attributes {
        grid-template-columns: 1fr;
        padding: 16px 8px;
    }

    .archive #filter-attributes .list {
        display: flex;
        flex-wrap: wrap;
    }

    .archive #filter-attributes .seperator {
        width: 100%;
        height: 1px;
    }

    .archive #filter-attributes .filter-group .list .filter-label {
        grid-template-columns: 24px 1fr;
        text-align: left;
        gap: 8px;
        align-items: center;
        border-radius: 32px;
        padding: 8px 12px;
        box-shadow: var(--box-shadow);
    }

    .archive #filter-attributes .filter-group .list .filter-label p {
        padding: 0;
    }

    .archive #filter-attributes .filter-group .list .filter-label img {
        height: auto;
        aspect-ratio: 1/1;
        border-radius: 100%;
        box-shadow: var(--box-shadow);
    }
}