:root{
	--az-blue:#123B73;
	--az-green:#1B8F3A;
	--az-green-dark:#146C2D;
	--az-text:#263238;
	--az-muted:#667085;
	--az-border:#DDE7E1;
	--az-soft:#F7FBF8;
	--az-white:#FFFFFF;
}

.az-category-products{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	color:var(--az-text);
}

.az-category-products *,
.az-category-products *::before,
.az-category-products *::after{
	box-sizing:border-box;
}

.az-category-products__intro{
	text-align:center;
	margin:0 0 34px;
}

.az-category-products__eyebrow{
	display:block;
	margin-bottom:6px;
	color:var(--az-green);
	font-size:14px;
	font-weight:600;
}

.az-category-products__intro h2{
	margin:0;
	color:var(--az-blue);
	font-size:34px;
	line-height:1.25;
	font-weight:700;
}

.az-category-products__intro p{
	margin:8px 0 0;
	color:var(--az-muted);
	font-size:16px;
}

.az-category-products__sections{
	display:grid;
	gap:28px;
}

.az-product-section{
	padding:22px;
	border:1px solid var(--az-border);
	border-radius:16px;
	background:#fff;
	box-shadow:0 8px 30px rgba(18,59,115,.06);
	overflow:hidden;
}

.az-product-section__header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
	margin-bottom:18px;
}

.az-product-section__heading-wrap{
	display:flex;
	align-items:center;
	gap:14px;
	min-width:0;
}

.az-product-section__icon{
	display:flex;
	align-items:center;
	justify-content:center;
	flex:0 0 52px;
	width:52px;
	height:52px;
	border-radius:12px;
	background:#F1F9F3;
	color:var(--az-green);
}

.az-product-section__icon svg{
	width:28px;
	height:28px;
}

.az-product-section__header h3{
	margin:0 0 4px;
	color:var(--az-blue);
	font-size:23px;
	line-height:1.3;
	font-weight:700;
}

.az-product-section__header p{
	margin:0;
	color:var(--az-muted);
	font-size:14px;
	line-height:1.55;
}

.az-product-section__view-all{
	display:inline-flex;
	align-items:center;
	gap:7px;
	flex:0 0 auto;
	color:var(--az-green);
	font-size:14px;
	font-weight:600;
	text-decoration:none!important;
}

.az-product-section__view-all:hover{
	color:var(--az-green-dark);
}

.az-carousel-wrap{
	position:relative;
}

.az-product-carousel{
	display:flex;
	gap:16px;
	overflow-x:auto;
	scroll-behavior:smooth;
	scroll-snap-type:x mandatory;
	scrollbar-width:none;
	-ms-overflow-style:none;
	padding:2px;
}

.az-product-carousel::-webkit-scrollbar{
	display:none;
}

.az-product-card{
	flex:0 0 calc((100% - 48px)/4);
	min-width:0;
	scroll-snap-align:start;
	border:1px solid var(--az-border);
	border-radius:12px;
	background:#fff;
	overflow:hidden;
	transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.az-product-card:hover{
	transform:translateY(-3px);
	border-color:#CFE2D3;
	box-shadow:0 10px 26px rgba(18,59,115,.10);
}

.az-product-card__image-link{
	display:block;
	text-decoration:none!important;
}

.az-product-card__image{
	display:flex;
	align-items:center;
	justify-content:center;
	height:225px;
	padding:12px;
	background:#fff;
	overflow:hidden;
}

.az-product-card__image img{
	display:block;
	width:100%!important;
	height:100%!important;
	margin:0;
	object-fit:contain!important;
	object-position:center center!important;
}

.az-product-card__body{
	padding:13px 14px 15px;
	text-align:center;
}

.az-product-card__body h4{
	margin:0 0 12px;
	font-size:16px;
	font-weight:600;
	line-height:1.45;
}

.az-product-card__body h4 a{
	color:var(--az-text);
	text-decoration:none!important;
}

.az-product-card__body h4 a:hover{
	color:var(--az-green);
}

.az-product-card__button{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:36px;
	padding:7px 16px;
	border-radius:999px;
	background:var(--az-green);
	color:#fff!important;
	font-size:13px;
	font-weight:600;
	text-decoration:none!important;
}

.az-product-card__button:hover{
	background:var(--az-green-dark);
}

.az-category-products .az-carousel-arrow{
	position:absolute;
	top:50%;
	z-index:5;
	display:flex!important;
	align-items:center!important;
	justify-content:center!important;
	width:38px!important;
	height:38px!important;
	min-width:38px!important;
	padding:0!important;
	margin:0;
	border:1px solid var(--az-green)!important;
	border-radius:50%!important;
	background:#fff!important;
	color:var(--az-green)!important;
	font-size:24px!important;
	line-height:1!important;
	cursor:pointer;
	box-shadow:0 4px 14px rgba(18,59,115,.10)!important;
	transform:translateY(-50%);
	transition:all .25s ease!important;
}

.az-category-products .az-carousel-arrow:hover,
.az-category-products .az-carousel-arrow:focus{
	background:var(--az-green)!important;
	border-color:var(--az-green)!important;
	color:#fff!important;
	transform:translateY(-50%) scale(1.06)!important;
	box-shadow:0 7px 18px rgba(27,143,58,.20)!important;
}

.az-carousel-prev{left:-13px}
.az-carousel-next{right:-13px}

@media(max-width:1024px){
	.az-product-card{
		flex-basis:calc((100% - 32px)/3);
	}
	.az-product-card__image{
		height:210px;
	}
}

@media(max-width:767px){
	.az-category-products__intro{
		text-align:left;
		margin-bottom:24px;
	}

	.az-category-products__intro h2{
		font-size:28px;
	}

	.az-category-products__intro p{
		font-size:14px;
	}

	.az-category-products__sections{
		gap:20px;
	}

	.az-product-section{
		padding:16px 12px 15px;
		border-radius:12px;
	}

	.az-product-section__header{
		align-items:flex-start;
		margin-bottom:14px;
	}

	.az-product-section__heading-wrap{
		gap:10px;
	}

	.az-product-section__icon{
		flex-basis:42px;
		width:42px;
		height:42px;
	}

	.az-product-section__icon svg{
		width:23px;
		height:23px;
	}

	.az-product-section__header h3{
		font-size:18px;
	}

	.az-product-section__header p{
		font-size:12px;
	}

	.az-product-section__view-all{
		font-size:12px;
	}

	.az-product-carousel{
		gap:10px;
	}

	.az-product-card{
		flex-basis:calc((100% - 10px)/2);
	}

	.az-product-card__image{
		height:170px;
		padding:8px;
	}

	.az-product-card__body{
		padding:10px 8px 12px;
	}

	.az-product-card__body h4{
		font-size:14px;
		margin-bottom:9px;
	}

	.az-product-card__button{
		min-height:32px;
		padding:6px 12px;
		font-size:12px;
	}

	.az-carousel-arrow{
		display:none!important;
	}
}
