body {
	font-family: 'Poppins', sans-serif;
	background-color: #f8f9fa;
}

.navbar {
	background-color: #fff;
}

.jumbotron {
	background: linear-gradient(to right, #0d6efd, #6610f2);
}

.btn-custom {
	background: linear-gradient(45deg, #0d6efd, #6610f2);
	border: none;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	transition: 0.3s ease;
}

.btn-custom:hover {
	opacity: 0.9;
	transform: scale(1.05);
}

.product-card {
	border-radius: 1rem;
	transition: all 0.3s ease-in-out;
	background-color: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
	max-height: 300px;
	object-fit: contain;
	padding: 1rem;
	background-color: #fff;
}

.icon-large {
	width: 48px;
	height: 48px;
}

.icon-medium {
	width: 32px;
	height: 32px;
}

footer {
	background: linear-gradient(to right, #0d6efd, #6610f2);
}

footer a:hover {
	color: #ffc107;
}

.fade-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {to { opacity:1;
	transform: translateY(0);
}

}