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

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

h2 {
	margin: 25px;
}

#brand-name {
	font-family: "Noto Serif Khojki";
	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;
}