:root {
    --obsidian: #0A0A0A;    /* Deep Black / Volcanic Glass */
    --blood-clay: #A52A2A;  /* Deep Red / Earth / War Paint */
    --sand: #D2B48C;        /* Desert Sand */
    --silver: #E5E4E2;      /* Polished Sterling */
    --bone: #F5F5F5;        /* Bleached Bone */
    --serif: 'Playfair Display', serif;
    --sans: 'Lato', sans-serif;
}

body {
    background-color: var(--bone);
    color: var(--obsidian);
    margin: 0;
}

/* --- THE WARPATH HEADER --- */
.site-header {
    background: var(--obsidian);
    color: var(--silver);
    padding: 35px 0;
    border-bottom: 8px solid var(--blood-clay); /* Thick Blood-Red Line */
    text-transform: uppercase;
}

.brand {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    font-family: var(--serif);
    text-shadow: 2px 2px 0px var(--blood-clay);
}

/* --- THE HERO (High Contrast / High Pride) --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1601121141461-9d6647bca1ed?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 20px solid var(--obsidian);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--bone);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 0.9;
    text-shadow: 4px 4px 0px var(--blood-clay);
}

.hero-content p {
    font-size: 1.8rem;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    margin-top: 20px;
}

/* --- PRODUCT GRID (Industrial Gallery) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr; /* Full width on phones */
        gap: 30px;
    }
    .product-image-wrapper {
        height: 300px !important; /* Scale down image height on mobile */
    }
    .hero {
        height: 60vh !important; /* Shorter hero on mobile */
    }
    .hero-content h1 {
        font-size: 2.8rem !important; /* Scale down huge hero text */
    }
}

.product-card {
    background: white;
    padding: 0;
    border: 2px solid var(--obsidian);
    border-bottom: 8px solid var(--obsidian); /* Heavier foundation */
    transition: 0.2s;
    position: relative;
    width: 100%;
}

.product-card:hover {
    border-color: var(--blood-clay);
    box-shadow: 15px 15px 0px var(--obsidian);
}

.product-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f0f0f0;
    border-bottom: 2px solid var(--obsidian);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px;
    text-align: left;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blood-clay);
    margin-bottom: 10px;
    display: block;
    letter-spacing: 2px;
}

.product-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--obsidian);
    line-height: 1.2;
}

.product-meta {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
    border-left: 3px solid var(--blood-clay);
    padding-left: 12px;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--silver);
    background: var(--obsidian);
    display: inline-block;
    padding: 8px 20px;
}

.badge-material {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--blood-clay);
    color: white;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

/* Footer */
footer {
    background: var(--obsidian);
    color: var(--silver);
    padding: 60px 0;
    text-align: center;
    border-top: 5px solid var(--blood-clay);
}
.footer-links { margin: 30px 0; }
.footer-links a { margin: 0 15px; color: var(--sand); }
.footer-links a:hover { color: var(--blood-clay); }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; } 
}
