/* .shortcode-archive-products-wrapper{

	display: grid;

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

    gap: 30px;
} */

.home-shortcode-archive-products-wrapper{
		display: grid;

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

    gap: 30px;
}

.home-shortcode-archive-products-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px){
    .home-shortcode-archive-products-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px){
    .home-shortcode-archive-products-wrapper{
        grid-template-columns: 1fr;
    }
}

.shortcode-archive-category-card{
/* 	 border: 1px solid #2357c3; */
     
/* 	width:25%; */
	
    border-radius: 20px;

    overflow: hidden;

    text-decoration: none;

    transition: 0.3s ease;

    background: #ffffff;

    box-sizing: border-box;
}

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

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

.home-archive-category-image{
	 width: 100%;
    height: 350px;
    border-bottom: 1px solid #FF9500;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.home-archive-category-image img{
	object-fit:cover !important;
	transition: 0.4s ease !important;
	width:100%;
	height:100%;
	
}

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


.shortcode-archive-category-card h2{
	color:black;
	font-size:18px;
	line-height: 25.2px;
	margin-bottom:0px !important;
}
.shortcode-archive-category-content{
	padding:10px;
	text-align:center;
    display:flex !important;
	align-items:center;
	justify-content:center;
}