:root {
    --button-shape: polygon(100% 0, 100% 16%, 94% 28%, 0 28%, 0 0);
    --border-color: #F58220; /* Your requested border color */
}
.products-new{
    background: var(--helix-dark);
    padding: 105px 0px 40px 0px;
    position: relative;
}

.product-bg-text{
    font-size: 106px;
    font-style: italic;
    font-weight: 800;
    line-height: 100%;
    text-transform: uppercase;
    color: transparent !important;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(245, 130, 32, 0.20);
    font-family: var(--polymath);
    margin-left: -8px;
    left: -46%;
    top: -40px;
    position: absolute;
}
.products-top p{
    color: #D1D1D4;
}

.products-top-left *{
    color: #fff;
}

.products-top-right{
    padding-left: 80px;
}
.products-top{
    margin-bottom: 30px;
}

/*----- Product Filter -------*/
.products-filter{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-bottom: 34px !important;
}

.mobile-filter-wrapper {
    display: none;
}

.products-filter li a {
    position: relative;
    display: inline-block;
    padding: 11px 21px;
    font-size: 14px;
    font-weight: bold;
    color: var(--helix-orange);
    text-transform: uppercase;
    line-height: normal;
    text-decoration: none !important;
    background-color: var(--helix-orange);
    clip-path: polygon(100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 0);
    transition: var(--transition);
    font-family: var(--polymath);
    letter-spacing: 0.64px;
}
.products-filter li a::before {
    content: "";
    position: absolute;
    inset: 2px;
    background-color: var(--helix-dark);
    z-index: -1;
    clip-path: polygon(100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 0);
    transition: var(--transition);
}
.products-filter li a.active,.products-filter li a:hover{
    color: var(--helix-dark);
}
.products-filter li a.active::before,.products-filter li a:hover::before{
    background-color: var(--helix-orange);
}
.site-content .list-unstyled.products-filter li:not(:last-child){
    margin-right: 16px;
    margin-bottom: 16px;
}
.product-item{
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}
.product-item-image{
    clip-path: polygon(100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0 0);
    height: 283px;
}
.product-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform: scale(1.01);
}
.product-item a:hover .product-item-image img{
    transform: scale(1.1);
}
.product-item-text{
    position: absolute;
    padding: 30px;
    bottom: 0;
    left: 0;
    font-size: 23px;
    line-height: normal;
    font-weight: 800;
    font-family: var(--polymath);
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
}

.product-item-text::after{
    content: "";
    position: absolute;
    display: inline-flex;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px;
    width: 16px;
    height: 16px;
    background-image: url(../images/icon-cta-arrow-white.svg);
    margin-left: 10px;
    margin-top: 1px;
}

.product-item::before{
    content: "";
    position: absolute;
    width: 456px;
    height: 208px;
    border-radius: 456px;
    background: #21252D;
    filter: blur(80px);
    bottom: -91px;
    z-index: 1;
    right: 115px;
}

.products .loading {
    display: none;
    height: 100%;
    background-color: #21252d4f !important;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.products .loading span {
    -webkit-animation: load8 .7s linear infinite;
    animation: load8 .7s linear infinite;
    border: 3px solid #ededed;
    border-left-color: var(--helix-orange);
    border-radius: 100%;
    height: 50px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 30% !important;
    transform: translateX(-50%);
    width: 50px;
    z-index: 999;
}
.row.product-row{
    position: relative;
}
.row.product-row .no-categories{
    padding: 0 15px;
    width: 100%;
}
.row.product-row .no-categories p{
    color: #FFF;
    text-align: center;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}