/* HOME SECTION START */

.home-section{
	margin-bottom: 50px;
}

.home-section .home-section-title{
	margin-bottom: 50px;
}

/*
On mobile devices the focus should be on categories so move featured
products section below categories
*/
@media screen and (max-width: 955px) {
	.home-sections-wrapper{
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}

	.featured-products-home-section{
		order: 1;
	}
}

/* HOME SECTION END */

/* HOME CATEGORY LIST START */

@media screen and (min-width: 576px) {
	.home-category-list{
		display: grid;
	}
}

@media screen and (max-width: 576px) {
	.home-category-list a{
		margin-bottom: 24px;
	}
}

.home-category-list{
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	grid-template-rows: auto;
	width: 100%;
}

@media screen and (max-width: 955px) {
    .home-category-list{
        grid-template-columns: repeat(2, 1fr) !important;
        grid-column-gap: 24px !important;
        grid-row-gap: 24px !important;
    }
}

.home-category-list a{
	text-decoration: none;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
}

.home-category-list .inner{
	min-height: 140px;
	width: 100%;
    border-radius: var(--global-radius-md);
    padding: 32px 16px;
    text-align: center;
	background-color: #FFFFFF;
}

.home-category-list a:hover .inner{
	border-color: rgba(13,110,253,0.4);
}

.home-category-list .home-category-name{
	font-size: 24px;
	line-height: 1.2;
	text-transform: none;
	text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    /* Need to hard code below since color will be same on light/dark mode */
    color: #212529;
}

.home-category-list .home-category-name .icon{
	transition: left .2s ease-in;
	position: relative;
	left: -3px;
	top: -1px;
	margin-left: 5px;
}

.home-category-list a:hover .home-category-name .icon{
	left: 1px;
}

.home-category-list a:hover .home-category-name{
	color: inherit;
}

.home-category-list .home-category-description{
	margin-top: 16px;
	color: rgba(0,0,0,0.5);
}

.home-category-list .home-category-style-1 .inner{
	background-color: #c9dce1;
	color: #365f91;
}
.home-category-list .home-category-style-2 .inner{
	background-color: #c0e1cc;
	color: #38805c;
}
.home-category-list .home-category-style-3 .inner{
	background-color: #ead16b;
	color: #8e6906;
}
.home-category-list .home-category-style-4 .inner{
	background-color: #e8daa8;
	color: #a67d2c;
}
.home-category-list .home-category-style-5 .inner{
	background-color: #f8dcdc;
	color: #d77686;
}
.home-category-list .home-category-style-6 .inner{
	background-color: #f9c5cb;
	color: #c34c62;
}
.home-category-list .home-category-style-7 .inner{
	background-color: #f9ad9c;
	color: #d32e17;
}
.home-category-list .home-category-style-8 .inner{
	background-color: #dddcea;
	color: #5b5b97;
}

/* HOME CATEGORY LIST END */