/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fafafa;
}

a {
    color: #7b5ea7;
    text-decoration: none;
}

a:hover {
    color: #9b7ec8;
    text-decoration: underline;
}

/* ── Nav ── */
nav {
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

nav .nav-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

nav .nav-brand {
    font-weight: 700;
    font-size: 1.05em;
    letter-spacing: 0.06em;
    color: #222;
    text-decoration: none;
}

nav .nav-brand:hover {
    color: #7b5ea7;
    text-decoration: none;
}

nav .nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

nav .nav-links a {
    color: #555;
    font-size: 0.92em;
    font-weight: 500;
}

nav .nav-links a:hover {
    color: #7b5ea7;
    text-decoration: none;
}

nav .nav-links a.active {
    color: #7b5ea7;
    border-bottom: 2px solid #7b5ea7;
    padding-bottom: 2px;
}

/* ── Main Content ── */
.content {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

/* ── Hero (homepage) ── */
.hero {
    text-align: center;
    padding: 48px 0 40px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2em;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.hero .tagline {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 16px;
}

.hero .hero-detail {
    color: #888;
    font-size: 0.95em;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Section Headings ── */
h2.section-heading {
    font-size: 1.2em;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.3em;
    margin-top: 2em;
    margin-bottom: 1em;
}

/* ── Product Cards ── */
.product {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 1.2em 0;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.product img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    flex-shrink: 0;
}

.product-info { flex: 1; }

.product-name {
    font-weight: 600;
    font-size: 1.05em;
}

.product-desc {
    color: #555;
    margin-top: 0.3em;
    font-size: 0.95em;
}

.product-tags {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.78em;
    padding: 2px 10px;
    border-radius: 12px;
    background: #f0ecf5;
    color: #7b5ea7;
    font-weight: 500;
}

.coming-later .product-name { color: #555; }

/* ── Page Headers ── */
.page-header {
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 1.8em;
    margin-bottom: 6px;
}

.page-header p {
    color: #666;
    font-size: 1.05em;
}

/* ── Prose (about, privacy, etc.) ── */
.prose h2 {
    font-size: 1.15em;
    margin-top: 1.8em;
    margin-bottom: 0.5em;
    color: #333;
}

.prose p {
    margin-bottom: 1em;
    color: #444;
}

.prose ul {
    margin: 0.5em 0 1em 1.5em;
    color: #444;
}

.prose li {
    margin-bottom: 0.3em;
}

/* ── Values Grid (about page) ── */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.value-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
}

.value-card h3 {
    font-size: 1em;
    margin-bottom: 6px;
    color: #333;
}

.value-card p {
    font-size: 0.92em;
    color: #666;
    margin: 0;
}

/* ── Contact Info ── */
.contact-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px;
    margin: 20px 0;
}

.contact-card h3 {
    font-size: 1em;
    margin-bottom: 4px;
    color: #333;
}

.contact-card p {
    color: #666;
    font-size: 0.95em;
    margin: 0 0 20px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

/* ── Footer ── */
footer {
    max-width: 760px;
    margin: 60px auto 0;
    padding: 20px 20px 32px;
    border-top: 1px solid #ddd;
    font-size: 0.85em;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

footer a {
    color: #888;
}

footer a:hover {
    color: #7b5ea7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    nav .nav-links {
        gap: 16px;
    }

    nav .nav-links a {
        font-size: 0.85em;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
