:root {
	--background-primary: #0a0a0a;
	--background-secondary: #1a1a1a;
	--accent-primary: #ff6b35;
	--accent-secondary: #f7931e;
	--text-light: #ffffff;
	--text-accent: #ffb366;
}

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

body {
	background-color: var(--background-primary);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	height: 100vh;
	overflow: hidden;
}

header {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	position: sticky;
	top: 0;
	z-index: 1000;
}

nav {
	ul {
		display: flex;
		justify-content: center;
		list-style-type: none;
		background-color: var(--background-secondary); 

		li {
			a {
				color: var(--text-light);
				display: block;
				padding: 18px 24px;
				text-decoration: none;
				font-weight: 500;
				font-size: 16px;
				transition: all 0.3s ease;
				border-bottom: 3px solid transparent;
			}

			a:hover {
				background-color: var(--accent-primary);
				border-bottom-color: var(--text-light);
				transform: translateY(-2px);
			}

			a:active {
				transform: translateY(0);
			}
		}
	}
}

main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	height: calc(100vh - 60px);
	display: flex;
	flex-direction: column;
}

.hero {
	text-align: center;
	padding: 30px 20px 20px;
	flex-shrink: 0;
}

.hero h1 {
	color: var(--text-light);
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.hero p {
	color: var(--text-accent);
	font-size: 1rem;
	margin-bottom: 20px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	flex: 1;
	align-items: start;
}

.product-card {
	background-color: var(--background-secondary);
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(255, 107, 53, 0.2);
	display: flex;
	flex-direction: column;
	aspect-ratio: 1;
}

.product-card img {
	width: 100%;
	height: 40%;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 20px;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.product-card h2 {
	color: var(--text-light);
	font-size: 1.4rem;
	margin-bottom: 15px;
	font-weight: 600;
	flex-shrink: 0;
}

.product-card p {
	color: var(--text-accent);
	font-size: 0.85rem;
	line-height: 1.4;
	margin-bottom: 15px;
	flex: 1;
	overflow: hidden;
}

.cta-button {
	display: inline-block;
	background-color: var(--accent-primary);
	color: var(--text-light);
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	margin-top: auto;
	flex-shrink: 0;
}

.cta-button:hover {
	background-color: var(--accent-secondary);
	border-color: var(--accent-primary);
	transform: scale(1.05);
}
