/* --- LYRA PRODUCTION SYSTEM --- */
:root {
    --bg: #05070a;
    --card: #111821;
    --glow: #00f2ff;
    --text: #e0e6ed;
    --border: #1e293b;
}

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

body { 
    background-color: var(--bg); 
    color: var(--text); 
    font-family: sans-serif; 
    line-height: 1.6;
}

/* UNIVERSAL CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER & NAV */
.site-header { padding: 25px 0; border-bottom: 1px solid var(--border); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: bold; color: var(--glow); text-decoration: none; }
.nav-links a { color: var(--text); text-decoration: none; margin-left: 20px; font-size: 0.9rem; }
.nav-links a:hover { color: var(--glow); }

/* --- BREADCRUMBS & FILTERS --- */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}
.breadcrumb a {
    color: var(--glow);
    text-decoration: none;
    margin-right: 8px;
}
.breadcrumb span { margin-right: 8px; }

.category-nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.cat-pill {
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}
.cat-pill:hover, .cat-pill.active {
    background: var(--glow);
    color: #000;
    border-color: var(--glow);
}


/* PRODUCT GRID (For Shop Page) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    padding: 50px 0;
}
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    transition: 0.3s ease;
    text-align: center;
}
.product-card:hover { border-color: var(--glow); transform: translateY(-3px); }

/* CONTENT LAYOUT (For Legal/Text Pages) */
.content-area { max-width: 800px; margin: 60px auto; }
.content-area h1 { margin-bottom: 20px; color: var(--glow); }
.content-area p { margin-bottom: 15px; }

/* FOOTER */
.site-footer { padding: 50px 0; border-top: 1px solid var(--border); margin-top: 80px; text-align: center; }
.footer-links { margin-bottom: 15px; }
.footer-links a { color: var(--text); text-decoration: none; margin: 0 10px; font-size: 0.85rem; opacity: 0.8; }

/* S24+ MOBILE REPAIR */
@media (max-width: 480px) {
    .nav-flex { flex-direction: column; gap: 15px; }
    .product-grid { grid-template-columns: 1fr; }
    .container { padding: 0 15px; }
}
