/* MoniFlora huisstijl - afgeleid van logo & flyer
   crème achtergrond, bosgroen, terracotta accent, oudroze & salie steunkleuren. */
:root {
    --mf-cream: #f6f0e7;
    --mf-cream-dark: #ece3d5;
    --mf-green: #2e3d33;
    --mf-green-soft: #556a5b;
    --mf-terracotta: #c4744b;
    --mf-rose: #d8a7ac;
    --mf-sage: #a9b79e;
    --mf-gold: #b08d57;
    --mf-text: #33372f;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--mf-cream);
    color: var(--mf-text);
    font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
    font-size: 1.15rem;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Cormorant Garamond", "Georgia", serif;
    color: var(--mf-green);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.mf-script {
    font-family: "Dancing Script", "Segoe Script", cursive;
    color: var(--mf-terracotta);
}

a { color: var(--mf-green); text-decoration: none; }
a:hover { color: var(--mf-terracotta); }

/* --- Header met winkelmandje rechtsboven --- */
.mf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--mf-cream-dark);
}
.mf-header .mf-brand { font-size: 1.4rem; color: var(--mf-green); font-weight: 700; }
.mf-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--mf-gold);
    border-radius: 999px;
    color: var(--mf-green);
}
.mf-cart:hover { background: var(--mf-cream-dark); }

/* --- Hero / midden --- */
.mf-hero { text-align: center; padding: 3rem 1.5rem 2rem; }
.mf-hero img.mf-logo { max-width: 320px; width: 60%; height: auto; }
.mf-hero .mf-slogan { font-size: 1.5rem; color: var(--mf-terracotta); margin-top: 0.5rem; }

.mf-heart { color: var(--mf-rose); }

/* --- Placeholder productraster (wordt in stap 4 gevuld) --- */
.mf-placeholder {
    max-width: 900px;
    margin: 1rem auto 3rem;
    padding: 1.5rem;
    text-align: center;
    background: var(--mf-cream-dark);
    border-radius: 12px;
}

.mf-footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid var(--mf-cream-dark);
    color: var(--mf-green-soft);
    font-size: 0.95rem;
}

.mf-footer-gegevens {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============ Knoppen & meldingen ============ */
.mf-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    background: var(--mf-green);
    color: #fff;
    font: inherit;
    cursor: pointer;
}
.mf-btn:hover { background: var(--mf-green-soft); color: #fff; }
.mf-btn.secundair { background: var(--mf-gold); }
.mf-btn.gevaar { background: #a4453a; }
.mf-btn.klein { padding: 0.3rem 0.6rem; font-size: 0.9rem; }

.mf-melding, .mf-fout {
    max-width: 1000px;
    margin: 1rem auto;
    padding: 0.8rem 1rem;
    border-radius: 8px;
}
.mf-melding { background: #e5efe0; color: var(--mf-green); border: 1px solid var(--mf-sage); }
.mf-fout { background: #f6e2df; color: #7d322a; border: 1px solid #d8a7a0; }

/* ============ Adminkant ============ */
.mf-admin-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.9rem 1.5rem;
    background: var(--mf-green);
}
.mf-admin-nav a { color: var(--mf-cream); font-size: 1.05rem; }
.mf-admin-nav a:hover { color: var(--mf-rose); }
.mf-admin-nav .mf-admin-brand { font-weight: 700; margin-right: auto; }
.mf-admin-nav form { margin: 0; }
.mf-admin-nav .mf-btn.klein { background: var(--mf-gold); }

.mf-admin-main { max-width: 1000px; margin: 1.5rem auto; padding: 0 1.5rem; }

.mf-cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.mf-card {
    flex: 1 1 200px;
    background: #fff;
    border: 1px solid var(--mf-cream-dark);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
}
.mf-card .getal { font-size: 2.4rem; color: var(--mf-terracotta); }

table.mf-tabel { width: 100%; border-collapse: collapse; background: #fff; }
table.mf-tabel th, table.mf-tabel td {
    text-align: left;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--mf-cream-dark);
    vertical-align: middle;
}
table.mf-tabel th { background: var(--mf-cream-dark); }

.mf-form label { display: block; margin: 0.8rem 0 0.2rem; font-weight: 600; }
.mf-form input[type="text"],
.mf-form input[type="password"],
.mf-form input[type="number"],
.mf-form input[type="date"],
.mf-form input[type="email"],
.mf-form input[type="tel"],
.mf-form select,
.mf-form textarea {
    width: 100%;
    max-width: 480px;
    padding: 0.5rem;
    border: 1px solid var(--mf-sage);
    border-radius: 8px;
    font: inherit;
    background: #fff;
}
.mf-form textarea { min-height: 120px; }
.mf-form .checkboxen label { display: inline-flex; align-items: center; gap: 0.3rem; margin-right: 1rem; font-weight: 400; }
.mf-veldfout { color: #a4453a; font-size: 0.9rem; }

.mf-foto-strip { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.mf-foto-item { border: 1px solid var(--mf-cream-dark); border-radius: 10px; padding: 0.5rem; text-align: center; }
.mf-foto-item img { width: 140px; height: 140px; object-fit: cover; border-radius: 8px; }
.mf-foto-item .hoofd { color: var(--mf-terracotta); font-size: 0.85rem; }

.mf-inline { display: inline; }
.mf-doorstreep { text-decoration: line-through; color: var(--mf-green-soft); margin-right: 0.4rem; }
.mf-korting { color: var(--mf-terracotta); font-weight: 700; }
.mf-actief { color: var(--mf-green); font-weight: 700; }

/* ============ Winkelmandje-knop met telbolletje ============ */
.mf-cart { position: relative; }
.mf-cart .telbol {
    background: var(--mf-terracotta);
    color: #fff;
    border-radius: 999px;
    padding: 0 0.45rem;
    font-size: 0.85rem;
    margin-left: 0.2rem;
}

/* ============ Productraster & kaarten ============ */
.mf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 1.5rem auto;
    padding: 0 1.5rem;
}
.mf-product-card {
    background: #fff;
    border: 1px solid var(--mf-cream-dark);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.15s ease;
}
.mf-product-card:hover { box-shadow: 0 6px 18px rgba(46, 61, 51, 0.12); }
.mf-product-card a { display: block; color: var(--mf-text); }
.mf-product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.mf-product-card .geenfoto {
    width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
    background: var(--mf-cream-dark); color: var(--mf-green-soft);
}
.mf-product-card .naam { font-size: 1.3rem; margin: 0.6rem 0 0.2rem; color: var(--mf-green); }
.mf-product-card .vanaf { color: var(--mf-terracotta); padding-bottom: 0.8rem; }

.mf-center { text-align: center; }

/* ============ Inhoudspagina's ============ */
.mf-inhoud { max-width: 760px; margin: 2rem auto; padding: 0 1.5rem; }
.mf-inhoud h1 { text-align: center; }
.mf-inhoud h2 { margin-top: 1.8rem; }
.mf-concept {
    background: var(--mf-cream-dark);
    border-left: 4px solid var(--mf-gold);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--mf-green-soft);
}
.mf-toon-meer { text-align: center; margin: 1rem 0 2.5rem; }

/* ============ Productdetail ============ */
.mf-detail { max-width: 1000px; margin: 1.5rem auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 720px) { .mf-detail { grid-template-columns: 1fr; } }
.mf-galerij .hoofd { width: 100%; border-radius: 14px; object-fit: cover; aspect-ratio: 1 / 1; }
.mf-galerij .mini { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.mf-galerij .mini img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.mf-galerij .mini img.actief { border-color: var(--mf-terracotta); }

.mf-bestelblok { background: #fff; border: 1px solid var(--mf-cream-dark); border-radius: 14px; padding: 1.5rem; }
.mf-prijsregel { font-size: 1.1rem; margin: 0.4rem 0; }
.mf-totaal { font-size: 1.6rem; color: var(--mf-green); font-weight: 700; margin: 1rem 0; }
.mf-prijsopbouw { background: var(--mf-cream); border-radius: 10px; padding: 0.9rem 1.1rem; margin: 1rem 0; }
.mf-prijsopbouw .mf-prijsregel { font-size: 0.95rem; color: var(--mf-green-soft); margin: 0.3rem 0; display: flex; justify-content: space-between; gap: 1rem; }
.mf-prijsopbouw .mf-totaal { border-top: 1px solid var(--mf-cream-dark); padding-top: 0.6rem; margin: 0.6rem 0 0; display: flex; justify-content: space-between; gap: 1rem; }
.mf-keuze { margin: 0.9rem 0; }
.mf-keuze label { font-weight: 600; display: block; margin-bottom: 0.3rem; }
.mf-keuze select, .mf-keuze input[type="number"], .mf-keuze input[type="date"], .mf-keuze textarea {
    width: 100%; max-width: 320px; padding: 0.5rem; border: 1px solid var(--mf-sage); border-radius: 8px; font: inherit; background: #fff;
}
.mf-keuze textarea { min-height: 70px; }
.mf-keuze input[type="date"] { display: block; margin-bottom: 0.2rem; }
.mf-leverhint { font-size: 0.82rem; color: var(--mf-green-soft); margin-bottom: 0.6rem; min-height: 1.1em; }
.mf-verborgen { display: none; }

/* ============ Winkelmandje / checkout ============ */
.mf-checkout { max-width: 1000px; margin: 1.5rem auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .mf-checkout { grid-template-columns: 1fr; } }
.mf-mandje-regel { display: flex; gap: 1rem; align-items: center; border-bottom: 1px solid var(--mf-cream-dark); padding: 0.8rem 0; }
.mf-mandje-regel img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.mf-mandje-regel .op { flex: 1; }
.mf-mandje-totaal { font-size: 1.4rem; font-weight: 700; color: var(--mf-green); text-align: right; margin-top: 1rem; }
.mf-kaarttekst { display: inline-block; font-size: 0.9rem; color: var(--mf-green-soft); }
.mf-form .rij { display: flex; gap: 1rem; }
.mf-form .rij > div { flex: 1; }

/* ============ Login ============ */
.mf-login {
    max-width: 380px;
    margin: 4rem auto;
    background: #fff;
    border: 1px solid var(--mf-cream-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}
.mf-login img { max-width: 160px; margin-bottom: 1rem; }
