.archive-products-page{
    padding: 80px 20px;
}

.archive-products-inner{
    width: 100%;
    max-width: 1272px;

    margin-inline: auto;
}

.archive-products-title{
    font-size: 36px !important;
    border-bottom: 2px solid #FF9500;
	width:max-content;
    line-height: 120% !important;

    margin-bottom: 20px;
}

.archive-products-wrapper{
/*     display: flex;

    flex-wrap: wrap;

    gap: 30px; */
	
		display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(290px, 1fr)
    );

    gap: 30px;
	
/* 	height:360px !important; */
}

/* breadcumbs bottom line */
/* .ndapl-product-breadcrumb {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
    margin-bottom: 45px;
    padding-bottom: 12px;
    width: fit-content;
    border-bottom: 2px solid #FF9500;
} */

/* .ndapl-product-breadcrumb::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 130px;
    height: 2px;
    background: #FF9500;
    border-radius: 10px;
} */

/* .ndapl-product-breadcrumb a,
.ndapl-product-breadcrumb .ndapl-current{
    font-family: "Jost", Sans-serif !important;
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 500;
    color: #1E1E1E;
    text-decoration: none;
    transition: .3s;
}

.ndapl-product-breadcrumb a:hover{
    color: #0F32C2;
}

.ndapl-product-breadcrumb .ndapl-separator{
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 600;
    margin: 0 2px;
}

.ndapl-product-breadcrumb .ndapl-current{
    color: #1E1E1E;
}
 */
/* Mobile */

/* @media (max-width:767px){

    .ndapl-product-breadcrumb{
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .ndapl-product-breadcrumb::after{
        width: 130px;
    }

    .ndapl-product-breadcrumb a,
    .ndapl-product-breadcrumb .ndapl-current,
    .ndapl-product-breadcrumb .ndapl-separator{
        font-size: 14px !important;
    }

}
 */
/*
=====================================
CATEGORY CARD
=====================================
*/

.archive-category-card{
    border-radius: 20px;
	
/* 	width:max-content !important; */

    overflow: hidden;

    text-decoration: none;

    transition: 0.3s ease;

    background: #ffffff;

    box-sizing: border-box;
}

.archive-category-card:hover{
    transform: translateY(-6px);

    box-shadow: 0px 12px 30px rgba(0,0,0,0.08);
}

/*
=====================================
IMAGE
=====================================
*/

.archive-category-image{
    width: 100%;
   border-bottom: 1px solid #FF9500;
    aspect-ratio: 1 / 1;

    overflow: hidden;
}

.archive-category-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.4s ease;
}

.archive-category-card:hover .archive-category-image img{
    transform: scale(1.05);
}

/*
=====================================
CONTENT
=====================================
*/

.archive-category-content{
    padding: 24px;
	display:flex !important;
	align-items:center;
	justify-content:center;
}

.archive-category-content h2{
   text-align:center;
	color: #2357c3;
	font-size:18px;
	line-height: 25.2px;
}

.archive-category-content p{
    text-align:center;
}

/*
=====================================
RESPONSIVE
=====================================
*/

@media(max-width:1024px){

/*     .archive-category-card{
        width: calc(50% - 15px);
    } */

}

@media(max-width:560px){

/*     .archive-category-card{
        width: 100%;
    } */

}