#bar {
	position: fixed;
	top: 0;
	width: 100%;
}

body {
	padding-top: 50px;
	font-family: Poppins;
}

h2 {
	margin-inline: 25px;
	margin-top: 25px;
}

#brand-name {
	font-family: Saira;
	font-weight: bolder;
	font-size: 20px;
	text-decoration: none;
}

#welcome-banner {
	width: 100%;
	height: 60vh;
	background-color: #080808;
}

#welcome-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}

.product-grid {
	margin: 25px;

	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
	
	justify-items: center;

	padding: 15px; 

	align-items: center;

}

.product {
	width: 250px;
	height: 315px;
	margin-bottom: 15px;

	color: black;

	background-color: #FFFFFF;

	box-shadow: 0px 0px 4px #BBBBBB;

	border-radius: 10px;
}

.product:hover {
	box-shadow: 0px 0px 4px #080808;
	-webkit-transition: all .1s ease;
	transition: all .1s ease;
}

.product-img {
	width: 92%;
	aspect-ratio: 1/1;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}

.product-det {
	width: 92%;
	margin: auto;
}

.product-title {
	font-weight: light;
	font-size: 18px;
}

.product-price {
	font-weight: bold;
}

.filter-bar {
	display: flex;
	justify-items: left;
	padding-inline: 25px;
}

.filter {
	margin-top: 0;
	min-width: 60px;
	text-align: center;
	background-color: #EEEEEE;
	padding-inline: 8px;
	border-radius: 10px;
	margin-right: 10px;

	box-shadow: 0px 0px 4px #BBBBBB;
}

.filter-selected {
	color: white;
	background-color: #080808;
}


@media (max-width: 450px) {
	h2 {
		text-align: center;
	}

	.filter-bar {
		display: flex;
		justify-items: center;
		padding-inline: 25px;
	}
}