* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Helvetica Neue", Arial, sans-serif;
	background-color: #f9f9f9;
	color: #222;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	opacity: 0;
	transition: opacity 1s ease-in;
}

.navbar {
	margin-top: 20px;
}

.navbar ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.navbar a {
	text-decoration: none;
	color: #222;
	font-weight: 500;
	transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar a:hover {
	color: #555;
}

.hero {
	text-align: center;
	margin: 60px 20px 40px;
}

.hero h1 {
	font-size: 3rem;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.hero p {
	font-size: 1.2rem;
	color: #555;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1000px;
	margin-bottom: 60px;
}

.product {
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.product img {
	width: 100%;
	border-radius: 10px;
	display: block;
	transition: transform 0.3s ease;
}

.product img:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product h2 {
	margin-top: 10px;
	font-size: 1.1rem;
}

footer {
	text-align: center;
	padding: 20px;
	color: #777;
}

@media (max-width:768px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.navbar a.active {
	border-bottom: 2px solid #222;
	padding-bottom: 4px;
}

.page-header {
	text-align: center;
	margin: 60px 20px 40px;
}

.page-header h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.contact-form {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 80px;
}

.contact-form form {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 500px;
	gap: 1rem;
}

.contact-form input,
.contact-form textarea {
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 1rem;
}

.contact-form button {
	background-color: #222;
	color: #fff;
	padding: 10px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.contact-form button:hover {
	background-color: #444;
}

.collection-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto 60px;
	text-align: center;
}

.collection img {
	width: 100%;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.collection img:hover {
	transform: scale(1.05);
}

body.loaded {
	opacity: 1;
}

.product.hovered {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product:hover img {
	transform: scale(1.05);
}

