/* BlackBlacky - Design System */
:root {
    --bg-color: #050505;
    --card-bg: #0F0F0F;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --accent: #CFA935;
    /* Muted Gold */
    --border: #222222;
    --glass: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
}

/* UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.brand-logo {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 30px;
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* HERO SECTION */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 70%);
    padding-top: 80px;
}

.hero h1 {
    font-size: 80px;
    background: linear-gradient(to right, #fff, #888);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-primary {
    background: var(--text-primary);
    color: #000;
    padding: 16px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(207, 169, 53, 0.2);
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    margin: 80px 0 40px;
    font-size: 42px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent);
}

/* PRODUCT GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    /* Sharper corners for modern feel */
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.product-card:hover .product-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to top, #0F0F0F, transparent);
    width: 100%;
    position: absolute;
    bottom: 0;
}

.product-brand {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.product-name {
    font-size: 18px;
    margin: 5px 0;
    font-family: var(--font-heading);
}

.product-price {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0;
    background: #020202;
    text-align: center;
    color: var(--text-secondary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .nav-links {
        display: none;
    }

    /* Mobile menu simplified for now */
}