:root {
    --primary: #1a1a1a;
    --accent: #d4af37;
    --bg: #ffffff;
    --gray: #f4f4f4;
    --text-muted: #666;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    color: var(--primary);
    line-height: 1.6;
}

/* Header & Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--bg);
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; text-decoration: none; color: var(--primary); }
.nav-links a { margin-left: 25px; text-decoration: none; color: var(--primary); font-weight: 500; }

/* Footer */
footer {
    background: var(--gray);
    padding: 60px 5%;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #ddd;
}

.footer-links { margin-top: 20px; }
.footer-links a { color: var(--text-muted); text-decoration: none; margin: 0 15px; font-size: 0.85rem; cursor: pointer; }
.footer-links a:hover { color: var(--primary); }

/* Grid & Layout */
.container { padding: 40px 5%; max-width: 1400px; margin: 0 auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.product-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.price { font-weight: bold; color: var(--accent); }

@media (max-width: 768px) {
    nav { flex-direction: column; }
    .nav-links { margin-top: 15px; }
}