* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background-color: #ffffff;
	color: #333;
	line-height: 1.6;
}

header, section, footer {
	padding: 60px 20px;
	max-width: 1200px;
	margin: auto;
}

header {
	text-align: center;
	background: #efefef36;
	border-radius: 20px;
	border: 1px solid #b5b3b36b;
	margin-top: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header h1 {
	font-size: 2.5rem;
	color: #444;
	margin-bottom: 20px;
}

header h2 {
	font-size: 1.5rem;
	color: #666;
	margin-bottom: 20px;
}

footer {
    background: #efefef36;
    padding: 20px;
    color: #444;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #b5b3b36b;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 1px solid #b5b3b36b;
    margin: 20px 0;
}

.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.product-card {
	border-radius: 20px;
	background: #efefef36;
	margin: 20px 0;
	padding: 20px;
	border-radius: 20px;
	border: 1px solid #b5b3b36b;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transform-style: preserve-3d;
}

.product-card:hover {
	transform: scale(1.05) rotateX(5deg) rotateY(5deg);
}


.product-card img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 15px;
	max-width: 100%;
	max-height: 300px;
	object-fit: contain;
}

.product-card h3 {
	font-size: 1.25rem;
	color: #333;
	margin-bottom: 10px;
}

.product-card p {
	font-size: 1rem;
	color: #666;
	margin-bottom: 15px;
}

category-items {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: space-between;
}

category-items > * {
	flex: 1 1 calc(50% - 1.5rem);
	max-width: calc(50% - 1.5rem);
}

@media (max-width: 768px) {
	category-items > * {
		flex: 1 1 100%;
		max-width: 100%;
	}

	category-items > *:nth-child(n+4) {
		margin-top: 1.5rem;
	}
}

.product-price {
	font-size: 1.2rem;
	color: #28a745!important;
	font-weight: bold;
	margin-bottom: 10px;
}

.buy-button {
	background: #28a745;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

.buy-button:hover {
	background: #218838;
}