/* Homepage */
.lithea-page-home {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	box-shadow: none;
}
.content-body--home {
	padding-top: 0;
}


/* Homepage headings */
.homepage-section-h-wrapper {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
	margin: 50px 0 25px 0;
	text-wrap: balance;
}
.homepage-section-h-wrapper h2 {
	flex-shrink: 0;
	max-width: 100%;
	text-align: center;
	text-wrap: balance;
	margin: 0;
	padding: 0;
	line-height: normal;
	color: hsl(208, 50%, 30%);
	font-size: 30px;
	position: relative;
	top: -3px; /* Adjustment for Literata font */
}
.homepage-section-h-wrapper span {
	flex-shrink: 1;
	display: block;
	height: 1px;
	width: 100%;
	background: rgba(0,0,0,0.5);
}


/* Homepage brands */
.homepage-brands-carousel {
}
.homepage-brands-carousel-anchor {
	display: block;
	width: 160px;
	height: 160px;
	margin: 0 20px;
}
.homepage-brands-carousel-anchor img {
	display: block;
	width: 100%;
	height: auto;
	filter: grayscale(100%) opacity(60%);
	transition: all ease 0.2s;
}
.homepage-brands-carousel-anchor:hover img {
	filter: grayscale(0) opacity(100%);
}


/* Homepage carousel */
.homepage-carousel {
	margin: 15px 0;
	border-radius: var(--border-radius-normal);
	overflow: hidden;
	box-shadow: var(--floating-wrapper-shadow);
}

/* Homepage H1 */
.homepage-h1 {
	text-align: center;
	margin: 30px 0;
}
.homepage-h1 h1 {
	border: none;
}

/* Homepage categories */
.homepage-category-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7.5px;
}
.homepage-category-wrapper {
	display: block;
	width: 33.33%;
	padding: 7.5px;
}
.homepage-category-inner { /* a */
	border-radius: var(--border-radius-small);
	padding: var(--padding-small);
	display: flex;
	gap: 15px;
	align-items: center;
	overflow: hidden;
	color: #555;
	background: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: all ease 0.25s;
}
.homepage-category-inner:hover, .homepage-category-inner:active, .homepage-category-inner:focus {
	color: #333;
	text-decoration: none;
	background: #fff;
}
.homepage-category-image {
	width: 25%;
	max-width: 100px;
	aspect-ratio: 1/1;
	flex-shrink: 0;
	padding: 5px;
	background: #fff;
}
.homepage-category-image img {
	display: block;
	width: 100%;
	height: auto;
}
.homepage-category-text {
	font-size: 15px;
}
@media (max-width: 959px) {
	.homepage-category-wrapper {
		width: 50%;
	}
}
@media (max-width: 639px) {
	.homepage-category-wrapper {
		width: 100%;
	}
}
