/* Import Font Awesome 6.7.2 */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');


/*//////////////////////////////////////////////////////////////////////
knoppen
///////////////////////////////////////////////////////////////////////*/

#submit-btn {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

/*//////////////////////////////////////////////////////////////////////
style bij bestelling v d kleuren formveld 
///////////////////////////////////////////////////////////////////////*/

.artikel-bestel {
  text-align: center;
}

.artikel-bestel  input[type=text] {
  width: 100px;
  height: 35px;
  padding: 12px;
  margin: 5px 0;
  box-sizing: border-box;
  text-align: center;
}

.artikel-info {
text-align: center;

}

/*//////////////////////////////////////////////////////////////////////
scroll to top
///////////////////////////////////////////////////////////////////////*/


#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    display: none; /* Hidden by default; show with JS on scroll */
}


/*//////////////////////////////////////////////////////////////////////
plusmin button
///////////////////////////////////////////////////////////////////////*/
/* Container for the buttons and input */
.quantity-controls {
     display: flex;
    align-items: center;    /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    border: 0px solid #ddd;
    border-radius: 25px; /* Modern capsule shape */
    padding: 2px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Style for Plus/Minus Buttons */
.minus-btn, .plus-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: #f8f9fa;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.minus-btn:hover, .plus-btn:hover {
    background-color: #000; /* Darker on hover */
    color: #fff;
}

/* Style for the numeric input */
.qty-input {
    width: 45px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    background: transparent;
}

/* Remove default spin arrows in Chrome/Safari */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*//////////////////////////////////////////////////////////////////////
basket button floating
///////////////////////////////////////////////////////////////////////*/
.floating-basket {
    position: fixed;
    right: 20px;          /* Distance from right edge */
   top: 150px;         /* Distance from bottom edge */
    width: 60px;
    height: 60px;
    background-color: #152733; /* Matches your header color */
    border-radius: 50%;    /* Makes it a circle */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;        /* Keeps it above all other content */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-basket:hover {
    transform: scale(1.1); /* Slightly grows on hover */
}

.floating-basket i {
    color: white !important; /* Force white icon */
    font-size: 24px;
}

.floating-basket .basket-count {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-top: -2px;
}

.floating-basket .basket-count-fee {
    color: red;
    font-size: 14px;
    font-weight: bold;
    margin-top: -2px;
}

.floating-basket .basket-count-free {
    color: green;
    font-size: 14px;
    font-weight: bold;
    margin-top: -2px;
}

.floating-basketeuro {
    position: fixed;
    right: 20px;          /* Distance from right edge */
   top: 250px;         /* Distance from bottom edge */
    width: 60px;
    height: 60px;
    background-color: #152733; /* Matches your header color */
    border-radius: 50%;    /* Makes it a circle */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;        /* Keeps it above all other content */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-basketeuro:hover {
    transform: scale(1.1); /* Slightly grows on hover */
}

.floating-basketeuro i {
    color: white !important; /* Force white icon */
    font-size: 24px;
}

.floating-basketeuro .basket-count {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-top: -2px;
}


.floating-basketfreight-fee {
    position: fixed;
    right: 20px;          /* Distance from right edge */
   top: 350px;         /* Distance from bottom edge */
    width: 60px;
    height: 60px;
    background-color: #152733; /* Matches your header color */
    border-radius: 50%;    /* Makes it a circle */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;        /* Keeps it above all other content */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-basketfreight-free {
    position: fixed;
    right: 20px;          /* Distance from right edge */
   top: 350px;         /* Distance from bottom edge */
    width: 60px;
    height: 60px;
    background-color: green; /* Matches your header color */
    border-radius: 50%;    /* Makes it a circle */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;        /* Keeps it above all other content */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-download-zip {
    position: fixed;
    right: 20px;
    bottom: 100px; /* adjust so it doesn't overlap basket */
    background-color: #068a3d;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-weight: bold;
    
}

.floating-download-zip:hover {
    background-color: #046c2f;
}

.floating-download-zip i {
    font-size: 16px;
}

.floating-reset-zip {
    position: fixed;
    right: 20px;
    bottom: 160px; /* above ZIP button */
    background-color: #cc3333;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-weight: bold;
    width: 150px;
}

.floating-reset-zip:hover {
    background-color: #a62828;
}


.floating-basketfreight:hover {
    transform: scale(1.1); /* Slightly grows on hover */
}

.floating-basketfreight i {
    color: white !important; /* Force white icon */
    font-size: 24px;
}

.floating-basketfreight .basket-count {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-top: -2px;
}

/*//////////////////////////////////////////////////////////////////////
intro div
///////////////////////////////////////////////////////////////////////*/
.intro {
    margin-top: 3rem;
}

.intro p {
  font-size: 1.5rem;
  line-height: 1.6;
  text-wrap: balance; 
}

.intro h1 {
  font-size: 2rem;
  color: #338858;
}
.intro h3 {
  font-size: 3rem;
  color: #338858;
}



.intro ul li {
   font-size: 1.5rem;
  color: #338858;   
}

.intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.intro h2 {
     font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight:800;
    font-style: normal;
    font-size: 1,5rem;
    color: #216625;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.intro p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* Elegant streepje eronder */
.intro h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #068a3d; /* SACCOO groen */
}

.inner .intro  p {
 font-size: 1.1rem;
 /* text-align: left; */
  margin-left: 0;
  padding-left: 0;
  line-height: 1.0;
  text-wrap: balance; 
  padding-bottom: 1px;
}

.inner .intro ul li p {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

.inner .pp p {
text-align: center;
}

.inner .tt p {
text-align: center;
}


@media (max-width: 768px) {
.intro p {
  font-size: 1,5rem;
  
}

.intro h1 {
  font-size: 1.8rem;
  color: #338858;
}
.intro h3 {
  font-size: 1.2rem;
  color: #338858;
}

.intro h2 {
    font-size: 1.0rem;
  color: #338858;
 }

.intro ul li {
   font-size: 1,5rem;
  color: #338858;   
}
}




.intro_about {
    margin-top: 3rem;
}

.intro_about p {
  font-size: 1.0rem;
  line-height: 1.6;
  text-wrap: balance; 
}

.intro_about h1 {
    font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #338858;
}
.intro_about h3 {
    font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #338858;
}

.intro_about ul li {
    font-family: 'Playfair Display', serif;
   font-size: 1.5rem;
  color: #338858;   
}

.intro_about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.intro_about p {
    font-family: 'Playfair Display', serif;
    font-size: 1,5rem;
    color: #2c3e50;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* Elegant streepje eronder */
.intro_about h3::after {
    font-family: 'Playfair Display', serif;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #068a3d; /* SACCOO groen */
}

.inner .intro_about ul li p {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}


@media (max-width: 768px) {
.intro_about p {
  font-size: 1,5rem;
}

.intro_about h1 {
    
  font-size: 1.8rem;
  color: #338858;
}
.intro_about h3 {
  font-size: 2rem;
  color: #338858;
}

.intro_about ul li  {
   font-size: 1,6rem;
  color: #338858;   
}
}

/*//////////////////////////////////////////////////////////////////////
introfaq div
///////////////////////////////////////////////////////////////////////*/
.introfaq {
    margin-top: 3rem;
}

.introfaq p {
  
  line-height: 1.6;
  text-wrap: balance; 
}

.introfaq p a {
  font-size: 1.5rem;
  line-height: 1.6;
  text-wrap: balance; 
}

.introfaq h1 {
  font-size: 2rem;
  color: #338858;
}

.introfaq h2 {
  font-size: 2rem;
  color: #2c3e50;
  font-family: 'Playfair Display', serif;
}

.introfaq h3 {
  font-size: 3rem;
  color: #338858;
}

.introfaq ul li {
    font-family: 'Playfair Display', serif;
   /*font-size: 1.8rem;*/
   color: #2c3e50;
}

.introfaq h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c3e50;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.introfaq p {
    font-family: 'Playfair Display', serif;
    /*font-size: 2rem;*/
    color: #2c3e50;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* Elegant streepje eronder */
.introfaq h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #068a3d; /* SACCOO groen */
}

.inner .introfaq ul li p {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}


@media (max-width: 768px) {
.introfaq p {
  font-size: 1,2rem;
  
}

.introfaq h1 {
  font-size: 1.4rem;
   color: #2c3e50;
}

.introfaq h2 {
  font-size: 1.4rem;
   color: #2c3e50;
}

.introfaq h3 {
  font-size: 1.5rem;
   color: #2c3e50;
}

.introfaq ul li {
   font-size: 1,2rem;
   color: #2c3e50; 
}
}



/*//////////////////////////////////////////////////////////////////////
3 banners Unique selling point
///////////////////////////////////////////////////////////////////////*/
/* Container voor de kolommen */
.usp-container {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    flex-wrap: wrap; /* Voor mobiele weergave */
}

/* De one_third klasse instellen */
.one_third {
    flex: 1;
  /* min-width: 100%;  Zorgt dat ze op mobiel onder elkaar springen */
}

/* De styling van het paneel zelf */
.usp-card {
    background: #ffffff;
    padding: 1.0rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Zorgt voor gelijke hoogte */
}

/* Hover effect voor extra beleving */
.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #007bff; /* Optioneel: kleur van je merk */
}

/* Styling voor de tekst binnen de p tag */
.usp-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-top: 1rem;
    /* Gebruik text-wrap: balance voor mooiere tekstverdeling in 2026 */
    text-wrap: balance; 
}

.intro .usp-card p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-top: 1rem;
    /* Gebruik text-wrap: balance voor mooiere tekstverdeling in 2026 */
    text-wrap: balance; 
}

/* Styling voor de koppen */
.usp-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #338858;
    margin-bottom: 0.5rem;
}
/* De hoofdcontainer die de drie boxen vasthoudt */
/* 1. De Grid: Centreert de kolommen op de pagina */
.usp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;           /* Centreert de hele grid op de pagina */
    justify-content: center;  /* Centreert de kolommen als er 1 of 2 zijn */
    padding: 20px;
}

/* 2. De Kolom: Zorgt voor de basisbreedte */
.one_third {
    flex: 1 1 300px;         /* Flexibel, maar minimaal 300px breed */
    display: flex;
    justify-content: center;  /* Centreert het PANEEL binnen de kolom */
}

/* 3. Het Paneel: De box zelf */
.panel {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    width: 100%;             /* Vult de kolom */
    max-width: 350px;        /* Optioneel: voorkomt dat het paneel te breed wordt */
    
    /* Inhoud centreren binnen het paneel */
    display: flex;
    flex-direction: column;
    align-items: center;      /* Centreert afbeelding horizontaal */
    justify-content: center;  /* Centreert afbeelding verticaal */
    text-align: center;
    
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* 4. De Afbeelding: Resizen en centreren */
.panel img {
    width: 100%;
     max-width: 100%;    /*    Jouw gewenste grootte */
    height: auto;
    display: block;
    margin-bottom: 0;        /* Verwijder marge als er geen tekst onder staat */
}

/* Responsive voor iPad & Mobiel */
@media (max-width: 599px) {
    .usp-grid {
        flex-direction: column;
        align-items: center;  /* Zorgt dat de boxen op mobiel in het midden staan */
    }
    .usp-card p {
    font-size: 1.2rem;
}

/* Styling voor de koppen */
.usp-card h3 {
    font-size: 2rem;
}
    
    .one_third {
        width: 45%;
    }
}

/*//////////////////////////////////////////////////////////////////////
BUILDING NEW SITE
///////////////////////////////////////////////////////////////////////*/
.temp {
    margin-top: 3rem;
}

.temp h1 {
font-size: 10rem;
color: #04AA6D;
font-weight: bolder;
text-align: center;
}

@media (max-width: 768px) {
 .temp h1 {
   font-size: 5rem; 
 }
}

/*//////////////////////////////////////////////////////////////////////
shopping basket
///////////////////////////////////////////////////////////////////////*/


.shopping-basket {
    width: 70%;
    border-collapse: collapse;
    margin: 0 auto; /* This centers the table horizontally */
}

/* Ensure the parent container can contain the table properly */
.inner {
    width: 100%; 
    min-height: 450px;/* or some other defined width */
    /* Add any other necessary styling for .inner here */
}


.shopping-basket th, 
.shopping-basket td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* Zebra striping for data rows only */
.shopping-basket tbody tr:nth-child(even) td {
    background-color: #f9f9f9;
}

/* Remove style from the trash bin cell */
.shopping-basket td.remove-cell {
    background-color: #ffffff !important; /* Forces background to stay white */
    border-bottom: none;                 /* Removes the line style in this part */
    text-align: center;
    width: 50px;
}

/* Header for the bin column remains clean */
.shopping-basket th.action-column {
    background-color: transparent;
    border-bottom: none;
}

/* Icon hover effect */
.remove-btn:hover svg path {
    fill: #c92a2a;
}

@media screen and (max-width: 600px) {
    /* 1. Make the table and container full width */
    .shopping-basket {
        width: 100%;
        border: 0;
    }

    /* 2. Hide the original table headers (Group, Name, etc.) */
    .shopping-basket thead {
        display: none;
    }

    /* 3. Turn every row into a 'card' */
    .shopping-basket tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        background-color: #fff !important; /* Overrides zebra stripes */
    }

    /* 4. Turn every cell into a block with a label */
    .shopping-basket td {
        display: flex;
        justify-content: space-between;
        text-align: right;
        padding: 8px 5px;
        border-bottom: 1px solid #eee;
    }

    .shopping-basket td:last-child {
        border-bottom: none;
    }

    /* 5. Add labels using the :before pseudo-element */
    .shopping-basket td::before {
        content: attr(data-label); /* Pulls text from the HTML attribute */
        font-weight: bold;
        text-align: left;
        color: #666;
        flex: 1;
    }

    /* 6. Special handling for the remove (dustbin) cell */
    .shopping-basket td.remove-cell {
        background-color: transparent !important;
        justify-content: center;
        padding-top: 15px;
    }
    
    .shopping-basket td.remove-cell::before {
        content: ""; /* No label for the bin */
    }
}


/*//////////////////////////////////////////////////////////////////////
basket buttons 
///////////////////////////////////////////////////////////////////////*/

   /* Container instellingen */
.basket-actions-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

/* Uniforme Button Styling voor zowel <a> als <button> */
.btn, 
.basket-actions-centered button, 
.basket-actions-centered input[type="submit"] {
    display: inline-flex;      /* Gebruik flex voor perfecte centrering van tekst */
    align-items: center;
    justify-content: center;
    
    /* Afmetingen fixeren */
    width: 200px;              /* Vaste breedte voor uniformiteit op desktop */
    height: 50px;              /* Vaste hoogte */
    padding: 0 20px;           /* Horizontale padding */
    box-sizing: border-box;    /* Zorgt dat padding de breedte niet beïnvloedt */
    
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s, transform 0.1s, opacity 0.2s;
    
    /* Reset voor standaard browser styling op buttons */
    appearance: none;
    outline: none;
}

/* Button Kleuren */
.btn-back { background-color: #f8f9fa; color: #495057; border-color: #dee2e6; }
.btn-save { background-color: #e7f5ff; color: #1971c2; border-color: #a5d8ff; }
.btn-clear { background-color: #fff5f5; color: #e03131; border-color: #ffa8a8; }
.btn-checkout { background-color: #2f9e44; color: white; }

.btn:hover, button:hover { opacity: 0.85; }
.btn:active, button:active { transform: translateY(1px); }

/* Mobile handling (max 600px) */
/* --- RESPONSIVE DEEL (Max 600px) --- */
@media screen and (max-width: 600px) {
    .basket-actions-centered {
        flex-direction: column; /* Knoppen onder elkaar */
        gap: 10px;
        padding: 10px;
    }

    .btn, 
    .basket-actions-centered button, 
    .basket-actions-centered input[type="submit"] {
       /*  width: 100%;       Volledige breedte van het scherm */
        max-width: 100%;   /* Forceer overschrijven van vaste breedte */
        margin: 0;         /* Reset marges voor strakke uitlijning */
    }
}

    
/*//////////////////////////////////////////////////////////////////////
basket buttons 
///////////////////////////////////////////////////////////////////////*/


.one_fourth_shop {
    width: 45%;
    float: left; /* Of gebruik display: inline-block / flexbox afhankelijk van je layout */
    margin: 1.5%; /* Optioneel: voeg wat witruimte toe om de 100% te vullen */
}

@media screen and (min-width: 601px) and (max-width: 792px) {
.one_fourth_shop {
        width: 30%;
        margin: 0.5%; /* Optioneel: pas marges aan voor 4 kolommen naast elkaar */
    }
}


@media screen and (min-width: 793px) and (max-width: 1024px) {
    .one_fourth_shop {
        width: 24%;
        margin: 0.5%; /* Optioneel: pas marges aan voor 4 kolommen naast elkaar */
    }
}

@media (min-width: 1024px) {
    .one_fourth_shop {
    width: 13%;
    float: left; /* Of gebruik display: inline-block / flexbox afhankelijk van je layout */
    margin: 1.5%; /* Optioneel: voeg wat witruimte toe om de 100% te vullen */
}
}






  






  
/*//////////////////////////////////////////////////////////////////////
kleuren voorraad aanduiding 
///////////////////////////////////////////////////////////////////////*/
    .status-stock { color: green; font-weight: bold; }
    .status-soldout { color: red; font-weight: bold; }
    .status-default { color: black; }

  

/*//////////////////////////////////////////////////////////////////////
pop up image details 
///////////////////////////////////////////////////////////////////////*/

.image-hover-container {
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.main-thumb {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    background: white;
    transition: opacity .2s ease;
}




.image-popup {
    display: none; /* Altijd verborgen tenzij .active aanwezig is */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #aeb5b1;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 575px;
}

/* Alleen tonen als de class 'active' wordt toegevoegd via JS */
.image-popup.active {
    display: block;
}

.popup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.popup-grid img {
    width: 100%;
    /*height: 200px;*/
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #555;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #de0a0a;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}

.close-popup:hover { color: #ff0000; }

@media screen and (min-width: 601px) and (max-width: 792px) {
 .popup-grid img {height: 200px; }
 .image-popup { width: 450px;}

}

@media screen and (max-width: 600px) {
    .image-popup { width: 45%; max-width: 320px; padding: 5px; margin-top: 25px;}
    .popup-grid { grid-template-columns: 2fr; gap: 8px; }
  /*   .popup-grid img { height: 130px; }*/
}

/*//////////////////////////////////////////////////////////////////////
modal popup image
///////////////////////////////////////////////////////////////////////*/

.modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}



.close {
    position: absolute;
    top: 15px; right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/*//////////////////////////////////////////////////////////////////////
formulier velden basket
///////////////////////////////////////////////////////////////////////*/

.qty{
  width: 60px;
  text-align: center;
}

/*//////////////////////////////////////////////////////////////////////
formulier velden basket
///////////////////////////////////////////////////////////////////////*/

.productlabelnew {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #77967a; /* Opvallend oranje/rood */
        color: white;
        padding: 3px 10px;
        font-weight: bold;
        font-size: 11px;
        z-index: 20;
        text-transform: uppercase;
        border-radius: 2px;

}


@media screen and (max-width: 792px) {
    .productlabelnew {
         width: 80px;
    font-size: 9px;
    }
  /*   .popup-grid img { height: 130px; }*/
}

.productlabelsales {
        position: absolute;
        top: 10px;
        left: 40%;
        background-color: #ff4500; /* Opvallend oranje/rood */
        color: white;
        padding: 3px 10px;
        font-weight: bold;
        font-size: 11px;
        z-index: 20;
        text-transform: uppercase;
        border-radius: 2px;

}


@media screen and (max-width: 792px) {
    .productlabelsales {
         width: 80px;
    font-size: 9px;
    }
  /*   .popup-grid img { height: 130px; }*/
}

.productlabelsalesartikel {
   /* position: absolute; */
top: 10px;
left: 50%;
transform: translateX(50%);
background-color: #ff4500;
color: white;
padding: 3px 10px;
font-weight: bold;
font-size: 11px;
z-index: 20;
text-transform: uppercase;
border-radius: 2px;
width: 100px;

}


@media screen and (max-width: 792px) {
    .productlabelsalesartikel {
         width: 80px;
    font-size: 9px;
    }
  /*   .popup-grid img { height: 130px; }*/
}

   

/*//////////////////////////////////////////////////////////////////////
kleur punten
///////////////////////////////////////////////////////////////////////*/

.kleurruimte {
        width: 10px;

}

   

/*//////////////////////////////////////////////////////////////////////
kleur punten
///////////////////////////////////////////////////////////////////////*/

.kleurruimte {
        width: 10px;

}

/*//////////////////////////////////////////////////////////////////////
commet field basket
///////////////////////////////////////////////////////////////////////*/


.form-comment-centered {
     width: 70%;
    display: block;
    margin: 0 auto; /* Centreert de div horizontaal */
    padding: 20px;  /* Ruimte aan de binnenkant */
    box-sizing: border-box; /* Voorkomt dat padding de 70% breedte vergroot */
}

.basket-textarea {
    width: 100%;
    display: block;
    box-sizing: border-box; /* Zorgt dat padding de breedte niet overschrijdt */
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    resize: vertical; /* Voorkomt dat de gebruiker de breedte kapot trekt */
}


/*//////////////////////////////////////////////////////////////////////
pagination
///////////////////////////////////////////////////////////////////////*/



    .pagination-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 40px 0;
        font-family: 'Inter', sans-serif;
    }

    .pagination-container a, 
    .pagination-container strong {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s ease;
    }

    /* Standaard links */
    .pagination-container a {
        background-color: #f8f9fa;
        color: #495057;
        border: 1px solid #dee2e6;
    }

    .pagination-container a:hover {
        background-color: #e9ecef;
        border-color: #ced4da;
        transform: translateY(-1px);
    }

    /* Actieve pagina */
    .pagination-container strong {
        background-color: #acbfa4;
        color: white;
        border: 1px solid #acbfa4;
        box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
    }

    /* Vorige / Volgende knoppen */
    .nav-btn {
        font-weight: 600;
        background-color: white !important;
    }

/*//////////////////////////////////////////////////////////////////////
delivery time
///////////////////////////////////////////////////////////////////////*/

.artikelinfo .deltime {
    font-size: 12px;
}







/*//////////////////////////////////////////////////////////////////////
inner shop slider
///////////////////////////////////////////////////////////////////////*/


.innershop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* 6 items per row */
.one_sixth {
    position: relative;
    width: calc(16.666% - 20px);
    box-sizing: border-box;
    text-align: center;
}

/* images */
.one_sixth img {
    width: 100%;
    height: auto;
    display: block;
}

.one_sixth .kleurruimte {
    display: inline-block;
    width: 10px;
    max-width: 10px;
    height: 10px;      /* optional if they are color squares */
    margin: 2px;
    vertical-align: middle;
}

/* tablet */
@media (max-width: 1200px) {
    .one_sixth {
        width: calc(25% - 20px); /* 4 per row */
    }
}

/* tablet small */
@media (max-width: 768px) {
    .one_sixth {
        width: calc(50% - 20px); /* 2 per row */
    }
}

/* mobile */
@media (max-width: 480px) {
    .one_sixth {
        width: 100%; /* 1 per row */
    }
}

@media (min-width: 1280px) {
.innershop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
}

.pagemid .maincontent .innershop {
   /* width: 90%;*/
    position: relative;
    margin: 0 auto;
    padding: 0;
    color: #F4F9FB;
    
    /* Activeer Flexbox */
    display: flex;
    flex-wrap: wrap;      /* Zorgt dat items naar de volgende regel gaan */
    justify-content: center; /* Centreert de items horizontaal */
    gap: 20px;            /* Optioneel: ruimte tussen de items */
}

/* De items binnen de innershop (bijv. div's of artikelen) */
.pagemid .maincontent .innershop > div { 
    /* Berekening: 100% / 6 = 16.66% */
    /* We trekken de gap eraf om ze naast elkaar te houden */
    flex: 0 0 calc(16.66% - 20px); 
    box-sizing: border-box;
    text-align: center;
}

/*//////////////////////////////////////////////////////////////////////
button shop BC
///////////////////////////////////////////////////////////////////////*/


.luxury-button {
  display: inline-block;
  padding: 5px 5px 5px 5px; 
  background-color: #1a1a1a; /* Elegant diepzwart */
  color: #ffffff; /* Luxe goudkleur */
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: 'Georgia', serif; /* Klassiek font voor luxe */
  font-size: 10px;
  border: 1px solid #d4af37;
  transition: all 0.4s ease; /* Vloeiende overgang */
  position: relative;
  overflow: hidden;
}

.luxury-button-out {
  display: inline-block;
  padding: 5px 5px 5px 5px; 
  background-color: #8d8888; /* Elegant diepzwart */
  color: #ffffff; /* Luxe goudkleur */
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: 'Georgia', serif; /* Klassiek font voor luxe */
  font-size: 10px;
  border: 1px solid #d4af37;
  transition: all 0.4s ease; /* Vloeiende overgang */
  position: relative;
  overflow: hidden;
}

/* Hover effect voor interactie */
.luxury-button:hover {
  background-color: #d4af37;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px); /* Subtiele lift */
}

/* Actieve klik-status */
.luxury-button:active {
  transform: translateY(0);
}

/*//////////////////////////////////////////////////////////////////////
modal info
///////////////////////////////////////////////////////////////////////*/


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s ease;
}

@media screen and (max-width: 600px) {
   .modal-box  p { 
    font-size: 10px;
    }
  /*   .popup-grid img { height: 130px; }*/
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

/* Mobile behavior */
@media (max-width: 600px) {
  .modal-overlay {
    align-items: flex-end;
  }

  .modal-box {
    width: 85%;
    border-radius: 16px 16px 0 0;
    animation: slideUp 0.3s ease;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/*//////////////////////////////////////////////////////////////////////
shop-filter-form  (shop2.php)
///////////////////////////////////////////////////////////////////////*/



.shop-filter-form {
  margin: 20px 0 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: end;
  background-color: lightgray ;
  padding-top: 10px;
    padding-left: 10px;
    padding-right: 15px;
    padding-bottom: 15px;
}

.shop-filter-form label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.shop-filter-form select {
  min-width: 140px;
  padding: 8px 10px;
}

.filter-reset-link {
  text-decoration: none;
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 12px;
  line-height: 1.2;
}

.filter-reset-link:hover {
  background: #000;
  color: #fff;
}

.no-products-message {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
}

@media (max-width: 600px) {
  .no-products-message {
    font-size: 1.6rem;
  }
}

/*//////////////////////////////////////////////////////////////////////
shop-filter-form  luxery shop2
///////////////////////////////////////////////////////////////////////*/


.luxury-filter-btn {
    background: #111;
    color: #fff;
    border: 1px solid #111;
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: uppercase;
}

.luxury-filter-btn:hover {
    background: #fff;
    color: #111;
}

.luxury-filter-box {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
}

.luxury-filter-box.open {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 12px;
}

.luxury-filter-inner {
    padding: 20px;
    background: #fafafa;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);

    display: flex;           /* ✅ makes items inline */
    gap: 30px;               /* space between filters */
    flex-wrap: wrap;         /* responsive wrap */
    align-items: flex-end;   /* align nicely */
}

.luxury-filter-inner > div {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.luxury-filter-inner label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222;
}

.luxury-filter-inner select {
    width: 100%;
    max-width: 260px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
}

/*//////////////////////////////////////////////////////////////////////
artikel shop2
///////////////////////////////////////////////////////////////////////*/

.artgrp p {
text-align: center;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

/*//////////////////////////////////////////////////////////////////////
one third image overlay
///////////////////////////////////////////////////////////////////////*/


.centerprofile .one_third .img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.centerprofile .one_third .img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.centerprofile .one_third .img-box:hover img {
  transform: scale(1.04);
}

.centerprofile .one_third .img-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 45px 18px 18px;
  box-sizing: border-box;
  color: #fff;
  font-family: inherit;
  letter-spacing: 0.04em;
  /*text-transform: uppercase;*/
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.38) 45%,
    rgba(0, 0, 0, 0) 100%
  );
}

.centerprofile  .one_third .img-text strong {
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}

.centerprofile  .one_third .img-text span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0.16em;
  opacity: 0.85;
  color: #fff;
  text-align: left;
}

.mobile-only {
  display: none;
}

@media (max-width: 600px) {
  .centerprofile  .one_third .img-text span { 
    font-size: 9px;
    letter-spacing: 0.0em;
  }

  .centerprofile .one_third .img-text strong { 
    font-size: 9px;
    letter-spacing: 0.0em;
  }

  .centerprofile .one_third .img-text {
     font-size: 9px;
   }

     .mobile-only {
    display: inline-block !important;
  }


}

/*//////////////////////////////////////////////////////////////////////
product table artikelbc.php
///////////////////////////////////////////////////////////////////////*/

.intro .productInfo h2 {
    font-family: "Dancing Script", cursive;
    font-weight: 800;
    font-size: 3rem;
    text-align: left;
}

.intro .productInfo p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight:200;
    font-size: 1rem;
    text-align: left;
}


body .intro .productInfo h2 {
    font-family: "Dancing Script", cursive;
}

.product-table th {
    width: 100px;
    text-align: left;
}

.product-table td {
 width: 200px;
 text-align: left;

}

.features-full {
    display: none;
    width: 100%;
    padding: 20px;
    background: #f9f9f9;
    box-sizing: border-box;
}

.features-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.features-table th {
    width: 150px;
    text-align: left;
}

.featureButton {

  height: 25px;
  padding: 0 10px 0 10px;
  border: none;
  background-color: green;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
}

/*//////////////////////////////////////////////////////////////////////
center image one third
///////////////////////////////////////////////////////////////////////*/

/* center the whole block */
.centerprofile {
  width: 100%;
  max-width: 2480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0;
}

.centerprofile .one_third {
  float: none !important;
  display: inline-block !important;
  width: 33.333% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  vertical-align: top;
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 10px;
}

.centerprofile .one_third img {
  width: 100% !important;
  display: block;
}

/* hide Lisa above 792px */
.centerprofile .one_third.mobile-only {
  display: none !important;
}

/* mobile: show 4 images in 2 columns */
@media (max-width: 792px) {
  .centerprofile .one_third {
    width: 50% !important;
    padding: 0 6px;
  }

  .centerprofile .one_third.mobile-only {
    display: inline-block !important;
  }
}

/*//////////////////////////////////////////////////////////////////////
drukkerij willems contact
///////////////////////////////////////////////////////////////////////*/

.contact-card {
  width: 100%;
  max-width: 720px;
  margin: 60px auto;
  padding: 42px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(78, 25, 101, 0.08);
  box-shadow: 0 24px 70px rgba(78, 25, 101, 0.12);
}

.contact-card label {
  display: block;
  margin: 0 0 8px 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4e1965;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 15px 17px;
  background: #f8faf9;
  border: 1px solid #dfe7dd;
  border-radius: 14px;
  font-size: 15px;
  color: #152733;
  outline: none;
  transition: all 0.25s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  background: #ffffff;
  border-color: #acbfa4;
  box-shadow: 0 0 0 4px rgba(172, 191, 164, 0.25);
}

.contact-card textarea {
  resize: vertical;
  min-height: 180px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.contact-card button {
  width: 100%;
  margin-top: 10px;
  padding: 16px 22px;
  border: none;
  border-radius: 16px;
  background: #4e1965;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(78, 25, 101, 0.22);
  transition: all 0.25s ease;
}

.contact-card button:hover {
  background: #acbfa4;
  color: #152733;
  transform: translateY(-2px);
}

.form-notice {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff4f4;
  border: 1px solid #f3c5c5;
  color: #b42318;
  font-weight: 600;
}

.form-success {
  padding: 50px 20px;
  text-align: center;
}

.form-success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef5eb;
  color: #4e1965;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 800;
}

.form-success h2 {
  margin-bottom: 10px;
  color: #152733;
  font-size: 28px;
}

.form-success p {
  margin-bottom: 28px;
  color: #667085;
  font-size: 16px;
}

.form-success a {
  display: inline-block;
  padding: 14px 24px;
  background: #4e1965;
  color: #ffffff;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.form-success a:hover {
  background: #acbfa4;
  color: #152733;
}

@media (max-width: 768px) {
  .contact-card {
    margin: 35px auto;
    padding: 26px 20px;
    border-radius: 22px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


