:root {
    --primary: #1a1a1a;
    --accent: #d4a373;
    --bg-light: #fdfaf6;
    --text-muted: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg-light); color: var(--primary); line-height: 1.6; }

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; background: #white; border-bottom: 1px solid #eee; }
.logo { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.hero { height: 90vh; background: url("../preview.jpg") center/cover no-repeat; display: flex; align-items: center; padding: 0 10%; margin-bottom: 4rem; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 1.1; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 400px; }
.btn-primary { display: inline-block; padding: 1rem 3rem; background: var(--primary); color: white; text-decoration: none; font-size: 0.9rem; text-transform: uppercase; transition: transform 0.3s ease; }
.btn-primary:hover { transform: translateY(-3px); }

.products { padding: 4rem 5%; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }
.product-card { text-align: left; transition: transform 0.3s ease; }
.product-card:hover { transform: translateY(-5px); }
.product-card img { width: 100%; height: 350px; object-fit: cover; margin-bottom: 1rem; }
.product-card h3 { font-size: 1rem; font-weight: 400; margin-bottom: 0.5rem; }
.product-card .price { color: var(--text-muted); font-size: 0.9rem; }

footer { padding: 4rem 0; text-align: center; border-top: 1px solid #eee; margin-top: 4rem; font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .nav-links { display: none; }
}
