/* ══════════════════════════════════════════════
   MICRO-SHOP TEMPLATE — Thema via custom properties
   Pas onderstaande variabelen aan per shop.
   ══════════════════════════════════════════════ */

:root {
    /* Kleuren — Dorva luxe deurklinken */
    --color-primary: #1a2744;
    --color-primary-dark: #111b30;
    --color-accent: #b8963e;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-border: #e2e8f0;

    /* Typography */
    --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-heading: var(--font-body);
    --font-logo: "Playfair Display", Georgia, "Times New Roman", serif;

    /* Spacing */
    --container-max: 1140px;
    --section-padding: 5rem 0;
    --radius: 12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }

/* ── CONTAINER ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-narrow { max-width: 780px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .1s;
}
.btn:active { transform: scale(.97); }
.btn-primary {
    background: var(--color-primary);
    color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.site-logo {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 2px;
}
.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: .5rem;
}
.cart-btn .snipcart-items-count {
    position: absolute;
    top: 0; right: 0;
    background: var(--color-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--color-bg-alt);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}
.hero-bg ~ .hero-content { color: #fff; }
.hero-bg ~ .hero-content .btn-primary {
    background: #fff;
    color: var(--color-text);
}
.hero-bg ~ .hero-content .btn-primary:hover {
    background: var(--color-accent);
    color: #fff;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -.03em;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: .9;
}

/* ── USPS ── */
.usps {
    padding: var(--section-padding);
    background: var(--color-bg);
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.usp-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.usp-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: .75rem;
}
.usp-card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}
.usp-card p {
    color: var(--color-text-light);
    font-size: .95rem;
}

/* ── PRODUCTEN ── */
.products {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}
.products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--color-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: box-shadow .2s, transform .2s;
}
.product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.product-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.product-info {
    padding: 1.5rem;
}
.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}
.product-info p {
    color: var(--color-text-light);
    font-size: .95rem;
    margin-bottom: 1.25rem;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
}

/* ── OVER ONS ── */
.about {
    padding: var(--section-padding);
    background: var(--color-bg);
}
.about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.about-text {
    max-width: 780px;
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}
.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-primary);
}
.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.testimonial-card footer {
    color: var(--color-text-light);
    font-weight: 600;
    font-style: normal;
}

/* ── FAQ ── */
.faq {
    padding: var(--section-padding);
    background: var(--color-bg);
}
.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
    padding: 1.25rem 0;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-text-light);
    transition: transform .2s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 0 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ── LEGAL ── */
.legal {
    padding: var(--section-padding);
}
.legal h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.legal-body {
    line-height: 1.8;
    color: var(--color-text-light);
}
.legal-body h2, .legal-body h3 {
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: .75rem;
}

/* ── FOOTER ── */
.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.footer-links a {
    color: var(--color-text-light);
    font-size: .9rem;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-copy {
    color: var(--color-text-light);
    font-size: .85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero { min-height: 50vh; }
    .hero h1 { font-size: 2rem; }
    .product-grid { grid-template-columns: 1fr; }
    .product-footer { flex-direction: column; align-items: stretch; text-align: center; }
    .btn-lg { width: 100%; justify-content: center; }
}
