/* =========================
   Base Reset
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   Color Variables (Dark-First)
========================= */
:root {
    --bg: #0b0d10;
    --bg-soft: #12151b;
    --text: #e6e6e6;
    --text-muted: #9aa0a6;
    --accent: #6aa8ff;
    --border: #1e2330;
}

/* =========================
   Global Styles
========================= */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* =========================
   Header
========================= */
.site-header {
    background-color: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
}

/* =========================
   Navigation
========================= */
.nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

.nav a:hover {
    color: var(--text);
}

/* =========================
   Main Layout
========================= */
.container {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* =========================
   Hero Section
========================= */
.hero {
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* =========================
   Buttons
========================= */
.btn-primary {
    background-color: var(--accent);
    color: #000;
    border: none;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
}

.btn-primary:hover {
    opacity: 0.85;
}

/* =========================
   Info Section
========================= */
.info h3 {
    margin-bottom: 1rem;
}

.info ul {
    list-style: none;
}

.info li {
    padding: 0.4rem 0;
    color: var(--text-muted);
}

/* =========================
   Footer
========================= */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price {
    margin-bottom: 0.75rem;
}

.specs {
    list-style: none;
    padding-left: 1rem; /* indentation */
}

.specs li {
    margin-bottom: 0.3rem;
    color: var(--text-muted);
}

