:root {
    --dark-blue: #1a2a3a;
    --accent-orange: #d35400;
    --slate-gray: #2c3e50;
    --light-gray: #ececec;
}

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

.container { width: 92%; max-width: 1200px; margin: 0 auto; }

header {
    background: var(--dark-blue);
    padding: 20px 0 0 0;
    text-align: center;
    border-bottom: 4px solid var(--accent-orange);
}

.main-logo { max-height: 100px; margin-bottom: 15px; }

/* Masculine Nav Bar */
.cat-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: rgba(0,0,0,0.2);
    padding: 10px 0;
}

.cat-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 2px;
    transition: 0.3s;
}

.cat-menu a:hover, .cat-menu a.active {
    background: var(--accent-orange);
}

.section-title {
    margin-top: 30px;
    border-left: 5px solid var(--dark-blue);
    padding-left: 15px;
    text-transform: uppercase;
    color: var(--slate-gray);
}

/* Grid Logic */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding-bottom: 50px;
}

.product-card {
    background: white;
    padding: 20px;
    position: relative;
    border: 1px solid #ddd;
    text-align: center;
    transition: box-shadow 0.3s;
}

.product-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.15); }

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--slate-gray);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    text-transform: uppercase;
}

.img-container img { width: 100%; height: 220px; object-fit: contain; }

.price { color: var(--accent-orange); font-size: 1.4rem; font-weight: 800; margin: 10px 0; }

.buy-btn {
    display: block;
    background: var(--dark-blue);
    color: white;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
}

footer { background: #333; color: #999; text-align: center; padding: 30px; margin-top: 50px; }

/* Responsive */
@media (max-width: 600px) {
    .cat-menu { flex-wrap: wrap; }
}
