/* Mobile-first responsive eCommerce styles */

body {
	margin: 0;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #f4f6fb;
	color: #232946;
}
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1rem;
}
header {
	background: linear-gradient(90deg, #232946 60%, #eebbc3 100%);
	color: #fff;
	padding: 1.5rem 0 1rem 0;
	text-align: center;
	box-shadow: 0 2px 8px #0002;
	border-bottom-left-radius: 18px;
	border-bottom-right-radius: 18px;
}
nav {
	background: #fff;
	padding: 0.7rem 0;
	text-align: center;
	box-shadow: 0 2px 8px #0001;
	position: sticky;
	top: 0;
	z-index: 100;
}
nav .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
nav a {
	color: #232946;
	margin: 0 0.7rem;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.08rem;
	padding: 0.45em 0.9em;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
	background: #eebbc3;
	color: #232946;
	text-decoration: none;
}
footer {
	background: #232946;
	color: #fff;
	text-align: center;
	padding: 2rem 0 1.2rem 0;
	position: relative;
	width: 100%;
	bottom: 0;
	font-size: 1.05rem;
	margin-top: 2rem;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
	box-shadow: 0 -2px 8px #0001;
}
.footer-links {
	margin-bottom: 0.5rem;
}
.footer-links a {
	color: #eebbc3;
	margin: 0 0.5rem;
	text-decoration: none;
	font-size: 1.1rem;
}
.footer-links a:hover {
	color: #232946;
}
.intro-animation {
	width: 100%;
	height: 160px;
	background: linear-gradient(90deg, #eebbc3, #232946);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: slideDown 1s ease;
	color: #232946;
	font-size: 2.1rem;
	font-weight: bold;
	margin-bottom: 2rem;
	border-radius: 0 0 16px 16px;
	box-shadow: 0 2px 8px #eebbc366;
}
@keyframes slideDown {
	from { transform: translateY(-100%); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
.main-content {
	min-height: 60vh;
	padding: 1.5rem 1.2rem;
	background: #fff;
	margin-bottom: 3rem;
	border-radius: 14px;
	box-shadow: 0 2px 12px #23294611;
}
.featured-banner {
	background: linear-gradient(90deg, #eebbc3 60%, #232946 100%);
	color: #232946;
	padding: 2.2rem 1.2rem;
	border-radius: 16px;
	margin-bottom: 2.2rem;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	box-shadow: 0 2px 16px #eebbc366;
}
.product-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 2rem;
}
.product-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px #eebbc366;
	width: 230px;
	padding: 1.3rem 1rem 1.7rem 1rem;
	text-align: center;
	transition: box-shadow 0.2s, transform 0.2s;
	position: relative;
	overflow: hidden;
}
.product-card:hover {
	box-shadow: 0 10px 32px #eebbc366;
	transform: translateY(-8px) scale(1.04);
}
.product-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 0.8rem;
	box-shadow: 0 2px 8px #23294611;
}
.product-card h3 {
	margin: 0.6rem 0 0.25rem 0;
	font-size: 1.18rem;
}
.product-card p {
	margin: 0.2rem 0 0.8rem 0;
	color: #eebbc3;
	font-weight: bold;
}
.badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #eebbc3;
	color: #232946;
	padding: 0.22em 0.8em;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 700;
	box-shadow: 0 2px 8px #23294611;
}
button {
	background: linear-gradient(90deg, #232946, #eebbc3);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.8em 1.3em;
	font-size: 1.05rem;
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s;
	font-weight: 700;
	box-shadow: 0 2px 8px #eebbc366;
}
button:hover, button:focus {
	background: linear-gradient(90deg, #eebbc3, #232946);
	color: #232946;
	box-shadow: 0 4px 16px #eebbc366;
}
form input, form button {
	font-size: 1rem;
	border-radius: 6px;
	border: 1px solid #ccc;
	margin-bottom: 12px;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
}
form button {
	background: linear-gradient(90deg, #232946, #eebbc3);
	color: #fff;
	border: none;
	font-weight: bold;
}
form button:hover {
	background: linear-gradient(90deg, #eebbc3, #232946);
	color: #232946;
}
@media (max-width: 800px) {
	.container { max-width: 98vw; }
	.product-list { gap: 1rem; }
	.product-card { width: 48vw; min-width: 160px; }
}
@media (max-width: 600px) {
	.container { padding: 0 0.3rem; }
	.main-content { padding: 0.7rem; }
	.product-list { flex-direction: column; align-items: center; gap: 1rem; }
	.product-card { width: 97vw; }
	nav .container { flex-direction: column; }
	nav a { font-size: 0.97rem; margin: 0.2rem 0.1rem; }
	.intro-animation { font-size: 1.1rem; height: 80px; border-radius: 0 0 10px 10px; }
	.featured-banner { font-size: 1.13rem; padding: 1.3rem 0.5rem; }
}