/* 🔄 Basisinstellingen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: white;
  color: black;
  transition: all 0.3s ease-in-out;
}

/* 🧱 Layout */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: white;
  flex-wrap: wrap;
  gap: 0.5rem;
  line-height: 1.6;
}

input[type="checkbox"] {
  appearance: none;
  height: 20px;
  width: 20px;
  border: 2px solid black;
  border-radius: 50%;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  vertical-align: middle;
}

input[type="checkbox"]::before {
  content: '';
  background-color: black;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  box-shadow: 0 0 8px black;
  background-image: url('checkbox/check.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  rotate: -360deg;
  scale: 0;
  opacity: 0;
  transition: 200ms ease;
}

input[type="checkbox"]:checked::before {
  rotate: 0;
  scale: 1;
  opacity: 1;
}

input[type="checkbox"]:focus-visible {
  outline: 2px solid black;
  outline-offset: 2px;
}

html.no-js body > *:not(noscript) {
  display: none !important;
}

html.no-js .no-js-warning {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 2rem;
  line-height: 1.6;
}

.maintenance {
  display: block;
  position: relative;
  text-align: center;
  align-content: center;
  height: 100vh;
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 2rem;
}

.maintenance-div {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 5rem);
  margin-top: 1rem;
}

.maintenance img {  
  margin: 0 auto;
  width: 80vw;
  max-width: 800px;
}

.maintenance p {
  font-size: clamp(1rem, 2vw, 3rem);
  margin-top: 0.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.logo:hover,
.logo:focus,
.logo:active {
  color: inherit;
  text-decoration: none;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1rem;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0rem;
  transition: background-color 0.2s;
  border-radius: 0.75rem; /* afgeronde hoeken */
  border: 2px solid black; /* vaste border */
}

.cta-button:hover {
  background-color: white;
  color: black;
  border-color: black;
}

.cta-button-alt {
  background: none;
  color: inherit;
  border: 2px solid transparent;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: border-color 0.2s;
  text-decoration: none;
}

.cta-button-alt:hover {
  border-color: black;
}

.user-button {
  display: inline-block;
  padding: 0.75rem 1rem;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0rem;
  transition: background-color 0.2s;
  border-radius: 0.75rem; /* afgeronde hoeken */
  border: 2px solid black; /* vaste border */
}

.user-button:hover {
  background-color: white;
  color: black;
  border-color: black;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  z-index: 20;
  padding: 0.5rem;
}

.user-dropdown.open {
  display: block;
}

.user-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0.5rem;
  transition: background 0.2s;
  text-decoration: none;
  text-align: right;
  color: black;
}

.user-dropdown a:hover {
  background-color: #f4f4f4;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: background-color 0.2s;
}

.nav-link:hover {
  background-color: #f4f4f4;
}

.product-preview {
  padding: 2rem;
}

.product-preview a {
  color: black;
}

.product-grid-index {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.product-card-index {
  border: 1px solid transparent;
  padding: 1rem;
  flex: 1 1 250px;
  text-align: center;
  border-radius: 1rem; /* afgeronde hoeken */
  min-height: 20rem;
  height: auto;
  overflow: hidden;
}

.product-card-index a {
  text-decoration: none;
}

.product-card-index img {
  height: 16rem;
}

.product-card-index:hover {
  border-color: #ccc;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: white;
  margin-top: 2rem;
  border-top: 1px solid #f4f4f4; /* scheidingslijn bovenaan */
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links li {
  font-size: 1rem;
  color: inherit;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.social-media img {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.2s;
  cursor: pointer;
}

.social-icon-light {
  display: block;
}

.social-icon-dark {
  display: none;
}

.cookie-banner {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background: #f0f0f0;
  color: #222;
  text-align: center;
  padding: 15px;
  z-index: 9999;
  font-size: 14px;
}

.cookie-banner p {
  margin: 0 0 10px 0;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cookie-buttons button {
  background: #000;
  color: #f0f0f0;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s ease-in-out;
}

.cookie-buttons button:hover {
  background: #444;
}

/* Zoekbalk */
.search-bar {
  flex: 1;
  max-width: 400px;
  min-width: 102px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #f4f4f4;
  border-radius: 2rem;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #ddd;
  transition: width 0.3s ease;
}

.search-bar input {
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  outline: none;
  font-size: 1rem;
  flex: 1;
  color: #222;
}

/* Taalkeuze */
.lang-select {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid #ccc;
  background: #f4f4f4;
  font-size: 1rem;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
}

.lang-select:focus {
  border-color: #888;
}

.custom-lang-select {
  position: relative;
  display: inline-block;
  margin-left: 0rem;
  cursor: pointer;
  outline: none;
}

.selected-flag {
  font-size: 1.65rem;
  user-select: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.custom-lang-select:focus .selected-flag,
.custom-lang-select.open .selected-flag {
  background: #e0e0e0;
}

.flag-dropdown {
  display: none;
  position: absolute;
  top: 130%;
  right: 0;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 10;
  min-width: 220px;
  padding: 0.5rem 0;
}

.flag-dropdown div {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.flag-dropdown div:hover {
  background: #f4f4f4;
}

.custom-lang-select.open .flag-dropdown {
  display: block;
}

.flag-icon {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  margin: 0;
  border-radius: 0.2rem;
  background: none;
  object-fit: contain;
}

.selected-flag img {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  vertical-align: middle;
  border-radius: 0.2rem;
  background: none;
  object-fit: contain;
}

.selected-flag:hover {
  background-color: #f4f4f4;
}

/* Winkelwagentje knop */
.cart-button {
  display: inline-block;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
}

.cart-icon-light {
  display: block;
}

.cart-icon-dark {
  display: none;
}

.cart-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.cart-button:hover .cart-icon-wrapper {
  background-color: #f4f4f4;
}

.cart-icon {
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}

.cart-dropdown {
  display: none;
  position: absolute;
  top: 130%;
  right: 0;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 240px;
  padding: 1rem;
  z-index: 20;
}

.cart-button:hover .cart-dropdown {
  display: block;
}

.cart-dropdown p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.cart-dropdown .empty-cart {
  text-align: center;
  color: #444;
  padding: 0rem;
}

.cart-dropdown ul {
  padding: 0;
  margin: 0;
}

.cart-dropdown li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

/* Dropdown cart list items */
.dropdown-cart-list li {
  display: flex;
  align-items: center;
  justify-content: space-between; /* verdeelt naam/prijs */
  padding: 6px 0;
}

.dropdown-cart-list .item-text {
  display: flex;
  align-items: center;
  gap: 8px; /* ruimte tussen afbeelding en naam */
}

/* De prijs span apart stylen */
.dropdown-cart-list .item-price {
  margin-left: auto; /* duwt de prijs naar rechts */
}

.dropdown-item-image {
  width: 40px;
  height: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.dropdown-item-image-light {
  display: block;
}

.dropdown-item-image-dark {
  display: none;
}

.item-image {
  width: 20vw !important;
  height: auto !important;
}

.item-image-light {
  display: block;
}

.item-image-dark {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink:0;
}

.header-center {
  display: flex;
  gap: 0rem;
  margin-left: -5rem;
  justify-content: center;
  flex: 1; /* neemt alle beschikbare ruimte tussen links en rechts in */
}

.item-text {
  flex: 1;
  font-size: 0.95rem;
  color: #000;
  text-align: left;
}

.item-price {
  font-weight: normal;
  text-align: right;
}

.remove-item {
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.5rem;
  cursor: pointer;
}

.remove-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: none;
  pointer-events: none;
}

.remove-icon-light {
  display: block;
}

.remove-icon-dark {
  display: none;
}

.logo-search-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem; /* afstand tussen logo en zoekbalk */
  flex: 1;
  flex-shrink: 0;
  min-width: 300px;
}

.logo-icon {
  width: 9.5rem;
  height: 2rem;
  display: none;
}

.logo-icon-light {
  display: block;
}

.logo-icon-dark {
  display: none;
}

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: inline-block;
}

.hero-background {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
}

.hero-background-light {
  display: block;
}

.hero-background-dark {
  display: none;
}

.hero-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;  
  color: black;
  max-width: 60%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: inherit;
}

.hero-text h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: inherit;
}

.header-item {
  position: relative;
}

.header-dropdown {
  display: none;
  position: absolute;
  top: 130%;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 245px;
  padding: 0.5rem;
  z-index: 20;
}

.header-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #222; /* aanpasbaar naar wens */
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.header-dropdown a:hover {
  background: #f4f4f4;
}

/* Hover trigger */
.header-item:hover .header-dropdown {
  display: block;
}

/* Positionering dropdowns */
.align-left {
  left: 0;
  top: 1.85rem;
}

.align-center {
  left: 69%;
  transform: translateX(-50%);
  top: 1.85rem;
}

.align-right {
  right: 0;
  top: 1.85rem;
}

.algemene-voorwaarden {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  margin-bottom: 2rem;
  text-align: justify;
}

.algemene-voorwaarden h1 {
  text-align: left;
  margin-bottom: 0rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.algemene-voorwaarden h2 {
  text-align: left;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  margin-top: 1rem;
}

.algemene-voorwaarden h3 {
  margin-top: 0.5rem;
}

.algemene-voorwaarden p {
  line-height: 1.6;
}

.algemene-voorwaarden a {
  color: #333;
  text-decoration: underline;
}

.bestelstatus {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.bestelstatus h1 {
  color: #222;
  margin-bottom: 0rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.order-status-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.order-status-form input,
.order-status-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

.order-status-form input:focus,
.order-status-form textarea:focus {
  border-color: black;
  outline: none;
}

.order-status-form label {
  font-weight: bold;
}

.order-status-form button {
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 100%;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0rem;
  transition: background-color 0.2s;
  border-radius: 0.75rem;
  border: 2px solid black;
  cursor: pointer;
}

.order-status-form button:hover {
  background-color: white;
  color: black;
}

.order-status-result {
  margin-top: 3rem;
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.betaalmethodes {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.payment-intro {
  margin-bottom: 1.25rem; /* of bijv. 20px */
}

.payment-option {
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.payment-option h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.payment-option p {
  margin: 0.5rem 0 0;
}

.category-hero {
  padding: 2rem;
}

.category-hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cookiebeleid {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  margin-bottom: 2rem;
  text-align: justify;
}

.cookiebeleid h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 1rem;
}

.cookiebeleid h2 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.cookiebeleid p {
  line-height: 1.6;
}

.cookiebeleid a {
  color: #333;
  text-decoration: underline;
}

.cookiebeleid ul {
  padding-left: 0.5rem; /* iets meer ruimte tussen rand container en bullets */
  line-height: 1.6;
}

.cookiebeleid li {
  margin-left: 0.5rem; /* extra marge tussen bullet en tekst */
}

/* Winkelwagen container */
.cart-container {
  padding: 2rem;
}

.cart-container h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 1rem;
  color: inherit;
  font-weight: 700;
} 

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  align-items: center;          /* alles netjes verticaal gecentreerd */
  justify-content: space-between; /* item-info links, vuilbak rechts */
  gap: 1.5rem;
  border: 1px solid transparent;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.cart-item img {
  width: 100px;
  height: auto;
  border-radius: 4px;
}

.cart-item:hover {
  border-color: #ccc;
  border-radius: 0.5rem;
}

/* --- Aantal input zonder pijltjes --- */
.quantity-input::-webkit-inner-spin-button, 
.quantity-input::-webkit-outer-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Item info */
.item-info {
  flex: 1;
  position: relative;
}

.item-info h3 {
  margin: 0 0 0.5rem;
}

.item-info p {
  margin: 0.2rem 0;
}

.item-info label {
  display: block;
  margin-top: 0.5rem;
}

/* Input styling */
input[type="number"].quantity-input {
  width: 30px;
  padding: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* --- Vuilbak knop rechts --- */
.remove-item {
  margin-left: auto; /* duwt hem helemaal naar rechts */
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
}

.remove-item img {
  width: 3rem;
}

/* Verwijderknop */
.remove-button {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}

.remove-button:hover {
  background-color: #cc0000;
}

/* Totaal en afrekenen */
.cart-summary {
  text-align: right;
}

.cart-summary p {
  font-size: 1.2rem;
}

.checkout-button {
  background-color: black;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 0.75rem;
  display: inline-block;
  margin-top: 1rem;
}

.checkout-button:hover {
  background-color: #333;
}

.empty-cart-message {
  text-align: center;
  font-weight: 500;
  color: #444;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 0;
  width: calc(100% - 1rem); /* 2rem links + 2rem rechts */
  max-width: 100%; /* voorkom overschrijden */
  box-sizing: border-box;
  font-size: 1.25rem;
  height: calc(80vh - 20rem);
  min-height: 2rem;
  max-height: 80vh;
  line-height: clamp(2rem, calc(80vh - 20rem), 80vh); 
}

.checkout-page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

.checkout-form {
  flex: 2.5; /* groter gedeelte */
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 300px;
}

.checkout-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 0rem;
  transition: border-color 0.3s ease;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: black;
  outline: none;
}

/* Alleen het checkbox-label */
label[for="terms_of_use"] {
  display: flex;               /* flex container */
  align-items: center;         /* verticale uitlijning */
  justify-content: flex-start; /* tekst links */
  gap: 10px;                   /* ruimte tussen tekst en checkbox */
  cursor: pointer;
  font-weight: normal;          /* optioneel, kan anders dan andere labels */
  margin-bottom: 1rem;          /* optioneel, eigen spacing */
}

/* Checkbox rechts van de tekst */
label[for="terms_of_use"] input[type="checkbox"] {
  order: 1;  /* checkbox voor de tekst */
  width: auto; /* geen 100% zoals normale inputs */
  margin: 0;   /* geen extra margin */
  padding: 0;  /* geen padding */
}

/* Tekst eerst */
label[for="terms_of_use"] span {
  order: 2;
}

/* Alleen het checkbox-label */
label[for="newsletter"] {
  display: flex;               /* flex container */
  align-items: center;         /* verticale uitlijning */
  justify-content: flex-start; /* tekst links */
  gap: 10px;                   /* ruimte tussen tekst en checkbox */
  cursor: pointer;
  font-weight: normal;          /* optioneel, kan anders dan andere labels */
  margin-bottom: 1rem;          /* optioneel, eigen spacing */
}

/* Checkbox rechts van de tekst */
label[for="newsletter"] input[type="checkbox"] {
  order: 1;  /* checkbox voor de tekst */
  width: auto; /* geen 100% zoals normale inputs */
  margin: 0;   /* geen extra margin */
  padding: 0;  /* geen padding */
}

/* Tekst eerst */
label[for="newsletter"] span {
  order: 2;
}

/* Alleen het checkbox-label */
label[for="different_billing"] {
  display: flex;               /* flex container */
  align-items: center;         /* verticale uitlijning */
  justify-content: flex-start; /* tekst links */
  gap: 10px;                   /* ruimte tussen tekst en checkbox */
  cursor: pointer;
  font-weight: normal;          /* optioneel, kan anders dan andere labels */
  margin-bottom: 1rem;          /* optioneel, eigen spacing */
}

/* Checkbox rechts van de tekst */
label[for="different_billing"] input[type="checkbox"] {
  order: 1;  /* checkbox voor de tekst */
  width: auto; /* geen 100% zoals normale inputs */
  margin: 0;   /* geen extra margin */
  padding: 0;  /* geen padding */
  border-radius: 50%;
}

/* Tekst eerst */
label[for="different_billing"] span {
  order: 2;
}

.summary-box {
  flex: 1;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.summary-box h2 {
  margin-top: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.voucher-section {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
}

.voucher-section h2 {
  margin-top: 0rem;
}

.voucher-button {
  background-color: black;
  color: white;
  padding: 0.6rem 1.2rem;
  border: 2px solid black;
  border-radius: 0.75rem; /* gelijk aan checkout-form input radius */
  width: 100%; /* full width zoals de inputvelden */
  cursor: pointer;
  margin-top: 1rem; /* optioneel iets kleiner */
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease;
}

.voucher-button:hover {
  background-color: #333;
}

.voucher-section input,
.voucher-section select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s ease;
}

.voucher-section input:focus,
.voucher-section select:focus {
  border-color: black;
  outline: none;
}

.voucher-form2 label,
.voucher-section label {
  display: block;
  margin: 0.25rem 0 1rem 0;
}

#voucher-message {
  margin: 1rem 0; /* 1rem boven en onder, 0 aan de zijkanten */
}

.contact-container {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-titel h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 0rem;
}

.contact-titel p {
  margin-bottom: 0.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 0rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: black;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 100%;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0rem;
  transition: background-color 0.2s;
  border-radius: 0.75rem;
  border: 2px solid black;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: white;
  color: black;
  border-color: black;
}

/* Container */
.auth-container {
  display: flex;
  flex-wrap: wrap;
}

/* Linker- en rechterkant */
.auth-section {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Form titels */
.auth-section h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 0.25rem;
}

.auth-section p {
  margin-bottom: 1.5rem;
}

/* Form styling */
.auth-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-section label {
  font-weight: 600;
}

.auth-section input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-size: 1rem;
}

.auth-section a {
  color: black;
  text-decoration: underline;
}

.auth-section a:hover {
  text-decoration: none;
}

#form-message {
  margin-top: -2rem;
}

/* Kleine tekst onder login */
.small-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: black;
}

.small-text a {
  color: inherit;
  text-decoration: underline;
}

.forgot-pasword-section h1 {
  margin-bottom: 0.5rem;
}

.forgot-pasword-section p {
  margin-bottom: 1.5rem;
}

.back-link {
  margin-top: 0.5rem;
  text-align: left;
}

.back-link a {
  color: var(--accent-color);
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.reset-password-section h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 0.5rem;
}

.reset-password-section p {
  margin-bottom: 1.5rem;
}

.success-container {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  padding: 2rem;
  flex-direction: column;
  justify-content: flex-start;
}

.success-container h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 0.5rem;
}

.success-container p {
  margin-bottom: 1.5rem;
}

.success-container a {
  text-align: center;
  font-size: 1rem;
}

.account-container {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  gap: 40px;
}

/* Linkermenu */
.account-menu {
  width: 250px;
  border-right: 1px solid #ccc;
  padding: 2rem;
}

.account-menu ul {
  list-style: none;
  padding: 0;
  margin: 2rem;
  line-height: 1.6rem;
}

.account-menu li {
  margin-bottom: 15px;
}

.account-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.account-menu a:hover {
  color: #000;
}

.account-menu a.active {
  font-weight: bold;
  color: #000;
}

/* Rechter content */
.account-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.account-content h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 0.25rem;
}

.account-content h2 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

.account-content p {
  margin-bottom: 1.5rem;
}

/* Form styling gebaseerd op jouw voorbeeld */
.account-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-content label {
  font-weight: 600;
}

.account-content input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-size: 1rem;
}

.account-content select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-size: 1rem;
  background-color: #fff;
  cursor: pointer;
}

.account-content button {
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 100%;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0rem;
  transition: background-color 0.2s;
  border-radius: 0.75rem;
  border: 2px solid black;
  cursor: pointer;
}

.account-content button:hover {
  background-color: white;
  color: black;
  border-color: black;
}

.delete-account-link {
  color: black;
}

.no-orders {
  text-align: center;
}

/* Bestellingen als kaarten (zelfde look als retour-card) */
.order-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 18px 22px 18px 22px;
  margin-bottom: 24px;
  background-color: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
  position: relative;
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.order-card-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

/* knop: position relative zodat child absolute kan centreren */
.invoice-btn {
  position: relative;       /* nodig voor absolute centrering van <img> */
  width: 3rem;
  height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eee !important;
  border: 2px solid #eee !important;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;         /* voorkomt overlap van grote img */
  line-height: 0;           /* voorkomt baseline-issues */
}

.invoice-btn:hover {
  border-color: #ddd !important;
}

/* Forceer img exact in center */
.invoice-btn .invoice-icon {
  position: absolute !important;   /* absoluut tov knop */
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important; /* center */
  width: 2rem !important;
  height: 2rem !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  object-fit: contain !important;
}

.invoice-icon-light {
  display: block;
}

.invoice-icon-dark {
  display: none;
}

.order-products-list {
  margin-bottom: 12px;
}

.order-product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.order-product-row:last-child {
  border-bottom: none;
}

.order-product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-product-img {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  min-height: 80px !important;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.order-product-img-light {
  display: block;
}

.order-product-img-dark {
  display: none;
}

.order-product-name {
  font-size: 1rem;
  color: #333;
}

.order-product-details {
  display: flex;
  align-items: center;
  gap: 18px;
}

.order-product-qty {
  font-size: 1rem;
  color: #555;
  min-width: 70px;
  text-align: right;
}

.order-product-price {
  font-size: 1rem;
  color: #222;
  font-weight: bold;
  min-width: 70px;
  text-align: right;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.order-detail-label {
  font-weight: bold;
  color: #555;
}

.order-detail-value {
  color: #222;
}

/* Container voor de bedankt-sectie */
.bedankt {
  margin: 2rem;
  text-align: center;
}

.bedankt h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.bedankt p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Order details */
#order-details {
  max-width: 80vw;
  margin: 0 auto 40px;
}

/* Order titel en totaal */
#order-details h2 {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

#order-details h3 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

/* Bedankt pagina - Tabel stijl */
.bedankt-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden; /* rondingen toepassen */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Header */
.bedankt-table thead {
  background-color: #f2f2f2;
}

.bedankt-table th {
  padding: 12px;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

/* Cellen */
.bedankt-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

/* Wisselende rij kleuren */
.bedankt-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.bedankt-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

/* Alleen de eerste kolom in de body links uitlijnen */
.bedankt-table tbody td:first-child {
  text-align: left;
}

.bedankt-table img {
  height: 100px;
  min-height: 100px;
}

.summary-section {
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.summary-section h2 {
  margin-top: 0rem;
  margin-bottom: 0.25rem;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
}

.summary-section p,
.summary-section a {
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

.btn {
  color: black;
  text-decoration: underline;
}

.btn:hover {
  text-decoration: none;
}

.orders-container {
  text-align: center;
}

.voucher-container {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  margin-bottom: 2rem;
}

.voucher-titel h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.voucher-titel p {
  margin-bottom: 1.5rem;
}

.voucher-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.voucher-form label {
  font-weight: 600;
}

.voucher-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  font-size: 1rem;
}

/* Chrome, Edge, Safari, Firefox */
.voucher-form input[type=number]::-webkit-inner-spin-button, 
.voucher-form input[type=number]::-webkit-outer-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.voucher-form button {
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 100%;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0rem;
  transition: background-color 0.2s;
  border-radius: 0.75rem;
  border: 2px solid black;
  cursor: pointer;
}

.voucher-form button:hover {
  background-color: white;
  color: black;
  border-color: black;
}

.amount-buttons {
  display: flex;
  gap: 0.5rem; /* ruimte tussen knoppen */
  margin: 0rem;
}

.amount-buttons button {
  flex: 1; /* alle knoppen gelijk breed */
  padding: 0.75rem 1rem; /* zelfde als input */
  border: 1px solid #ccc; /* zelfde als input */
  border-radius: 0.75rem; /* zelfde als input */
  font-size: 1rem; /* zelfde als input */
  background-color: white;
  color: black;
  cursor: pointer;
  transition: all 0.2s;
}

.amount-buttons button.active {
  background-color: black;
  color: white;
  border-color: black;
}

.amount-buttons button:hover {
  background-color: #f0f0f0;
}

.voucher-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.voucher-list li {
  background: #f8f8f8;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voucher-list li span {
  white-space: nowrap;
}

.voucher-list li .left {
  text-align: left;
  flex: 1;
}

.voucher-list li .center {
  text-align: center;
  flex: 1;
}

.voucher-list li .right {
  text-align: right;
  flex: 1;
}

.voucher-list li .separator {
  flex: 0; /* neemt exact de breedte van het symbool in */
  text-align: center;
  color: #999;
}

.over-ons-container {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 2rem;
}

.over-ons-container h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 0.25rem;
  font-weight: 700;
  text-align: left;
  color: #111;
}

.over-ons-container h2 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
  text-align: justify;
  color: #333;
}

.over-ons-container p {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: justify;
  color: #333;
}

.over-ons-container ul {
  padding-left: 0.5rem; /* iets meer ruimte tussen rand container en bullets */
  margin-bottom: 1rem;
}

.over-ons-container li {
  margin-left: 0.5rem; /* extra marge tussen bullet en tekst */
  font-size: 1rem;
  color: #333;
}

.privacybeleid-container {
  line-height: 1.6;
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  color: #333;
  background-color: #fff;
  margin-bottom: 2rem;
  text-align: justify;
}

.privacybeleid-container h1,
.privacybeleid-container h2 {
  color: #222;
}

.privacybeleid-container h1 {
  text-align: left;
  margin-bottom: 0rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.privacybeleid-container h2 {
  text-align: left;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
}

.privacybeleid-container section {
  margin-bottom: 1rem;
}

.privacybeleid-container a {
  color: #333;
  text-decoration: underline;
}

.privacybeleid-container ul {
  padding-left: 0.5rem; /* iets meer ruimte tussen rand container en bullets */
}

.privacybeleid-container li {
  margin-left: 0.5rem; /* extra marge tussen bullet en tekst */
}

.retourzendingen-container {
  line-height: 1.6;
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  padding: 0 20px;
  color: #333;
  background-color: #fff;
  margin-bottom: 2rem;
  text-align: justify;
}

.retourzendingen-container h1,
.retourzendingen-container h2 {
  color: #222;
}

.retourzendingen-container h1 {
  text-align: left;
  margin-bottom: 0rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.retourzendingen-container section {
  margin-bottom: 1rem;
}

.retourzendingen-container a {
  color: #333;
  text-decoration: underline;
}

.retourzendingen-container ul {
  padding-left: 0.5rem; /* iets meer ruimte tussen rand container en bullets */
}

.retourzendingen-container ol {
  padding-left: 0.5rem; /* iets meer ruimte tussen rand container en bullets */
}

.retourzendingen-container li {
  margin-left: 0.5rem; /* extra marge tussen bullet en tekst */
}

.reviews-container {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  margin-bottom: 2rem;
}

.reviews-container h1 {
  color: #222;
  margin-bottom: 0rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.reviews-container h2 {
  color: #222;
  margin-bottom: 1rem;
}

.reviews-container section {
  margin-bottom: 2rem;
}

.reviews-list .review {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.reviews-list .review:last-child {
  border-bottom: none;
}

.reviews-list .review h2 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  color: #444;
}

.reviews-list .review p {
  margin: 0.25rem 0;
}

.review-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0rem;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 0rem;
  transition: border-color 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: black;
  outline: none;
}

.review-form button {
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 100%;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0rem;
  transition: background-color 0.2s;
  border-radius: 0.75rem;
  border: 2px solid black;
  cursor: pointer;
}

.review-form button:hover {
  background-color: white;
  color: black;
}

.verzending-en-levering-container {
  line-height: 1.6;
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  color: #333;
  background-color: #fff;
  margin-bottom: 2rem;
  text-align: justify;
}

.verzending-en-levering-container h1,
.verzending-en-levering-container h2 {
  color: #222;
}

.verzending-en-levering-container h1 {
  text-align: left;
  margin-bottom: 0rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

.verzending-en-levering-container section {
  margin-bottom: 1rem;
}

.verzending-en-levering-container a {
  color: #333;
  text-decoration: underline;
}

/* ---------- Wishlist Section ---------- */
.wishlist-section {
  padding: 2rem;
}

.wishlist-section h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 1rem;
  color: inherit;
  font-weight: 700;
}

/* ---------- Grid ---------- */
.wishlist-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ---------- Card ---------- */
.wishlist-card {
  display: flex;
  align-items: center;          /* alles netjes verticaal gecentreerd */
  justify-content: space-between; /* item-info links, vuilbak rechts */
  gap: 1.5rem;
  padding-bottom: 1rem;
  border: 1px solid transparent;
  border-bottom: 1px solid black;
}

.wishlist-card:last-child {
  border-bottom: 1px solid transparent;
}

.wishlist-card:hover {
  border-color: #ccc;
  border-bottom: 1px solid #ccc;
  border-radius: 0.5rem;
}

.wishlist-item-image {
  width: 25vw;
  height: auto;
  min-width: 100px;
  min-height: 100px;
  object-fit: cover;
  cursor: pointer;
}

.wishlist-info {
  flex: 1;
  position: relative;
}

.wishlist-info h3 {
  margin: 0 0 0.25rem;
  cursor: pointer;
}

.wishlist-info p {
  margin: 0.2rem 0;
  cursor: pointer;
}

/* --- Cart knop en Vuilbak knop rechts --- */
.wishlist-actions {
  margin-left: auto; /* duwt hem helemaal naar rechts */
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
}

.add-to-cart {
  cursor: pointer;
  background: none;
  border: none;
}

.remove-from-wishlist {
  cursor: pointer;
  background: none;
  border: none;
}

.add-to-cart img {
  margin: 0.3rem;
  width: 2.4rem;
  height: 2.4rem;
}

.remove-from-wishlist img {
  width: 3rem;
  height: 3rem;
}

.empty-wishlist-box {
  text-align: center;
  font-weight: 500;
  color: #444;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 0;
  width: calc(100% - 1rem); /* 2rem links + 2rem rechts */
  max-width: 100%; /* voorkom overschrijden */
  box-sizing: border-box;
  font-size: 1.25rem;
  height: calc(80vh - 20rem);
  min-height: 2rem;
  max-height: 80vh;
  line-height: clamp(2rem, calc(80vh - 20rem), 80vh);
}

/* Verlanglijstje knop */
.wishlist-button {
  display: inline-block;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
}

.wishlist-icon-light {
  display: block;
}

.wishlist-icon-dark {
  display: none;
}

.wishlist-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.wishlist-button:hover .wishlist-icon-wrapper {
  background-color: #f4f4f4;
}

.wishlist-icon {
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}

.wishlist-button:hover .wishlist-dropdown {
  display: block;
}

/* Container */
.product-page-container {
  gap: 2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

/* Titel */
.product-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color, #222);
}

/* Hoofdsectie: afbeelding + details */
.product-main {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Links: afbeelding */
.product-left {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.main-image-wrapper {
  height: 420px;
  width: 100%;
  min-height: 420px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  will-change: transform;
  object-fit: cover;
}

.thumbnails-wrapper {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.thumbnails-wrapper img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent !important;
  transition: border 0.3s ease;
}

.thumbnails-wrapper img:hover,
.thumbnails-wrapper img.active {
  border-color: var(--primary-color, black) !important;
}

/* Rechts: details */
.product-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Beschrijving */
.product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-color, #555);
}

/* Prijs */
.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color, #222);
}

/* Maat container */
.product-size-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Maat selectie */
.product-size {
  width: 80px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  text-align: center;
}

/* Aantal en knop */
.product-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Quantity input */
.productpage-quantity {
  width: 80px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  text-align: center;
}

/* Aantal input zonder pijltjes */
.productpage-quantity::-webkit-inner-spin-button, 
.productpage-quantity::-webkit-outer-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Toevoegen knop */
.productpage-add-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid black;
  background-color: black;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.productpage-add-btn:hover {
  background-color: white;
  color: black;
  border-color: black;
}

/* Retour-cards */
.return-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
  background-color: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Header van de order */
.return-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
}

/* Product binnen de card */
.return-product {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

/* Laatste product hoeft geen border */
.return-product:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Product afbeelding */
.return-product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
  border: 1px solid #ddd;
}

/* Product naam */
.return-product p {
  flex: 1;
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Retour link */
.return-link {
  padding: 6px 12px;
  background-color: black;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid black;
  font-size: 14px;
  transition: background-color 0.3s;
}

.return-link:hover {
  background-color: #fafafa;
  color: black;
}

/* Modal achtergrond */
.modal {
  display: none; /* standaard onzichtbaar */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal venster */
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Knoppen */
.modal-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;          /* ruimte tussen knoppen */
  margin-top: 1.5rem;
}

.confirm-btn {
  background: #d9534f;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

.cancel-btn {
  background: #6c757d;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

/* 🔹 Basis layout voor categoriepagina */
.page-content.category-page {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.page-content.category-page h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 0.25rem;
  font-weight: 700;
  text-align: left;
  color: #111;
}

/* 🔹 Filters */
.filters {
  flex: 1;
  min-width: 130px;
  max-width: 250px;
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  color: #222;
}

.filters h2 {
  margin-top: 0;
  font-size: 1.2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-group h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.filter-group label {
  display: block;
  font-size: 0.9rem;
  margin: 0.2rem 0;
  cursor: pointer;
  color: #333;
}

.price-filter {
  margin-top: 1em;
}

.price-inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}

.price-inputs input {
  width: 80px;
  padding: 5px;
  border: 1px solid black;
  border-radius: 0.25rem;
}

.double-range {
  position: relative;
  height: 20px;
  margin-top: 10px;
}

.double-range input[type="range"] {
  position: absolute;
  width: 100%;
  top: 0;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  margin-top: 2px;
  z-index: 10;
}

.double-range input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slider-track {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ddd;
  top: 8px;
  border-radius: 5px;
}

:root {
  --active-range-color: black;
  --non-active-range-color: #ddd;
}

.reset-btn {
  display: inline-block;
  padding: 0.5rem;
  background: black;
  border: 2px solid black;
  border-radius: 4px;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}

.reset-btn:hover {
  background: white;
  color: black;
}

/* 🔹 Producten */
.products {
  flex: 3;
}

.products-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.products-header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #222;
}

.products-header p {
  margin: 0.5rem 0;
  color: #777;
}

#sort-products {
  padding: 0.4rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  color: #222;
}

/* Wrapper om select + icoon netjes uit te lijnen */
.sort-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
}

.sort-icon {
  font-size: 1.2rem;
  color: black;
}

/* Select zelf zonder standaardstijl */
.sort-wrapper select {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

/* 🔹 Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5rem;
}

/* Product card */
.product-card2 {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #222;
  margin-bottom: 0.5rem;
  cursor: pointer; /* cursor verandert in handje bij hover */
  transition: transform 0.2s; /* optioneel: subtiele hover animatie */
  position: relative;
}

.product-card2 img {
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.product-card2 h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #222;
}

.product-card2 p {
  font-size: 1rem;
  color: #222;
  font-weight: bold;
}

.product-card2 a {
  text-decoration: none; /* geen underline */
  color: inherit;         /* kleur overnemen van de card */
  display: block;         /* hele card klikbaar */
}

.product-card2:hover {
  border-color: #ccc;
}

/* Specificaties lijst */
#product-specificaties ul {
  padding-left: 1rem;          /* ruimte voor de lijststijl */
}

#product-specificaties li {
  line-height: 1.6;
}

.wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

.wishlist-btn img {
  width: 1.5rem;
  height: 1.5rem;
}

.wishlist-container {
  position: relative;
  text-align: center;
  margin-top: 0.25rem;
  color: black;
  border: 2px solid black;
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

.wishlist-container:hover {
  color: #666;
}

/* Maat selectie */
.wishlist-product-size {
  width: 80px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  text-align: center;
}

.wishlist-knop {
  position: absolute;
  bottom: 0.2rem;
}

.wishlist-knop img {
  width: 1.5rem;
  height: 1.5rem;
}

.other-products,
.last-seen-products {
  width: 100%;
}

.other-products-title,
.last-seen-products-title {
  margin-bottom: 0.5rem;
}

/* 🔹 Product grid voor de secties */
.other-products-container,
.last-seen-products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.address-street-number {
  display: flex;
  gap: 0.5rem; /* ruimte tussen de velden */
  width: 100%; /* past aan zoals andere velden */
}

.address-street-number #street,
.address-street-number #billing_street {
  flex: 3; /* 3/4 van de ruimte */
}

.address-street-number #house_number,
.address-street-number #billing_house_number {
  flex: 1; /* 1/4 van de ruimte */
}

.address-postal-code-city {
  display: flex;
  gap: 0.5rem; /* ruimte tussen de velden */
  width: 100%; /* past aan zoals andere velden */
}

.address-postal-code-city #postal_code,
.address-postal-code-city #billing_postal_code {
  flex: 1; /* 1/4 van de ruimte */
}

.address-postal-code-city #city,
.address-postal-code-city #billing_city {
  flex: 3; /* 3/4 van de ruimte */
}

.page-content.search-page {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.page-content.search-page h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 0.25rem;
  font-weight: 700;
  text-align: left;
  color: #111;
}

.search-products {
  flex: 3;
}

.search-products-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.search-products-header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #222;
}

.search-products-header p {
  margin: 0.5rem 0;
  color: #777;
}

#search-sort-products {
  padding: 0.4rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  color: #222;
}

/* Wrapper om select + icoon netjes uit te lijnen */
.search-sort-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
}

.search-sort-icon {
  font-size: 1.2rem;
  color: black;
}

/* Select zelf zonder standaardstijl */
.search-sort-wrapper select {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

.processing-retours-container {
  line-height: 1.6;
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  margin-bottom: 2rem;
  text-align: justify;
}

.processing-retours-header h1{
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.processing-retours-order-id {
  margin-top: 0rem;
  margin-bottom: 0.25rem;
}

.processing-retours-order-id input {
  width: 80px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  text-align: center;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.processing-retours-order-id input::-webkit-inner-spin-button, 
.processing-retours-order-id input::-webkit-outer-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.processing-retours-order-id button {
  display: inline-block;
  padding: 6px 10px;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0rem;
  transition: background-color 0.2s;
  border-radius: 6px;
  border: 2px solid black;
  cursor: pointer;
}

.processing-retours-order-id button:hover {
  background-color: white;
  color: black;
  border-color: black;
}

.processing-retours-table {
  text-align: center;
}

.processing-retours-confirm button {
  display: inline-block;
  padding: 6px 10px;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background-color 0.2s;
  border-radius: 6px;
  border: 2px solid black;
  cursor: pointer;
}

.processing-retours-confirm button:hover {
  background-color: white;
  color: black;
  border-color: black;
}

.max-width {
  display: none;
}

.categorie-menu-button {
  padding: 0;
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
  border-radius: 0.5rem;
  display: none;
}

.categorie-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s;
}

.categorie-menu-button:hover {
  background-color: #f4f4f4;
}

.categorie-menu img {
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}

.menu-icon-light {
  display: none;
}

.menu-icon-dark {
  display: none;
}

.categorieën-menu-page-container {
  width: 80vw;
  max-width: 1300px;
  margin: 2rem auto;
  margin-bottom: 2rem;
  text-align: justify;
}

.categorieën-menu-page-container h1 {
  text-align: left;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

.categorieën-menu-page-container h2 {
  text-align: left;
  font-size: clamp(1.25rem, 2vw + 0.8rem, 1.5rem);
  margin-top: 0rem;
  margin-bottom: 0.25rem;
  text-decoration: none;
  color: black;
}

.categorieën-menu-page-container a {
  color: black;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  padding: 0.25rem;
  border: 1px solid #f9f9f9;
  border-radius: 0.5rem;
}

.categorieën-menu-page-container a:hover {
  border-color: black;
}

.categorieën-menu-page-container hr {
  margin-bottom: 0.5rem;
}

.categorieën-menu-page-item {
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.newsletter-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
}

.newsletter-header h1 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 0.25rem;
}

.newsletter-header p {
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: white;
  color: black;
  font-size: 1rem;
}

.newsletter-form textarea {
  resize: vertical;
}

.newsletter-form button {
  padding: 10px;
  border: 2px solid black;
  border-radius: 8px;
  background-color: black;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: white;
  color: black;
}

.newsletter-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
}

.newsletter-status.success {
  color: green;
}

.newsletter-status.error {
  color: red;
}

/* --- Voucher2 Creation Page --- */
.voucher-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 1rem;
}

.voucher-container {
  background: var(--card-bg, #fff);
  padding: 2.5rem 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
}

.voucher-container h1 {
  font-size: 1.8rem;
  color: var(--text-primary, #222);
  margin-bottom: 0.5rem;
}

.voucher-container h2 {
  margin-bottom: 0.5rem;
}

.voucher-container p {
  color: var(--text-secondary, #555);
  margin-bottom: 1.5rem;
}

.voucher-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.voucher-container label {
  font-weight: 600;
  color: var(--text-primary, #333);
}

/* Inputs */
#voucher2_amount,
#voucher2_reason,
#create_own_voucher_user_id {
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.2s;
}

#voucher2_amount:focus,
#voucher2_reason:focus,
#create_own_voucher_user_id:focus {
  border-color: var(--accent-color, #222);
  outline: none;
}

#voucher2_amount::-webkit-inner-spin-button, 
#voucher2_amount::-webkit-outer-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Button */
#voucher2_createBtn {
  background: var(--accent-color, #111);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

#voucher2_createBtn:hover {
  background: var(--accent-hover, #333);
}

/* Result & error */
#voucher2_result,
#voucher2_error {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 0.8rem;
  text-align: left;
  line-height: 1.5;
}

#voucher2_result {
  background: white;
  border: 1px solid white;
  color: black;
}

#voucher2_error {
  color: red;
}

.hidden {
  display: none;
}

.newsletter-section {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.newsletter-section table {
  width: 600px;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-section tr {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.newsletter-section td {
  padding: 24px;
  color: black;
}

.newsletter-section p {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.unsubscribe-btn {
  padding: 10px 20px;
  border: 2px solid black;
  border-radius: 0.5rem;
  cursor: pointer;
  background-color: black;
  color: white;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.unsubscribe-btn:hover {
  background-color: #fff;
  color: black;
  border-color: black;
}

.paypal-button-wrapper {
  line-height: 1.6;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  body {
    background-color: black;
    color: #fff;
  }

  header {
    background-color: black;
    color: #eee;
  }

  nav {
    background-color: black;
    color: #eee;
  }

  footer {
    background-color: black;
    color: #eee;
    border-top: 1px solid #333;
  }

  input[type="checkbox"] {
    border-color: white;
  }

  input[type="checkbox"]::before {
    background-color: white;
    box-shadow: 0 0 8px white;
    background-image: url('checkbox/check\ \(dark\ mode\).png');
  }

  input[type="checkbox"]:focus-visible {
    outline-color: white;
  }

  .social-icon-light {
    display: none;
  }

  .social-icon-dark {
    display: block;
  }

  .hero {
    background-color: #222;
    color: white;
    border-color: #444;
  }

  .product-card-index {
    color: white;
  }

  .product-card-index:hover {
    border-color: #444;
  }

  .cta-button {
    background-color: white;
    color: black;
    border: 2px solid black; /* border blijft gelijk */
  }

  .cta-button:hover {
    background-color: black;
    color: white;
    border-color: white;
  }

  .cta-button-alt:hover {
    border-color: white;
  }

  .user-button {
    background-color: white;
    color: black;
    border: 2px solid black; /* border blijft gelijk */
  }

  .user-button:hover {
    background-color: black;
    color: white;
    border-color: white;
  }

  .user-dropdown {
    background: #222;
    border: 1px solid #444;
  }

  .user-dropdown a {
    color: white;
  }

  .user-dropdown a:hover {
    background: #333;
  }

  .nav-link:hover {
    background-color: #333;
  }

  a {
    color: white;
  }

  .product-preview a {
    color: white;
  }

  .logo {
    background: #000;
    color: #fff;
  }

  .cookie-banner {
    background: #111;
    color: #fff;
  }

  .cookie-buttons button {
    background: #fff;
    color: #111;    
  }

  .cookie-buttons button:hover {
    background: #ddd;
  }

  .search-bar {
    background: #222;
    border: 1px solid #444;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .search-bar input {
    color: #fff;
  }

  .lang-select {
    background: #222;
    color: #eee;
    border: 1px solid #444;
  }

  .selected-flag {
    background: none;
  }
  .flag-dropdown {
    background: #222;
    border: 1px solid #444;
    color: #eee;
  }
  .flag-dropdown div:hover {
    background: #333;
  }

  .selected-flag:hover {
    background-color: #333;
  }

  .cookiebeleid a {
    color: white;
  }

  .cart-icon-light {
    display: none;
  }

  .cart-icon-dark {
    display: block;
  }

  .cart-button:hover .cart-icon-wrapper {
    background-color: #333;
  }

  .cart-dropdown {
    background: #222;
    border: 1px solid #444;
    color: #eee;
  }

  .cart-dropdown p {
    color: #888;
  }

  .cart-dropdown .empty-cart {
    text-align: center;
    color: #888;
    padding: 0rem;
  }

  .dropdown-item-image-light {
    display: none;
  }
  .dropdown-item-image-dark {
    display: block;
  }

  .item-image-light {
    display: none;
  }
  .item-image-dark {
    display: block;
  }

  .item-text {
    color: white;
  }

  .remove-icon-light {
    display: none;
  }

  .remove-icon-dark {
    display: block;
  }

  .logo-icon-light {
    display: none;
  }

  .logo-icon-dark {
    display: block;
  }

  .hero-background-light {
    display: none;
  }

  .hero-background-dark {
    display: block;
  }

  .hero-overlay { 
    color: white;
  }

  .header-dropdown {
    background: #222;
    border: 1px solid #444;
    color: #eee;
  }

  .header-dropdown a {
    color: white;
  }

  .header-dropdown a:hover {
    background: #333;
  }

  .algemene-voorwaarden a {
    color: white;
  }

  .bestelstatus h1 {
    color: white;
  }

  .order-status-form input,
  .order-status-form textarea {
    border: 1px solid #888;
    background-color: #444;
    color: white;
  }

  .order-status-form input:focus,
  .order-status-form textarea:focus {
    border-color: white;
    background: #444;
    color: white;
  }

  .order-status-form input::placeholder,
  .order-status-form textarea::placeholder,
  .review-form input::placeholder,
  .review-form select::placeholder,
  .review-form textarea::placeholder {
    color: #999;
  }

  .order-status-form button {
    background-color: #444;
    color: white;
    border: 2px solid #888;
  }

  .order-status-form button:hover {
    background-color: black;
    color: white;
  }

  .order-status-result {
    background-color: #f5f5f5;
  }

  .payment-option {
    background-color: #1f1f1f;
    color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  }

  .cart-container {
    background-color: black;
    color: #eee;
  }

  .cart-item {
    border-color: #444;
  }

  input[type="number"] {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #555;
  }

  .remove-button {
    background-color: #ff6666;
  }

  .checkout-button {
    background-color: #fff;
    color: #000;
  }

  .checkout-button:hover {
    background-color: black;
    color: white;
    border-color: white;
  }

  .empty-cart-message {
    color: #888;
    background: #222;
    border: 1px solid #444;
  }

  .checkout-form input,
  .checkout-form select,
  .checkout-form textarea {
    border: 1px solid #888;
    background-color: #444;
    color: white; 
  }

  .checkout-form input:focus,
  .checkout-form select:focus,
  .checkout-form textarea:focus {
    border-color: white;
  }

  .summary-box {
    border: 1px solid #444;
    background-color: #222;
  }

  .contact-titel h1 {
    color: #fff;
  }

  .contact-form input,
  .contact-form textarea {
    border: 1px solid #888;
    background-color: #444;
    color: white; 
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: white;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #999;
  }

  .contact-form button {
    background-color: #444;
    color: White;
    border: 2px solid #888;
  }

  .contact-form button:hover {
    background-color: black;
    color: white;
    border-color: white;
  }

  .auth-section input {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
  }

  .auth-section a {
    color: white;
  }

  .small-text {
    color: white;
  }

  .back-link a {
    color: #ccc;
  }

  .back-link a:hover {
    text-decoration: none;
  }

  .account-menu a {
    color: #ccc;
  }

  .account-menu a:hover {
    color: white;
  }

  .account-menu a.active {
    color: white;
  }

  .account-content input {
    background-color: #444;
    border: 1px solid #888;
    color: white;
  }

  .account-content input::placeholder {
    color: #999;
  }

  .account-content select {
    background-color: #444;
    border: 1px solid #888;
    color: white;
  }

  .account-content button {
    background-color: #444;
    color: White;
    border: 2px solid #888;
  }

  .account-content button:hover {
    background-color: black;
    color: white;
    border-color: white;
  }

  .delete-account-link {
    color: #ddd;
  }

  .order-card {
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: #eee;
  }

  .order-card-title {
    color: #eee;
  }

  .order-date {
    color: #aaa;
  }

  .invoice-btn {
    background: #333 !important;
    border-color: #333 !important;
  }

  .invoice-btn:hover {
    border-color: #444 !important;
  }

  .invoice-icon-light {
    display: none;
  }

  .invoice-icon-dark {
    display: block;
  }

  .order-product-row {
    border-bottom: 1px solid #333;
  }

  .order-product-img {
    border: 1px solid #444;
  }

  .order-product-img-light {
    display: none;
  }

  .order-product-img-dark {
    display: block;
  }

  .order-product-name {
    color: #eee;
  }

  .order-product-qty {
    color: #bbb;
  }

  .order-product-price {
    color: #fff;
  }

  .order-detail-label {
    color: #bbb;
  }

  .order-detail-value {
    color: #fff;
  }

  .bedankt {
    color: #eee;
  }

  .bedankt p {
    color: #eee;
  }

  #order-details h2 {
    color: #eee;
  }

  #order-details h3 {
    color: #fff;
  }

  .bedankt-table {
    background-color: #1e1e1e;
    box-shadow: 0 0 10px rgba(255,255,255,0.05), 0 2px 8px rgba(0,0,0,0.5);
  }

  .bedankt-table thead {
    background-color: #333;
  }

  .bedankt-table th {
    color: #fff;
    border-bottom: 1px solid #444;
  }

  .bedankt-table td {
    color: #ddd;
    border-bottom: 1px solid #333;
  }

  .bedankt-table tbody tr:nth-child(even) {
    background-color: #2a2a2a;
  }

  .bedankt-table tbody tr:nth-child(odd) {
    background-color: #1e1e1e;
  }

  .summary-section {
    background-color: #1f1f1f;
    color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  }

  .voucher-button {
    background-color: #fff;
    color: #000;
  }

  .voucher-button:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
  }

  .voucher-section input,
  .voucher-section select,
  .voucher-section option {
    border: 1px solid #888;
    background-color: #444;
    color: white;
  }

  .voucher-section input:focus,
  .voucher-section select:focus,
  .voucher-section option:focus {
    border-color: white;
  }

  .btn {
    color: #f0f0f0;
    text-decoration: underline;
  }

  .voucher-form input {
    background-color: #444;
    border: 1px solid #888;
    color: white;
  }

  .voucher-form input::placeholder {
    color: #999;
  }

  .voucher-form button {
    background-color: #444;
    color: White;
    border: 2px solid #888;
  }

  .voucher-form button:hover {
    background-color: black;
    color: white;
    border-color: white;
  }

  .amount-buttons button {
    border: 1px solid #888; /* zelfde als input */
    background-color: #444;
    color: white;    
  }

  .amount-buttons button.active {
    background-color: white;
    color: black;
    border-color: white;
  }

  .amount-buttons button:hover {
    background-color: #999;
  }

  .voucher-list li {
    background: #1f1f1f;
    color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  }

  .voucher-list li .separator {
    color: #ddd;
  }

  .over-ons-container h1 {
    color: white;
  }

  .over-ons-container h2 {
    color: #fff;
  }
  
  .over-ons-container p {
    color: #fff;
  }

  .over-ons-container li {
    color: #fff;
  }

  .privacybeleid-container {
    color: #fff;
    background-color: black;
  }

  .privacybeleid-container h1,
  .privacybeleid-container h2 {
    color: #fff;
  }

  .privacybeleid-container a {
    color: #fff;
  }

  .retourzendingen-container {
    color: #fff;
    background-color: black;
  }

  .retourzendingen-container h1,
  .retourzendingen-container h2 {
    color: #fff;
  }

  .retourzendingen-container a {
    color: #fff;
  }

  .reviews-container {
    color: #fff;
    line-height: 1.6;
    background-color: black;
  }

  .reviews-container h1 {
    color: #fff;
  }

  .reviews-container h2 {
    color: #fff;
  }

  .reviews-list .review h2 {
    color: #fff;
  }

  .review-form input,
  .review-form select,
  .review-form textarea {
    border: 1px solid #888;
    background-color: #444;
    color: white; 
  }

  .review-form input:focus,
  .review-form select:focus,
  .review-form textarea:focus {
    border-color: white;
  }

  .review-form button {
    background-color: #444;
    color: White;
    border: 2px solid #888;
  }

  .review-form button:hover {
    background-color: black;
    color: white;
  }

  .verzending-en-levering-container {
    color: #fff;
    background-color: black;
  }

  .verzending-en-levering-container h1,
  .verzending-en-levering-container h2 {
    color: #fff;
  }

  .verzending-en-levering-container a {
    color: #fff;
  }

  .wishlist-card {
    border-bottom: 1px solid white;
  }

  .empty-wishlist-box {
    color: #888;
    background: #222;
    border: 1px solid #444;
  }

  .wishlist-icon-light {
    display: none;
  }

  .wishlist-icon-dark {
    display: block;
  }

  .wishlist-button:hover .wishlist-icon-wrapper {
    background-color: #333;
  }

  .wishlist-dropdown {
    background: #222;
    border: 1px solid #444;
    color: #eee;
  }

  .wishlist-dropdown p {
    color: #888;
  }

  .wishlist-dropdown .empty-wishlist {
    text-align: center;
    color: #888;
    padding: 0rem;
  }

  .product-page-container {
    color: #e0e0e0;
  }

  .product-title {
    color: #ffffff;
  }

  .thumbnails-wrapper img:hover,
  .thumbnails-wrapper img.active {
    border-color: var(--primary-color, white) !important;
  }

  .product-description {
    color: #cccccc;
  }

  .product-price {
    color: #ffffff;
  }

  .product-size {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #555;
  }

  .productpage-quantity {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #555;
  }

  .productpage-add-btn {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
  }

  .productpage-add-btn:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
  }

  .return-card {
    border: 1px solid #444;
    background-color: #1a1a1a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .return-card h3 {
    color: #ccc;
  }

  .return-product {
    border-bottom: 1px solid #555;
  }

  .return-product:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .return-product-img {
    border: 1px solid #444;
  }

  .return-product p {
    color: #eee;
  }

  .return-link {
    background-color: white;
    color: black;
    border: 2px solid white;
  }

  .return-link:hover {
    background-color: #1a1a1a;
    color: white;
  }

  .modal-content {
    background: #1e1e1e;
  }

  .confirm-btn {
    background: #d9534f;
    color: white;
  }

  .cancel-btn {
    background: #444;
    color: #eee;
  }

  .page-content.category-page h1 {
    color: #fff;
  }
  
  .filters {
    background: black;
    color: #eee;
  }

  .filters h2 {
    border-bottom: 1px solid #444;
    color: #eee;
  }

  .filter-group h3 {
    color: #eee;
  }

  .filter-group label {
    color: #eee;
  }

  .double-range input[type="range"]::-webkit-slider-thumb {
    background: white;
  }

  .slider-track {
    background: #444;
  }

  :root {
    --active-range-color: white;
    --non-active-range-color: #444;
  }

  .reset-btn {
    background: white;
    color: black;
    border-color: white;
  }

  .reset-btn:hover {
    background: black;
    color: white;
  }

  .products-header h1 {
    color: #fff;
  }

  .products-header p {
    color: #aaa;
  }

  #sort-products {
    background: #222;
    color: #eee;
    border: 1px solid #444;
  }

  .sort-icon {
    color: white;
  }

  .product-card2 {
    color: #eee;
  }

  .product-card2 h3 {
    color: #fff;
  }

  .product-card2 p {
    color: #fff;
  }

    .product-card2:hover {
    border-color: #444;
  }

  .wishlist-container {
    border: 2px solid white;
    color: white;
  }

  .wishlist-container:hover {
    color: #eee;
  }

  /* Maat selectie */
  .wishlist-product-size {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #555;
  }

  .page-content.search-page h1 {
    color: #fff;
  }

  .search-products-header p {
    color: #aaa;
  }

  #search-sort-products {
    background: #222;
    color: #eee;
    border: 1px solid #444;
  }

  .search-sort-icon {
    color: white;
  }

  .processing-retours-order-id button {
    background-color: white;
    color: black;
    border: 2px solid white;
  }

  .processing-retours-order-id button:hover {
    background-color: black;
    color: white;
    border-color: white;
  }

  .processing-retours-confirm button {
    background-color: white;
    color: black;
    border: 2px solid white;
  }

  .processing-retours-confirm button:hover {
    background-color: black;
    color: white;
    border-color: white;
  }

  .categorie-menu-button:hover {
    background-color: #333;
  }

  .categorieën-menu-page-container h2 {
    color: white;
  }

  .categorieën-menu-page-container a {
    color: white;
    border: 1px solid #1f1f1f;
    border-radius: 0.5rem;
  }

  .categorieën-menu-page-container a:hover {
    border-color: white;
  }

  .categorieën-menu-page-item {
    background-color: #1f1f1f;
  }

  .newsletter-form input,
  .newsletter-form textarea {
    border: 1px solid #444;
    background-color: #333;
    color: white;
  }

  .newsletter-form button {
    border: 2px solid white;
    background-color: white;
    color: black;
  }

  .newsletter-form button:hover {
    background-color: black;
    color: white;
  }

  .voucher-container {
    background: var(--card-bg-dark, #1e1e1e);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }

  .voucher-container h1 {
    color: var(--text-primary-dark, #fff);
  }

  .voucher-container p {
    color: var(--text-secondary-dark, #ccc);
  }

  .voucher-container label {
    color: var(--text-primary-dark, #ddd);
  }

  /* Inputs */
  #voucher2_amount,
  #voucher2_reason,
  #create_own_voucher_user_id {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #eee;
  }

  #voucher2_amount:focus,
  #voucher2_reason:focus,
  #create_own_voucher_user_id:focus {
    border-color: var(--accent-color-dark, #fff);
  }

  /* Button */
  #voucher2_createBtn {
    background: var(--accent-color-dark, #fff);
    color: #000;
  }

  #voucher2_createBtn:hover {
    background: var(--accent-hover-dark, #ddd);
  }

  /* Result */
  #voucher2_result {
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    color: white;
  }

  .newsletter-section tr {
    background-color: #111;
  }

  .newsletter-section td {
    color: #fff;
  }

  .unsubscribe-btn {
    border-color: white;
    background-color: #fff;
    color: #111;
  }

  .unsubscribe-btn:hover {
    background-color: #111;
    color: white;
    border-color: white;
  }
}

@media screen and (max-width: 1150px) {
  .header-center {
    display: none;
  }

  .menu-icon-light{
    display: block;
  }

  .menu-icon-dark {
    display: none;
  }

  .categorie-menu-button {
    display: block;
  }

  @media (prefers-color-scheme: dark) {
    .menu-icon-light{
      display: none;
    }

    .menu-icon-dark {
      display: block;
    }
  }
}

@media screen and (max-width: 900px) {
  /* Responsive voor tablets */
  .checkout-page {
    flex-direction: column; /* kolommen stapelen */
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }

  .summary-column {
    order: -1; /* bovenaan */
    width: 100%;
  }

  .checkout-form {
    width: 100%;
  }

  header {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
  }

  .main-nav {
    flex-direction: row;
    gap: 0.5rem;
  }

  .logo-search-wrapper {
    flex-direction: row;
    gap: 1rem;
  }

  .header-center {
    display: none;
  }

  .cart-dropdown {
    left: 50%;
    transform: translateX(-50%);
  }

  .product-grid-index,
  .other-products-container,
  .last-seen-products-container,
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1rem;
  }

  .account-container {
    flex-direction: column;
    gap: 20px;
    max-width: 90vw;
    margin: 20px auto;
  }

  .account-menu {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
  }

  .account-content {
    padding: 1rem;
  }

  .cart-container,
  .checkout-page,
  .contact-container,
  .algemene-voorwaarden,
  .betaalmethodes,
  .cookiebeleid,
  .privacybeleid-container,
  .retourzendingen-container,
  .reviews-container,
  .over-ons-container,
  .verzending-en-levering-container,
  .voucher-container {
    margin: 1rem auto;
    max-width: 90vw;
  }

  .max-width {
    display: block;
  }

  .min-width {
    display: none;
  }

  .filters {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  /* Responsive voor smartphones */
  header {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem;
    justify-content: center;
  }

  .main-nav {
    flex-direction: row;
    gap: 0.25rem;
    padding: 0.5rem 0;
  }

  .logo-search-wrapper {
    flex-direction: row;
    gap: 0.5rem;
  }

  .header-center {
    display: none;
  }

  .cart-dropdown {
    left: 0;
  }

  .product-grid-index,
  .other-products-container,
  .last-seen-products-container,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .product-card-index,
  .product-card2 {
    padding: 0.5rem;
    font-size: 0.95rem;
  }

  .cart-container,
  .checkout-page,
  .contact-container,
  .algemene-voorwaarden,
  .betaalmethodes,
  .cookiebeleid,
  .privacybeleid-container,
  .retourzendingen-container,
  .reviews-container,
  .over-ons-container,
  .verzending-en-levering-container,
  .voucher-container {
    margin: 0.5rem auto;
    max-width: 90vw;
  }

  .account-container {
    flex-direction: column;
    gap: 10px;
    max-width: 90vw;
    margin: 10px auto;
  }

  .account-menu {
    display: none;
  }

  .account-content {
    padding: 0.5rem;
  }

  .cart-item img {
    width: 100px;
    height: auto;
  }

  .remove-item {
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.5rem;
    cursor: pointer;
  }

  .remove-icon {
    max-width: 2rem;
    max-height: 2rem;
  }

  .order-product-img {
    width: 48px;
    height: 48px;
  }


  .return-product-img {
    width: 80px;
    height: 80px;
  }

  .order-card,
  .return-card {
    padding: 8px 6px;
    margin-bottom: 10px;
  }

  .order-card-header {
    flex-direction: row;
    gap: 4px;
  }

  .order-card-title {
    font-size: 1rem;
  }

  .invoice-btn {
    width: 2rem;
    height: 2rem;
    max-width: 2rem;
    max-height: 2rem;
  }

  .invoice-btn .invoice-icon {
    width: 1.2rem !important;
    height: 1.2rem !important;
  }

  .order-product-name {
    font-size: 0.95rem;
  }

  .order-product-qty,
  .order-product-price {
    font-size: 0.95rem;
    min-width: 50px;
  }

  .wishlist-card {
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .wishlist-item-image {
    max-width: 60px;
  }

  .wishlist-info h3,
  .wishlist-info p {
    font-size: 0.95rem;
  }

  .add-to-cart img {
    margin: 0.25rem;
    max-width: 1.5rem;
    max-height: 1.5rem;
  }
}