.hero {
	height: 400px;
	position: relative;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .overlay {
	position: absolute; 
	width: 100%;
	height: 100%;
	display: flex; 
	background-color: rgba(0, 0, 0, 0.4);
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 30px; 
	box-sizing: border-box;
	padding-left: 5%;
	padding-right: 5%;
	box-sizing: border-box;
}

.hero .overlay h1 {
	font-family: "IBM Plex Sans";
	font-size: 30px;
	margin-bottom: 30px;
	line-height: 1.3;
	color: white;
}

.home-section {
	padding-top: 75px; 
	padding-bottom: 75px; 
	border-bottom: 1px rgb(232, 232, 225) solid;
}

main h2 {
	font-family: "IBM Plex Sans"; 
	text-align: center;
	font-size: 25.5px;
	color: black;
	margin-bottom: 50px;
}

.collection-image-container {
	border: 2px #aed651 solid;
	background-color: black;
	width: 100%;
	object-fit: cover; 
	aspect-ratio: 1;
	transition: 0.8s;
}

.collection-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.collection .text {
	color: black;
	text-align: center;
	margin-top: 10px;
	font-size: 16px; 
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: 3.2px; 
	text-transform: uppercase;
}

.product-image-container {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border: 2px #aed651 solid;
}

.product .product-title {
	text-align: center;
	text-transform: uppercase;
	margin-top: 7.5px; 
	margin-bottom: 7.5px;
	font-size: 14px;
	font-weight: 400;
}

.product .product-price {
	display: block; 
	text-align: center;
}

.categories {
	gap: 30px;
}
.category-image-container {
	width: 100%;
	object-fit: cover; 
	aspect-ratio: 1;
	border: 2px #aed651 solid;
}
.category-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.category .title {
	font-size: 16px; 
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 2.56px; 
	color: black;
	margin-top: 7.5px;
}

@media screen and (max-width: 480px) {   
	.home-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	
	main h2 {
		margin-top: 0;
		margin-bottom: 30px;
	}
	
	.collection .text {
		font-size: 14px;
	}
	.category .title {
		font-size: 14px;
	}
}