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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #000000;
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
}

/* Hero Section */
.hero {
	max-width: 1400px;
	margin: 0 auto;
	padding: 120px 40px 80px;
	border-bottom: 1px solid #e5e5e5;
}

.hero-label {
	font-size: 13px;
	color: #666666;
	margin-bottom: 24px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.hero h1 {
	font-size: 72px;
	font-weight: 700;
	color: #000000;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.hero p {
	font-size: 18px;
	color: #666666;
	max-width: 600px;
	margin-bottom: 40px;
	line-height: 1.6;
}

.hero-btn {
	display: inline-block;
	background: #000000;
	color: #ffffff;
	padding: 14px 32px;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: opacity 0.2s;
}

.hero-btn:hover {
	opacity: 0.8;
}

/* Featured Section */
.featured {
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 40px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	border-bottom: 1px solid #e5e5e5;
}

.featured-item h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.featured-item p {
	font-size: 14px;
	color: #666666;
}

/* Products Section */
.products {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 40px;
}

.section-header {
	margin-bottom: 60px;
}

.section-label {
	font-size: 13px;
	color: #666666;
	margin-bottom: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.section-title {
	font-size: 48px;
	font-weight: 700;
	color: #000000;
	letter-spacing: -0.02em;
}

.products-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 80px;
}

.product {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding-bottom: 80px;
	border-bottom: 1px solid #e5e5e5;
}

.product:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.product-image {
	width: 100%;
	height: 200px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cccccc;
	font-size: 14px;
	font-weight: 500;
	overflow: hidden;
	/* Prevent image spill */
	border-radius: 4px;
	/* Optional: Soften edges */
}

.product-image img {
	max-width: 100%;
	/* Ensure no horizontal overflow */
	max-height: 100%;
	/* Ensure no vertical overflow */
	object-fit: contain;
	/* Scale to fit without cropping (letterbox if needed) */
	display: block;
	/* Remove any inline gaps */
}

.product-image a {
	display: flex;
	/* Inherit flex for centering */
	align-items: center;
	justify-content: center;
	cursor: pointer;
	/* Visual cue */
	text-decoration: none;
	/* No underline */
	width: 100%;
	height: 100%;
}

.product-image a:hover img {
	opacity: 0.8;
	/* Subtle hover effect */
	transition: opacity 0.2s;
}

.product-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.product-meta {
	display: flex;
	align-items: center;
	gap: 16px;
}

.product-category {
	font-size: 12px;
	font-weight: 600;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #666666;
}

.stars {
	display: flex;
	gap: 2px;
}

.star {
	color: #000000;
	font-size: 14px;
}

.star.empty {
	color: #e5e5e5;
}

.product-title {
	font-size: 32px;
	font-weight: 700;
	color: #000000;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.product-description {
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
	max-width: 700px;
}

.product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.product-price {
	font-size: 28px;
	font-weight: 600;
	color: #000000;
}

.product-link {
	color: #000000;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: opacity 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.product-link:hover {
	opacity: 0.6;
}

/* Footer */
.footer {
	border-top: 1px solid #e5e5e5;
	padding: 60px 40px 40px;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-brand {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 40px;
}

.footer-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-bottom: 60px;
}

.footer-column h4 {
	font-size: 12px;
	margin-bottom: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column ul li a {
	color: #666666;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-column ul li a:hover {
	color: #000000;
}

.footer-bottom {
	padding-top: 32px;
	border-top: 1px solid #e5e5e5;
	font-size: 13px;
	color: #999999;
}

/* Tablet */
@media (min-width: 768px) {
	.hero h1 {
		font-size: 96px;
	}

	.featured {
		grid-template-columns: repeat(3, 1fr);
	}

	.product {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}

	.product-image {
		height: 200px;
	}

	.footer-columns {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Desktop */
@media (min-width: 1024px) {
	.hero {
		padding: 140px 60px 100px;
	}

	.hero h1 {
		font-size: 120px;
	}

	.products {
		padding: 100px 60px;
	}

	.product-image {
		height: 200px;
	}
}