* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  position: sticky;
  top: 0;
}

header .logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #4caf50;
  width: 10%;
  scale: 1;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #4caf50;
}

.winkel-titel {
  margin-top: 2rem;
  text-align: center;
  color: #43a047;
}

.nav-icon {
  display: inline-block;
  margin-left: 10px;
}

.nav-icon a {
  padding: 5px;
  display: inline-block;
  color: #333;
  transition: color 0.3s;
}

.nav-icon a:hover {
  color: #4caf50;
}

.nav-icon i {
  width: 24px;
  height: 24px;
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: none;
  min-width: 180px;
  z-index: 1000;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #555;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #f8f8f8;
  color: #4caf50;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-cart {
  position: relative;
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  min-width: 240px;
  display: none;
  z-index: 1000;
}

.dropdown-cart:hover .cart-dropdown {
  display: block;
}

.cart-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.8rem;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-btn {
  border: none;
  background: none;
  font-size: 16px;
  color: #777;
  cursor: pointer;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background-color: #43a047;
}

.dropdown-wishlist {
  position: relative;
}

.wishlist-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  min-width: 280px;
  display: none;
  z-index: 1000;
}

.dropdown-wishlist:hover .wishlist-dropdown {
  display: block;
}

.wishlist-item {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wishlist-item:last-child {
  border-bottom: none;
}

.wishlist-item-desc {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.wishlist-item-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #777;
  transition: color 0.2s;
}

.hero {
  background: url("/img/front-pic.jpg") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  margin: 0 auto;
  border-radius: 10px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #fadadd;
  color: #333;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #f1c3c3;
}

.boeketten {
  padding: 50px 0;
}

.boeketten h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #4caf50;
}

.boeketten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.boeket-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}

.boeket-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.boeket-card img {
  width: 100%;
  height: auto;
  display: block;
}

.boeket-card h3 {
  font-size: 1.2rem;
  margin: 15px;
}

.boeket-card p {
  font-size: 0.95rem;
  margin: 0 15px 10px 15px;
  color: #666;
}

.prijs {
  font-weight: bold;
  color: #4caf50;
  display: block;
  margin: 0 15px 15px 15px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
  position: absolute;
  bottom: 0;
  width: 100%;
  position: sticky;
  z-index: 999;
}

.detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 0;
}

.detail-image {
  flex: 1 1 400px;
  margin-left: 8px;
}

.detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.detail-info {
  flex: 1 1 400px;
}

.detail-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #4caf50;
}

.prijs-detail {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.beschrijving {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Boekettenpagina container */
.winkel-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Plantenpagina container */
.planten-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Plantenkaart in dezelfde stijl als boeketten */
.plant-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.plant-card:hover {
  transform: translateY(-5px);
}

.plant-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.plant-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #444;
}

.plant-card p {
  font-size: 0.95rem;
  color: #777;
}

.plant-card .prijs {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
  color: #4caf50;
  font-size: 1.1rem;
}

/* Benodigdhedenpagina container */
.benodigdheden-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Benodigdhedenkaart */
.benodigdheid-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benodigdheid-card:hover {
  transform: translateY(-5px);
}

.benodigdheid-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.benodigdheid-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #444;
}

.benodigdheid-card p {
  font-size: 0.95rem;
  color: #777;
}

.benodigdheid-card .prijs {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
  color: #4caf50;
  font-size: 1.1rem;
}

/* Contactpagina */
.contact-container {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #4caf50;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.btn-verzend {
  background-color: #4caf50;
  color: white;
  font-size: 1rem;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-verzend:hover {
  background-color: #43a047;
}

/* Loginpagina */
.login-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 0 20px;
}

.login-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #4caf50;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form label {
  font-weight: 500;
  color: #333;
}

.login-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.login-form input:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.btn-login {
  background-color: #4caf50;
  color: white;
  font-size: 1rem;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #43a047;
}

.login-links {
  text-align: center;
  margin-top: 10px;
}

.login-links a {
  text-decoration: none;
  color: #4caf50;
  font-size: 0.95rem;
}

/* Registratiepagina */
.register-container {
  max-width: 500px;
  margin: 60px auto;
  padding: 0 20px;
}

.register-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #4caf50;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
}

.register-form label {
  font-weight: 500;
  color: #333;
}

.register-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.register-form input:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.btn-register {
  background-color: #4caf50;
  color: white;
  font-size: 1rem;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-register:hover {
  background-color: #43a047;
}

/* Gebruikerspagina */
.user-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.user-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #4caf50;
}

.user-section {
  margin-bottom: 50px;
}

.user-section h3 {
  margin-bottom: 20px;
  color: #333;
}

.user-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.user-form label {
  font-weight: 500;
  color: #333;
}

.user-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.user-form input:focus {
  border-color: #4caf50;
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.btn-save {
  align-self: start;
  background-color: #4caf50;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-save:hover {
  background-color: #43a047;
}

/* Bestelhistoriek tabel */
.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.order-table th,
.order-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.order-table th {
  background-color: #f5f5f5;
  color: #4caf50;
}

form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 80vh;
  padding-left: 10%;
  gap: 20px;
}

p.afrekenTxt {
  float: right;
  background-color: #4caf50;
  padding-left: 10px;
  padding-right: 10px;
  padding: 5px;
  border-radius: 10px;
  color: white;
  text-shadow: 1px 1px black;
  cursor: pointer;
}

form p {
  font-size: xx-large;
  font-family: verdana;
}

.inputName {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

input {
  width: 500px;
  height: 35px;
  border-radius: 10px;
  outline: none;
  border-color: black;
  border: 1px solid black;
  padding-left: 10px;
  font-size: large;
}

.sendToOther p {
  font-size: large;
}

.checker {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

input[type="checkbox"] {
  width: max-content;
}

.sendToOtherData {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.form {
  height: max-content;
  overflow-y: scroll;
  padding-bottom: 20%;
  scroll-behavior: smooth;
}

form textarea {
  width: 500px;
  height: 75px;
}

.EBest {
  margin-top: 65px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
}

.paymentSec {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: whitesmoke;
  margin-top: 15px;
}

.bet-opt {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

input[type="radio"] {
  width: max-content;
  cursor: pointer;
}

.bet-opt p {
  font-size: large;
}

input[type="submit"] {
  width: max-content;
  padding-left: 15px;
  padding-right: 15px;
  float: right;
  background-color: #4caf50;
  color: white;
  text-shadow: 1px 1px black;
  border: none;
  cursor: pointer;
}

.subBut {
  width: 95%;
}

.hidden {
  display: none;
}

.user-sectionBT {
  width: 50%;
}

.voorraad-status.voorraad {
  color: #1ab31a;
  font-weight: bold;
  margin-left: 8px;
}
.voorraad-status.bestelling {
  color: orange;
  font-weight: bold;
  margin-left: 8px;
}
.pcpflex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  margin-left: 15px;
}

body {
  /* Luxe achtergrond met zacht bloemenpatroon en goudaccent */
  background:
    url("https://www.transparenttextures.com/patterns/flowers.png"),
    linear-gradient(120deg, #fffbe6 0%, #f7e7ce 60%, #f8e3a0 100%);
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: url("https://pngimg.com/uploads/rose/rose_PNG67087.png") no-repeat
    center center;
  background-size: cover;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  bottom: -100px;
  right: -90px;
  width: 410px;
  height: 410px;
  background: url("https://pngimg.com/uploads/rose/rose_PNG66991.png") no-repeat
    center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

header,
.container--header {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 16px 0 rgba(211, 173, 105, 0.08);
}

.hero {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  margin: 44px auto 24px auto;
  max-width: 700px;
  box-shadow:
    0 10px 40px 0 rgba(211, 173, 105, 0.14),
    0 2px 8px 0 rgba(0, 0, 0, 0.04);
  padding: 36px 28px 32px 28px;
  position: relative;
}

.hero-text h2,
.boeketten h2 {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 2.2em;
  color: #b98b2a;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px #fff6db;
  margin-bottom: 0.2em;
}

.hero-text p {
  font-size: 1.17em;
  color: #6d4c19;
  margin-bottom: 1.2em;
}

.btn {
  background: linear-gradient(90deg, #ffe29e 0%, #eebf63 100%);
  color: #6d4c19;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 13px 38px;
  font-size: 1.08em;
  box-shadow: 0 2px 12px 0 #f5e5b1;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn:hover {
  background: linear-gradient(90deg, #eebf63 0%, #ffe29e 100%);
  color: #b98b2a;
}

.container {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(185, 139, 42, 0.09);
  /* padding: 32px 18px 28px 18px; */
  /* margin-top: 18px; */
  /* margin-bottom: 43px; */
  max-width: 1100px;
  border: 1px solid gold;
}

.boeket-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(211, 173, 105, 0.13);
  border: 1.5px solid #f5e5b1;
  max-width: 260px;
  padding: 18px 13px 17px 13px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  position: relative;
}

.boeket-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow:
    0 8px 32px 0 #f5e5b1,
    0 2px 8px 0 #eebf63;
  border-color: #eebf63;
}

.boeket-card img {
  border-radius: 14px;
  box-shadow: 0 2px 8px #f5e5b1;
  width: 100%;
  height: 317px;
  object-fit: cover;
  margin-bottom: 11px;
}

.boeket-card h3 {
  color: #b98b2a;
  font-size: 1.19em;
  margin: 0 0 6px 0;
  font-weight: 600;
}

.boeket-card p {
  color: #6d4c19;
  font-size: 1em;
  margin-bottom: 9px;
  min-height: 38px;
}

@media (max-width: 900px) {
  .boeketten-grid {
    gap: 22px;
  }
  .container {
    padding: 18px 3vw;
  }
  .boeket-card {
    max-width: 95vw;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 18px 8px 16px 8px;
    margin: 20px 4px 12px 4px;
  }
  .container {
    padding: 8px 2vw;
  }
  .boeket-card img {
    height: 317px;
  }
}
header,
.container--header {
  position: sticky !important;
  top: 0;
  z-index: 2000 !important; /* Zorgt dat header altijd bovenop ligt */
}

body::before,
body::after {
  z-index: 0 !important; /* Altijd onder alles, dus ook onder header */
}

.boeketten-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  min-height: 70vh;
  gap: 0;
  width: 100%;
}

.filter-sidebar {
  width: 260px;
  min-width: 210px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(185, 139, 42, 0.11);
  padding: 28px 18px 22px 18px;
  margin: 0 28px 0 0;
  position: sticky;
  top: 110px;
  height: fit-content;
  z-index: 10;
}

.boeketten-producten {
  flex: 1 1 0;
  min-width: 0;
  margin-left: 300px; /* Zorgt dat de producten niet onder de filter komen */
}

@media (max-width: 1100px) {
  .boeketten-layout {
    flex-direction: column;
  }
  .filter-sidebar {
    width: 100%;
    max-width: unset;
    margin: 0 0 24px 0;
    position: static;
  }
}

.filter-sidebar {
  width: 260px;
  min-width: 210px;
  max-width: 320px;
  background: linear-gradient(135deg, #fffbe6 70%, #f7e7ce 100%);
  border-radius: 22px;
  box-shadow:
    0 6px 28px 0 rgba(185, 139, 42, 0.13),
    0 2px 8px 0 #ffe29e;
  padding: 32px 22px 28px 22px;
  margin: 0 34px 0 0;
  height: 59vh;
  overflow-y: auto;
  z-index: 10;
  border: 2px solid #f5e5b1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  left: 0;
  top: 246px; /* Zorg dat dit net onder je header valt, evt. aanpassen */
  transition: box-shadow 0.2s;
}
.filter-sidebar:hover {
  box-shadow:
    0 8px 42px 0 #f5e5b1,
    0 2px 16px 0 #eebf63;
  border-color: #eebf63;
}

.filter-sidebar h3 {
  color: #b98b2a;
  font-size: 1.32em;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-align: left;
}

.filter-input,
.filter-sidebar select,
.filter-sidebar input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid #eebf63;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  background: #fffbe6;
  color: #6d4c19;
  box-shadow: 0 1px 4px 0 #f5e5b1;
  transition:
    border 0.2s,
    box-shadow 0.2s;
}
.filter-input:focus {
  border: 2px solid #b98b2a;
  outline: none;
  box-shadow: 0 2px 10px #ffe29e;
}

.filter-sidebar label {
  font-weight: 600;
  color: #b98b2a;
  margin-bottom: 5px;
  margin-top: 7px;
  display: block;
  font-size: 1em;
  letter-spacing: 0.01em;
}

.btn-filter-reset {
  width: 100%;
  background: linear-gradient(90deg, #ffe29e 0%, #eebf63 100%);
  color: #b98b2a;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 1.07em;
  margin-top: 15px;
  cursor: pointer;
  box-shadow: 0 1px 6px #f5e5b1;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-filter-reset:hover {
  background: linear-gradient(90deg, #eebf63 0%, #ffe29e 100%);
  color: #6d4c19;
}

/* Custom scrollbar voor filterbalk */
.filter-sidebar {
  scrollbar-width: thin;
  scrollbar-color: #eebf63 #fffbe6;
}
.filter-sidebar::-webkit-scrollbar {
  width: 10px;
  background: #fffbe6;
  border-radius: 8px;
}
.filter-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffe29e 60%, #eebf63 100%);
  border-radius: 8px;
  border: 2px solid #fffbe6;
}
.filter-sidebar::-webkit-scrollbar-thumb:hover {
  background: #eebf63;
}
@media (max-width: 1100px) {
  .boeketten-layout {
    flex-direction: column;
  }
  .filter-sidebar {
    position: static;
    width: 100%;
    max-width: unset;
    margin: 0 0 24px 0;
    height: auto;
    left: unset;
    top: unset;
  }
  .boeketten-producten {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .filter-sidebar {
    display: none !important;
  }
}
