/* =========================================================
   PRODUCTS ARCHIVE PAGE
========================================================= */

.products-archive-page {
    width: 100%;
    background: #fff;
}


/* =========================================================
   PAGE CONTAINER
========================================================= */

.products-page-container {
    width: 100%;
    max-width: 1330px;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;

    box-sizing: border-box;
}


/* =========================================================
   TOP BANNER
========================================================= */

.products-page-banner {
    position: relative;

    width: 100%;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('../../images/sub_banner_pro.png');

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* =========================================================
   BANNER OVERLAY
========================================================= */

.products-page-banner-overlay {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .20)
        );
}


/* =========================================================
   BANNER CONTENT
========================================================= */

.products-page-banner-container {
    position: relative;

    width: 100%;
    max-width: 1330px;

    padding: 0 30px;

    box-sizing: border-box;

    text-align: center;

    z-index: 2;
}


.products-page-banner h1 {
    margin: 0;

    color: #fff;

    font-size: 46px;
    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.products-breadcrumb-section {
    width: 100%;

    padding: 18px 0;

    background: #ffffff;

    border-bottom: 1px solid #e5e5e5;
}


.products-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    line-height: 1.4;

    color: #888;

    text-transform: uppercase;
}


.products-breadcrumb a {
    color: #222;
    font-weight: 400;
    text-decoration: none;

    transition: color .25s ease;
}


.products-breadcrumb a:hover {
    color: #01c30c;
}


.products-breadcrumb span {
    color: #222;
    font-weight: 400;
}


/* =========================================================
   PRODUCTS SECTION
========================================================= */

section.products-archive-section::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-left-width: clamp(1.25rem, 0.886rem + 1.55vw, 2.438rem);
    border-right-width: clamp(1.25rem, 0.886rem + 1.55vw, 2.438rem);
    border-top-width: clamp(1.188rem, 0.805rem + 1.63vw, 2.438rem);
    border-bottom-width: 0;
    border-color: #fff transparent transparent transparent;
    transform: translate(-50%, 0);
}
.products-archive-section {
    width: 100%;
    padding: 65px 0 80px;
    background: #f5f5f5;
    position: relative;
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.products-category-section {
    width: 100%;

    margin-bottom: 45px;
}


/* =========================================================
   CATEGORY HEADING
========================================================= */

.products-category-heading {
    text-align: center;

    margin-bottom: 25px;
}


.products-category-heading h2 {
    display: inline-block;

    margin: 0;

    color: #01c30c;

    font-size: 28px;

    font-weight: 600;

    line-height: 1.25;

    text-transform: uppercase;
}


.products-category-heading span {
    display: none;
}


/* =========================================================
   CATEGORY LIST
========================================================= */

.products-category-list {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    width: 100%;
}


/* =========================================================
   CATEGORY ITEM
========================================================= */

.products-category-item {
    display: inline-flex;

    align-items: center;
    justify-content: center;
    margin-bottom:20px;
    min-width: 100px;

    padding: 0px 40px;

    border-right: 2px solid #222;

    background: #fff;

    color:rgb(51, 51, 51);

    font-size: 20px;

    line-height: 1.2;

    font-weight: 500;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
            font-family: 'Oswald';
}



.products-category-item.active {

    color: #01c30c;
}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.products-archive-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.products-archive-card {
    position: relative;

    min-width: 0;

    display: flex;

    flex-direction: column;

    background: #fff;

    border: 1px solid #e4e4e4;

    overflow: hidden;

    transition:
        box-shadow .3s ease,
        transform .3s ease;
}


.products-archive-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .10);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.products-archive-image {
    position: relative;

    width: 100%;

    height: 290px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    box-sizing: border-box;

    background: #fff;

    overflow: hidden;

    text-decoration: none;
}


.products-archive-image img {
    width: 100%;

    height: 100%;

    max-width: 100%;

    max-height: 100%;

    display: block;

    object-fit: contain;

    transition:
        transform .35s ease;
}


.products-archive-card:hover
.products-archive-image img {
    transform: scale(1.04);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.products-archive-content {
    padding: 20px 22px 25px;

    text-align: center;

    border-top: 1px solid #eee;

    background: #fff;
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.products-archive-content h2 {
    margin: 0 0 10px;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 600;
}


.products-archive-content h2 a {
    color: #333;

    text-decoration: none;

    transition: color .25s ease;
}


.products-archive-content h2 a:hover {
    color: #333;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.products-archive-description {
    color: #888;

    font-size: 16px;

    line-height: 1.55;
}


.products-archive-description p {
    margin: 0;
}


/* =========================================================
   VIEW PRODUCT
========================================================= */

.products-archive-readmore {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 18px;

    padding: 10px 22px;

    background: #01c30c;

    border: 1px solid #01c30c;

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background .25s ease,
        color .25s ease;
}


.products-archive-readmore:hover {
    background: #fff;

    color: #01c30c;
}


/* =========================================================
   PAGINATION
========================================================= */

.products-pagination {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 55px;
}


.products-pagination .page-numbers {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.products-pagination .page-numbers li {
    margin: 0;

    padding: 0;
}


/* =========================================================
   PAGINATION LINKS
========================================================= */

.products-pagination .page-numbers a,
.products-pagination .page-numbers span {
    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

    border: 1px solid #ddd;

    background: #fff;

    color: #555;

    font-size: 14px;

    line-height: 1;

    text-decoration: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}


/* =========================================================
   PAGINATION HOVER
========================================================= */

.products-pagination .page-numbers a:hover {
    background: #01c30c;

    border-color: #01c30c;

    color: #fff;
}


/* =========================================================
   CURRENT PAGE
========================================================= */

.products-pagination .page-numbers .current {
    background: #01c30c;

    border-color: #01c30c;

    color: #fff;
}


/* =========================================================
   PREVIOUS / NEXT
========================================================= */

.products-pagination .page-numbers .prev,
.products-pagination .page-numbers .next {
    font-size: 20px;
}


/* =========================================================
   NO PRODUCTS
========================================================= */

.products-no-results {
    width: 100%;

    padding: 70px 20px;

    text-align: center;

    border: 1px solid #eee;

    box-sizing: border-box;
}


.products-no-results h2 {
    margin: 0 0 10px;

    color: #333;

    font-size: 25px;
}


.products-no-results p {
    margin: 0;

    color: #888;

    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .products-page-banner {
        min-height: 260px;
    }

    .products-page-banner h1 {
        font-size: 40px;
    }

    .products-archive-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .products-page-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .products-page-banner {
        min-height: 210px;
    }


    .products-page-banner-container {
        padding: 0 15px;
    }


    .products-page-banner h1 {
        font-size: 32px;
    }


    .products-breadcrumb-section {
        padding: 14px 0;
    }


    .products-breadcrumb {
        font-size: 11px;
    }


    .products-archive-section {
        padding: 45px 0 55px;
    }


    .products-category-section {
        margin-bottom: 35px;
    }


    .products-category-heading h2 {
        font-size: 23px;
    }


    .products-category-list {
        gap: 7px;
    }


    .products-category-item {
        min-width: auto;

        padding: 9px 14px;

        font-size: 11px;
    }


    .products-archive-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .products-archive-image {
        height: 270px;
    }


    .products-pagination {
        margin-top: 40px;
    }


    .products-pagination .page-numbers {
        gap: 4px;
    }


    .products-pagination .page-numbers a,
    .products-pagination .page-numbers span {
        width: 36px;

        height: 36px;

        font-size: 13px;
    }

}

/* =========================================================
   CURRENT CATEGORY TITLE
========================================================= */

.products-current-category-title {
    text-align: center;

    margin: 0 0 30px;
}

.products-current-category-title h2 {
    margin: 0;

    color: #333;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 600;

    text-transform: uppercase;
}

/* =========================================================
   CATEGORY INTRO
========================================================= */

.products-category-intro {
    width: 100%;

    max-width: 900px;

    margin: 0 auto 45px;

    text-align: center;
}


/* =========================================================
   CATEGORY TITLE
========================================================= */

.products-category-intro-title {
    margin: 0 0 18px;

    color: #222;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 600;

    text-transform: uppercase;
        padding-top: 30px;
            padding-bottom: 20px;
}


/* =========================================================
   CATEGORY DESCRIPTION
========================================================= */

.products-category-intro-description {
    color: #777;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 400;
}


.products-category-intro-description p {
    margin: 0 0 10px;
}


.products-category-intro-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 650px) {

    .products-category-intro {
        margin-bottom: 35px;
    }

    .products-category-intro-title {
        font-size: 23px;
        margin-bottom: 14px;
    }

    .products-category-intro-description {
        font-size: 13px;
        line-height: 1.6;
    }

}

section.products-archive-section-tabs {
    padding: 30px 10px;
}