.shopMain {
    display: flex;
    max-width: 100%;
    flex-direction: row;
    padding: 0 16px 0 0 !important;
    gap: 16px;
    position: static !important
}

.shopSidebar {
    max-width: calc(16% - 8px);
    width: 100%;
    min-width: 250px;
    background-color: var(--wp--preset--color--custom-accent);
    transition: 400ms ease-in-out;
}

.shopSidebarInner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 160px 16px 80px 16px !important;
}


/*CARD GRID*/
.shopGrid {
    max-width: calc(84% - 8px);
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 160px 0 80px 0 !important;
    margin: 0  !important;
}

.prodTemp {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
}

.prodTemp > .wc-block-product {
    display: flex;
    max-width: calc(25% - 12px);
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    box-shadow: 0 0 10px 0 #0D101433;
    border-radius: 20px;
    overflow: hidden;
}

.prodCardTopImg {
    margin: 0;
    width: 100%;
}

.prodCardTopImg a {
    display: block;
    width: 100%;
}

.prodCardTopImg img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 8 / 5;
}

.prodCardBottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 20px;
    gap: 30px;
    flex: 1;
}

.cartBtn {
    margin: auto 0 0 0 !important;
}

.cartBtn .wp-block-button__link {
    padding: 15px 20px;
    width: 100% !important;
    transition: 400ms ease-in-out;
}

.cartBtn .wp-block-button__link span {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    transition: 400ms ease-in-out;
}

.cartBtn .wp-block-button__link:hover {
    background-color: var(--wp--preset--color--custom-accent);
}

.cartBtn .wp-block-button__link:hover span {
    color: var(--wp--preset--color--custom-accent-3);
}

/*SIDEBAR*/
.prodSearch {
    max-width: 100%;
}

.prodSearch .aws-search-label {
    color: var(--wp--preset--color--custom-contrast);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.65;
}

.prodSearch .aws-search-field {
    border: 2px solid var(--wp--preset--color--custom-base-2) !important;
    border-radius: 10px;
    padding: 13px 18px;
    outline: none !important;
    color: var(--wp--preset--color--custom-contrast);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.65;
}

.prodSearch .aws-search-field::placeholder {
    color: var(--wp--preset--color--custom-contrast);
    opacity: 0.5;
}

.shopSidebar .wp-block-woocommerce-product-filter-price {
    padding: 0 10px;
}

/*SIDEBAR TOGGLER*/
.shopSidebarBtnWrap .wp-block-button__link {
    position: absolute;
    top: 45%;
    right: 0;
    transform: translateX(100%);
    border-radius: 0 40px 40px 0 !important;
    height: 60px !important;
    border: none !important;
    outline: none !important;
    background-color: var(--wp--preset--color--custom-accent) !important;
    transition: 400ms ease-in-out !important;
}

.shopSidebarBtnWrap .wp-block-button__link:hover {
    background-color: var(--wp--preset--color--custom-accent-2) !important;
}

.shopSidebarBtnWrap .wp-block-button__link svg {
    transition: 300ms ease-in-out;
}

.shopSidebarBtnWrap .wp-block-button__link[aria-expanded="true"] svg {
    transform: scaleX(-1);
}

/*SIDEBAR COLLAPSE KILL*/
:where(.wc-block-product-filters) .wc-block-product-filters__overlay, :where(.wc-block-product-filters).is-overlay-opened .wc-block-product-filters__overlay {
    background: inherit !important;
    color: inherit !important;
    inset: 0 !important;
    pointer-events: auto !important;
    position: relative !important;
    transition: none !important;
}

:where(.wc-block-product-filters) .wc-block-product-filters__overlay-dialog, :where(.wc-block-product-filters).is-overlay-opened .wc-block-product-filters__overlay-dialog {
    background: inherit !important;
    color: inherit !important;
    position: relative !important;
    transform: none !important;
}

.shopSidebar .wc-block-product-filters__open-overlay {
    display: none !important;
}

.shopSidebar .wc-block-product-filters__overlay-content {
    padding: 0 !important;
}

.wc-block-product-filters__overlay-header {
    display: none !important;
}

.wc-block-product-filters__overlay-footer {
    display: none !important;
}

@media (max-width: 1499.98px) {
    .prodTemp > .wc-block-product {
        max-width: calc((100% / 3) - 16px);
    }
}

@media (max-width: 1199.98px) {
    .prodTemp > .wc-block-product {
        max-width: calc(50% - 8px);
    }
}

@media (min-width: 850px) {
    .shopSidebarBtnWrap {
        display: none !important;
    }
}

@media (max-width: 849.98px) {
    .shopSidebar {
        position: fixed;
        left: 0;
        top: 0;
        max-width: 250px !important;
        transform: translateX(-100%);
        overflow: visible;
        z-index: 10 !important;
        height: 100% !important;
    }

    .shopSidebarInner {
        overflow: auto !important;
        flex-wrap: nowrap !important;
    }

    .shopSidebarOpen {
        transform: translateX(0);
    }

    .shopMain {
        padding: 0 16px !important;
    }

    .shopGrid {
        max-width: 100%;
    }
}

@media (max-width: 671.98px) {
    .shopGrid {
        padding-top: 240px !important;
    }
}

@media (max-width: 499.98px) {
    .prodCardBottom {
        padding: 20px 10px !important;
    }

    .cartBtn .wp-block-button__link span {
        font-size: 16px !important;
    }
}