@font-face {
    font-family: 'Proza Display';
    src: local('Proza Display Bold'), local('Proza-Display-Bold'),
        url('ProzaDisplay-Bold.woff2') format('woff2'),
        url('ProzaDisplay-Bold.woff') format('woff'),
        url('ProzaDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  }

/* Algemene styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    margin: 0;
}

.centerHeader{
	justify-content: center !important;
}

.header-inner {
    max-width: 1200px; /* Maximale breedte voor de content */
    margin: 0 auto; /* Centreert de content horizontaal */
    display: flex; /* Flexbox voor lay-out van logo, zoekbalk en winkelwagen */
    align-items: center; /* Verticaal centreren */
    justify-content: space-between; /* Ruimte tussen elementen */
}

/* Optioneel: Styling voor de overige elementen */
.logo-link, .search-container, .cart-icon {
    flex: 0 1 auto; /* Flexibele groottes voor de elementen */
}

.header-search input {
    padding: 8px;
    border: none;
    border-radius: 20px;
}

.cart-icon a {
    text-decoration: none;
	color: #373737;
}

main {
    padding: 0px;
}

/* Styling voor de nieuwe navigatiebalk */
.main-nav {
    padding: 15px 0;
	border: 1px solid #dadada;
}

.main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: #585858;
    font-weight: 600;
    padding: 5px 10px;
    transition: color 0.3s;
    font-family: "Segoe UI", serif;
    font-size: 1em;
}

.main-nav a:hover {
    color: black;
}

/* Stijl voor de actieve pagina link */
.main-nav a.active {
    color: black;
}


/* Styling voor de footer */
.main-footer {
    background-color: #f8f8f8;
    color: #333;
    padding-top: 40px;
    margin-top: 50px; /* Ruimte boven de footer */
    border-top: 1px solid #e7e7e7;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Zorgt dat kolommen onder elkaar vallen op kleine schermen */
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Voorkomt dat kolommen te smal worden */
}

.footer-column h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #2b803a; /* Groene kleur, consistent met de rest */
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #2b803a;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    background-color: #e9e9e9;
    font-size: 0.9em;
}

.footer-bottom p {
    margin: 0;
}

/* Styling voor algemene content pagina's */
.content-page {
    max-width: 1024px; /* Maakt tekst beter leesbaar op brede schermen */
    margin: 40px auto; /* Centreert de content en geeft ruimte boven/onder */
    padding: 0 20px;
}

.content-page h1 {
font-family: "Proza Display", serif;
    color: #255710;
    font-size: 2em;
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d9c6;
    text-align: center;
}

.content-page .intro {
    font-size: 1em;
    line-height: 1.6;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

/* Styling voor de 'info-block' secties */
.info-block {
    background-color: #f9f9f9;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.info-block h2 {
    font-family: "Proza Display", serif;
    color: #255710;
    font-size: 1.5em;
    font-weight: 300;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d9c6;
}

.info-block p, .info-block li {
    font-size: 1em;
    line-height: 1.7;
    color: #333;
}

.info-block ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.info-block li {
    margin-bottom: 10px;
}

/* Styling voor de Over Ons pagina */
.about-us-container {
    display: flex;
    gap: 40px; /* Ruimte tussen tekst en afbeelding */
    align-items: center; /* Lijn de content verticaal uit in het midden */
    margin-top: 30px;
}

.about-us-text {
    flex: 2; /* Geeft de tekst-kolom 2/3 van de ruimte */
}

.about-us-text p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-us-image {
    flex: 1; /* Geeft de afbeelding-kolom 1/3 van de ruimte */
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3; /* Geeft een standaard verhouding aan de placeholder */
    background-color: #e9e9e9;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-weight: bold;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive: op kleine schermen de kolommen onder elkaar plaatsen */
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column; /* Zet kolommen onder elkaar */
    }
}

/* Styling voor Relevante Items sectie */
.relevante-items {
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.relevante-items h3 {
	font-family: "Proza Display", serif;
    color: #255710;
    font-size: 1.5em;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d9c6;
}

.plant-kaart-info h3{
	font-family: "Segoe UI", serif;
}


/* ============================================= */
/* STYLING VOOR ACCOUNT PAGINA                   */
/* ============================================= */

.user-details-card {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.user-details-card h3 {
    margin-top: 0;
    color: #2b803a;
}

#order-history {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- NIEUWE STIJL VOOR BESTELLINGEN ACCORDEON --- */

.order-card {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    flex-wrap: wrap;
    gap: 15px;
}

.order-summary-header:hover {
    background-color: #fcfcfc;
}

.summary-col {
    display: flex;
    flex-direction: column;
}

.summary-col .label {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-col .value {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}

.toggle-icon {
    font-size: 0.8em;
    color: #37674E;
    transition: transform 0.3s ease;
}

.order-full-details {
    background-color: #fafafa;
    border-top: 1px solid #eee;
    padding-bottom: 20px;
}

/* Zorg dat de hidden class echt verbergt */
.hidden {
    display: none !important;
}

.order-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 0;
}

/* Aanpassing voor mobiel: kolommen onder elkaar */
@media (max-width: 600px) {
    .order-summary-header {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 kolommen */
        gap: 15px;
    }
    
    /* Pijltje over de hele breedte of rechtsonder */
    .summary-col.toggle-icon {
        grid-column: span 2;
        align-items: center;
        margin-top: 5px;
    }
	
	.assortiment-wrapper{
		padding: 0px 0px;
	}
	
	
	
}
.order-header {
    background-color: #f9f9f9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e7e7e7;
    flex-wrap: wrap;
    gap: 10px;
}

.order-header strong {
    color: #555;
}

.order-total {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.order-items-list {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-details {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styling voor het succesbericht na een bestelling */
.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}


/* Helper class om elementen te verbergen */
.hidden {
    display: none;
}





.logo {
  height: 68px; /* Pas deze waarde aan naar de gewenste hoogte */
  width: auto;  /* Zorgt ervoor dat de breedte automatisch meeschaalt */
  vertical-align: middle; /* Helpt om het logo netjes uit te lijnen met andere items */
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* ====== START WIJZIGING: Header & Zoekbalk Styling ====== */
.main-header {
    background-color: white;
}

.main-header a.logo-link {
    flex-shrink: 0; /* Voorkom dat het logo krimpt */
}

.header-search {
    flex-grow: 1; /* Laat de zoekbalk de beschikbare ruimte vullen */
    max-width: 600px; /* Optioneel: voorkom dat de balk te breed wordt */
    margin: 0 auto; /* Centreert de zoekbalk tussen logo en winkelwagen */
}

.header-search input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #7d7d7d;
    font-size: 16px;
    box-sizing: border-box;
}

.cart-icon {
    flex-shrink: 0; /* Voorkom dat de winkelwagen krimpt */
}
/* ====== EINDE WIJZIGING ====== */



#geslacht-filters {
    display: flex;
    flex-wrap: wrap; /* Zorgt dat knoppen naar volgende regel springen */
    justify-content: center;
    gap: 10px;
	max-width: 1200px;
}

.geslacht-btn {
    padding: 13px 18px;
    border: 1px solid #ccc;
    background-color: #9a6492;
    color: white;
    border-radius: 10px; /* Maakt de knoppen pil-vormig */
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}

.geslacht-btn:hover {
    background-color: #6d3c66;
}

/* Actieve staat voor de knop */
.geslacht-btn.active {
    background-color: #6d3c66; /* De groene themakleur */
    color: white;
}

/* Planten Grid */
#planten-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 10px; /* Padding aan de zijkanten */
}

.planten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    /* VERWIJDERD: max-width en margin, want de parent regelt dit nu */
    margin-bottom: 40px; /* Behoud de ruimte onder de grid */
}

.plant-kaart {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.plant-kaart:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.plant-kaart img {
    width: 100%;
    object-fit: cover;
    flex-shrink: 0; /* TOEGEVOEGD: Voorkom dat de flex-container de afbeelding vervormt tijdens het laden */
}

.plant-kaart-info {
    padding: 15px;
    flex-grow: 1;
	text-align: center;
    align-content: center;
}

.plant-kaart-info h3 {
    margin: 0 0 0px 0;
    color: #37674E;
	font-size:1em;
	text-align:center;
}

.plant-kaart-info .soort {
    background-color: #ecf0f1;
    color: #7f8c8d;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
}

.plant-kaart-prijs {
    font-size: 1.2em;
    font-weight: bold;
    color: #917115;
    padding: 15px;
    border-top: 1px solid #f2f2f2;
}

.plant-kaart-kleur {
    font-size: 1rem;
    color: #555;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

/* Detail Pagina */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

#plant-detail-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	margin-top:15px;
}

#plant-detail-container img {
    width: 100%;
    border-radius: 8px;
}

.aantal-info{
	margin-top:0px;
		margin-bottom:0px;
	font-size: 1.1em;
    color: #9a6492;
    font-weight: 700;
	font-style: italic;
}

.plant-details h2 {
	font-family: "Segoe UI" !important;
    margin: 0;
    font-size: 2em;
    color: #2c5e3f;
}

.plant-details .prijs {
    font-size: 1.1em;
    color: #9a6492;
    font-weight: bold;
    margin: 0;
}

.plant-details .voorraad {
    font-style: italic;
    color: #7f8c8d;
}

.plant-details .beschrijving {
    line-height: 1.6;
}

@media (max-width: 768px) {
    #plant-detail-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================= */
/* STYLING VOOR HEADER EN GEBRUIKERSNAVIGATIE   */
/* ============================================= */

/* Je kunt dit toevoegen als je bovenstaande blok hebt verwijderd */
.cart-icon a {
    text-decoration: none;
    font-weight: 600;
	font-family: "Segoe UI", serif;
}

.cart-icon a:hover {
    opacity: 0.8;
}



#cart-count {
    background-color: #f39c12; /* Oranje valt goed op */
    color: white;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 12px;
    vertical-align: top; /* Zorgt voor nette uitlijning */
    margin-left: -8px; /* Plaatst de teller iets over het icoon heen */
}


/* ============================================= */
/* STYLING VOOR LOGIN/REGISTRATIE PAGINA         */
/* ============================================= */

.login-container {
    max-width: 450px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.login-container h2 {
    margin-top: 20px;
    color: #333;
}

#login-form, #register-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Ruimte tussen de velden */
}

.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Voorkomt dat padding de breedte beïnvloedt */
}

.login-container button {
    padding: 12px;
    border-radius: 5px;
    border: none;
    color: white;
    background-color: #2ecc71; /* Groene actieknop */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-container button:hover {
    background-color: #27ae60;
}

#login-google-btn {
    background-color: #4285F4; /* Google Blauw */
    margin-top: 0;
    margin-bottom: 20px;
}

#login-google-btn:hover {
    background-color: #357ae8;
}

/* Foutmeldingen */
.error {
    color: #e74c3c;
    font-weight: bold;
    min-height: 1.2em; /* Zorgt ervoor dat layout niet verspringt */
    margin: 0;
    padding: 0;
}

/* Links om te wisselen */
.login-container p {
    margin-top: 25px;
    color: red;
}

.login-container a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.login-container a:hover {
    text-decoration: underline;
}

/* De utility class om elementen te verbergen */
.hidden {
    display: none;
}

/* ============================================= */
/* STYLING VOOR WINKELWAGEN PAGINA               */
/* ============================================= */

#cart-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    gap: 15px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info {
    flex-grow: 1; /* Neemt de beschikbare ruimte in */
}

.cart-item-info a{
	text-decoration:none;
	color:#2b803a;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cart-item-price, .cart-item-actions {
    min-width: 100px;
    text-align: right;
}

.cart-item-price {
    font-weight: bold;
    font-size: 1.1em;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.2em;
}

#cart-summary {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

#cart-summary h3 {
    margin: 0;
}

#checkout-btn {
    padding: 12px 25px;
    background-color: #27ae60;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#checkout-btn:hover {
    background-color: #229954;
}

.bestel-knop {
    padding: 7px 25px;
    background-color: #37674E;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.bestel-knop:hover {
    background-color: #203d2e;
}

/* Kenmerken Tabel */
.kenmerken-tabel {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem 0;
    background: #f9f9fc;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.kenmerken-tabel td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
}

.kenmerken-tabel tr:last-child td {
    border-bottom: none;
}

.kenmerken-tabel td:first-child {
    font-weight: 500;
    color: var(--primary-color);
    width: 180px;
}

.kenmerken-tabel h4 {
    margin-bottom: 0.7rem;
}

/* public/style.css */

/* --- STYLING VOOR ACTIEKNOPPEN OP PLANTENKAART --- */

/* Om de link te laten werken, maar niet de hele kaart te vullen */
.plant-kaart-link {
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
}

.plant-kaart-link, 
.plant-kaart-link img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Container voor prijs en acties */
.plant-kaart-prijs-acties {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-top: 1px solid #f2f2f2;
}

.plant-kaart-prijs-acties .prijs {
    font-size: 1.1em;
    font-weight: bold;
    color: #917115;
}

/* Flex container voor de input en de knop */
.plant-kaart-acties {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plant-kaart-acties .aantal-input-kaart {
    width: 45px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.plant-kaart-acties .add-to-cart-btn-kaart {
    background-color: #37674E;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.plant-kaart-acties .add-to-cart-btn-kaart:hover {
    background-color: #203d2e;
}

.plant-kaart-acties .add-to-cart-btn-kaart:active {
    transform: scale(0.95);
}

/* Container voor de knoppen */
.navigatie-knoppen {
    display: flex; /* Activeer Flexbox */
    justify-content: space-between; /* Verdeel de items: eerste links, laatste rechts */
    align-items: center; /* Lijn ze verticaal netjes uit */
    margin-bottom: 20px; /* Voeg wat ruimte toe onder de knoppen */
}

/* Stijl voor de knoppen zelf */
.btn {
    /* Uiterlijk */
    background-color: #37674E; /* Lichte achtergrondkleur */
    border-radius: 5px; /* Afgeronde hoeken */
    color: white; /* Donkere tekstkleur */
    padding: 10px 20px; /* Ruimte binnenin de knop */
    text-decoration: none; /* Verwijder de standaard link-onderstreping */
	font-size: 16px;
    font-weight: bold;

}

/* Stijl voor als je met de muis over de knop gaat */
.btn:hover {
    background-color: #37674E; /* Iets donkerder bij hover voor feedback */
}

        .arguments-bar {
			font-family: "Segoe UI", serif;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background-color: white;
            padding: 10px 10px;
            flex-wrap: wrap; /* Zorgt dat de items onder elkaar gaan op kleinere schermen */
            gap: 10px; /* Ruimte tussen de items */
			background-color:#9a6492;

        }
        .argument {
			font-weight: 600;
			font-size: 15px;
			text-align: center;
			color: white;
        }
        /* Optioneel: voeg een icoontje toe voor elk argument */
        .argument::before {
            content: '✓ '; /* Simpel vinkje */
            color: white; /* Groene kleur voor het vinkje */
            font-weight: bold;
        }
		
		/* Styling voor de uitlog-knop op de account pagina */
#logout-btn {
    background-color: #c0392b; /* Een subtiele rode kleur */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px; /* Ruimte boven de knop */
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s;
}

#logout-btn:hover {
    background-color: #e74c3c; /* Iets lichter bij hover */
}

.plant-kaart-stapinfo {
    font-size: 1em;
    font-style: italic;
	font-weight:700;
    color: #9a6492;
}

/* --- VOEG DEZE CSS TOE AAN style.css --- */

.plant-image-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.slider-wrapper img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    aspect-ratio: 1 / 1; /* Zorgt voor vierkante afbeeldingen */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

/* In public/style.css */
.group-heading {
    font-family: "Proza Display", serif;
    color: #255710;
    font-size: 1.5em;
    font-weight: 300;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d9c6; 
}

/* Zorg dat het eerste kopje geen extra ruimte bovenaan heeft */
.group-heading:first-of-type {
    margin-top: 20px;
}

/* De planten-grid heeft nu een grotere bottom-margin om groepen te scheiden */
.planten-grid {
    margin-bottom: 40px; 
}

/* De badge voor pakketten (optioneel, maar aanbevolen) */
.plant-type-badge {
    display: inline-block;
    background-color: #ecf0f1;
    color: #7f8c8d;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
    margin-top: 5px;
}

/* ====== START STYLING VOOR ZOEKSUGGESTIES & LADER ====== */
.search-container {
    position: relative;
    flex-grow: 1; /* Neemt de beschikbare ruimte in de header */
    max-width: 600px;
    margin: 0 auto;
	margin-left:15px;
	margin-right:15px;
}

#search-suggestions {
    position: absolute;
    top: 100%; /* Direct onder de zoekbalk */
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 90vh;
    overflow-y: auto;
	margin-top:10px;
}

.suggestion-item {
    padding: 10px 15px;
    color: #333;
    cursor: pointer;
    font-size: 15px;
}

.suggestion-item:hover {
    background-color: #f2f2f2;
}

/* Styling voor het laadicoon */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #37674E; /* Groene themakleur */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Helper class blijft belangrijk */
#search-suggestions.hidden {
    display: none;
}
.suggestion-item.active {
    background-color: #e9e9e9; /* Een subtiele highlight kleur */
}

/* ============== HERO SECTIE ============== */
.hero-section {
    width: 100%; /* Zorgt dat het vlak de volledige breedte inneemt */
    padding: 30px 20px; /* Geeft ruimte boven/onder en een beetje links/rechts */
    box-sizing: border-box; /* Zorgt dat padding de totale breedte niet beïnvloedt */
    
    /* Achtergrondinstellingen */
    /* VERVANG DEZE URL met een link naar je eigen achtergrondafbeelding */
    background-image: url('bg.jpg');
    background-size: cover; /* De afbeelding vult het hele vlak, zonder vervorming */
    background-position: center; /* Centreert de afbeelding */
    
    /* Tekstinstellingen */
    color: #ffffff; /* Witte tekst voor goed contrast met een donkere afbeelding */
}

.hero-sectionaccount {
    width: 100%; /* Zorgt dat het vlak de volledige breedte inneemt */
    padding: 30px 20px; /* Geeft ruimte boven/onder en een beetje links/rechts */
    box-sizing: border-box; /* Zorgt dat padding de totale breedte niet beïnvloedt */
    
    /* Achtergrondinstellingen */
    /* VERVANG DEZE URL met een link naar je eigen achtergrondafbeelding */
    background-image: url('account.jpg');
    background-size: cover; /* De afbeelding vult het hele vlak, zonder vervorming */
    background-position: center; /* Centreert de afbeelding */
    
    /* Tekstinstellingen */
    color: #ffffff; /* Witte tekst voor goed contrast met een donkere afbeelding */
}

.hero-sectionoverons {
    width: 100%; /* Zorgt dat het vlak de volledige breedte inneemt */
    padding: 30px 20px; /* Geeft ruimte boven/onder en een beetje links/rechts */
    box-sizing: border-box; /* Zorgt dat padding de totale breedte niet beïnvloedt */
    
    /* Achtergrondinstellingen */
    /* VERVANG DEZE URL met een link naar je eigen achtergrondafbeelding */
    background-image: url('overons.jpg');
    background-size: cover; /* De afbeelding vult het hele vlak, zonder vervorming */
    background-position: center; /* Centreert de afbeelding */
    
    /* Tekstinstellingen */
    color: #ffffff; /* Witte tekst voor goed contrast met een donkere afbeelding */
}

/* ============== HERO SECTIE ============== */
.hero-sectionplant {
    width: 100%; /* Zorgt dat het vlak de volledige breedte inneemt */
    padding: 30px 20px; /* Geeft ruimte boven/onder en een beetje links/rechts */
    box-sizing: border-box; /* Zorgt dat padding de totale breedte niet beïnvloedt */
    
    /* Achtergrondinstellingen */
    /* VERVANG DEZE URL met een link naar je eigen achtergrondafbeelding */
    background-image: url('bg.jpg');
    background-size: cover; /* De afbeelding vult het hele vlak, zonder vervorming */
    background-position: center; /* Centreert de afbeelding */
    
    /* Tekstinstellingen */
    color: #ffffff; /* Witte tekst voor goed contrast met een donkere afbeelding */
}

/* ============== HERO SECTIE ============== */
.hero-sectionwortelgoed {
    width: 100%; /* Zorgt dat het vlak de volledige breedte inneemt */
    padding: 30px 20px; /* Geeft ruimte boven/onder en een beetje links/rechts */
    box-sizing: border-box; /* Zorgt dat padding de totale breedte niet beïnvloedt */
    
    /* Achtergrondinstellingen */
    /* VERVANG DEZE URL met een link naar je eigen achtergrondafbeelding */
    background-image: url('wortelstokken.jpg');
    background-size: cover; /* De afbeelding vult het hele vlak, zonder vervorming */
    background-position: center; /* Centreert de afbeelding */
    
    /* Tekstinstellingen */
    color: #ffffff; /* Witte tekst voor goed contrast met een donkere afbeelding */
}

.hero-sectionwinkelwagen {
    width: 100%; /* Zorgt dat het vlak de volledige breedte inneemt */
    padding: 30px 20px; /* Geeft ruimte boven/onder en een beetje links/rechts */
    box-sizing: border-box; /* Zorgt dat padding de totale breedte niet beïnvloedt */
    
    /* Achtergrondinstellingen */
    /* VERVANG DEZE URL met een link naar je eigen achtergrondafbeelding */
    background-image: url('winkelwagen.jpg');
    background-size: cover; /* De afbeelding vult het hele vlak, zonder vervorming */
    background-position: center; /* Centreert de afbeelding */
    
    /* Tekstinstellingen */
    color: #ffffff; /* Witte tekst voor goed contrast met een donkere afbeelding */
}

.hero-content{
	max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}


.search-bar {
    display: flex;
	flex-direction: column;
    justify-content: center; /* NIEUW: Centreert de items horizontaal */
    align-items: center;    /* Centreert de items verticaal */
    gap: 10px;
    padding: 15px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #ddd;

}

.hero-content h1 {
    font-size: 3rem; /* Grotere, opvallende lettergrootte */
    font-family: "Proza Display", serif;
    margin: 0; /* Verwijdert standaard marges van de h1 */
		text-shadow: 2px 2px 5px rgba(0, 0, 0, 1); /* Voegt een schaduw toe voor betere leesbaarheid */
	
}


/* CSS voor de nieuwe zoekresultaten */
.suggestion-item-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #eee;
}

.suggestion-item-link:last-child {
    border-bottom: none;
}

.suggestion-item-link:hover,
.suggestion-item-link.active {
    background-color: #f0f0f0;
}

.suggestion-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 4px;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
}

.suggestion-title {
    font-size: 1rem;
    font-weight: 500;
}

.suggestion-title em {
    font-weight: 400;
    font-style: italic;
}

.suggestion-price {
    font-size: 0.9rem;
    color: #555;
}

.suggestion-item-no-results {
    padding: 12px;
    color: #888;
    text-align: center;
}

/* --- VOEG DEZE CSS TOE AAN style.css --- */

/* Styling voor kortingsprijzen */
.prijs-origineel {
    text-decoration: line-through;
    color: #95a5a6; /* Grijs */
    margin-right: 5px;
}

.prijs-korting {
    color: #9a6492; /* Rood om op te vallen */
    font-weight: bold;
}

.prijs-korting2 {
    color: #37674E; /* Rood om op te vallen */
    font-weight: bold;
}

/* Badge voor bulk korting op plantenkaarten */
.bulk-korting-badge {
    display: inline-block;
    background-color: #ca8415; /* Oranje */
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
    margin-top: 5px;
}

/* Tabel voor bulk korting op detailpagina */
.bulk-korting-tabel {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.bulk-korting-tabel th,
.bulk-korting-tabel td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.bulk-korting-tabel th {
    color: #37674E;
    font-weight: bold;
}

/* Dynamische prijs op detailpagina */
#dynamische-prijs-weergave {
    font-size: 1.5em; /* Maak het groter */
    font-weight: bold;
    color: #333;
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
    min-height: 2em;
}

/* --- VERVANG DIT CSS BLOK IN style.css --- */

/* Container voor de bulk korting info op de kaart (altijd zichtbaar) */
.bulk-korting-lijst-kaart {
    background-color: #f8f9fa;
    border-top: 1px dashed #ddd;
    margin-top: 10px;
    padding: 10px;
}

.bulk-korting-lijst-kaart ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
}

.bulk-korting-lijst-kaart li {
    margin-bottom: 5px;
    color: #333;
    display: flex; /* Maakt het makkelijker om prijzen uit te lijnen */
    justify-content: space-between; /* Verdeelt de ruimte */
    align-items: center;
}

/* De doorgestreepte prijs in de lijst */
.bulk-korting-lijst-kaart .prijs-origineel {
    font-size: 0.9em;
    margin-left: 8px; /* Ruimte na 'vanaf X stuks:' */
}

/* De nieuwe, lagere prijs in de lijst */
.bulk-korting-lijst-kaart strong {
    color: #37674E; /* Dezelfde rode kleur als de kortingsprijs */
    font-size: 1em;
}

/* In style.css */

.prijs-weergave {
    flex-grow: 1; /* Zorgt dat het de beschikbare ruimte pakt */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prijs-per-stuk-container {
    font-size: 0.9em;
    color: #9a6492;
	font-weight:700;
}

.prijs-totaal-container {
    font-size: 1.1em;
    font-weight: bold;
    color: #37674E;
}

/* In style.css, voor de detailpagina prijsweergave */

.prijs-weergave-detail {
    margin-bottom: 1.5rem;
}

#stukprijs-container-detail .prijs {
    margin-bottom: 0.25rem; /* Minder ruimte onder de stuksprijs */
}

#totaalprijs-container-detail .totaalprijs {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c5e3f; /* Een passende kleur */
    margin-top: 0;
}

/* Stijl voor de nieuwe korting badge */
.sale-badge {
    background-color: #cf2636; /* Rood */
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-right: 5px; /* Optioneel: voor wat ruimte tussen badges */
}

/* --- AANPASSINGEN VOOR PLANTKAART LAYOUT --- */

/* Maak de kaart een flex-container in kolomrichting */
.plant-kaart {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Zorgt ervoor dat de knop onderaan wordt 'geduwd' */
}

/* De 'a' tag moet kunnen groeien om de ruimte op te vullen */
.plant-kaart .plant-kaart-link {
    flex-grow: 1;
}

/* De container voor prijs en aantal-input */
.plant-kaart-controls {
    display: flex;
    justify-content: space-between; /* Prijs links, aantal rechts */
    align-items: center;
    padding: 10px 15px; /* Wat ruimte binnen de kaart */
    gap: 10px;
	border-top: 1px dashed #ddd;
}

/* Styling voor de aantal input */
.aantal-input-kaart {
    width: 70px; /* Een vaste breedte voor de input */
    padding: 8px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* De nieuwe stijl voor de winkelwagenknop */
.add-to-cart-btn-kaart {
    width: 100%; /* Volledige breedte */
    padding: 10px;
    background-color: #37674E; /* Een mooie groene kleur */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s ease;
    
    /* Zorgt dat de knop netjes aansluit op de kaart-randen */
    border-bottom-left-radius: 8px; /* Afhankelijk van je kaart-styling */
    border-bottom-right-radius: 8px; /* Afhankelijk van je kaart-styling */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.add-to-cart-btn-kaart:hover {
    background-color: #223f30; /* Iets donkerder groen bij hover */
}











/* --- CSS voor verbeterde zoekresultaten (VOLLEDIG BIJGEWERKT) --- */

.suggestion-item-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #eee;
}
.suggestion-item-link:last-child {
    border-bottom: none;
}
.suggestion-item-link:hover,
.suggestion-item-link.active {
    background-color: #f0f0f0;
}

.suggestion-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suggestion-title {
    font-size: 1rem;
    font-weight: 600; /* Maakt de hele naam vetgedrukt */
}
.suggestion-title em {
    font-weight: 600; /* Zorgt dat het italic deel ook vet is */
    font-style: italic;
}

/* Badges */
.suggestion-badges {
    margin-top: 4px;
}
.suggestion-badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    margin-right: 5px;
    display: inline-block;
}
.suggestion-badge.sale-badge {
    background-color: #cf2636;
}
.suggestion-badge.bulk-korting-badge {
    background-color: #ca8415;
}

/* Prijs container */
.suggestion-price-container {
    margin-top: 4px;
    line-height: 1.3;
}

/* Totaalprijs (groot, groen) */
.suggestion-total-price {
    font-size: 1.1em;
    font-weight: bold;
    color: #37674E;
}
.suggestion-stap-info {
    font-size: 0.9em;
    font-weight: normal;
    color: #666;
}

/* Stuksprijs (klein, paars) */
.suggestion-piece-price {
    font-size: 0.9em;
    color: #9a6492;
    font-weight: 700;
}

/* Styling voor doorgestreepte en kortingsprijs in de suggesties */
.suggestion-piece-price .prijs-origineel {
    text-decoration: line-through;
    color: #95a5a6; /* Grijs */
    margin-right: 5px;
}
.suggestion-piece-price .prijs-korting {
    color: #9a6492; /* Paars, consistent met de rest */
}

/* Geen resultaten */
.suggestion-item-no-results {
    padding: 12px;
    color: #888;
    text-align: center;
}

/* --- NIEUW: Styling voor Categorie Kopjes in Zoekresultaten --- */

.suggestion-group-heading {
    padding: 10px 12px 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    background-color: #f7f7f7;
    text-transform: uppercase;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Verwijder de bovenste border van het allereerste kopje */
#search-suggestions > .suggestion-group-heading:first-child {
    border-top: none;
}

/* --- NIEUW: Styling voor Dropdown Menu --- */

.dropdown-container {
    position: relative; /* Noodzakelijk voor de positionering van het dropdown-menu */
}

.dropdown-menu {
    display: none; /* Standaard verborgen */
    position: absolute;
    top: 100%; /* Direct onder het 'Assortiment' item */
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 0 0 5px 5px;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    min-width: 200px; /* Zorgt voor een mooie breedte */
    z-index: 100; /* Zorgt dat het menu over andere content valt */
    border: 1px solid #eee;
}

/* Toon het menu wanneer er over de container wordt gehoverd */
.dropdown-container:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    /* Geen specifieke styling nodig hier */
}

.dropdown-menu a {
    display: block; /* Zorgt dat de hele regel klikbaar is */
    padding: 10px 15px;
    color: #333; /* Reset de kleur van de nav a */
    font-weight: normal; /* Reset de font-weight */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Standaard font */
    font-size: 0.95em; /* Iets kleiner dan hoofdmenu */
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background-color: #f2f2f2;
    color: #2b803a; /* Groene kleur bij hover */
}

/* --- NIEUW: Pijltje voor Dropdown Menu --- */

/* Voeg het pijltje toe aan de link binnen de dropdown container */
.dropdown-container > a::after {
    content: ''; /* Essentieel voor een pseudo-element */
    
    /* De 'border trick' om een driehoek te maken */
    width: 0;
    height: 0;
    border-left: 5px solid transparent; /* Linkerkant (onzichtbaar) */
    border-right: 5px solid transparent; /* Rechterkant (onzichtbaar) */
    border-top: 5px solid #333; /* De zichtbare bovenkant die naar beneden wijst */
    
    /* Positionering en uitlijning */
    display: inline-block;
    margin-left: 8px; /* Ruimte tussen tekst en pijltje */
    vertical-align: middle; /* Zorgt voor nette verticale uitlijning */

    /* Animatie voor de 'hover' state */
    transition: transform 0.2s ease-in-out, border-top-color 0.2s;
}

/* Verander de kleur van het pijltje als de link actief is of bij hover */
.main-nav a.active::after,
.dropdown-container:hover > a::after {
    border-top-color: #2b803a; /* Groene kleur, consistent met de rest */
}

/* Optioneel: Draai het pijltje omhoog wanneer het menu open is */
.dropdown-container:hover > a::after {
    transform: rotate(180deg);
}

/* Styling voor de nieuwe kleur-knoppen */
.kleur-btn {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 0.9em;
    font-weight: 700;
    color: #255710;
}

.kleur-btn:hover {
    background-color: #e0e0e0;
}

.kleur-btn.active {
    background-color: #2c5e32;
    color: white;
    border-color: #2c5e32;
}

/* Ruimte tussen de filter-rijen */
#kleur-filters {
    margin-top: 10px;
}


















/* --- CSS voor Winkelwagen Checkout Layout --- */

#checkout-layout {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* 60% voor formulier, 40% voor samenvatting */
    gap: 2.5rem;
    align-items: flex-start; /* Zorgt dat de kolommen bovenaan uitlijnen */
}

/* Kolom styling */
.checkout-column-left {
    /* Deze kolom heeft geen speciale styling nodig, de form styling is genoeg */
}

.checkout-column-right {
    position: sticky; /* Blijft plakken bij scrollen */
    top: 20px; /* Afstand van de bovenkant van het scherm */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
	width:365px;
}

/* H3 Titels in de checkout sectie */
#checkout-layout h3 {
    margin: 0 0 1rem 0; /* Aangepaste marge */
    font-size: 1.2rem;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

/* Verzendopties styling (blijft grotendeels gelijk) */
#verzendopties {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.verzend-optie {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
    cursor: pointer;
    background-color: #fff;
}
.verzend-optie:has(input:checked) {
    border-color: #4CAF50;
    background-color: #f6fff6;
}
.verzend-optie input[type="radio"] {
    margin-top: 0.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}
.verzend-optie label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
}
.verzend-optie label strong {
    font-size: 1rem;
}
.verzend-optie label span {
    font-size: 0.85rem;
    color: #666;
}


/* Formulier styling (blijft grotendeels gelijk) */
#factuur-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
#factuur-form label {
    margin-bottom: 0.3rem;
    font-weight: bold;
    font-size: 1rem;
}
#factuur-form input {
	width: 100%; 
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; /* Belangrijk voor padding+width */
}
#factuur-form input:read-only {
    background-color: #f2f2f2;
    cursor: not-allowed;
}


/* Samenvatting styling */
#cart-summary {
    padding: 1.5rem;
}

#cart-summary h3 {
    margin-top: 1rem; /* Ruimte boven de titel */
}

.totaal-prijs p {
    margin: 0.5rem 0;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
}
.totaal-prijs .eindtotaal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
#checkout-btn {
    margin-top: 1.5rem;
}

/* Responsive aanpassing voor mobiel */
@media (max-width: 900px) {
    #checkout-layout {
        grid-template-columns: 1fr; /* Stapel de kolommen op elkaar */
    }

    .checkout-column-right {
        position: static; /* Verwijder sticky positie op mobiel */
    }
	
    #checkout-layout {
        grid-template-columns: 1fr; /* Stapel de kolommen op elkaar */
    }

    .checkout-column-right {
        position: static; /* Verwijder sticky positie op mobiel */
    }
    
    /* --- VOEG ONDERSTAANDE REGEL TOE --- */
    .form-grid {
        grid-template-columns: 1fr; /* Zet voornaam/achternaam etc onder elkaar */
    }	
	
}

/* ============================================= */
/* STYLING VOOR LOGIN/REGISTRATIE PAGINA (AANGEPAST) */
/* ============================================= */

.login-container {
    max-width: 500px; /* Iets breder voor de nieuwe tekst */
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.login-container h1 {
    font-family: "Proza Display", serif;
    color: #255710;
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d9c6;
    text-align: center;
}

.login-container > p { /* Gebruik > om alleen de directe <p> te selecteren */
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.6;
}

.login-container h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

#login-form, #register-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Ruimte tussen de velden */
}

.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Voorkomt dat padding de breedte beïnvloedt */
}

.login-container button {
    padding: 12px;
    border-radius: 5px;
    border: none;
    color: white;
    background-color: #37674E; /* Groene actieknop */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-container button:hover {
    background-color: #203d2e;
}

/* Foutmeldingen */
.error {
    color: #e74c3c;
    font-weight: bold;
    min-height: 1.2em; /* Zorgt ervoor dat layout niet verspringt */
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Links om te wisselen */
.login-container p {
    margin-top: 25px;
    color: #555;
    text-align: center;
}

.login-container a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.login-container a:hover {
    text-decoration: underline;
}

/* Styling voor de nieuwsbrief checkbox groep */
.form-group-checkbox {
    display: flex;          /* Zet items naast elkaar */
    flex-wrap: wrap;        /* Zorgt dat het statusbericht eronder kan zakken */
    align-items: flex-start;/* Lijnt uit aan de bovenkant */
    text-align: left;
    margin-top: 10px;
}

/* Specifiek de checkbox weer klein maken (overschrijft de 100% breedte) */
#factuur-form .form-group-checkbox input[type="checkbox"] {
    width: 20px !important; /* Vaste breedte voor het vinkvakje */
    height: 20px;
    margin-right: 10px;     /* Ruimte tussen vinkje en tekst */
    margin-top: 2px;        /* Iets zakken om mooi uit te lijnen met de tekst */
    flex-shrink: 0;         /* Voorkomt dat het vinkje geplet wordt */
    cursor: pointer;
}

/* De label tekst */
.form-group-checkbox label {
    flex: 1;                /* Neemt de rest van de ruimte in */
    font-size: 1em;
    color: #555;
    cursor: pointer;
    margin-left: 0 !important; /* We gebruiken margin op de checkbox, dus hier resetten */
    line-height: 1.4;       /* Iets meer ruimte tussen de regels tekst */
}

/* Het statusberichtje eronder */
.form-group-checkbox p#newsletter-status-msg {
    width: 100%;            /* Forceert naar de volgende regel */
    flex-basis: 100%;
    margin-left: 30px !important; /* Uitlijnen onder de tekst (checkbox is 20px + 10px margin) */
    margin-top: 5px;
}

.order-details-container{
	padding:20px;
	padding-top:0px;
}

/* --- NIEUWE STIJL VOOR ACCOUNT TOGGLE KNOPPEN --- */
.auth-toggle-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.auth-toggle-wrapper p {
    margin-bottom: 10px;
    color: #666;
}

.toggle-btn {
    background-color: transparent;
    border: 2px solid #37674E;
    color: #37674E;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.toggle-btn:hover {
    background-color: #37674E;
    color: white;
}

/* --- STIJL VOOR GEVAAR KNOPPEN (ACCOUNT VERWIJDEREN) --- */
.danger-btn {
    background-color: transparent;
    border: 1px solid #c0392b;
    color: #c0392b;
    margin-top: 5px;
    transition: all 0.3s;
}

.danger-btn:hover {
    background-color: #c0392b;
    color: white;
}

/* --- STYLING PRIVACYBELEID PAGINA --- */
.privacy-content h2 {
    color: #37674E;
    font-size: 1.3em;
    margin-top: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 5px;
}

/* --- STYLING GAST BESTELLING MELDING --- */
#guest-checkout-notice {
    grid-column: 1 / -1; /* Zorgt dat het over de hele breedte gaat */
    margin-bottom: 20px;
}

.guest-notice-box {
    background-color: #e8f4fd; /* Zacht blauw */
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.notice-icon {
    font-size: 24px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.notice-content {
    flex-grow: 1;
}

.notice-content strong {
    display: block;
    color: #0c5460;
    margin-bottom: 2px;
}

.notice-content p {
    margin: 0;
    color: #444;
    font-size: 0.95em;
}

.notice-btn {
    background-color: #3498db;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background 0.2s;
}

.notice-btn:hover {
    background-color: #2980b9;
}

/* Mobiele aanpassing */
@media (max-width: 600px) {
    .guest-notice-box {
        flex-direction: column;
        text-align: center;
    }
    .notice-btn {
        text-align: center;
    }
}

/* --- TOEVOEGEN AAN style.css VOOR GOOGLE LOGIN --- */

.social-login-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.social-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.social-btn img {
    width: 18px;
    height: 18px;
}

/* Specifieke Google styling */
.google-btn {
    background-color: #ffffff;
    color: #757575;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.google-btn:hover {
    background-color: #f7f7f7;
    border-color: #ccc;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Scheidingslijn (bijv. "of met e-mail") */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #888;
    margin: 10px 0 20px 0;
    font-size: 0.9em;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.separator::before {
    margin-right: .5em;
}

.separator::after {
    margin-left: .5em;
}

/* Styling voor de Quill Editor in Admin */
.ql-toolbar {
    background-color: #f8f9fa;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.ql-container {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 1rem;
}

/* Styling voor het nieuwe blok op de plant pagina */
.info-block-styled {
    background-color: #ffffff; /* Of #fdfdfd voor subtiel contrast */
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 20px 20px;
    margin: 40px auto; /* Ruimte boven en onder */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    line-height: 1.8;
    color: #444;
}

.info-block-styled h3 {
    font-family: "Proza Display", serif;
    color: #255710;
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d9c6;
}

/* Zorg dat de HTML uit de editor er goed uitziet */
#gewas-beschrijving-content h3 {
    font-size: 1.2em;
    color: #37674E;
    margin-top: 1.5em;
    border: none;
}

#gewas-beschrijving-content ul, 
#gewas-beschrijving-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

#gewas-beschrijving-content p {
    margin-bottom: 15px;
}

/* Verbergen indien leeg */
.hidden {
    display: none !important;
}

/* --- LOADING OVERLAY STYLING --- */
#payment-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92); /* Wit met lichte transparantie */
    z-index: 9999; /* Zorg dat het boven alles ligt */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.overlay-content {
    text-align: center;
}

.overlay-content p {
    font-family: "Proza Display", serif;
    font-size: 1.5em;
    color: #37674E;
    font-weight: bold;
    margin-top: 20px;
}

/* Grotere loader specifiek voor de overlay */
.big-loader {
    width: 60px;
    height: 60px;
    border-width: 6px; /* Iets dikkere rand */
    border-color: #f3f3f3;
    border-top-color: #37674E;
    margin: 0 auto; /* Centreren */
}

.menu-toggle {
    display: none;
}



@media (max-width: 712px) {
    /* De container van de navigatie */
    .main-nav {
        position: relative; 
        padding: 0;
        display: block !important; /* Zorg dat de container zelf zichtbaar blijft */
        border-top: 1px solid #eee;
    }

    /* 1. De Hamburger Knop styling */
    .menu-toggle {
        display: block !important;
        margin: 0 auto; /* Centreert de knop */
        font-size: 32px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        color: #333;
    }

    /* 2. De lijst met links (nav-menu) */
    .main-nav .nav-menu {
        display: none; /* STANDAARD VERBERGEN */
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100% !important; /* Forceer 100% breedte, negeer de 1280px */
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 0;
        margin: 0;
    }

    /* 3. Tonen wanneer .show class aanwezig is */
    .main-nav .nav-menu.show {
        display: flex !important; 
    }

    /* De links centreren */
    .main-nav .nav-menu li {
        width: 100%;
        text-align: center; /* Zorgt voor tekst centrering */
    }

    .main-nav .nav-menu a {
        display: block;
        padding: 15px;
        border-top: 1px solid #eee;
        width: 100%;
        box-sizing: border-box;
        text-align: center; /* Tekst in het midden */
    }
    
    /* Reset de inner-container voor mobiel */
    .main-nav .inner-container {
        display: block;
        width: 100%;
        margin: 0;
    }

    /* Verberg dropdown pijltjes op mobiel */
    .dropdown-container > a::after {
        display: none !important;
    }

    /* 3. Subkopjes onder Assortiment verbergen */
    .dropdown-container:hover .dropdown-menu,
    .dropdown-menu {
        display: none !important;
    }
	
	
	.main-nav > .inner-container > ul{
		padding:0px !important;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
    .main-header {
        padding: 10px 15px;
    }

    .header-inner {
        display: flex;
        flex-wrap: wrap; /* Zorgt dat de zoekbalk naar de volgende regel zakt */
        align-items: center;
        justify-content: space-between;
    }

    /* 1. TRUCJE: Maak een onzichtbaar blokje links (spacer) */
    /* Dit balanceert de hamburger rechts, zodat het logo optisch in het midden komt */
    .header-inner::before {
        content: '';
        display: block;
        width: 0px; /* Zelfde breedte als je hamburger menu ongeveer */
        order: 1;    /* Helemaal links */
    }

    /* 2. Het Logo (Midden) */
    .logo-link {
        order: 2;       /* In het midden */
        flex-grow: 1;   /* Pak alle ruimte die over is tussen de spacer en de hamburger */
        text-align: center; /* Centreer het plaatje binnen die ruimte */
        display: block; 
    }
    
    .logo {
        margin: 0;
        /* Zorg dat het logo niet te groot is, anders duwt hij de rij uit elkaar */
        max-height: 70px; 
    }

    /* 3. De Hamburger Knop (Rechts) */
    .menu-toggle {
        display: block;
        order: 3;       /* Helemaal rechts */
        width: 40px;    /* Zelfde breedte als de spacer links */
        text-align: right; /* Icoontje rechts uitlijnen */
        margin: 0;
        padding: 0;
        background: none;
        border: none;
        font-size: 32px;
        color: #2a2a2a;
        cursor: pointer;
		margin-right:10px;
    }

    /* 4. De Zoekbalk (Volledige breedte eronder) */
    .search-container {
        width: 100%;
        order: 4;          /* Als laatste */
        margin-top: 0px;  /* Ruimte tussen logo en zoekbalk */
        margin-left: 0;
        margin-right: 0;
    }

    /* Verberg de desktop winkelwagen op mobiel (zoals je had) */
    .cart-icon {
        display: none; 
    }
    
    /* Zorg dat de zoekbalk input goed oogt */
    .header-search input {
        width: 100%;
        box-sizing: border-box;
    }






















    /* Verberg de desktop winkelwagen tekst/icoon als je dat wilt, 
       of pas hem aan. In jouw vorige code was hij hidden. */
    .cart-icon {
        display: none; 
    }

    /* Overige aanpassingen die je al had (bijv. filters verbergen) */
    .arguments-bar {
        display: none;
    }
    
    .container {
        margin: 15px;
    }
	
	.main-header{
		flex-wrap:wrap;
	}
}


@media (max-width: 640px) {
    .header-inner::before {
        content: '';
        display: block;
        width: 40px;
        order: 1;
    }
	
	.planten-grid{
		gap: 10px;
	}
}


/* Mobiele aanpassing */
@media (max-width: 870px) {
	.arguments-bar{
		display:none;
	}
	
	.logo{
		height:70px;
	}
	
	.search-container{
		width:400px;
		padding:10px;
	}
	
	.cart-icon{
		padding:5px;
	}
	
	#geslacht-filters{
		gap: 5px;
	}
	
	.geslacht-btn {
    width: 200px;
    padding: 10px 10px;}
	
	.container{
		margin:15px;
	}
	
	.plant-kaart-stapinfo{
		margin-top:10px;
	}
	
	.cart-item{
		flex-wrap: wrap;
	}
	
	.cart-item-link{
		flex-basis: 30%;
		width: 200px;
	}
	
	.cart-item-info{
		width:200px;
	}
	
	.cart-item-quantity input{
		width:70px;
	}
	
}





/* Mobiele aanpassing */
@media (max-width: 435px) {	
	.search-container{
		width:90%;
	}
	
	.plant-kaart-controls{
		display:block !important;
	}
	
	
	
}




.container {
    max-width: 1300px;
    margin: 0 auto;
	padding:15px;
}


















/* ============================================= */
/* NIEUWE ASSORTIMENT LAYOUT (SIDEBAR + CONTENT) */
/* ============================================= */

.assortiment-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Iets meer ruimte tussen sidebar en resultaten */
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 0 0px;
    align-items: flex-start;
    
    /* Zorg dat de container niet breder wordt dan 1300px en gecentreerd is */
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* --- De Sidebar (Links, Vaste breedte) --- */
.filter-sidebar {
    /* flex: grow shrink basis */
    flex: 0 0 250px; /* Groeit niet, krimpt niet, altijd 250px breed */
    width: 250px;    /* Fallback width */
    
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-group h3, .filter-top-bar h3 {
    color: #255710;
    font-size: 1.2em;
    margin-top: 0;
    border-bottom: 1px solid #e0d9c6;
    margin-bottom: 15px;
}

/* --- De Resultaten Area (Rechts, Rest van de ruimte) --- */
.results-area {
    flex: 1; /* Neemt alle overgebleven ruimte in */
    
    /* CRUCIAAL: Voorkomt dat de CSS Grid de flex-container opblaast en naar onder duwt */
    min-width: 0; 
}

/* Kleuren balk styling */
.filter-top-bar {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd; 
}

/* --- Mobiele Aanpassing --- */
@media (max-width: 870px) {
    .assortiment-wrapper {
        flex-direction: column; /* Sidebar komt boven content */
    }

   .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0; 
        bottom: 0;              /* NIEUW: Pind de sidebar vast aan de onderkant */
        height: auto;           /* NIEUW: Hoogte wordt bepaald door top/bottom */
        
        background-color: white;
        z-index: 2000;
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        
        overflow-y: auto;       /* Scrollen toestaan */
        -webkit-overflow-scrolling: touch; 
        
        /* Padding aan de container zelf verwijderen we hier even voor de zekerheid, 
           we lossen het op in de lijst (zie stap 2) */
        padding: 20px;          
        padding-bottom: 0;      
        
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        margin: 0; 
        border-radius: 0;
        width: 300px;
    }
    
    .results-area {
        width: 100%;
    }
	
	.cart-icon{
		display:none;
	}
}

/* --- De Resultaten Area (Rechts, ~75%) --- */
.results-area {
    flex: 3 1 300px;
}

/* Kleuren balk styling */
.filter-top-bar {
    margin:20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd; /* Scheidingslijn tussen kleurfilters en planten */
}

/* Grid reset binnen results area */
.results-area .planten-grid {
    margin: 0;
    padding: 0;
}

/* ============================================= */
/* KNOPPEN STYLING (GESPLITST)                   */
/* ============================================= */

/* 1. STYLING VOOR DE ZIJBALK (SOORTEN) - VERTICAAL */
.sidebar-filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.geslacht-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #555;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
	font-family: "Segoe UI", serif;
}

.geslacht-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

.geslacht-btn.active {
    background-color: #37674E;
    color: white;
    border-color: #37674E;
    font-weight: bold;
    padding-left: 15px; /* Ruimte voor vinkje */
}

/* 2. STYLING VOOR DE BOVENBALK (KLEUREN) - HORIZONTAAL */
.horizontal-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kleur-btn {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px; /* Pill-shape */
    font-size: 0.9em;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kleur-btn:hover {
    background-color: #e9e9e9;
    border-color: #bbb;
}

.kleur-btn.active {
    background-color: #37674E;
    color: white;
    border-color: #37674E;
    box-shadow: 0 2px 5px rgba(55, 103, 78, 0.3);
}

/* --- Mobiele Aanpassing --- */
@media (max-width: 870px) {
    .assortiment-wrapper {
        flex-direction: column; /* Sidebar komt boven content */
    }

/* OPLOSSING KNOPPEN ONDER ELKAAR & EVEN BREED */
    .sidebar-filter-list {
        display: flex;
        flex-direction: column; /* Zorgt dat ze onder elkaar staan (i.p.v. row) */
        gap: 10px; /* Ruimte tussen de knoppen */
		padding-bottom: 40px; 
    }

    .geslacht-btn {
        width: 100%; /* Vult de volledige breedte van de sidebar */
        padding: 12px 15px; /* Iets grotere padding voor mobiel touch-gemak */
        border-radius: 8px; /* Iets nettere randen */
        text-align: left;   /* Tekst links uitlijnen */
        white-space: nowrap; /* Zorgt dat tekst niet afbreekt, hierdoor wordt sidebar breder */
    }
    
    .geslacht-btn.active {
        padding-left: 15px; 
    }
    
}


/* --- ZWEVENDE WINKELWAGEN KNOP --- */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #9a6492; /* Jouw groene themakleur */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9999; /* Zorgt dat hij altijd bovenop ligt */
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.2s ease, background-color 0.2s;
}

.floating-cart:hover {
    transform: scale(1.1); /* Wordt iets groter bij eroverheen muizen */
    background-color: #824a7a;
}

.floating-cart-count {
    position: absolute;
    top: -10px;
    right: -5px;
    background-color: #f39c12;
    color: white;
    border-radius: 50%;
    padding: 8px 8px;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    min-width: 18px;
    text-align: center;
}



/* --- NIEUW: Styling voor Mobiel Filter Menu --- */

/* De toggle knop (standaard verborgen op desktop) */
#mobile-filter-toggle {
    display: none; /* Desktop: verbergen */
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 990; /* Boven de content, onder de header/sidebar */
    background-color: #9a6492;
    color: white;
    border: none;
    padding: 15px 10px 15px 15px;
    border-radius: 0 10px 10px 0;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: left 0.3s ease;
	font-size:18px;
}

#mobile-filter-toggle:hover {
    background-color: #583653;
    padding-left: 20px;
}

/* De Sluit knop in de sidebar */
.close-sidebar-btn {
    display: none; /* Desktop: verbergen */
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

/* Overlay achtergrond (donker vlak achter menu) */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}
.filter-overlay.active {
    display: block;
}

/* --- MOBIELE WEERGAVE (max-width: 870px) --- */
@media (max-width: 870px) {
    /* Class om menu te openen */
    .filter-sidebar.open {
        transform: translateX(0);
    }

    /* 2. Knoppen zichtbaar maken */
    #mobile-filter-toggle {
        display: block;
    }
    
    .close-sidebar-btn {
        display: block;
    }
}

/* --- STYLING VOOR ACTIEVE FILTERS BALK --- */

.active-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    min-height: 0; /* Voorkomt layout shifts als hij leeg is */
	margin-left:20px;
}

/* De 'Chip' (het labeltje) */
.filter-tag {
    background-color: #e8f5e9; /* Heel lichtgroen */
    border: 1px solid #37674E;
    color: #37674E;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag:hover {
    background-color: #dcedc8;
}

/* Het kruisje in de tag */
.filter-tag .remove-icon {
    margin-left: 8px;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1;
}

/* De 'Wis alles' knop */
.clear-all-filters {
    background: none;
    border: none;
    color: #c0392b; /* Rood */
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9em;
    padding: 6px 12px;
}

.clear-all-filters:hover {
    color: #e74c3c;
    text-decoration: none;
}

/* --- NIEUWE STIJL VOOR AANTAL SELECTORS MET PIJLTJES --- */
.quantity-wrapper2 {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden; /* Zorgt dat de hoekjes van de knoppen niet uitsteken */
    background-color: white;
	width:105px;
}

/* --- NIEUWE STIJL VOOR AANTAL SELECTORS MET PIJLTJES --- */
.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden; /* Zorgt dat de hoekjes van de knoppen niet uitsteken */
    background-color: white;
}

.quantity-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;  /* Lekker breed voor vingers op mobiel */
    height: 30px;
    background-color: #f0f0f0;
    border: none;
    font-size: 1.2rem;
    color: #37674E;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 0; /* Voorkom extra padding */
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-btn:active {
    background-color: #d0d0d0;
}

/* Aanpassing van het input veld binnen de wrapper */
.quantity-wrapper2 input[type="number"] {
    border: none; /* Geen rand, want de wrapper heeft al een rand */
    border-radius: 0;
    text-align: center;
    width: 35px; /* Vaste breedte */
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
    -moz-appearance: textfield; /* Verberg standaard browser pijltjes (Firefox) */
    padding: 5px 0;
    margin: 0;
}

/* Verberg standaard browser pijltjes (Chrome/Safari/Edge) */
.quantity-wrapper2 input::-webkit-outer-spin-button,
.quantity-wrapper2 input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Aanpassing van het input veld binnen de wrapper */
.quantity-wrapper input[type="number"] {
    border: none; /* Geen rand, want de wrapper heeft al een rand */
    border-radius: 0;
    text-align: center;
    width: 35px; /* Vaste breedte */
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
    -moz-appearance: textfield; /* Verberg standaard browser pijltjes (Firefox) */
    padding: 5px 0;
    margin: 0;
}

/* Verberg standaard browser pijltjes (Chrome/Safari/Edge) */
.quantity-wrapper input::-webkit-outer-spin-button,
.quantity-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Specifieke aanpassing voor de detail pagina layout */
.detail-actions .quantity-wrapper {
    margin-right: 10px;
}

.detail-actions .quantity-wrapper2 {
    margin-right: 10px;
}

/* --- AANPASSINGEN VOOR style.css --- */

/* Verberg de oude prijs-weergave containers in de controls als ze nog bestaan */
.plant-kaart-controls .prijs-weergave {
    display: none;
}

/* Zorg dat de controls (input + knop) netjes uitlijnen */
.plant-kaart-controls {
    justify-content: flex-end; /* Alles naar rechts (of space-between als je wilt) */
    gap: 10px;
}

/* Nieuwe prijsblok stijl voor in de plant-kaart-info */
.plant-kaart-prijs-blok {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.prijs-groot {
    font-size: 1em;
    font-weight: bold;
    color: #37674E;
    display: block;
    margin-bottom: 2px;
}

.prijs-klein {
    font-size: 0.9em;
    color: #777;
    font-style: italic;
    display: block;
}

.prijs-klein .prijs-korting {
    color: #9a6492;
    font-weight: bold;
}

/* In de winkelwagen zorgen dat de input niet te breed is */
.cart-item-quantity input {
    width: 60px;
}

/* --- AANPASSINGEN VOOR KAART LAYOUT --- */

/* De balk onderaan de kaart */
.plant-kaart-controls {
    display: flex;
    justify-content: space-between; /* Prijs links, Knoppen rechts */
    align-items: center;
    padding: 10px 15px;
    border-top: 1px solid #f0f0f0;
    gap: 10px;
    background-color: #fff;
}

/* De container voor de grote prijs (links onderin) */
.plant-kaart-prijs-container {
    display: flex;
    align-items: center;
}

.prijs-groot {
    font-size: 1em;
    font-weight: bold;
    color: #37674E;
}

/* De container voor de kleine stukprijs (bovenin, in de info) */
.plant-kaart-prijs-blok-info {
    margin-top: 8px;	
}

.prijs-klein {
    font-size: 0.9em;
    color: #777;
    font-style: italic;
    display: block;
}

.prijs-klein .prijs-korting {
    color: #9a6492;
    font-weight: bold;
}

/* Zorg dat de knoppen groep niet te breed wordt */
.aantal-selectie {
    flex-shrink: 0;
	width:90px;
}

.verpaktPer{
	font-size: 1em;
    font-style: italic;
    font-weight: 700;
    color: #9a6492;
}

.winkelwagenPrijs{
	font-size: 1.25em;
    font-weight: bold;
    color: #37674E;
	margin:0px;
}

/* --- NIEUWE SORTEER BALK STYLING --- */

.results-header {
    display: flex;
    justify-content: space-between; /* Filters links, sorteren rechts */
    align-items: center; /* Verticaal centreren */
    flex-wrap: wrap; /* Zorgt dat het goed breekt op mobiel */
    margin-bottom: 20px;
    gap: 15px;
    padding: 0 20px; /* Zelfde padding als grid */
}

.active-filters-container {
    /* Reset bestaande margin omdat de header die nu regelt */
    margin-bottom: 0 !important;
    margin-left: 0 !important; 
    flex: 1; /* Neemt ruimte in zodat sort naar rechts duwt */
}

.sort-container {
    display: flex;
    align-items: center;
}

#sort-select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    color: #37674E;
    font-size: 0.95em;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: border-color 0.3s;
}

#sort-select:hover, #sort-select:focus {
    border-color: #37674E;
}

/* Aanpassing voor mobiel: sorteren naar links en volledige breedte */
@media (max-width: 600px) {
    .sort-container {
        justify-content: flex-end; /* Of flex-start als je hem links wil */
    }
}

/* Badge voor uitgelichte producten */
.highlight-badge {
    display: inline-block;
    background-color: #d91e1e;
    color: #fff; /* Wit of donkerbruin #4b3621 voor contrast */
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Zorg dat in de admin de knop geen lelijke rand krijgt */
.toggle-highlight-btn:focus {
    outline: none;
    transform: scale(1.2);
}

/* Promo Banner */
.promo-banner {
    background-color: #37674E; /* Groene huisstijlkleur */
    color: white;
    text-align: center;
    padding: 10px 40px; /* Ruimte voor tekst, extra padding rechts voor sluitknop */
    position: relative;
    font-family: "Proza Display", sans-serif;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.promo-banner a {
    color: #fff89a; /* Geel accent voor links */
    text-decoration: underline;
}

.promo-banner #close-promo {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
}

.promo-banner #close-promo:hover {
    opacity: 1;
}

/* Zorg dat de hidden class werkt */
.hidden { display: none !important; }

#newsletter-blocks .editor-section {
    border-left: 4px solid #37674E;
    background: #fdfdfd;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.remove-block:hover {
    text-decoration: underline;
}

#subscriber-count {
    font-size: 1.5rem;
    color: #37674E;
}

/* Voor de account/bestelgeschiedenis */
.order-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.order-summary-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.summary-col {
    flex: 1;
    text-align: center;
    padding: 0 5px;
    font-size: 0.9em;
}

.summary-col .label {
    display: block;
    color: #666;
    font-size: 0.85em;
}

.summary-col .value {
    display: block;
    font-weight: bold;
    color: #333;
    margin-top: 2px;
}

.order-full-details {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.order-full-details.hidden {
    display: none;
}

.order-items-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
    border-bottom: 1px solid #eee;
}

.order-item-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95em;
}

.order-item-detail .item-description {
    color: #555;
}

.order-item-detail .item-price {
    font-weight: 500;
}

.order-costs-summary {
    max-width: 300px; /* Houd de kostenkolom smal */
    margin-left: auto;
    font-size: 0.95em;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.grand-total-row {
    font-weight: bold;
    padding-top: 10px;
    font-size: 1.1em;
}

.discount span {
    color: #e74c3c; /* Rood voor korting */
}

/* Status kleuring in de header */
.status-voorbereiden { color: #f39c12; }
.status-verwerkt { color: #2980b9; }
.status-verstuurd { color: #2ecc71; }
.status-geannuleerd { color: #e74c3c; }

/* Nieuwe universele container voor centrering (matcht header-inner) */
.inner-container {
    max-width: 1200px; /* Zelfde als .header-inner */
    margin: 0 auto;    /* Centreert de container */
    width: 100%;
    display: flex;     /* Zorgt dat we flexbox binnenin kunnen gebruiken */
    box-sizing: border-box;
}

/* Aanpassing Arguments Bar */
.arguments-bar {
    background-color: #9a6492;
    padding: 10px 0; /* Padding naar de buitenkant verplaatst */
    display: block;  /* Was eerst flex, nu is de inner-container de flexbox */
}

/* Aanpassing Arguments Bar */
.arguments-bar-home {
    background-color: #e0d9c6 !important;
    padding: 10px 0; /* Padding naar de buitenkant verplaatst */
    display: block;  /* Was eerst flex, nu is de inner-container de flexbox */
	color:black;
}

.quote-text-home{
	color:#2a2a2a;
}

.arguments-bar .inner-container {
    justify-content: space-between; /* Verdeelt de vinkjes over de 1200px */
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px; /* Een beetje ademruimte aan de zijkanten op tablets */
}

/* Aanpassing Main Nav */
.main-nav {
    padding: 0; /* Padding verwijderd voor strakkere uitlijning */
    border-bottom: 1px solid #dadada; /* Alleen een onderrand voor de hele breedte */
}

/* --- PAGINERING --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 40px;
    font-family: "Segoe UI", serif;
}

.pagination-btn {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #37674E;
    color: white;
    border-color: #37674E;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #e0e0e0;
}

.page-info {
    font-weight: bold;
    color: #37674E;
}







.pagination-container-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    /* Zorg dat hij niet groeit/krimpt, maar zijn eigen breedte pakt */
    flex: 0 0 auto; 
    margin: 0 15px;
}

.pagination-container-top .pagination-btn {
    padding: 5px 12px;
    font-size: 0.9em;
    background-color: #fff;
}


.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 20px;
}

/* 1. Links: Filters (pakt ruimte, lijnt links uit) */
.active-filters-container {
    flex: 1; 
    min-width: 0; /* Voorkomt dat flexbox breekt bij veel filters */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 0 !important; /* Reset oude margin */
	padding-left: 15px;
    padding-right: 15px;
}

.sort-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}


/* Alleen toepassen op schermen groter dan 712px */
@media (min-width: 713px) {
    .main-nav .inner-container {
        justify-content: center;
    }

    .main-nav .nav-menu {
        list-style: none;
        margin: 0;
        padding: 15px 0; 
        display: flex;
        width: 100%; /* Verander 1280px naar 100% voor flexibiliteit */
        max-width: 1200px;
        justify-content: space-evenly;
    }
	
	.active-filters-container {
		padding-bottom: 15px;
	}
}






/* Zorg dat de header-inner ook consistent is */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px; /* Padding toegevoegd voor mobiel/tablet */
}

@media (max-width: 715px) {
	.arguments-bar {
		display:none;
	}
	
	.header-inner {
		padding: 0px 0px; /* Padding toegevoegd voor mobiel/tablet */
	}
	
	.main-header{
		padding:5px;
	}
	
	
}

@media (max-width: 870px) {
	.main-nav > .inner-container > ul {
		padding:15px;
	}
	
	.header-inner{
		padding:0px;
	}
}

/* --- NIEUWS STYLING --- */

/* Grid voor overzicht */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.news-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}

.news-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 5px;
}

.news-card h3 {
    margin: 0 0 10px 0;
    color: #37674E;
    font-size: 1.2em;
}

.news-card p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Max 3 regels */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    margin-top: 15px;
    color: #37674E;
    font-weight: bold;
    font-size: 0.9em;
}

/* Detail Pagina Styling */
.news-detail-wrapper {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.news-detail-header-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.news-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.news-intro {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.news-content-block {
    margin-bottom: 30px;
}

.news-content-block h3 {
    color: #37674E;
    margin-bottom: 10px;
}

.block-text {
    line-height: 1.8;
    color: #333;
}

.block-img {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- NIEUWE HOME STYLING --- */

/* Hero Secties */
.dynamic-hero {
    position: relative;
    width: 100%;
    min-height: 650px; /* Minimale hoogte */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
}

/* Donkere overlay over foto zodat tekst leesbaar is */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3); 
    z-index: 1;
}

.dynamic-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.dynamic-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.dynamic-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-block;
    background-color: #37674E;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    border: 2px solid white;
}

.hero-btn:hover {
    background-color: white;
    color: #37674E;
}

/* NIEUWE CODE */
.home-quotes .inner-container {
    display: grid; /* Gebruik Grid in plaats van Flex voor strakke kolommen */
    grid-template-columns: repeat(4, 1fr); /* Forceer 4 kolommen naast elkaar */
    gap: 30px;
    padding: 30px 20px;
    justify-items: center; /* Centreer de items in hun kolom */
}

/* Zorg dat de items zelf ook netjes uitlijnen */
.home-quotes .quote-item {
    width: 100%;
    justify-content: center; /* Centreer de inhoud (icon + tekst) */
}

/* Zodra het scherm te smal wordt voor 4, schakel over naar PRECIES 2 */
@media (max-width: 992px) {
    .home-quotes .inner-container {
        grid-template-columns: repeat(2, 1fr); /* Forceer 2 kolommen */
    }
    
    /* Zorg dat de items links uitgelijnd blijven als dat mooier staat op tablet, 
       of laat dit weg om ze gecentreerd te houden */
    .home-quotes .quote-item {
        max-width: 300px; /* Voorkom dat ze te breed uitrekken */
        margin: 0 auto;
    }
}


.quote-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.quote-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Sectie Titels */
.section-title {
    text-align: center;
    font-family: "Proza Display", serif;
    color: #255710;
    font-size: 2em;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title2 {
    text-align: center;
    font-family: "Proza Display", serif;
    color: #255710;
    font-size: 2em;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
	margin-bottom:15px;
}

.section-title2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e0d9c6;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e0d9c6;
}

.home-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Home Plant Cards (Simpeler) */
.home-plant-card {
    text-align: center;
}
.home-plant-card .plant-kaart-info {
    align-content:center;
}

/* News Grid op Home */
.home-news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.btn-outline {
    background: transparent;
    border: 2px solid #37674E;
    color: #37674E;
}
.btn-outline:hover {
    background: #37674E;
    color: white;
}

/* Responsive Fonts */
@media (max-width: 768px) {
    .dynamic-hero h1 { font-size: 2rem; }
    .quote-item { font-size: 0.9rem; }
    .quote-icon { width: 24px; height: 24px; }
}

/* --- Home Slider / Carousel CSS --- */
.home-slider-container {
    position: relative;
    padding: 0 10px; /* Ruimte voor pijlen op mobiel/tablet */
}

/* De scrollbare balk */
.home-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px; /* Ruimte voor scrollbar (die we verbergen) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    align-items: stretch; /* Zorg dat alle kaarten even hoog zijn */
}

/* Verberg scrollbar voor Chrome/Safari */
.home-slider-track::-webkit-scrollbar {
    display: none;
}

/* Zorg dat kaarten een vaste breedte hebben in de slider en niet krimpen */
.home-slider-track .plant-kaart {
    flex: 0 0 280px; /* Vaste breedte per kaart */
    min-width: 280px;
    margin-bottom: 0; /* Geen margin onder in slider */
}

/* Navigatie pijlen */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #37674E;
    transition: all 0.2s;
}

.slider-arrow:hover {
    background: #37674E;
    color: white;
    border-color: #37674E;
}

.slider-arrow.prev { left: -15px; }
.slider-arrow.next { right: -15px; }

/* Op mobiel de pijlen verbergen of anders positioneren indien nodig */
@media (max-width: 768px) {
    .slider-arrow { display: none; } /* Mobiel kan swipen */
    .home-slider-track .plant-kaart { flex: 0 0 85%; min-width: 85%; } /* Iets bredere kaarten op mobiel */
}

.home-slider-track {
    /* Bestaande regels... */
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth; /* Zorgt voor zacht scrollen bij pijltjes */
    scrollbar-width: none;
    align-items: stretch;
    
    /* NIEUWE REGELS VOOR DRAG-TO-SCROLL: */
    cursor: grab;            /* Handje */
    user-select: none;       /* Voorkom tekst selecteren tijdens slepen */
    -webkit-user-select: none;
}

.home-slider-track.active {
    cursor: grabbing;        /* Dichtgeknepen handje tijdens slepen */
    scroll-behavior: auto;   /* Direct reageren tijdens slepen (geen vertraging) */
}

/* Zorg dat plaatjes niet gesleept worden als bestand (ghost image) */
.home-slider-track img {
    pointer-events: none;
}





/* --- Styling voor de 'Bekijk alle planten' knop --- */
.button {
    display: inline-block;
    background-color: #37674E; /* Jouw thema groen */
    color: white;
    text-decoration: none;
    font-family: "Segoe UI", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 40px; /* Ruime padding maakt de knop groter en klikbaarder */
    border-radius: 10px; /* Pil-vorm (ronde zijkanten) */
    border: 2px solid #37674E;
    transition: all 0.3s ease; /* Zorgt voor soepele animatie */
    box-shadow: 0 4px 10px rgba(55, 103, 78, 0.2); /* Zachte groene schaduw */
    margin-top: 10px;
    cursor: pointer;
}

.button:hover {
    background-color: #ffffff; /* Wit worden bij hover */
    color: #37674E; /* Tekst wordt groen */
    transform: translateY(-3px); /* Knop komt iets omhoog */
    box-shadow: 0 6px 15px rgba(55, 103, 78, 0.3); /* Schaduw wordt iets groter */
}

.button:active {
    transform: translateY(-1px); /* Iets indrukken bij klik */
    box-shadow: 0 3px 8px rgba(55, 103, 78, 0.2);
}

/* style.css */

/* Nieuwsbrief formulier styling */
.newsletter-wrapper {
    margin-top: 25px;
    min-height: 60px; /* Voorkomt verspringen bij laden */
}

/* Voor gasten: Input + Knop */
.newsletter-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-input-group input {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 250px;
    max-width: 100%;
}

.newsletter-input-group button {
    background-color: #9a6492; /* Paars accent */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-input-group button:hover {
    background-color: #824a7a;
}

/* Voor ingelogde gebruikers: Checkbox */
.newsletter-loggedin-group {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    color: #333;
    font-weight: 500;
}

.newsletter-loggedin-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.newsletter-loggedin-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #37674E;
}

/* Styling voor feedback berichten */
.newsletter-msg {
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.95rem;
    color: #fff; /* Wit op de donkere hero achtergrond */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.newsletter-msg.success { color: #81efac; }
.newsletter-msg.error { color: #ff8c8c; }

/* Specifiek voor detail pagina (lichte achtergrond) */
.detail-newsletter-box .newsletter-msg {
    color: #333;
    text-shadow: none;
}
.detail-newsletter-box .newsletter-msg.success { color: #27ae60; }
.detail-newsletter-box .newsletter-msg.error { color: #c0392b; }

/* --- AANPASSING PAGINERING CENTREREN --- */

/* Desktop: Gebruik Grid om paginering perfect in het midden te zetten */
.results-header {
    display: grid;
    /* Indeling: [Lege ruimte] [Paginering Midden] [Sorteren Rechts] */
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
    gap: 15px;
}

/* Paginering in de middelste kolom plaatsen */
.pagination-container-top {
    grid-column: 2;
    justify-self: center;
    /* Zorg dat de flex eigenschappen behouden blijven voor de knoppen intern */
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0; /* Reset margins */
}

/* Sorteer container in de rechter kolom en rechts uitlijnen */
.sort-container {
    grid-column: 3;
    justify-self: end;
    display: flex;
}

/* --- MOBIELE WEERGAVE (Terug naar links/rechts) --- */
@media (max-width: 768px) {
    .results-header {
        display: flex; /* Terug naar Flexbox */
        justify-content: space-between; /* Duw items uit elkaar (links & rechts) */
        flex-wrap: wrap; /* Zorg dat het past op kleine schermen */
    }

    .pagination-container-top {
        order: 1; /* Zorg dat deze links staat */
        justify-self: start; /* Reset grid eigenschap */
        margin-left: 0;
    }

    .sort-container {
        order: 2; /* Zorg dat deze rechts staat */
        justify-self: end; /* Reset grid eigenschap */
    }
}

.pagination-container .pagination-btn {
    padding: 5px 12px;       /* Kleiner, zoals boven */
    font-size: 0.9em;        /* Iets kleiner font */
    background-color: #fff;  /* Wit i.p.v. grijs */
    /* De border en hover styles erven ze al van de algemene .pagination-btn class */
}

/* Pas de ruimte tussen de knoppen aan (was 15px) */
.pagination-container {
    gap: 10px; 
}

/* --- AANGEPASTE STYLING VOOR ACCOUNT KNOPPEN --- */

/* Wrapper om de knoppen netjes onder elkaar te zetten */
.account-actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px; /* Zorgt voor een mooie breedte van de knoppen */
}

/* De Uitlog knop in Huisstijl (Groen) */
#logout-btn {
    background-color: #37674E; /* Jouw thema groen */
    color: white;
    border: 1px solid #37674E;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    font-family: "Segoe UI", sans-serif;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 0; /* Reset eventuele oude margins */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#logout-btn:hover {
    background-color: #203d2e; /* Iets donkerder bij hover */
    border-color: #203d2e;
    transform: translateY(-1px);
}

/* De Verwijder knop (Subtiel, wordt pas rood bij hover) */
.danger-btn {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #888; /* Grijs om niet af te leiden */
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    font-family: "Segoe UI", sans-serif;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.danger-btn:hover {
    background-color: #fff5f5; /* Heel licht rood achtergrondje */
    border-color: #c0392b;
    color: #c0392b;
}

/* Alleen toepassen op schermen groter dan 712px */
@media (max-width: 480px) {
	.kenmerken-tabel td:first-child {
		width: 90px;
	}
}

.min-aantal-label {
    display: block;
    font-size: 0.8em;
    color: #e67e22; /* Oranje voor attentie */
    font-weight: bold;
    margin-top: 4px;
}