/* Narratory — minimal overrides on top of Pico CSS */

:root {
    --pico-font-family: system-ui, -apple-system, sans-serif;
}

.hero {
    text-align: center;
    padding: 2rem 0 1rem;
}

.products {
    max-width: 480px;
    margin: 0 auto;
}

.product-card {
    border: 1px solid var(--pico-muted-border-color);
    border-radius: var(--pico-border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.product-card hgroup {
    margin-bottom: 0.5rem;
}

.product-card h3 {
    margin-bottom: 0;
}

.product-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pico-muted-border-color);
}

/* Auth pages */

.auth-card {
    max-width: 420px;
    margin: 2rem auto;
}

.auth-switch {
    text-align: center;
    font-size: 0.9rem;
}

.message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--pico-border-radius);
}

.message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
