
.availability span[style*="#009901"],
.availability span[style*="rgb(0, 153, 1)"] {
	color: #02835e !important;
	font-weight: 600
}

.availability span:not([style]) {
	color: #2b2f33 !important;
	font-weight: 600
}

.home-categories {
	margin: 40px 0 10px;
	width: 100%
}

.cat-wrap {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0 10px;
	text-align: center
}

.cat-title {
	font-size: 32px;
	margin-bottom: 25px
}

.cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.cat-card {
	display: block;
	/*background: #fafafa;*/
	overflow: hidden;
	text-decoration: none;
	color: #111;
	transition: .25s
}

.cat-card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block
}

.cat-name {
	padding: 18px 10px 20px;
	font-weight: 600;
	font-size: 17px
}

.cat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .12)
}

@media(max-width:1000px) {
	.cat-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.cat-card img {
		height: 260px
	}
}

@media(max-width:600px) {
	.cat-grid {
		grid-template-columns: 1fr
	}

	.cat-card img {
		height: 240px
	}
}

@media(min-width:1200px) {
	.content-inner {
		max-width: 1000px
	}
}