/*
Theme Name: Celadon Elegance
Description: Elegant theme for Chinese Celadon porcelain export.
Author: WordPress Theme Dev
Version: 1.0
*/

:root {
	--primary: #4A7C59;
	--secondary: #2C4A35;
	--accent: #D32F2F;
	--bg-light: #f0f0f0;
	--bg-cream: #faf9f6;
	--text-dark: #333333;
	--text-light: #ffffff;
}

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

body {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 300;
	line-height: 1.6;
	color: var(--text-dark);
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 40px;
	width: auto;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 30px;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 400;
	font-size: 0.9rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--primary);
}

.hero {
	position: relative;
	height: 60vh;
	overflow: hidden;
	margin-bottom: 40px;
}

.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.offer-tag {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--accent);
	color: white;
	padding: 5px 15px;
	font-size: 0.8rem;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
	font-weight: 200;
	letter-spacing: 3px;
	color: var(--primary);
	font-size: 2.5rem;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

.product-card {
	background: #fff;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-card img {
	max-width: 100%;
	height: 250px;
	object-fit: contain;
	margin-bottom: 15px;
}

.product-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: var(--primary);
}

.product-card p {
	font-size: 0.85rem;
	color: #666;
	height: 40px;
	overflow: hidden;
	margin-bottom: 15px;
}

.price {
	font-weight: bold;
	color: var(--text-dark);
	margin-bottom: 15px;
	display: block;
	font-size: 1.1rem;
}

.btn-add {
	background: var(--primary);
	color: white;
	border: none;
	padding: 10px 25px;
	cursor: pointer;
	transition: background 0.3s;
	width: 100%;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
}

.btn-add:hover {
	background: var(--secondary);
}

footer {
	background: #fff;
	padding: 40px 0;
	text-align: center;
	border-top: 1px solid rgba(0,0,0,0.05);
	margin-top: 60px;
}

@media (min-width: 768px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}