:root {
    --bg-obsidian: #1A1A1B;
    --surface-steel: #2D2E30;
    --accent-gold: #C5A059;
    --accent-teal: #00CED1;
    --text-silver: #E1E1E1;
    --border-muted: rgba(225, 225, 225, 0.08);
}

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

body {
    background-color: var(--bg-obsidian);
    color: var(--text-silver);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

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

/* HEADER */
.site-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 40px; background: var(--bg-obsidian);
    border-bottom: 1px solid var(--border-muted);
    position: sticky; top: 0; z-index: 1000;
}
.site-logo { font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; }
.site-logo span { color: var(--accent-gold); }
.site-nav ul { display: flex; gap: 20px; list-style: none; }
.site-nav a { text-decoration: none; color: rgba(225, 225, 225, 0.4); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.site-nav a.active { color: var(--text-silver); }

/* HERO */
.hero { text-align: center; padding: 80px 0 60px; }
.hero-tag { color: var(--accent-gold); font-family: monospace; font-size: 11px; margin-bottom: 10px; }
.site-title { font-size: clamp(2rem, 8vw, 4rem); font-weight: 900; line-height: 1; letter-spacing: -1.5px; }
.site-title span { color: var(--accent-teal); }
.site-subtitle { color: rgba(225, 225, 225, 0.5); margin-top: 15px; font-size: 1rem; max-width: 600px; margin-inline: auto; }

/* GRID & CARDS */
.product-grid {
    display: grid; gap: 30px; margin-bottom: 80px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-link { text-decoration: none; color: inherit; display: block; }
.product-card { 
    background-color: var(--surface-steel); border: 1px solid var(--border-muted);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(197, 160, 89, 0.4); }

.product-image-container { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #000; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1); }
.product-card:hover .product-img { transform: scale(1.1); }

/* TAGS & BUTTONS */
.product-tag {
    position: absolute; top: 20px; left: 20px; z-index: 10;
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(8px);
    border: 1px solid rgba(225, 225, 225, 0.15); color: #fff;
    padding: 6px 12px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
}

.product-action-overlay {
    position: absolute; inset: 0; background: rgba(13, 13, 14, 0.4); 
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.5s; z-index: 5; backdrop-filter: blur(2px); 
}
.product-card:hover .product-action-overlay { opacity: 1; }

.view-details-btn {
    border: 1px solid #fff; padding: 14px 32px; font-size: 10px;
    text-transform: uppercase; letter-spacing: 4px; color: #fff; background: rgba(0,0,0,0.3);
}

.product-details { padding: 25px; }
.product-meta { display: flex; justify-content: space-between; font-size: 10px; font-family: monospace; color: rgba(225,225,225,0.3); border-bottom: 1px solid var(--border-muted); padding-bottom: 8px; margin-bottom: 12px; }
.product-header-row { display: flex; justify-content: space-between; align-items: baseline; }
.product-title { font-size: 1rem; text-transform: uppercase; font-weight: 700; }
.product-price { color: var(--accent-gold); font-family: monospace; }

.site-footer { text-align: center; padding: 60px; border-top: 1px solid var(--border-muted); font-size: 10px; opacity: 0.3; }