:root {
    --gold: #D4AF37;
    --dark: #222;
    --light: #f9f9f9;
}

body { font-family: 'Segoe UI', sans-serif; margin: 0; background: var(--light); color: var(--dark); }

nav { display: flex; justify-content: space-between; padding: 20px 5%; background: white; border-bottom: 1px solid #ddd; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--gold); }
nav ul { display: flex; list-style: none; }
nav ul li a { margin-left: 20px; text-decoration: none; color: var(--dark); }

.hero { height: 60vh; background: #333; color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.btn { padding: 10px 25px; background: var(--gold); color: white; text-decoration: none; border-radius: 5px; margin-top: 20px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; padding: 50px 5%; }
.product-card { background: white; padding: 15px; text-align: center; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.product-card img { width: 100%; border-radius: 8px; height: 300px; object-fit: cover; }
.buy-btn { display: inline-block; padding: 8px 15px; background: #25D366; color: white; text-decoration: none; border-radius: 4px; font-size: 0.9rem; margin-top: 10px; }