/* =========================================================
   NOVAEL — SHOP / PRODUCT ARCHIVES
========================================================= */

.novael-shop-shell {
    width: 100%;
    min-height: 70vh;

    padding:
        58px
        var(--page-x)
        110px;

    background: var(--bg);
}

.novael-shop-shell .woocommerce {
    width: 100%;
    max-width: 1540px;

    margin: 0 auto;
}


/* =========================================================
   ARCHIVE HEADER
========================================================= */

.woocommerce-products-header {
    padding-bottom: 42px;
}

.woocommerce-products-header__title {
    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(52px, 5.4vw, 86px);
    font-weight: 400;

    line-height: .9;
    letter-spacing: -.045em;
}

.term-description {
    max-width: 530px;

    margin-top: 20px;

    color: var(--muted);

    font-family: var(--font-display);
    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   CATEGORY NAV
========================================================= */

.novael-shop-nav {
    clear: both;

    width: 100%;

    display: flex;
    align-items: center;

    gap: 32px;

    margin-bottom: 18px;
    padding-bottom: 17px;

    border-bottom: 1px solid rgba(17,17,15,.16);

    overflow-x: auto;
    scrollbar-width: none;
}

.novael-shop-nav::-webkit-scrollbar {
    display: none;
}

.novael-shop-nav__item {
    position: relative;

    flex: 0 0 auto;

    padding-bottom: 7px;

    color: rgba(17,17,15,.52);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .11em;

    text-decoration: none;

    transition: color .2s ease;
}

.novael-shop-nav__item:hover,
.novael-shop-nav__item.is-active {
    color: var(--text);
}

.novael-shop-nav__item::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: -15px;

    height: 1px;

    background: var(--text);

    transition: right .25s ease;
}

.novael-shop-nav__item.is-active::after {
    right: 0;
}


/* =========================================================
   TOOLBAR
========================================================= */

.woocommerce-result-count {
    float: left;

    margin: 0 0 28px !important;

    color: rgba(17,17,15,.52);

    font-size: 7px;
    font-weight: 700;

    line-height: 34px;
    letter-spacing: .13em;

    text-transform: uppercase;
}

.woocommerce-ordering {
    float: right;

    margin: 0 0 30px !important;
}

.woocommerce-ordering select {
    height: 34px;

    min-width: 160px;

    padding:
        0
        24px
        0
        0;

    border: 0;
    border-radius: 0;

    background-color: transparent;

    color: var(--text);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

    outline: none;
    cursor: pointer;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.novael-shop-shell ul.products {
    clear: both;

    width: 100%;

    display: grid !important;
    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap:
        48px
        12px;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.novael-shop-shell ul.products::before,
.novael-shop-shell ul.products::after {
    display: none !important;
}

.novael-shop-shell ul.products li.product {
    float: none !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   PAGINATION
========================================================= */

.woocommerce-pagination {
    clear: both;

    margin-top: 78px;
}

.woocommerce-pagination ul {
    display: flex !important;
    justify-content: center;
    align-items: center;

    gap: 7px;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}

.woocommerce-pagination ul li {
    border: 0 !important;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    width: 36px;
    height: 36px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 0 !important;

    border: 1px solid rgba(17,17,15,.16);

    background: transparent !important;
    color: var(--text) !important;

    font-size: 8px;
    font-weight: 600;
}

.woocommerce-pagination .current {
    border-color: var(--text);

    background: var(--text) !important;
    color: #fff !important;
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (min-width: 768px) and (max-width: 1180px) {

    .novael-shop-shell ul.products {
        grid-template-columns:
            repeat(4, minmax(0,1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .novael-shop-shell {
        padding:
            16px
            9px
            65px;
    }

    .woocommerce-products-header {
        padding:
            0
            4px
            15px;
    }

    .woocommerce-products-header__title {
        font-family: Arial, Helvetica, sans-serif;

        font-size: 24px;
        font-weight: 700;

        line-height: 1;
        letter-spacing: -.025em;
    }

    .term-description {
        max-width: 90%;

        margin-top: 12px;

        font-family: Arial, Helvetica, sans-serif;

        font-size: 10px;
        line-height: 1.5;
    }


    /* Category navigation */

    .novael-shop-nav {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        gap: 20px;

        margin-bottom: 12px;

        padding:
            0
            4px
            11px;

        overflow-x: visible;

        scroll-padding-left: 4px;
    }

    .novael-shop-nav__item {
        flex: 0 0 auto;

        font-size: 9px;
        font-weight: 700;

        line-height: 1;
        letter-spacing: .045em;

        white-space: nowrap;
    }

    .novael-shop-nav__item::after {
        bottom: -13px;
    }


    /* Toolbar */

    .woocommerce-result-count {
        margin:
            0
            0
            13px
            4px !important;

        font-size: 7px;

        line-height: 28px;
    }

    .woocommerce-ordering {
        margin:
            0
            4px
            13px
            0 !important;
    }

    .woocommerce-ordering select {
        height: 28px;

        min-width: 130px;

        font-size: 7px;
    }


    /* Grid */

    .novael-shop-shell ul.products {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap:
            34px
            6px;
    }


    /* Pagination */

    .woocommerce-pagination {
        margin-top: 52px;
    }

}
