/* Reset en basis stijlen  */
:root {
  --color-grey: #929ca6;
  --color-brown-light: #8c7d61;
  --color-brown-dark: #402617;
  --color-brown-medium: #734e38;
  --color-brown-accent: #bf8360;
  --font-primary: "Inter", sans-serif;
  --color-brown-extra-light: #bab1a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  background-color: var(--color-brown-light);
}

/* Actie Banner */
.action-banner {
  background: linear-gradient(
    90deg,
    var(--color-brown-accent),
    var(--color-brown-medium)
  );
  color: white;
  padding: 0.3rem 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 85%;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px 0 0 8px;
  /* Zorg ervoor dat de animatie correct werkt */
  min-height: 2rem;
  /* Zorg ervoor dat de animatie zichtbaar is */
  overflow: visible;
}

.action-banner__content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  /* Zorg ervoor dat de animatie correct werkt */
  display: flex;
  align-items: center;
}

.action-banner__text {
  display: inline-flex;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  gap: 0;
  /* will-change kan conflicteren met JavaScript transform */
  min-width: max-content;
  position: relative;
  /* Start direct zichtbaar - geen vertraging */
  transform: translateX(0);
  /* Zorg ervoor dat de animatie zichtbaar is */
  overflow: visible;
  z-index: 1;
  /* Geen CSS animatie - JavaScript zorgt voor perfecte oneindige loop */
  /* Verwijder alle CSS animatie properties */
  animation: none !important;
  transition: none !important;
}

.banner-text-item {
  display: inline-block;
  white-space: nowrap;
  margin-right: 0.5rem;
  /* Zorg ervoor dat items correct worden weergegeven */
  flex-shrink: 0;
  /* Zorg ervoor dat de animatie correct werkt */
  position: relative;
  z-index: 1;
}

.banner-separator {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin: 0 0.5rem;
  opacity: 0.8;
  /* Zorg ervoor dat scheidingstekens correct worden weergegeven */
  flex-shrink: 0;
  /* Zorg ervoor dat de animatie correct werkt */
  position: relative;
  z-index: 1;
}

.action-banner__gift {
  display: inline-block;
  animation: giftBounce 1s ease-in-out infinite;
  margin-right: 0.3rem;
}

.action-banner__delivery {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.action-banner__quality {
  color: #e8f5e8;
  font-weight: 500;
  text-shadow: 0 0 1px rgba(232, 245, 232, 0.3);
  font-style: normal;
}

@keyframes giftBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-5deg);
  }
  50% {
    transform: translateY(-6px) rotate(0deg);
  }
  75% {
    transform: translateY(-3px) rotate(5deg);
  }
}

.action-banner__link {
  color: white;
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s ease;
}

.action-banner__link:hover {
  color: #f0f0f0;
  text-decoration: none;
}

/* CSS keyframes verwijderd - JavaScript zorgt voor perfecte oneindige loop */

/* Header */
.header {
  background-color: var(--color-grey);
  padding: 0.5rem 0.2rem 0.5rem 4rem;
  position: fixed;
  width: 100%;
  top: 0; /* Terug naar originele positie */
  z-index: 1000;
}

.header__wrapper {
  position: relative;
}

/* Header Dropdown Menu */
.header__menu-item--dropdown {
  position: relative;
}

.header__menu-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-10px);
  background-color: var(--color-grey);
  border-radius: 8px;
  padding: 1rem;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1001;
}

.header__dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-bottom: 0.5rem;
}

.header__dropdown-item:last-child {
  margin-bottom: 0;
}

.header__dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__dropdown-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.header__dropdown-item h4 {
  font-size: 0.9rem;
  margin: 0 0 0.25rem 0;
  color: #cfbc9c;
}

.header__dropdown-item p {
  font-size: 0.8rem;
  margin: 0;
  color: white;
}

/* Header Cart Icon */
.header__cart-icon {
  position: relative;
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.header__cart-icon:hover {
  color: #cfbc9c;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  min-width: 20px;
  box-sizing: border-box;
}

.header.visible {
  transform: translateY(0);
}

.header__container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
  padding: 0 0.5rem 0 2rem;
}

.header__brand,
.header__brand a {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #cfbc9c;
  text-decoration: none;
}

.header__brand-flex {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.header__brand-subtext {
  font-size: 0.8rem;
  color: #cfbc9c;
  font-weight: 400;
  margin-left: 0.5rem;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.header__menu {
  display: flex;
  list-style: none;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
}

.header__menu a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.header__menu a:hover {
  color: #cfbc9c;
}

.header__logout {
  color: #dc3545 !important;
  font-weight: 600;
}

.header__logout:hover {
  color: #c82333 !important;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__social-link {
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.header__social-link:hover {
  color: #cfbc9c;
}

.header__cta-button {
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.5rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.header__cta-button:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

/* Menu toggle button */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #fff;
  z-index: 9999;
}

.header__menu-icon,
.header__close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.header__close-icon {
  display: none;
}

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero__slideshow {
  height: 100%;
  position: relative;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 1rem;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide--zoomed-out {
  background-size: 120% !important;
  background-position: center !important;
}

.hero__slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
}

.hero__content {
  position: relative;
  z-index: 10;
}

.hero__slide-link:hover + .hero__slide,
.hero__slide-link:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.hero__slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__slide-link:hover .hero__slide-overlay {
  opacity: 1;
}

.hero__slide-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero__dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.hero__dot.active {
  background-color: white;
}

.hero__logo {
  position: absolute;
  top: 2rem;
  left: 4rem;
  width: 10rem;
  height: 10rem;
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__content {
  color: white;
  padding: 0 1rem;
  margin-left: 4rem;
}

.hero__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25rem;
}

.hero__title-background-color {
  background-color: rgb(138, 124, 96, 0.6);
  padding: 1rem 3rem;
  border-radius: 30px;
  max-width: 40rem;
}

.hero__title {
  font-size: 2rem;
  margin-bottom: 0;
}

.hero__cta-button {
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.5rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 3rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero__cta-button:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

/* Products Section */
.products {
  padding: 4rem;
  background-color: var(--color-brown-light);
  position: relative;
}

.products__title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
}

.product-card {
  background-color: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  border: 1px solid #666;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-card.p4 {
  grid-column: span 1;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.5rem 1.5rem 1rem;
  margin: 0;
  text-align: center;

  border-bottom: 1px solid #555;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
.product-card__title-index {
  background-color: #666;
}
.product-card__image-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  flex: 1;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card.p4 .product-card__image-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(186, 177, 160, 0.3) 0%,
    rgba(186, 177, 160, 0.1) 100%
  );
  z-index: 1;
}

.product-card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: #e8e8e8;
  border-top: 1px solid #ddd;
  min-height: 80px;
}

.product-card__price {
  color: #cfbc9c;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-card__arrow {
  width: 40px;
  height: 40px;
  background-color: #666;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-card__arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

.product-card__arrow:hover {
  background-color: #111;
  transform: scale(1.1);
}

.product-card:hover .product-card__image-link {
  transform: scale(1.05);
}

/* Aanpassingen voor de laatste product-card */
.products__grid > a .product-card__overlay {
  opacity: 1;
}

/* Aanpassingen voor de derde product-card */
.products__grid > a .product-card__name {
  color: white;
  position: relative;
  transform: translateY(0);
  background-color: rgba(17, 17, 17, 0.76);
  transition: color 0.6s ease;
}

.products__grid > a .product-card__name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(186, 177, 160, 0.9);
  transform: translateY(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.products__grid > a .product-card__button {
  transform: translateY(0);
  background-color: transparent;
  color: white;
  position: relative;
}

.products__grid > a .product-card__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(115, 78, 56, 0.9);
  transform: translateY(100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.products__grid > a:hover .product-card__name::before,
.products__grid > a:hover .product-card__button::before {
  transform: translateY(0);
}

.products__grid > a:hover .product-card__name {
  color: #111;
}

.products__description {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 1rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 2.2rem;
  z-index: 1000;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Process Section */
.process {
  padding: 4rem;
  background-color: var(--color-brown-light);
  position: relative;
  width: 100%;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #402617;
  opacity: 0.6;
}

.process__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  position: relative;
}

.process__title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}

.process__call-button {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-5%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-brown-medium);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.process__call-button:hover {
  transform: scale(1.05);
}

.process__call-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;

  margin: 0 auto;
}

.process-card {
  background-color: var(--color-brown-light);
  border-radius: 8px;
  overflow: hidden;
}

.process-card__content {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: flex-start;
}

.process-card__link {
  color: #fff;

  font-weight: 500;
}

.process-card__image-container {
  position: relative;
  width: 15rem;
  height: 15rem;
  flex-shrink: 0;
  margin: 0;
}

.process-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.process-card__number {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-brown-medium);
  color: #fff;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  z-index: 1;
}

.process-card__text {
  flex: 1;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.process-card__text h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.process-card__text p {
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  margin-top: 0;
}

.process-card__text a {
  color: #fff;
  margin-bottom: 0.75rem;
  text-decoration: underline;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0;
}

.process-card__text p:last-child {
  margin-bottom: 0;
}

/* Process values */
.process__values {
  display: flex;
  justify-content: space-around;
  align-items: center;

  margin: 2rem auto 0;
  padding: 0 2rem;
}

.process__value {
  text-align: center;
}

.process__value h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

/* Offerte Section */
.offerte-section {
  padding: 4rem;
  background-color: var(--color-brown-light);
  position: relative;
}

.offerte-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #402617;
  opacity: 0.6;
}

.offerte-section__title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offerte-section__subtitle {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.offerte-form {
  max-width: 60rem;
  margin: 0 auto;
  padding: 2rem;
  padding-bottom: 9rem;
  background-color: #bab1a0;
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
}

.offerte-form__group {
  margin-bottom: 0;
}

.offerte-form__group label {
  display: block;
  color: #111;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.offerte-form__group input,
.offerte-form__group textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 22px;
  background-color: #d9d3ca;
  font-family: inherit;
}

.offerte-form__group--full {
  grid-column: 1 / -1;
}

.offerte-form__submit {
  grid-column: 1 / -1;
  width: 100%;
  padding: 1rem;
  background-color: var(--color-brown-medium);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.offerte-form__submit:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

.offerte-form__recaptcha {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 33rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.g-recaptcha {
  margin: 0 auto;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal__content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 90%;
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

.modal__title {
  color: var(--color-brown-dark);
  margin-bottom: 1rem;
}

.modal__message {
  color: #666;
  margin-bottom: 1.5rem;
}

.modal__close {
  background: var(--color-brown-medium);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.modal__close:hover {
  background: var(--color-brown-dark);
}

/* Checkmark Animation */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke: var(--color-brown-medium);
  fill: none;
  animation: circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: var(--color-brown-medium);
  stroke-width: 3;
  animation: check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes circle {
  0% {
    stroke-dashoffset: 166;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes check {
  0% {
    stroke-dashoffset: 48;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Reset animaties wanneer modal opnieuw opent */
.modal:not(.active) .checkmark__circle,
.modal:not(.active) .checkmark__check {
  animation: none;
  stroke-dashoffset: 166;
}

/* Loading overlay */
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loading-overlay.active {
  display: flex;
}

.loading-animation {
  position: relative;
  width: 200px;
  height: 80px;
}

.hammer {
  width: 40px;
  height: 40px;
  fill: var(--color-brown-medium);
  position: absolute;
  top: 20px;
  left: -50px;
  transform-origin: 75% 75%;
  animation: hammerMove 3.6s linear infinite;
  transform: rotate(45deg) scale(0.8);
}

.dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.dot {
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dot.hit {
  background-color: var(--color-brown-medium);
  animation: squish 0.3s ease-out;
}

@keyframes hammerMove {
  /* Start positie */
  0%,
  15% {
    transform: translateX(40px) rotate(25deg) scale(0.8);
  }
  /* Eerste hit */
  20% {
    transform: translateX(40px) rotate(65deg) scale(0.8);
  }
  25% {
    transform: translateX(40px) rotate(25deg) scale(0.8);
  }
  /* Beweging naar tweede dot */
  35% {
    transform: translateX(110px) rotate(25deg) scale(0.8);
  }
  /* Tweede hit */
  40% {
    transform: translateX(110px) rotate(65deg) scale(0.8);
  }
  45% {
    transform: translateX(110px) rotate(25deg) scale(0.8);
  }
  /* Beweging naar derde dot */
  55% {
    transform: translateX(170px) rotate(25deg) scale(0.8);
  }
  /* Derde hit */
  60% {
    transform: translateX(170px) rotate(65deg) scale(0.8);
  }
  65% {
    transform: translateX(170px) rotate(25deg) scale(0.8);
  }
  /* Rustige terugkeer naar start */
  75% {
    transform: translateX(110px) rotate(25deg) scale(0.8);
  }
  85%,
  100% {
    transform: translateX(40px) rotate(25deg) scale(0.8);
  }
}

@keyframes squish {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}

.loading-text {
  color: #fff;
  margin-top: 20px;
  font-size: 1.1rem;
}

/* Cart Page Styles */
.cart-page {
  padding-top: 6rem;
  background-color: var(--color-brown-light);
  min-height: 100vh;
}

.cart-section {
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem;
}

.cart-container h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #fff;
  background-color: var(--color-grey);
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.cart-empty__icon {
  font-size: 4rem;
  color: var(--color-brown-accent);
  margin-bottom: 2rem;
}

.cart-empty h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #cfbc9c;
}

.cart-empty p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.cart-empty__cta {
  display: inline-block;
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 1rem 2rem;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.cart-empty__cta:hover {
  transform: scale(1.05);
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cart-items {
  background-color: var(--color-grey);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  font-weight: 600;
  color: #cfbc9c;
  font-size: 1rem;
}

.cart-header__article {
  grid-column: 2;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cart-item__image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.cart-item__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cart-item__image:hover img {
  transform: scale(1.05);
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  width: 100%;
}

.cart-item__product-link {
  color: #cfbc9c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cart-item__product-link:hover {
  color: var(--color-brown-accent);
}

.cart-item__price {
  color: #cfbc9c;
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-item__info-grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item__info-label {
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 0.5rem;
  grid-row: 1;
}

.cart-item__quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
  grid-row: 2;
}

.cart-item__quantity input {
  width: 60px;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item__size {
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.7;
  min-width: 80px;
  grid-row: 2;
}

.cart-item__maatwerk-info {
  margin: 0.5rem 0;
  padding: 0.5rem;
  background-color: rgba(139, 69, 19, 0.1);
  border-radius: 4px;
  border-left: 3px solid var(--color-brown-accent);
}

.cart-item__maatwerk-label {
  font-size: 0.8rem;
  color: var(--color-brown-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.cart-item__maatwerk-dimensions {
  font-size: 0.9rem;
  color: var(--color-brown-dark);
  font-weight: 500;
}

.cart-item__quantity-display {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  padding: 0.5rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.cart-item__subtotal {
  font-weight: 700;
  font-size: 1.2rem;
  color: #cfbc9c;
  min-width: 80px;
  text-align: center;
  grid-row: 2;
}

.cart-item__remove {
  display: flex;
  justify-content: center;
  min-width: 40px;
  grid-row: 2;
}

.remove-button {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-button:hover {
  background-color: rgba(255, 107, 107, 0.1);
  transform: scale(1.1);
}

.remove-button svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Cart Summary Styling */
.cart-summary {
  background-color: var(--color-grey);
  border-radius: 12px;
  padding: 2rem;
  height: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 8rem;
}

/* Reset en basis stijlen  */
:root {
  --color-grey: #929ca6;
  --color-brown-light: #8c7d61;
  --color-brown-dark: #402617;
  --color-brown-medium: #734e38;
  --color-brown-accent: #bf8360;
  --font-primary: "Inter", sans-serif;
  --color-brown-extra-light: #bab1a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  background-color: var(--color-brown-light);
}

/* Actie Banner */
.action-banner {
  background: linear-gradient(
    90deg,
    var(--color-brown-accent),
    var(--color-brown-medium)
  );
  color: white;
  padding: 0.3rem 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 85%;
  z-index: 1001;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px 0 0 8px;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 30%,
    black 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 30%,
    black 85%,
    transparent 100%
  );
}

.action-banner__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.action-banner__text {
  display: inline-block;
  white-space: nowrap;
  /* CSS animatie verwijderd - JavaScript zorgt voor perfecte oneindige loop */
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  /* Zorg ervoor dat de tekst niet wordt afgekapt */
  min-width: max-content;
}

.action-banner__gift {
  display: inline-block;
  animation: giftBounce 1s ease-in-out infinite;
  margin-right: 0.3rem;
}

.action-banner__delivery {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.action-banner__quality {
  color: #e8f5e8;
  font-weight: 500;
  text-shadow: 0 0 1px rgba(232, 245, 232, 0.3);
  font-style: normal;
}

@keyframes giftBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(-5deg);
  }
  50% {
    transform: translateY(-6px) rotate(0deg);
  }
  75% {
    transform: translateY(-3px) rotate(5deg);
  }
}

.action-banner__link {
  color: white;
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s ease;
}

.action-banner__link:hover {
  color: #f0f0f0;
  text-decoration: none;
}

/* @keyframes marquee verwijderd - JavaScript zorgt voor animatie */

/* Header */
.header {
  background-color: var(--color-grey);
  padding: 0.5rem 0.2rem 0.5rem 4rem;
  position: fixed;
  width: 100%;
  top: 0; /* Terug naar originele positie */
  z-index: 1000;
}

.header__wrapper {
  position: relative;
}

/* Header Dropdown Menu */
.header__menu-item--dropdown {
  position: relative;
}

.header__menu-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-10px);
  background-color: var(--color-grey);
  border-radius: 8px;
  padding: 1rem;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1001;
}

.header__dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-bottom: 0.5rem;
}

.header__dropdown-item:last-child {
  margin-bottom: 0;
}

.header__dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__dropdown-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.header__dropdown-item h4 {
  font-size: 0.9rem;
  margin: 0 0 0.25rem 0;
  color: #cfbc9c;
}

.header__dropdown-item p {
  font-size: 0.8rem;
  margin: 0;
  color: white;
}

/* Header Cart Icon */
.header__cart-icon {
  position: relative;
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.header__cart-icon:hover {
  color: #cfbc9c;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  min-width: 20px;
  box-sizing: border-box;
}

.header.visible {
  transform: translateY(0);
}

.header__container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
  padding: 0 0.5rem 0 2rem;
}

.header__brand,
.header__brand a {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #cfbc9c;
  text-decoration: none;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.header__menu {
  display: flex;
  list-style: none;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
}

.header__menu a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.header__menu a:hover {
  color: #cfbc9c;
}

.header__logout {
  color: #dc3545 !important;
  font-weight: 600;
}

.header__logout:hover {
  color: #c82333 !important;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__social-link {
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.header__social-link:hover {
  color: #cfbc9c;
}

.header__cta-button {
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.5rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.header__cta-button:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

/* Menu toggle button */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #fff;
  z-index: 9999;
}

.header__menu-icon,
.header__close-icon {
  width: 2rem;
  height: 2rem;
}

.header__close-icon {
  display: none;
}

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero__slideshow {
  height: 100%;
  position: relative;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 1rem;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide--zoomed-out {
  background-size: 120% !important;
  background-position: center !important;
}

.hero__slide-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
}

.hero__content {
  position: relative;
  z-index: 10;
}

.hero__slide-link:hover + .hero__slide,
.hero__slide-link:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.hero__slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__slide-link:hover .hero__slide-overlay {
  opacity: 1;
}

.hero__slide-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero__dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.hero__dot.active {
  background-color: white;
}

.hero__logo {
  position: absolute;
  top: 2rem;
  left: 4rem;
  width: 10rem;
  height: 10rem;
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__content {
  color: white;
  padding: 0 1rem;
  margin-left: 4rem;
}

.hero__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25rem;
}

.hero__title-background-color {
  background-color: rgb(138, 124, 96, 0.6);
  padding: 1rem 3rem;
  border-radius: 30px;
  max-width: 40rem;
}

.hero__title {
  font-size: 2rem;
  margin-bottom: 0;
}

.hero__cta-button {
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.5rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 3rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero__cta-button:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

/* Products Section */
.products {
  padding: 4rem;
  background-color: var(--color-brown-light);
  position: relative;
}

.products__title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
}

.product-card {
  background-color: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  border: 1px solid #666;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.product-card.p4 {
  grid-column: span 1;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.5rem 1.5rem 1rem;
  margin: 0;
  text-align: center;

  border-bottom: 1px solid #555;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
.product-card__title-index {
  background-color: #666;
}
.product-card__image-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  flex: 1;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card.p4 .product-card__image-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(186, 177, 160, 0.3) 0%,
    rgba(186, 177, 160, 0.1) 100%
  );
  z-index: 1;
}

.product-card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: #e8e8e8;
  border-top: 1px solid #ddd;
  min-height: 80px;
}

.product-card__price {
  color: #cfbc9c;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-card__arrow {
  width: 40px;
  height: 40px;
  background-color: #666;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-card__arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

.product-card__arrow:hover {
  background-color: #111;
  transform: scale(1.1);
}

.product-card:hover .product-card__image-link {
  transform: scale(1.05);
}

/* Aanpassingen voor de laatste product-card */
.products__grid > a .product-card__overlay {
  opacity: 1;
}

/* Aanpassingen voor de derde product-card */
.products__grid > a .product-card__name {
  color: white;
  position: relative;
  transform: translateY(0);
  background-color: rgba(17, 17, 17, 0.76);
  transition: color 0.6s ease;
}

.products__grid > a .product-card__name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(186, 177, 160, 0.9);
  transform: translateY(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.products__grid > a .product-card__button {
  transform: translateY(0);
  background-color: transparent;
  color: white;
  position: relative;
}

.products__grid > a .product-card__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(115, 78, 56, 0.9);
  transform: translateY(100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.products__grid > a:hover .product-card__name::before,
.products__grid > a:hover .product-card__button::before {
  transform: translateY(0);
}

.products__grid > a:hover .product-card__name {
  color: #111;
}

.products__description {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 1rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 2.2rem;
  z-index: 1000;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Process Section */
.process {
  padding: 4rem;
  background-color: var(--color-brown-light);
  position: relative;
  width: 100%;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #402617;
  opacity: 0.6;
}

.process__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  position: relative;
}

.process__title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}

.process__call-button {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-5%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-brown-medium);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.process__call-button:hover {
  transform: scale(1.05);
}

.process__call-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;

  margin: 0 auto;
}

.process-card {
  background-color: var(--color-brown-light);
  border-radius: 8px;
  overflow: hidden;
}

.process-card__content {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  align-items: flex-start;
}

.process-card__link {
  color: #fff;

  font-weight: 500;
}

.process-card__image-container {
  position: relative;
  width: 15rem;
  height: 15rem;
  flex-shrink: 0;
  margin: 0;
}

.process-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.process-card__number {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-brown-medium);
  color: #fff;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  z-index: 1;
}

.process-card__text {
  flex: 1;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.process-card__text h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.process-card__text p {
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  margin-top: 0;
}

.process-card__text a {
  color: #fff;
  margin-bottom: 0.75rem;
  text-decoration: underline;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0;
}

.process-card__text p:last-child {
  margin-bottom: 0;
}

/* Process values */
.process__values {
  display: flex;
  justify-content: space-around;
  align-items: center;

  margin: 2rem auto 0;
  padding: 0 2rem;
}

.process__value {
  text-align: center;
}

.process__value h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

/* Offerte Section */
.offerte-section {
  padding: 4rem;
  background-color: var(--color-brown-light);
  position: relative;
}

.offerte-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #402617;
  opacity: 0.6;
}

.offerte-section__title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offerte-section__subtitle {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.offerte-form {
  max-width: 60rem;
  margin: 0 auto;
  padding: 2rem;
  padding-bottom: 9rem;
  background-color: #bab1a0;
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
}

.offerte-form__group {
  margin-bottom: 0;
}

.offerte-form__group label {
  display: block;
  color: #111;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.offerte-form__group input,
.offerte-form__group textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 22px;
  background-color: #d9d3ca;
  font-family: inherit;
}

.offerte-form__group--full {
  grid-column: 1 / -1;
}

.offerte-form__submit {
  grid-column: 1 / -1;
  width: 100%;
  padding: 1rem;
  background-color: var(--color-brown-medium);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.offerte-form__submit:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

.offerte-form__recaptcha {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 33rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.g-recaptcha {
  margin: 0 auto;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal__content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 90%;
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

.modal__title {
  color: var(--color-brown-dark);
  margin-bottom: 1rem;
}

.modal__message {
  color: #666;
  margin-bottom: 1.5rem;
}

.modal__close {
  background: var(--color-brown-medium);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.modal__close:hover {
  background: var(--color-brown-dark);
}

/* Checkmark Animation */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke: var(--color-brown-medium);
  fill: none;
  animation: circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: var(--color-brown-medium);
  stroke-width: 3;
  animation: check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes circle {
  0% {
    stroke-dashoffset: 166;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes check {
  0% {
    stroke-dashoffset: 48;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Reset animaties wanneer modal opnieuw opent */
.modal:not(.active) .checkmark__circle,
.modal:not(.active) .checkmark__check {
  animation: none;
  stroke-dashoffset: 166;
}

/* Loading overlay */
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loading-overlay.active {
  display: flex;
}

.loading-animation {
  position: relative;
  width: 200px;
  height: 80px;
}

.hammer {
  width: 40px;
  height: 40px;
  fill: var(--color-brown-medium);
  position: absolute;
  top: 20px;
  left: -50px;
  transform-origin: 75% 75%;
  animation: hammerMove 3.6s linear infinite;
  transform: rotate(45deg) scale(0.8);
}

.dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.dot {
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dot.hit {
  background-color: var(--color-brown-medium);
  animation: squish 0.3s ease-out;
}

@keyframes hammerMove {
  /* Start positie */
  0%,
  15% {
    transform: translateX(40px) rotate(25deg) scale(0.8);
  }
  /* Eerste hit */
  20% {
    transform: translateX(40px) rotate(65deg) scale(0.8);
  }
  25% {
    transform: translateX(40px) rotate(25deg) scale(0.8);
  }
  /* Beweging naar tweede dot */
  35% {
    transform: translateX(110px) rotate(25deg) scale(0.8);
  }
  /* Tweede hit */
  40% {
    transform: translateX(110px) rotate(65deg) scale(0.8);
  }
  45% {
    transform: translateX(110px) rotate(25deg) scale(0.8);
  }
  /* Beweging naar derde dot */
  55% {
    transform: translateX(170px) rotate(25deg) scale(0.8);
  }
  /* Derde hit */
  60% {
    transform: translateX(170px) rotate(65deg) scale(0.8);
  }
  65% {
    transform: translateX(170px) rotate(25deg) scale(0.8);
  }
  /* Rustige terugkeer naar start */
  75% {
    transform: translateX(110px) rotate(25deg) scale(0.8);
  }
  85%,
  100% {
    transform: translateX(40px) rotate(25deg) scale(0.8);
  }
}

@keyframes squish {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}

.loading-text {
  color: #fff;
  margin-top: 20px;
  font-size: 1.1rem;
}

/* Cart Page Styles */
.cart-page {
  padding-top: 6rem;
  background-color: var(--color-brown-light);
  min-height: 100vh;
}

.cart-section {
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem;
}

.cart-container h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #fff;
  background-color: var(--color-grey);
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.cart-empty__icon {
  font-size: 4rem;
  color: var(--color-brown-accent);
  margin-bottom: 2rem;
}

.cart-empty h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #cfbc9c;
}

.cart-empty p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.cart-empty__cta {
  display: inline-block;
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 1rem 2rem;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.cart-empty__cta:hover {
  transform: scale(1.05);
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cart-items {
  background-color: var(--color-grey);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  font-weight: 600;
  color: #cfbc9c;
  font-size: 1rem;
}

.cart-header__article {
  grid-column: 2;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cart-item__image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.cart-item__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cart-item__image:hover img {
  transform: scale(1.05);
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  width: 100%;
}

.cart-item__product-link {
  color: #cfbc9c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cart-item__product-link:hover {
  color: var(--color-brown-accent);
}

.cart-item__price {
  color: #cfbc9c;
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-item__info-grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item__info-label {
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 0.5rem;
  grid-row: 1;
}

.cart-item__quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
  grid-row: 2;
}

.cart-item__quantity input {
  width: 60px;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item__size {
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.7;
  min-width: 80px;
  grid-row: 2;
}

.cart-item__maatwerk-info {
  margin: 0.5rem 0;
  padding: 0.5rem;
  background-color: rgba(139, 69, 19, 0.1);
  border-radius: 4px;
  border-left: 3px solid var(--color-brown-accent);
}

.cart-item__maatwerk-label {
  font-size: 0.8rem;
  color: var(--color-brown-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.cart-item__maatwerk-dimensions {
  font-size: 0.9rem;
  color: var(--color-brown-dark);
  font-weight: 500;
}

.cart-item__quantity-display {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  padding: 0.5rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.cart-item__subtotal {
  font-weight: 700;
  font-size: 1.2rem;
  color: #cfbc9c;
  min-width: 80px;
  text-align: center;
  grid-row: 2;
}

.cart-item__remove {
  display: flex;
  justify-content: center;
  min-width: 40px;
  grid-row: 2;
}

.remove-button {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-button:hover {
  background-color: rgba(255, 107, 107, 0.1);
  transform: scale(1.1);
}

.remove-button svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Cart Summary Styling */
.cart-summary {
  background-color: var(--color-grey);
  border-radius: 12px;
  padding: 2rem;
  height: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 8rem;
}

.cart-summary h3 {
  color: #cfbc9c;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary__total {
  color: #cfbc9c;
  font-weight: 700;
  font-size: 1.5rem;
}

.cart-summary__delivery {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary__delivery h4 {
  color: #cfbc9c;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cart-summary__delivery-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cart-summary__delivery-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cart-summary__delivery-option:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--color-brown-accent);
}

.cart-summary__delivery-radio {
  width: 18px;
  height: 18px;
  accent-color: var(--color-brown-accent);
  cursor: pointer;
}

.cart-summary__delivery-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-summary__delivery-text strong {
  color: #fff;
  font-weight: 600;
}

.cart-summary__delivery-price {
  color: var(--color-brown-accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-summary__delivery-info {
  position: relative;
  display: inline-block;
}

.cart-summary__delivery-info i {
  color: var(--color-brown-accent);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-summary__delivery-info:hover i {
  color: #a66d4f;
}

.cart-summary__delivery-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 320px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary__delivery-info:hover .cart-summary__delivery-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.cart-summary__delivery-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.cart-summary__poles-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.cart-summary__poles-image {
  position: relative;
  display: inline-block;
}

.cart-summary__poles-image i {
  color: var(--color-brown-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-summary__poles-image:hover i {
  color: #a66d4f;
}

.cart-summary__poles-preview {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 200px;
  height: 150px;
  background-color: rgba(64, 38, 23, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cart-summary__poles-image:hover .cart-summary__poles-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.cart-summary__poles-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-summary__poles-quantity {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-summary__poles-quantity-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cart-summary__poles-quantity-input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

.cart-summary__poles-quantity-input:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.cart-summary__delivery-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 6px;
  color: #ffc107;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cart-summary__delivery-warning i {
  color: #ffc107;
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.cart-summary__poles-advice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.cart-summary__poles-advice i {
  color: #ffc107;
  font-size: 1rem;
}

.cart-summary__poles-advice--always-visible {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #ffc107;
  font-weight: 500;
}

.cart-summary__poles-advice--always-visible i {
  color: #ffc107;
  font-size: 1.1rem;
}

/* Custom Pole Modal */
.pole-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pole-modal.active {
  opacity: 1;
  visibility: visible;
}

.pole-modal__content {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pole-modal.active .pole-modal__content {
  transform: translateY(0);
}

.pole-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.pole-modal__header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  flex: 1;
  width: 100%;
  position: relative;
}

.pole-modal__header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.pole-modal__header-actions .pole-modal__btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  min-width: auto;
}

.pole-modal__header h3 {
  color: #8b5a3c;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  flex-shrink: 0;
}

.pole-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  color: #666;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  flex-shrink: 0;
}

.pole-modal__close:hover {
  background-color: #f5f5f5;
  color: #333;
}

.pole-modal__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pole-modal__body {
  text-align: center;
  margin-bottom: 2rem;
}

.pole-modal__icon {
  margin-bottom: 1rem;
}

.pole-modal__icon i {
  font-size: 3rem;
  color: #ffc107;
}

.pole-modal__body h4 {
  color: #8b5a3c;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.pole-modal__body p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.pole-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.pole-modal__actions .pole-modal__btn {
  flex: none;
}

.pole-modal__button-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pole-modal__error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem;
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
}

.pole-modal__error i {
  font-size: 1rem;
}

.pole-modal__btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.pole-modal__btn--secondary {
  background-color: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
}

.pole-modal__btn--secondary:hover {
  background-color: #e9ecef;
  color: #333;
  transform: translateY(-1px);
}

.pole-modal__btn--primary {
  background-color: #8b5a3c;
  color: white;
}

.pole-modal__btn--primary:hover {
  background-color: #a66d4f;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(139, 90, 60, 0.3);
}

.pole-modal__btn svg,
.pole-modal__btn i {
  width: 1rem;
  height: 1rem;
}

/* Responsive design voor modal */
@media (max-width: 768px) {
  .pole-modal__content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .pole-modal__header h3 {
    font-size: 1.3rem;
  }

  .pole-modal__body h4 {
    font-size: 1.1rem;
  }

  .pole-modal__actions {
    flex-direction: column;
  }

  .pole-modal__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pole-modal__content {
    padding: 1rem;
  }

  .pole-modal__header {
    margin-bottom: 1rem;
  }

  .pole-modal__body {
    margin-bottom: 1.5rem;
  }

  .pole-modal__icon i {
    font-size: 2.5rem;
  }
}

.cart-summary__poles-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cfbc9c;
  font-weight: 600;
  font-size: 1.1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Extra bescherming styling */
.cart-summary__poles-protection {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.cart-summary__poles-protection-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  position: relative;
}

.cart-summary__poles-protection-label:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.cart-summary__poles-protection-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cart-summary__poles-protection-text strong i {
  color: var(--color-brown-medium);
  margin-right: 0.5rem;
}

.cart-summary__poles-protection-checkbox {
  margin: 0;
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--color-brown-accent);
  cursor: pointer;
}

.cart-summary__poles-protection-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-summary__poles-protection-text strong {
  color: var(--color-brown-dark);
  font-size: 1rem;
  font-weight: 600;
}

.cart-summary__poles-protection-price {
  color: var(--color-brown-medium);
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-summary__poles-protection-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.cart-summary__poles-protection-info i {
  color: var(--color-brown-medium);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.cart-summary__poles-protection-info:hover i {
  color: var(--color-brown-accent);
}

.cart-summary__poles-protection-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: var(--color-brown-dark);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

.cart-summary__poles-protection-info:hover
  .cart-summary__poles-protection-tooltip {
  opacity: 1;
  visibility: visible;
}

.cart-summary__poles-protection-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 1rem;
  border: 6px solid transparent;
  border-top-color: var(--color-brown-dark);
}

.cart-summary__poles-protection-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-brown-dark);
}

.cart-summary__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.cart-summary__clear {
  background-color: transparent;
  color: #cfbc9c;
  border: 1px solid #cfbc9c;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.cart-summary__clear:hover {
  background-color: #ff6b6b;
  color: white;
  border-color: #ff6b6b;
  transform: none;
}

.cart-summary__checkout {
  background-color: #8b5a3c;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(139, 90, 60, 0.3);
}

.cart-summary__checkout:hover {
  background-color: #a66d4f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(139, 90, 60, 0.4);
}

.cart-summary__checkout svg {
  width: 1.2rem;
  height: 1.2rem;
}

.cart-summary__offerte {
  background-color: transparent;
  color: #cfbc9c;
  border: 1px solid #cfbc9c;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.cart-summary__offerte:hover {
  background-color: #cfbc9c;
  color: #2a2a2a;
}

.cart-summary__info {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--color-brown-accent);
}

.cart-summary__info p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Product Detail Page */
.product-page {
  padding-top: 6rem;
  background-color: var(--color-brown-light);
  min-height: 100vh;
}

.product-detail-section {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0.5rem;
  /* Geen overflow-x: hidden hier - laat gallery pijltjes zichtbaar */
}

.product-detail-container {
  max-width: 75rem;
  margin: 0 auto;
  width: 100%;
  /* Geen overflow-x: hidden hier - laat gallery pijltjes zichtbaar */
}

/* Nieuwe layout CSS */
.product-detail__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 6rem;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(207, 188, 156, 0.2);
  gap: 2rem;
}

.product-detail__header h1 {
  color: #fff;
  font-size: 2.5rem;
  margin: 0;
  text-align: center;
}

.product-detail__header .product-detail__price {
  color: #cfbc9c;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: var(--color-grey);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  white-space: nowrap;
}

.product-detail__main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "image-text variations"
    "specifications features";
  gap: 4rem;
  align-items: start;
  transition: gap 0.5s ease; /* Vloeiende gap transitie */
  width: 100%;
  max-width: 100%;
  /* Geen overflow-x: hidden - laat gallery pijltjes buiten kolom */
}

/* Desktop grid areas */
.product-detail__image-text-container {
  grid-area: image-text;
}

.product-detail__variations {
  grid-area: variations;
}

.product-detail__features {
  grid-area: features;
}

.product-detail__specifications {
  grid-area: specifications;
}

/* Gallery moet pijltjes buiten container kunnen tonen */
.product-detail__image-text-container .product-detail__gallery {
  overflow-x: visible; /* Laat gallery navigatie pijltjes zichtbaar */
  position: relative; /* Zorg voor juiste stacking context */
}

/* Oude right-column styling niet meer nodig door grid areas */

.product-detail__image-text-container {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Gebruik gap voor consistente spacing */
  margin-bottom: 1rem;
  overflow-x: visible; /* Laat gallery navigatie pijltjes zichtbaar */
}

.product-detail__image-text-container .product-detail__description {
  margin-bottom: 0; /* Gebruik gap van parent container */
}

.product-detail__specifications {
  background-color: var(--color-grey);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 0;
}

.product-detail__variations {
  margin-bottom: 2rem;
}

/* Responsieve CSS voor nieuwe layout */
@media (max-width: 768px) {
  .product-detail__header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .product-detail__header h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .product-detail__header .product-detail__price {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }

  .product-detail__main-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .product-detail__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .product-detail__header h1 {
    font-size: 1.75rem;
  }

  .product-detail__header .product-detail__price {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }

  .product-detail__main-row {
    gap: 1.5rem;
  }
}

.product-detail__gallery {
  position: sticky;

  position: relative;
}

.product-detail__gallery .gallery-container {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  /* Touch-vriendelijke eigenschappen voor swipe */
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.product-detail__gallery .gallery-image {
  width: 100%;
  height: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-detail__gallery .gallery-image.active {
  display: block;
  opacity: 1;
  border-radius: 0.5rem;
}

.product-detail__gallery .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(186, 177, 160, 0.7);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.product-detail__gallery .gallery-nav:hover {
  background: rgba(115, 78, 56, 0.9);
}

.product-detail__gallery .gallery-prev {
  left: -1.25rem;
}

.product-detail__gallery .gallery-next {
  right: -1.25rem;
}

/* Responsive gallery navigatie voor product detail */
@media (max-width: 768px) {
  .product-detail__gallery .gallery-nav {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .product-detail__gallery .gallery-prev {
    left: 0.5rem;
  }

  .product-detail__gallery .gallery-next {
    right: 0.5rem;
  }

  .product-detail__gallery .gallery-nav svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 480px) {
  .product-detail__gallery .gallery-nav {
    width: 2rem;
    height: 2rem;
  }

  .product-detail__gallery .gallery-prev {
    left: 0.25rem;
  }

  .product-detail__gallery .gallery-next {
    right: 0.25rem;
  }

  .product-detail__gallery .gallery-nav svg {
    width: 1rem;
    height: 1rem;
  }
}

.product-detail__gallery .gallery-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

.product-detail__gallery .gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.product-detail__gallery .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-detail__gallery .dot.active {
  background: #fff;
}

.product-detail__main-image {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-detail__main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail__thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 0.8;
  border-color: var(--color-brown-accent);
}

.product-detail__info h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-detail__price {
  color: #cfbc9c;
  font-size: 2rem;
  font-weight: 600;

  background-color: var(--color-grey);
  padding: 1rem;
  border-radius: 8px;
  display: inline-block;
}

.product-detail__description {
  color: #fff;
  margin-bottom: 1rem;
}

.product-detail__description p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-detail__description a {
  font-size: 1.1rem;
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Product Variations */
.product-detail__variations {
  background-color: var(--color-grey);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.product-detail__variations h3 {
  color: #cfbc9c;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.variations-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.variation-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  gap: 1rem;
}

.variation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.variation-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.variation-name {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.variation-price {
  color: #cfbc9c;
  font-weight: 600;
  font-size: 1.1rem;
}

.variation-btn {
  background-color: var(--color-brown-accent);
  color: #111;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.variation-btn:hover {
  background-color: #a66d4f;
}

.variation-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.variation-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

.variation-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* Nieuwe styling voor variation-actions-row */
.variation-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.variation-actions .quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.variation-actions .add-to-cart-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.variation-actions .quantity-selector label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.variation-actions .quantity-selector select {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);

  font-size: 0.9rem;
}

.variation-actions .quantity-selector select:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Variation toggle button styling */
.variation-price-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Variation info styling */
.variation-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.variation-size {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.variation-size-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.variation-size-value {
  color: var(--color-brown-accent);
  font-size: 0.875rem;
  font-weight: 600;
}

.variation-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.variation-toggle-btn:hover {
  border-color: var(--color-brown-accent);
  color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
}

.variation-toggle-btn.active {
  border-color: var(--color-brown-accent);
  color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.15);
}

.variation-toggle-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.variation-toggle-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.variation-toggle-btn.active .variation-toggle-arrow {
  transform: rotate(180deg);
}

/* Variation details styling */
.variation-details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hang- en sluitwerk selector styling */
.hang-sluitwerk-selector {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hang-sluitwerk-selector label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

/* Palen selector styling - identiek aan hang- en sluitwerk */
.palen-selector {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.palen-selector label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.hang-sluitwerk-note,
.maatwerk-hang-sluitwerk-note,
.modal-hang-sluitwerk-note {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Subtiele inline palen (bij hang- en sluitwerk) */
.poles-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.5rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}
.poles-inline .hang-sluitwerk-label,
.poles-inline .modal-hang-sluitwerk-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.poles-inline .hang-sluitwerk-info,
.poles-inline .modal-hang-sluitwerk-info {
  position: static;
}
.poles-inline .hang-sluitwerk-tooltip,
.poles-inline .modal-hang-sluitwerk-tooltip {
  bottom: auto;
  top: 100%;
}
.poles-inline__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
.poles-inline__label input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
.poles-inline__unitprice {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.poles-inline__qty {
  font-size: 0.85rem;
  padding: 0.15rem 0.35rem;
  width: 72px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
.poles-inline__prot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.poles-inline__prot input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
.poles-inline__subtotal {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
}
.poles-inline__apply {
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.poles-inline__apply:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Nieuwe Palen sectie met toggle en animatie */
.poles-section {
  margin-top: 0.5rem;
  padding: 0.6rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.poles-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.poles-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.poles-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.poles-toggle__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Reusable toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.switch input:checked + .slider {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  border-color: #4caf50;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(76, 175, 80, 0.3);
}

.switch input:checked + .slider:before {
  transform: translate(26px, -50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.switch:hover .slider {
  border-color: rgba(255, 255, 255, 0.4);
}

.switch input:checked:hover + .slider {
  border-color: #45a049;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(76, 175, 80, 0.4);
}

/* Info icoon in header gelijk aan hang- en sluitwerk */
.poles-header .hang-sluitwerk-info,
.poles-header .modal-hang-sluitwerk-info {
  position: relative;
}

.poles-panel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.poles-panel.active {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.55rem;
}

.poles-unitprice {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.poles-qty-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.poles-qty {
  font-size: 0.85rem;
  padding: 0.15rem 0.35rem;
  width: 80px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  appearance: textfield;
}

.poles-subtotal {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  margin-left: auto;
}

/* Cart specifieke switch container */
.poles-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.poles-switch__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.hang-sluitwerk-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
}

.hang-sluitwerk-option {
  position: relative;
}

.palen-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
}

.palen-option {
  position: relative;
}

.hang-sluitwerk-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hang-sluitwerk-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  position: relative;
  min-width: 80px;
  text-align: center;
}

.palen-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.palen-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  position: relative;
  min-width: 80px;
  text-align: center;
}

.hang-sluitwerk-label:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.hang-sluitwerk-radio:checked + .hang-sluitwerk-label {
  border-color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.palen-label:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.palen-radio:checked + .palen-label {
  border-color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.hang-sluitwerk-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.hang-sluitwerk-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.75rem;
}

.palen-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.palen-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.75rem;
}

.hang-sluitwerk-info {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
}

.hang-sluitwerk-info i {
  color: var(--color-brown-medium);
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hang-sluitwerk-info i:hover {
  color: #fff;
}

.palen-info {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
}

.palen-info i {
  color: var(--color-brown-medium);
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.palen-info i:hover {
  color: #fff;
}

/* Palen quantity selector styling */
.palen-quantity-selector {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.palen-quantity-selector label {
  display: block;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.palen-quantity {
  width: 100%;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.palen-quantity:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.palen-quantity:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

/* Modal palen quantity selector styling */
.modal-palen-quantity-selector {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-palen-quantity-selector label {
  display: block;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.modal-palen-quantity {
  width: 100%;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-palen-quantity:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.modal-palen-quantity:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.hang-sluitwerk-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hang-sluitwerk-info:hover .hang-sluitwerk-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.hang-sluitwerk-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.palen-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.palen-info:hover .palen-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.palen-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

/* Responsive styling voor hang- en sluitwerk */
@media (max-width: 768px) {
  .hang-sluitwerk-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hang-sluitwerk-label {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    min-width: auto;
    text-align: left;
  }

  .hang-sluitwerk-name {
    margin-bottom: 0;
    font-size: 0.875rem;
  }

  .hang-sluitwerk-price {
    font-size: 0.875rem;
  }

  .hang-sluitwerk-info {
    position: static;
    margin-left: 0.5rem;
  }
}

/* Responsive styling voor palen */
@media (max-width: 768px) {
  .palen-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .palen-label {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    min-width: auto;
    text-align: left;
  }

  .palen-name {
    margin-bottom: 0;
    font-size: 0.875rem;
  }

  .palen-price {
    font-size: 0.875rem;
  }

  .palen-info {
    position: static;
    margin-left: 0.5rem;
  }
}

/* Hang- en sluitwerk styling in winkelwagen en checkout */
.cart-item__hang-sluitwerk-info,
.checkout-item__hang-sluitwerk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #cfbc9c;
  padding: 0.5rem;
  background: rgba(207, 188, 156, 0.1);
  border-radius: 4px;
  border-left: 3px solid #cfbc9c;
}

.cart-item__hang-sluitwerk-label,
.checkout-item__hang-sluitwerk-label {
  font-weight: 600;
  color: #fff;
  min-width: 120px;
}

.cart-item__hang-sluitwerk-name,
.checkout-item__hang-sluitwerk-name {
  color: #cfbc9c;
  font-weight: 500;
}

.cart-item__hang-sluitwerk-price,
.checkout-item__hang-sluitwerk-price {
  font-weight: 600;
  color: #cfbc9c;
  margin-left: auto;
}

/* Responsive styling voor hang- en sluitwerk info */
@media (max-width: 768px) {
  .cart-item__hang-sluitwerk-info,
  .checkout-item__hang-sluitwerk {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .cart-item__hang-sluitwerk-label,
  .checkout-item__hang-sluitwerk-label {
    min-width: auto;
  }

  .cart-item__hang-sluitwerk-price,
  .checkout-item__hang-sluitwerk-price {
    margin-left: 0;
  }
}

/* Product Specifications */
.product-detail__specifications {
  background-color: var(--color-grey);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.product-detail__specifications h3 {
  color: #cfbc9c;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.specifications-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.spec-label {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.spec-value {
  color: #cfbc9c;
  font-weight: 600;
  font-size: 1rem;
  text-align: right;
}

/* Product Features */
.product-detail__features {
  background-color: var(--color-grey);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.product-detail__features h3 {
  color: #cfbc9c;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-brown-accent);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
}

.product-detail__actions {
  margin-bottom: 2rem;
}

.quantity-selector {
  margin-bottom: 1rem;
}

.quantity-selector label {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.quantity-selector select {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background-color: #fff;
  font-family: inherit;
  font-size: 1rem;
  min-width: 100px;
}

.product-detail__cta {
  display: inline-block;
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.75rem 2rem;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.product-detail__cta:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

.product-detail__info-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-brown-accent);
}

.product-detail__info-box h4 {
  color: #cfbc9c;
  margin-bottom: 1rem;
}

.product-detail__info-box p {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

/* Product Related Section */
.product-related {
  padding: 4rem 2rem;
  background-color: var(--color-brown-light);
}

.product-related__container {
  max-width: 75rem;
  margin: 0 auto;
}

.product-related h2 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-related__item {
  background-color: var(--color-grey);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.product-related__item:hover {
  transform: translateY(-5px);
}

.product-related__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-related__item h3 {
  color: #cfbc9c;
  font-size: 1.1rem;
  margin: 1rem;
  margin-bottom: 0.5rem;
}

.product-related__item p {
  color: #fff;
  font-weight: 600;
  margin: 0 1rem 1rem;
}

/* Cart Message */
.cart-message {
  position: fixed;
  top: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-message--show {
  transform: translateX(0);
}

.cart-message--success {
  background-color: #4caf50;
}

.cart-message--error {
  background-color: #f44336;
}

/* Footer Styles */
.footer {
  background-color: var(--color-grey);
  padding: 4rem;
  color: white;
}

.footer__container {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer__logo {
  width: 12.5rem;
  height: auto;
}

.footer__column h3 {
  color: #cfbc9c;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 0.75rem;
  color: white;
}

.footer__list a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__list a:hover {
  color: #cfbc9c;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
  margin-left: 2.5rem;
}

.footer__social a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: #cfbc9c;
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

.footer__bottom a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer__bottom a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.footer__bottom a:hover {
  color: #cfbc9c;
}

.footer__cta {
  display: inline-block;
  background-color: var(--color-brown-accent);
  color: #111 !important;
  padding: 0.5rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease !important;
}

.footer__cta:hover {
  transform: scale(1.05);
  color: #111 !important;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__column {
    margin-bottom: 2rem;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__logo {
    width: 10rem;
    margin: 0 auto;
  }

  .footer__address {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer__column h3 {
    font-size: 1.1rem;
  }

  .footer__social a {
    font-size: 1.3rem;
  }

  .footer__bottom {
    margin-top: 2rem;
    font-size: 0.8rem;
  }
}

/* Products Page */
.products-page {
  padding-top: 6rem;
  background-color: var(--color-brown-light);
}

.product-section {
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem;
  padding-bottom: 4rem;
}

.product-section h1 {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.product-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-gallery {
  position: relative;
  border-radius: 0.5rem;
  padding: 0 1.25rem;
}

.gallery-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.5rem;
  /* Touch-vriendelijke eigenschappen voor swipe */
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gallery-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(186, 177, 160, 0.7);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.gallery-nav:hover {
  background: rgba(115, 78, 56, 0.9);
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

.gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background: #fff;
}

.product-content {
  color: #fff;
}

.product-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.product-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-cta {
  display: inline-block;
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.75rem 2rem;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.product-cta:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

/* Product Price */
.product-price {
  color: #cfbc9c;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  background-color: var(--color-grey);
  padding: 0.75rem;
  border-radius: 8px;
  display: inline-block;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.add-to-cart-btn {
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-family: inherit;
}

.add-to-cart-btn svg {
  transition: transform 0.3s ease;
}

.add-to-cart-btn:hover {
  transform: scale(1.05);
  background-color: #a66d4f;
}

.add-to-cart-btn:hover svg {
  transform: scale(1.2);
}

.add-to-cart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.product-divider {
  width: 80%;
  height: 2px;
  background-color: #402617;
  margin: 0 auto;
  opacity: 0.6;
}

.product-section__description {
  max-width: 70rem;
  margin: 0 auto 4rem;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 1rem;
}

/* About Page */
.about-page {
  padding-top: 2.5rem;
}

.about-hero {
  height: 65vh;
  background-image: url("../img/hero2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(140, 125, 97, 0.75) 80%,
    rgba(140, 125, 97, 0) 100%
  );
}

.about-hero__content {
  position: relative;
  max-width: 75rem;
  margin-left: 2rem;
  padding: 0 2rem;
  width: 100%;
}

.about-hero__text {
  max-width: 40rem;
}

.about-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-top: 8rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-hero__text p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-hero__text p:last-child {
  margin-bottom: 0;
}

/* About Content Section */
.about-content {
  padding: 4rem;
  background-color: var(--color-brown-light);
}

.about-content__container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-content__text {
  flex: 1;
  background-color: var(--color-grey);
  padding: 2rem;
  border-radius: 22px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content__text h2 {
  color: #cfbc9c;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content__text p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-content__text p:last-child {
  margin-bottom: 0;
}

.about-content__image {
  flex: 1;
}

.about-content__image img {
  width: 100%;
  height: auto;
  border-radius: 11px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Social Media Section */
.about-social {
  max-width: 75rem;
  margin: 2rem auto 0;
  text-align: center;
}

.about-social h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.about-social__links {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.about-social__links a {
  color: #fff;
  font-size: 2.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-social__links a:hover {
  color: #cfbc9c;
  transform: scale(1.1);
}

/* Scrollable background image */
.about-background {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.about-background__image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/background.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Founder section */
.about-founder {
  position: relative;
  padding: 4rem 2rem;
  background-color: var(--color-brown-light);
}

.about-founder__container {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-founder__text {
  flex: 1;
  padding: 2rem;
  border-radius: 0.5rem;
}

.about-founder__text h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-founder__text p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-founder__text p:last-child {
  margin-bottom: 0;
}

.about-founder__image {
  flex: 1;
}

.about-founder__image img {
  width: 100%;
  height: auto;
  border-radius: 20%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.about-values {
  padding: 4rem 4rem 8rem 4rem;
  background-color: var(--color-brown-light);
}

.about-values h2 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.values-grid {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  padding: 2rem;
}

.value-card {
  position: relative;
  height: 35rem;
  overflow: hidden;
}

.value-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.value-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.value-card:hover .value-card__image img {
  transform: scale(1.05);
}

.value-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  min-height: 15rem;
  max-height: 25rem;
  height: auto;
  background-color: var(--color-grey);
  padding: 2rem;
  border-radius: 0 11px 0 11px;
  color: #fff;
  transform-origin: bottom left;
  transition: transform 0.5s ease, background-color 0.5s ease;
}

.value-card:hover .value-card__content {
  background-color: rgba(146, 156, 166, 0.95);
  transform: translateY(-10px) scale(1.02);
}

.value-card__content h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.value-card:hover .value-card__content h3 {
  transform: translateY(-5px);
}

.value-card__content p {
  font-size: 1.1rem;
  line-height: 1.6;
}
/* Algemene container breedte aanpassingen */

.about-content__container,
.about-founder__container,
.values-grid,
.process__grid,
.footer__container {
  max-width: 100%; /* Verwijder de vaste max-width */
  margin: 0 auto;
  padding: 0; /* Verwijder extra padding */
}

/* Pas de padding van de hoofdsecties aan */

.process,
.about-content,
.about-founder,
.offerte-section {
  padding: 4rem;
}

/* Specifieke aanpassingen */
.product-section__description {
  max-width: 100%;
  padding: 0;
  margin-bottom: 4rem;
}

.process__header {
  padding: 0;
  margin-bottom: 4rem;
}

.process__call-button {
  right: 0; /* Aangepast van 2rem */
}

.values-grid {
  padding: 0; /* Verwijder de 2rem padding */
}

.about-hero__content {
  max-width: 100%;
  margin-left: 4rem; /* Consistent met andere paddings */
  padding: 0;
}

/* Voeg deze nieuwe stijlen toe voor het header logo */
.header__logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.7rem);
  width: 120px;
  height: 120px;
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.header__logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

/* Header logo scroll effect */
.header__logo-container.hidden {
  opacity: 0 !important;
  transform: translateX(-150px) translateY(0) !important;
  pointer-events: none !important;
}

/* Voeg deze stijlen toe aan het footer gedeelte */

.footer__address {
  color: white;
  font-style: normal;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer__list li {
  margin-bottom: 0.75rem;
  color: white; /* Voor de BTW en KVK nummers */
}

/* Update de bestaande footer container grid voor betere spacing */
.footer__container {
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__address {
    text-align: center;
  }
}

.g-recaptcha {
  margin: 1rem 0;
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.7);
  }
}

/* Verwijder ongebruikte classes en optimaliseer animaties */
.products__hide {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
}

.products__fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Verwijder ongebruikte animatie classes */
.fade-in,
.slide-in,
.show {
  display: none;
}

/* Optimaliseer andere transitie effecten */
.header__cta-button,
.hero__cta-button,
.product-card__image,
.value-card__content,
.value-card__image img {
  /* Gebruik GPU acceleratie voor alle animaties */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* =============================================================================
   PRODUCTEN PAGINA
   ============================================================================= */

.producten-page {
  margin-top: 120px; /* Ruimte voor header */
  min-height: 100vh;
}

.producten-hero {
  color: white;

  text-align: center;
}

.producten-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.producten-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.producten-hero p {
  font-size: 1.2rem;

  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.producten-list {
  padding: 4rem 0;
}

.producten-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Product Item Layout - Naast elkaar */
.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  position: relative;
  border-radius: 0.5rem;
  padding: 0 1.25rem;
}

.gallery-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.5rem;
  /* Touch-vriendelijke eigenschappen voor swipe */
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gallery-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(186, 177, 160, 0.7);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.gallery-nav:hover {
  background: rgba(115, 78, 56, 0.9);
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Responsive gallery navigatie voor algemene galleries */
@media (max-width: 768px) {
  .gallery-nav {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-prev {
    left: 0.5rem;
  }

  .gallery-next {
    right: 0.5rem;
  }

  .gallery-nav svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 480px) {
  .gallery-nav {
    width: 2rem;
    height: 2rem;
  }

  .gallery-prev {
    left: 0.25rem;
  }

  .gallery-next {
    right: 0.25rem;
  }

  .gallery-nav svg {
    width: 1rem;
    height: 1rem;
  }
}

.gallery-dots {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background: #fff;
}

/* Product Gallery Overlay - Onder de afbeelding */
.product-gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(64, 38, 23, 0.95);
  padding: 1rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 0 0 0.5rem 0.5rem;
  margin: 0 auto;
  width: fit-content;
}

.product-gallery__actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.product-gallery__cart-btn,
.product-gallery__details-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 22px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  min-width: 140px;
  justify-content: center;
}

.product-gallery__cart-btn {
  background-color: var(--color-brown-accent);
  color: #111;
}

.product-gallery__cart-btn:hover {
  background-color: #a66d4f;
  transform: scale(1.05);
}

.product-gallery__details-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #402617;
  border: 2px solid var(--color-brown-accent);
}

.product-gallery__details-btn:hover {
  background: var(--color-brown-accent);
  color: #111;
  transform: scale(1.05);
}

.product-gallery__cart-btn svg,
.product-gallery__details-btn svg {
  width: 20px;
  height: 20px;
}

.product-content {
  color: #fff;
}

.product-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.product-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Product Action Buttons - Consistente styling */
.product-action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 22px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  min-width: 140px;
  justify-content: center;
  font-size: 1rem;
}

.product-action-btn--cart {
  background-color: var(--color-brown-accent);
  color: #111;
}

.product-action-btn--cart:hover {
  background-color: #a66d4f;
  transform: scale(1.05);
}

.product-action-btn--details {
  background: rgba(255, 255, 255, 0.9);
  color: #402617;
  border: 2px solid var(--color-brown-accent);
}

.product-action-btn--details:hover {
  background: var(--color-brown-accent);
  color: #111;
  transform: scale(1.05);
}

.product-action-btn svg {
  width: 20px;
  height: 20px;
}

/* Product Price */
.product-price {
  color: #cfbc9c;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  background-color: var(--color-grey);
  padding: 0.75rem;
  border-radius: 8px;
  display: inline-block;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Product Highlights */
.product-highlights {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cfbc9c;
  font-size: 0.95rem;
}

.product-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--color-brown-accent);
  flex-shrink: 0;
}

.product-highlight span {
  line-height: 1.4;
}

.product-divider {
  width: 80%;
  height: 2px;
  background-color: #402617;
  margin: 0 auto;
  opacity: 0.6;
}

/* Responsive aanpassingen voor overlay */
@media (max-width: 768px) {
  .product-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-gallery__cart-btn,
  .product-gallery__details-btn {
    padding: 0.6rem 1.2rem;
    min-width: 120px;
    font-size: 0.9rem;
  }

  .product-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .product-action-btn {
    padding: 0.6rem 1.2rem;
    min-width: 120px;
    font-size: 0.9rem;
  }

  .product-highlights {
    margin: 1rem 0;
    gap: 0.5rem;
  }

  .product-highlight {
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .product-highlight svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .product-gallery__actions {
    flex-direction: row;
    gap: 0.5rem;
  }

  .product-gallery__cart-btn,
  .product-gallery__details-btn {
    padding: 0.5rem 1rem;
    min-width: 100px;
    font-size: 0.85rem;
  }

  .product-action-btn {
    padding: 0.5rem 1rem;
    min-width: 100px;
    font-size: 0.85rem;
  }

  .product-highlight {
    font-size: 0.85rem;
  }

  .product-highlight svg {
    width: 16px;
    height: 16px;
  }
}

/* Mobile Dropdown Toggle - Hidden on Desktop */
.mobile-dropdown-toggle {
  display: none;
}

.cart-summary__delivery-warning i {
  color: #ffc107;
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.cart-summary__poles {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary__poles h4 {
  color: #cfbc9c;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cart-summary__poles-option {
  margin-bottom: 1rem;
}

.cart-summary__poles-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cart-summary__poles-label:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--color-brown-accent);
}

.cart-summary__poles-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-brown-accent);
  cursor: pointer;
}

.cart-summary__poles-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-summary__poles-text strong {
  color: #fff;
  font-weight: 600;
}

.cart-summary__poles-price {
  color: #cfbc9c;
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-summary__poles-info {
  position: relative;
  display: inline-block;
}

.cart-summary__poles-info i {
  color: var(--color-brown-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-summary__poles-info:hover i {
  color: #a66d4f;
}

.cart-summary__poles-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 320px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary__poles-info:hover .cart-summary__poles-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.cart-summary__poles-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.variation-actions .quantity-selector select:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Modal Styling */
.variation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.variation-modal.active {
  opacity: 1;
  visibility: visible;
}

.variation-modal__content {
  background-color: var(--color-grey);
  border-radius: 12px;
  padding: 2rem;
  max-width: 80%;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.variation-modal.active .variation-modal__content {
  transform: scale(1);
}

.variation-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.variation-modal__header h3 {
  color: #cfbc9c;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.variation-modal__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.variation-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.variation-modal__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Modal close button styling - voor alle modals (desktop en mobile) */
.maatwerk-modal__header,
.variation-modal__header {
  position: relative !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  padding-right: 50px !important; /* Ruimte maken voor close button */
}

.maatwerk-modal__close,
.variation-modal__close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: var(--color-brown-accent) !important;
  border: none !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  cursor: pointer !important;
  color: white !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
}

.maatwerk-modal__close:hover,
.variation-modal__close:hover {
  background: var(--color-brown-dark) !important;
  transform: rotate(90deg) scale(1.05) !important;
}

.maatwerk-modal__close svg,
.variation-modal__close svg {
  width: 16px !important;
  height: 16px !important;
}

/* Gallery placeholder styling */
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
  border: 2px dashed #cfbc9c;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: #8b7355;
}

.gallery-placeholder__content {
  max-width: 400px;
}

.gallery-placeholder__icon {
  margin-bottom: 1rem;
}

.gallery-placeholder__icon svg {
  width: 60px;
  height: 60px;
  color: #cfbc9c;
  opacity: 0.7;
}

.gallery-placeholder h3 {
  color: #8b7355;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", serif;
}

.gallery-placeholder p {
  color: #a0926f;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.gallery-placeholder__link {
  color: var(--color-brown-accent);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.gallery-placeholder__link:hover {
  color: var(--color-brown-dark);
  text-decoration: none;
}

/* Styling voor product card placeholders */
.gallery-placeholder--card {
  min-height: 200px;
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
}

.gallery-placeholder--card .gallery-placeholder__icon svg {
  width: 40px;
  height: 40px;
}

.gallery-placeholder--card h4 {
  color: #8b7355;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.gallery-placeholder--card p {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
  .gallery-placeholder {
    min-height: 250px;
    padding: 1.5rem;
  }

  .gallery-placeholder__icon svg {
    width: 50px;
    height: 50px;
  }

  .gallery-placeholder h3 {
    font-size: 1.25rem;
  }

  .gallery-placeholder p {
    font-size: 0.9rem;
  }

  .gallery-placeholder--card {
    min-height: 180px;
    padding: 0.75rem;
  }

  .gallery-placeholder--card .gallery-placeholder__icon svg {
    width: 35px;
    height: 35px;
  }

  .gallery-placeholder--card h4 {
    font-size: 0.9rem;
  }

  .gallery-placeholder--card p {
    font-size: 0.8rem;
  }
}

.modal-variation-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-variation-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.modal-variation-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-variation-name-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-variation-name {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.modal-variation-size {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-variation-size-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.modal-variation-size-value {
  color: var(--color-brown-accent);
  font-size: 0.875rem;
  font-weight: 600;
}

.modal-variation-price {
  color: #cfbc9c;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Modal variation toggle button styling */
.modal-variation-price-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-variation-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.modal-variation-toggle-btn:hover {
  border-color: var(--color-brown-accent);
  color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
}

.modal-variation-toggle-btn.active {
  border-color: var(--color-brown-accent);
  color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.15);
}

.modal-variation-toggle-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-variation-toggle-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.modal-variation-toggle-btn.active .modal-variation-toggle-arrow {
  transform: rotate(180deg);
}

/* Modal variation details styling */
.modal-variation-details {
  animation: slideDown 0.3s ease-out;
}

.modal-variation-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Modal variation actions row styling */

/* Variation Modal Hang-en-sluitwerk Styling - Gelijk aan Maatwerk Modal */
.modal-hang-sluitwerk-selector {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-hang-sluitwerk-selector label {
  display: flex;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.modal-hang-sluitwerk-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
  width: 100%;
}

.modal-hang-sluitwerk-option {
  position: relative;
  flex: 1;
  min-width: 0;
}

.modal-hang-sluitwerk-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.modal-hang-sluitwerk-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  position: relative;
  min-width: 70px;
  text-align: center;
  flex: 1;
  gap: 0.25rem;
}

.modal-hang-sluitwerk-label:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.modal-hang-sluitwerk-radio:checked + .modal-hang-sluitwerk-label {
  border-color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.modal-hang-sluitwerk-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.modal-hang-sluitwerk-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.75rem;
  text-align: center;
}

.modal-hang-sluitwerk-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.7rem;
  text-align: center;
}

.modal-hang-sluitwerk-info {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
}

.modal-hang-sluitwerk-info i {
  color: var(--color-brown-medium);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.modal-hang-sluitwerk-info i:hover {
  color: #fff;
}

.modal-hang-sluitwerk-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-hang-sluitwerk-info:hover .modal-hang-sluitwerk-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.modal-hang-sluitwerk-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.modal-hang-sluitwerk-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-brown-medium);
  text-align: center;
  font-style: italic;
}

/* Modal hang-sluitwerk afbeelding icoontjes styling */
.modal-hang-sluitwerk-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0.5rem;
}

.modal-hang-sluitwerk-image {
  position: relative;
  cursor: pointer;
}

.modal-hang-sluitwerk-image i {
  color: var(--color-brown-medium);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.modal-hang-sluitwerk-image i:hover {
  color: #fff;
}

.modal-hang-sluitwerk-image-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 300px;
  min-width: 250px;
}

.modal-hang-sluitwerk-image:hover .modal-hang-sluitwerk-image-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.modal-hang-sluitwerk-image-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.modal-hang-sluitwerk-image-tooltip img {
  max-width: 280px;

  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Variation Modal Palen Styling - Gelijk aan Maatwerk Modal */
.modal-palen-selector {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modal-palen-selector:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.modal-palen-selector label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modal-palen-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-palen-option {
  position: relative;
}

.modal-palen-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.modal-palen-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.modal-palen-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(207, 188, 156, 0.1) 0%,
    rgba(207, 188, 156, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-palen-label:hover {
  border-color: rgba(207, 188, 156, 0.3);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-palen-label:hover::before {
  opacity: 1;
}

.modal-palen-radio:checked + .modal-palen-label {
  border-color: #cfbc9c;
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 4px 12px rgba(207, 188, 156, 0.2);
}

.modal-palen-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
}

.modal-palen-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.9rem;
}

.modal-palen-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.85rem;
}

.modal-palen-info {
  position: relative;
  margin-left: auto;
}

.modal-palen-info i {
  color: var(--color-brown-medium);
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.modal-palen-info i:hover {
  color: #fff;
}

.modal-palen-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: normal;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  max-width: 280px;
  min-width: 220px;
  line-height: 1.5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-palen-info:hover .modal-palen-tooltip {
  opacity: 1;
  visibility: visible;
}

.modal-palen-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0.5rem;
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.95);
}

.modal-palen-tooltip ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: none;
}

.modal-palen-tooltip li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 0.5rem;
}

.modal-palen-tooltip li:before {
  content: "•";
  color: var(--color-brown-medium);
  font-weight: bold;
  position: absolute;
  left: -0.75rem;
  top: 0;
}

.modal-palen-tooltip li:last-child {
  margin-bottom: 0;
}

.modal-palen-quantity-selector {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-palen-quantity-selector label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.modal-palen-quantity {
  width: 100%;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.modal-palen-quantity:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 2px rgba(207, 188, 156, 0.2);
}

.modal-palen-quantity option {
  background: #2d1b0f;
  color: #fff;
  padding: 0.5rem;
}

/* Modal Palen Header Image */
.modal-palen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-palen-header-image {
  position: relative;
  cursor: pointer;
}

.modal-palen-header-image i {
  color: var(--color-brown-medium);
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.modal-palen-header-image:hover i {
  color: #fff;
}

.modal-palen-header-image-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: transparent;
  color: white;
  padding: 0;
  border-radius: 0;
  font-size: 0.8rem;
  white-space: normal;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
  max-width: 520px;
  min-width: 140px;
  line-height: 1.4;
  box-shadow: none;
  border: none;
}

.modal-palen-header-image:hover .modal-palen-header-image-tooltip {
  opacity: 1;
  visibility: visible;
}

.modal-palen-header-image-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 240px;
  border: 8px solid transparent;
  border-top-color: #3e2723;
}

/* Old img styling replaced by new palen-image classes for variation modal too */

/* Modal Palen Advice */
.modal-palen-advice {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
}

.modal-palen-advice p {
  margin: 0;
  color: #ffd700;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Variation Modal Actions Styling */
.modal-variation-actions {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-variation-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal-quantity-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-quantity-selector label {
  font-weight: 600;
  color: #fff;
  font-size: 0.875rem;
}

.modal-quantity {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.modal-quantity:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 2px rgba(207, 188, 156, 0.2);
}

.modal-quantity option {
  background: #2d1b0f;
  color: #fff;
  padding: 0.5rem;
}

.modal-add-btn {
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 22px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-add-btn:hover {
  background-color: #a66d4f;
  transform: scale(1.05);
}

.modal-add-btn:hover svg {
  transform: scale(1.2);
}

.modal-add-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Variation Modal Sluiting Styling - Gelijk aan Maatwerk Modal */
.modal-sluiting-section {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-sluiting-section label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.modal-sluiting-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
  width: 100%;
}

.modal-sluiting-option {
  position: relative;
  flex: 1;
  min-width: 0;
}

.modal-sluiting-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.modal-sluiting-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  gap: 1rem;
  width: 100%;
  flex-direction: row;
  overflow: visible;
  min-height: 60px;
}

.modal-sluiting-label:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.modal-sluiting-radio:checked + .modal-sluiting-label {
  border-color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.modal-sluiting-image-icon {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.modal-sluiting-image-icon i {
  color: var(--color-brown-medium);
  font-size: 1.2rem !important;
  transition: color 0.2s ease;
}

.modal-sluiting-image-icon:hover i {
  color: #fff;
}

.modal-sluiting-image-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: normal;
  z-index: 99999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
  max-width: 200px;
  min-width: 200px;
  line-height: 1.4;
  overflow: visible !important;
}

.modal-sluiting-image-icon:hover .modal-sluiting-image-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 99999 !important;
  position: absolute !important;
  display: block !important;
  pointer-events: auto !important;
}

.modal-sluiting-image-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0.5rem;
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.modal-sluiting-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.modal-sluiting-content {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  flex: 1;
}

.modal-sluiting-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.9rem;
  text-align: center;
}

.modal-sluiting-info {
  order: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.modal-sluiting-info i {
  color: var(--color-brown-medium);
  font-size: 1.2rem !important;
  transition: color 0.2s ease;
}

.modal-sluiting-info:hover i {
  color: #fff;
}

.modal-sluiting-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: normal;
  z-index: 99999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  max-width: 220px;
  min-width: 180px;
  line-height: 1.5;
  overflow: visible !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-sluiting-info:hover .modal-sluiting-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 99999 !important;
  position: absolute !important;
  display: block !important;
  pointer-events: auto !important;
}

.modal-sluiting-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0.5rem;
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.95);
}

.modal-variation-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.modal-variation-actions .modal-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.modal-variation-actions .modal-add-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.modal-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-quantity-selector label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-quantity {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);

  font-size: 0.9rem;
}

.modal-quantity:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.modal-add-btn {
  background-color: var(--color-brown-accent);
  color: #111;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-add-btn:hover {
  background-color: #a66d4f;
}

.modal-add-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-add-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Modal Hang- en sluitwerk styling */
.modal-hang-sluitwerk-selector {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-hang-sluitwerk-selector label {
  display: flex;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

/* Modal palen selector styling - identiek aan modal hang- en sluitwerk */
.modal-palen-selector {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-palen-selector label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.modal-hang-sluitwerk-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
}

.modal-hang-sluitwerk-option {
  position: relative;
}

.modal-palen-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
}

.modal-palen-option {
  position: relative;
}

.modal-hang-sluitwerk-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.modal-hang-sluitwerk-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  position: relative;
  min-width: 70px;
  text-align: center;
}

.modal-palen-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.modal-palen-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  gap: 1rem;
  width: 100%;
  overflow: visible;
  min-height: 60px;
}

.modal-hang-sluitwerk-label:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.modal-hang-sluitwerk-radio:checked + .modal-hang-sluitwerk-label {
  border-color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.modal-palen-label:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.modal-palen-radio:checked + .modal-palen-label {
  border-color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.modal-hang-sluitwerk-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.modal-hang-sluitwerk-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.7rem;
}

.modal-palen-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.25rem;
  flex: 1;
}

.modal-palen-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.875rem;
  margin: 0;
}

.modal-palen-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.8rem;
  margin: 0;
}

.modal-hang-sluitwerk-info {
  position: relative;
}

.modal-hang-sluitwerk-info i {
  color: var(--color-brown-medium);
  font-size: 0.7rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-hang-sluitwerk-info i:hover {
  color: #fff;
}

.modal-palen-info {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-palen-info i {
  color: var(--color-brown-medium);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-palen-info i:hover {
  color: #fff;
}

.modal-palen-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 150px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.7rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-palen-info:hover .modal-palen-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.modal-palen-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

/* Responsive styling voor modal hang- en sluitwerk */
@media (max-width: 768px) {
  .modal-hang-sluitwerk-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-hang-sluitwerk-label {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    min-width: auto;
    text-align: left;
  }

  .modal-hang-sluitwerk-name {
    margin-bottom: 0;
    font-size: 0.8rem;
  }

  .modal-hang-sluitwerk-price {
    font-size: 0.8rem;
  }

  .modal-hang-sluitwerk-info {
    position: static;
    margin-left: 0.5rem;
  }
}

/* Responsive styling voor modal palen */
@media (max-width: 768px) {
  .modal-palen-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-palen-label {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    min-width: auto;
    text-align: left;
  }

  .modal-palen-name {
    margin-bottom: 0;
    font-size: 0.8rem;
  }

  .modal-palen-price {
    font-size: 0.8rem;
  }

  .modal-palen-info {
    position: static;
    margin-left: 0.5rem;
  }
}

.cart-summary__row--poles-total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cfbc9c;
  font-size: 1.1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary__row--delivery {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  color: var(--color-brown-medium);
}

.cart-summary__row--final {
  border-top: 2px solid var(--color-brown-accent);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--color-brown-dark);
  font-weight: 600;
}

.delivery-info-icon {
  display: inline-block;
  margin-left: 0.5rem;
  position: relative;
}

.delivery-info-icon i {
  color: var(--color-brown-medium);
  font-size: 0.9rem;
  cursor: pointer;
}

.delivery-info-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-bottom: 0.5rem;
}

.delivery-info-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.delivery-info-icon:hover .delivery-info-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Payment Success Page */
.payment-success-page {
  min-height: 100vh;
  background-color: #2a2a2a;
  color: #cfbc9c;
  padding-top: 120px;
}

.payment-success-section {
  padding: 4rem 0;
}

.payment-success-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.payment-success__icon {
  margin-bottom: 2rem;
}

.payment-success__icon svg {
  width: 4rem;
  height: 4rem;
  color: #4ade80;
}

.payment-success-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #cfbc9c;
}

.payment-success-container p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.payment-success__details {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.payment-success__details h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #cfbc9c;
}

.payment-success__order-id,
.payment-success__total {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.payment-success__items h4 {
  margin-bottom: 1rem;
  color: #cfbc9c;
}

.payment-success__items ul {
  list-style: none;
  padding: 0;
}

.payment-success__items li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-success__customer {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-success__customer h4 {
  margin-bottom: 1rem;
  color: #cfbc9c;
}

.payment-success__customer p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.payment-success__poles {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-success__poles h4 {
  margin-bottom: 1rem;
  color: #cfbc9c;
}

.payment-success__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-success__home,
.payment-success__products {
  background-color: #8b5a3c;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-success__home:hover,
.payment-success__products:hover {
  background-color: #a66d4f;
}

/* Payment Error Message */
.payment-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.payment-error__icon {
  flex-shrink: 0;
}

.payment-error__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ef4444;
}

.payment-error__message h3 {
  color: #ef4444;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.payment-error__message p {
  color: #cfbc9c;
  margin: 0;
  line-height: 1.5;
}

/* Checkout Page Styles */
.checkout-page {
  padding: 6rem 0 2rem 0;
  background: var(--color-brown-light);
  min-height: 100vh;
}

.checkout-section {
  max-width: none;
  margin: 0;
  padding: 0 2rem;
  width: 100%;
}

.checkout-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.checkout-errors {
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

/* Debug informatie styling */
.debug-info {
  background: #f8f9fa !important;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #333;
}

.debug-info h4 {
  color: #495057;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.debug-info pre {
  background: #e9ecef;
  padding: 0.75rem;
  border-radius: 4px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  max-height: 300px;
  overflow-y: auto;
}

.debug-info p {
  margin: 0.5rem 0;
}

.debug-info strong {
  color: #495057;
}

.checkout-errors ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #c33;
}

.checkout-errors li {
  margin-bottom: 0.5rem;
}

.checkout-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.checkout-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.checkout-form h2 {
  margin-bottom: 2rem;
  color: var(--color-brown-dark);
  font-size: 1.5rem;
  font-weight: 600;
}

.customer-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row--small {
  display: grid;
  grid-template-columns: 4fr 2fr 4fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-brown-dark);
}

.form-group input {
  padding: 0.75rem;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #3498db;
}

.checkout-delivery,
.checkout-poles {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e8ed;
}

.checkout-delivery h3,
.checkout-poles h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 600;
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.delivery-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.delivery-option:hover {
  border-color: #3498db;
}

.delivery-option input[type="radio"] {
  margin-right: 1rem;
  transform: scale(1.2);
}

.delivery-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.delivery-text strong {
  font-weight: 600;
  color: #2c3e50;
}

.delivery-price {
  color: #27ae60;
  font-weight: 500;
  margin-top: 0.25rem;
}

.delivery-info {
  position: relative;
  margin-left: 1rem;
}

.delivery-info i {
  color: #3498db;
  cursor: pointer;
  font-size: 1.1rem;
}

.delivery-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 300px;
  background: #2c3e50;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.delivery-info:hover .delivery-tooltip {
  opacity: 1;
  visibility: visible;
}

.delivery-warning {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #856404;
}

.delivery-warning i {
  color: #f39c12;
}

.poles-option {
  margin-bottom: 1rem;
}

.poles-label {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.poles-label:hover {
  border-color: #3498db;
}

.poles-label input[type="checkbox"] {
  margin-right: 1rem;
  transform: scale(1.2);
}

.poles-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.poles-text strong {
  font-weight: 600;
  color: #2c3e50;
}

.poles-price {
  color: #27ae60;
  font-weight: 500;
  margin-top: 0.25rem;
}

.poles-info {
  position: relative;
  margin-left: 1rem;
}

.poles-info i {
  color: #3498db;
  cursor: pointer;
  font-size: 1.1rem;
}

.poles-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 300px;
  background: #2c3e50;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.poles-info:hover .poles-tooltip {
  opacity: 1;
  visibility: visible;
}

.poles-image {
  position: relative;
  margin-left: 1rem;
}

.poles-image i {
  color: #3498db;
  cursor: pointer;
  font-size: 1.1rem;
}

.poles-preview {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 200px;
  background: white;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.poles-image:hover .poles-preview {
  opacity: 1;
  visibility: visible;
}

.poles-preview-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.poles-quantity {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.poles-quantity-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.poles-quantity-label span {
  font-weight: 500;
  color: #2c3e50;
}

.poles-quantity-input {
  padding: 0.5rem;
  border: 2px solid #e1e8ed;
  border-radius: 4px;
  width: 80px;
  text-align: center;
}

.poles-quantity-input:focus {
  outline: none;
  border-color: #3498db;
}

.poles-advice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #27ae60;
  font-size: 0.9rem;
}

.poles-advice i {
  color: #f39c12;
}

.poles-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #2c3e50;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e1e8ed;
}

.checkout-back {
  padding: 0.75rem 1.5rem;
  background: var(--color-grey);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.checkout-back:hover {
  background: var(--color-brown-light);
}

.checkout-submit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #8b5a3c, #a66d4f);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkout-submit:hover {
  background: linear-gradient(135deg, #a66d4f, #bf8360);
}

.checkout-submit:disabled,
.checkout-submit.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: linear-gradient(135deg, #8b5a3c, #a66d4f);
}

.checkout-submit:disabled:hover,
.checkout-submit.disabled:hover {
  background-color: linear-gradient(135deg, #a66d4f, #bf8360);
  transform: none;
}

.checkout-submit svg {
  width: 1.25rem;
  height: 1.25rem;
}

.checkout-summary {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 2rem;
  width: 100%;
  max-width: none;
}

.checkout-summary h2 {
  margin-bottom: 1.5rem;
  color: var(--color-brown-dark);
  font-size: 1.25rem;
  font-weight: 600;
}

.checkout-items {
  margin-bottom: 2rem;
  margin-top: 0;
}

.checkout-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: white;
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item__grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto auto auto auto auto auto;
  gap: 0.25rem 1rem;
  align-items: start;
  width: 100%;
}

/* Rijen met prijs krijgen extra ruimte voor de prijs-kolom */
.checkout-item__details-row--with-price {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.15rem 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.checkout-item__details-row--with-price .checkout-item__price-cell {
  min-width: 80px;
  flex-shrink: 0;
}

.checkout-item__image {
  grid-column: 1;
  grid-row: 1;
  width: 80px;
  height: 80px;
}

.checkout-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.checkout-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 96px; /* 80px image + 16px gap */
}

.checkout-item__details {
  flex: 1;
  min-width: 0; /* Zorgt ervoor dat flex item kan krimpen */
}

.checkout-item__title {
  grid-column: 2;
  grid-row: 1;
}

.checkout-item__title h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown-dark);
}

.checkout-item__basic-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-brown-medium);
}

.checkout-item__basic-label {
  color: var(--color-brown-medium);
}

.checkout-item__basic-separator {
  color: var(--color-brown-light);
  font-weight: 300;
}

.checkout-item__basic-price {
  color: var(--color-brown-accent);
  font-weight: 500;
}

.checkout-item__details-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0.15rem 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.checkout-item__content-left {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.checkout-item__label {
  font-weight: 500;
  color: var(--color-brown-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.checkout-item__value {
  color: var(--color-brown-medium);
  flex: 1;
  min-width: 0;
}

.checkout-item__price-cell {
  color: var(--color-brown-accent);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 80px;
}

/* Wanneer er geen prijs is, laat de tekst doorlopen in de prijs-cel ruimte */
.checkout-item__details-row--no-price .checkout-item__price-cell {
  display: none;
}

.checkout-item__total-price {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 2px solid var(--color-brown-accent);
  font-weight: 600;
  color: var(--color-brown-accent);
  font-size: 1.1rem;
}

.checkout-item__details h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown-dark);
}

.checkout-item__details p {
  margin: 0.25rem 0;
  color: var(--color-brown-medium);
  font-size: 0.9rem;
}

.checkout-item__detail-row {
  display: flex;
  align-items: center;
  margin: 0.25rem 0;
  color: var(--color-brown-medium);
  font-size: 0.9rem;
  line-height: 1.4;
  gap: 0.5rem;
}

.checkout-item__detail-label {
  font-weight: 500;
  color: var(--color-brown-dark);
  min-width: 120px;
  flex-shrink: 0;
}

.checkout-item__detail-value {
  color: var(--color-brown-medium);
  flex: 1;
  min-width: 0;
}

.checkout-item__detail-price {
  color: var(--color-brown-accent);
  font-weight: 500;
  margin-left: 0.5rem;
}

.checkout-item__detail-quantity {
  color: var(--color-brown-medium);
  font-style: italic;
}

.checkout-item__price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 0.5rem;
  border-top: 2px solid var(--color-brown-accent);
  margin-top: 0.5rem;
}

.checkout-item__price {
  font-weight: 600;
  color: var(--color-brown-accent);
  font-size: 1.1rem;
  margin: 0;
  text-align: left;
}

.checkout-total {
  border-top: 2px solid #e1e8ed;
  padding-top: 1.5rem;
}

.checkout-total__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.checkout-total__row:last-child {
  margin-bottom: 0;
}

.checkout-total__amount {
  font-weight: 700;
  color: var(--color-brown-accent);
  font-size: 1.25rem;
}

/* Styling voor de bezorgkosten sectie */
#delivery-costs-section {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.checkout-total__row--delivery {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-brown-medium);
}

.checkout-total__row--delivery:first-child {
  margin-top: 0.75rem;
}

.checkout-total__row--delivery:last-child {
  margin-bottom: 0;
}

.checkout-total__row--btw {
  color: var(--color-brown-accent);
  font-weight: 600;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
}

.checkout-total__row--btw span:first-child {
  font-size: 0.8rem;
  opacity: 0.8;
}

.checkout-total__row--final {
  border-top: 2px solid var(--color-brown-accent);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--color-brown-dark);
}

.checkout-total__row--subtotal-excl-btw {
  color: var(--color-brown-medium);
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.25rem;
  margin-bottom: 0.75rem;
}

.checkout-total__row--subtotal-excl-btw span:first-child {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Styling voor voorwaarden sectie */
.checkout-terms {
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0;
  margin-top: 0;
}

.terms-checkbox:last-child {
  margin-bottom: 0;
}

.terms-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-brown-accent);
}

.terms-checkbox label {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-brown-medium);
  cursor: pointer;
}

.terms-checkbox label a {
  color: var(--color-brown-accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.terms-checkbox label a:hover {
  color: var(--color-brown-dark);
}

.maatwerk-checkbox {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Error styling voor checkboxes */
.terms-checkbox.error {
  border: 2px solid #dc3545;
  border-radius: 8px;
  padding: 1rem;
  background: rgba(220, 53, 69, 0.1);
  margin-bottom: 1rem;
}

.terms-checkbox.error label {
  color: #dc3545;
  font-weight: 600;
}

.terms-checkbox.error input[type="checkbox"] {
  border-color: #dc3545;
}

/* Styling voor doorgestreepte prijs en gratis weergave */
.delivery-price--strikethrough {
  text-decoration: line-through;
  color: var(--color-brown-medium);
  opacity: 0.7;
  margin-right: 0.5rem;
}

.delivery-price--free {
  color: #28a745;
  font-weight: 600;
}

.cart-dropdown__products-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #8b5a3c;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.75rem;
  transition: all 0.2s ease;
}

.cart-dropdown__products-link:hover {
  background: #a66d4f;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.cart-message {
  position: fixed;
  top: 80px;
  right: 20px;
  background: white;
  color: #333;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  max-width: 400px;
  border-left: 4px solid #10b981;
}

.cart-message--show {
  transform: translateX(0);
}

.cart-message--success {
  border-left-color: #10b981;
}

.cart-message--error {
  border-left-color: #ef4444;
}

.cart-message__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-message__text {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cart-message__text i {
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.cart-message--success .cart-message__text i {
  color: #10b981;
}

.cart-message--error .cart-message__text i {
  color: #ef4444;
}

.cart-message__text span {
  font-weight: 500;
  line-height: 1.4;
}

.cart-message__actions {
  display: flex;
  justify-content: flex-end;
}

.cart-message__cart-btn {
  background: linear-gradient(135deg, #8b5a3c, #a66d4f);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(139, 90, 60, 0.2);
  margin-top: 0.5rem;
}

.cart-message__cart-btn:hover {
  background: linear-gradient(135deg, #a66d4f, #bf8360);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(139, 90, 60, 0.3);
  color: white;
  text-decoration: none;
}

.cart-message__cart-btn i {
  font-size: 0.875rem;
}

.cart-message__link {
  color: #8b5a3c;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cart-message__link:hover {
  color: #a66d4f;
  text-decoration: underline;
}

.checkout-poles-warning {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.1);
}

.checkout-poles-warning__icon {
  color: #d97706;
  font-size: 1.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.checkout-poles-warning__content h3 {
  color: #92400e;
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.checkout-poles-warning__content p {
  color: #78350f;
  margin: 0 0 1rem 0;
  line-height: 1.5;
  font-size: 0.875rem;
}

.checkout-poles-warning__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #8b5a3c;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.checkout-poles-warning__link:hover {
  background: #a66d4f;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Kleine formuliervelden voor huisnummer, toevoeging en postcode */
.form-group--small {
  flex: 1;
  min-width: 0;
  margin-right: 1rem;
}

.form-group--small:last-child {
  margin-right: 0;
}

.form-group--small input {
  width: 100%;
  max-width: none;
}

/* Address Manual Edit Link */
.address-manual-edit {
  margin-top: 0.5rem;
  text-align: center;
}

.address-edit-link {
  background: none;
  border: none;
  color: #666;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.address-edit-link:hover {
  color: #333;
  background-color: rgba(0, 0, 0, 0.05);
}

.address-edit-link i {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* When address fields are editable */
.address-fields-editable input[readonly] {
  background-color: #fff !important;
  color: #333 !important;
  cursor: text !important;
  border-color: #ddd !important;
}

.address-fields-editable input[readonly]:focus {
  border-color: #007bff !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

/* Responsive aanpassingen voor kleine velden */
@media (max-width: 768px) {
  .form-group--small {
    flex: 1 1 calc(33.333% - 0.67rem);
    margin-right: 0.5rem;
  }

  .form-group--small:last-child {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .form-group--small {
    flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .form-group--small:last-child {
    margin-bottom: 0;
  }
}

/* Header logo transparent effect */
.header__logo-container.transparent {
  opacity: 0.2 !important;
  transform: translateX(-50%) !important;
  pointer-events: none !important;
}

/* Header CMS icon */
.header__cms-icon {
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  color: #8b5a3c;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header__cms-icon:hover {
  color: #a66d4f;
  transform: translateY(-50%) scale(1.1);
}

.header__cms-icon svg {
  width: 100%;
  height: 100%;
}

/* Responsive CMS icon */
@media (max-width: 768px) {
  .header__cms-icon {
    left: -2rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Header Login icon */
.header__login-icon {
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  color: #8b5a3c;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header__login-icon:hover {
  color: #a66d4f;
  transform: translateY(-50%) scale(1.1);
}

.header__login-icon svg {
  width: 100%;
  height: 100%;
}

/* Responsive Login icon */
@media (max-width: 768px) {
  .header__login-icon {
    left: -2rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Zakelijke pagina styling */
.business-page {
  min-height: 100vh;
}

.business-hero {
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #6b6b6b 100%),
    url("/img/hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.business-hero__content {
  max-width: 800px;
  padding: 2rem;
  margin-top: 120px;
}

.business-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: var(--color-gold);
}

.business-hero__text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: #f5f5f5;
}

.business-why {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-brown-dark) 0%,
    var(--color-brown-accent) 100%
  );
  color: white;
}

.business-why__container {
  max-width: 1200px;
  margin: 0 auto;
}

.business-why h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-gold);
}

.business-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.business-why__card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.business-why__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.15);
}

.business-why__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.business-why__icon svg {
  width: 2rem;
  height: 2rem;
}

.business-why__card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.business-why__card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.business-services {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-brown-accent) 0%,
    var(--color-brown-dark) 100%
  );
  color: white;
}

.business-services__container {
  max-width: 1200px;
  margin: 0 auto;
}

.business-services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-gold);
}

.business-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.business-services__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.business-services__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.15);
}

.business-services__image {
  height: 250px;
  overflow: hidden;
}

.business-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.business-services__card:hover .business-services__image img {
  transform: scale(1.05);
}

.business-services__content {
  padding: 2rem;
}

.business-services__content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.business-services__content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.business-services__content ul {
  list-style: none;
  padding: 0;
}

.business-services__content li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 1.5rem;
}

.business-services__content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

.business-partners {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-brown-dark) 0%,
    var(--color-brown-accent) 100%
  );
  color: white;
}

.business-partners__container {
  max-width: 1200px;
  margin: 0 auto;
}

.business-partners h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-gold);
}

.business-partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.business-partners__card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.business-partners__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.15);
}

.business-partners__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.business-partners__icon svg {
  width: 2rem;
  height: 2rem;
}

.business-partners__card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.business-partners__card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.business-process {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-brown-accent) 0%,
    var(--color-brown-dark) 100%
  );
  color: white;
}

.business-process__container {
  max-width: 1000px;
  margin: 0 auto;
}

.business-process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-gold);
}

.business-process__steps {
  display: grid;
  gap: 2rem;
}

.business-process__step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.business-process__number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.business-process__content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.business-process__content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.business-cta {
  padding: 5rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/img/background.webp");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.business-cta__container {
  max-width: 800px;
  margin: 0 auto;
}

.business-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.business-cta p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.business-cta__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.business-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.business-cta__button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.business-cta__button--primary {
  background: var(--color-brown-accent);
  color: white;
}

.business-cta__button--primary:hover {
  background: #a66d4f;
  transform: translateY(-2px);
}

.business-cta__button--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.business-cta__button--secondary:hover {
  background: white;
  color: var(--color-brown);
  transform: translateY(-2px);
}

/* Responsive aanpassingen voor zakelijke pagina */
@media (max-width: 768px) {
  .business-hero h1 {
    font-size: 2rem;
  }

  .business-hero__text p {
    font-size: 1rem;
  }

  .business-why h2,
  .business-services h2,
  .business-partners h2,
  .business-process h2,
  .business-cta h2 {
    font-size: 2rem;
  }

  .business-process__step {
    flex-direction: column;
    text-align: center;
  }

  .business-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .business-cta__button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Producten Page - New Layout */
.producten-content {
  padding: 2rem 0;
  background-color: var(--color-brown-light);
  min-height: 100vh;
}

.producten-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Search Bar */
.producten-search {
  margin-bottom: 1rem;
  width: 100%;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-brown-medium);
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 3rem;
  border: 2px solid var(--color-brown-accent);
  border-radius: 12px;
  font-size: 1rem;
  background-color: var(--color-brown-extra-light);
  color: var(--color-brown-dark);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-brown-dark);
  box-shadow: 0 4px 12px rgba(64, 38, 23, 0.2);
  background-color: white;
}

.search-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  color: var(--color-brown-medium);
}

.search-clear:hover {
  background-color: #f3f4f6;
  color: var(--color-brown-dark);
}

.search-clear svg {
  width: 1rem;
  height: 1rem;
}

/* Layout */
.producten-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Filters Sidebar */
.producten-filters {
  background-color: var(--color-grey);
  border-left: 4px solid var(--color-brown-accent);
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
  height: fit-content;
  color: #cfbc9c;
}

.filters-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(207, 188, 156, 0.3);
}

.filters-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brown-extra-light);
  margin: 0;
}

.filters-clear {
  background-color: var(--color-brown-accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
  width: 100%;
}

.filters-clear:hover {
  background-color: var(--color-brown-medium);
}

.filter-group {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(207, 188, 156, 0.3);
}

.filter-group:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.filter-group h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: normal;
}

.filter-group .filter-subheading {
  font-size: 0.875rem;
  color: var(--color-brown-medium);
  margin: 1rem 0 0.2rem 0;
  font-weight: 900;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.25rem 0;
  transition: all 0.2s ease;
}

.filter-option:hover {
  color: var(--color-brown-accent);
}

.filter-checkbox {
  margin-right: 0.75rem;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--color-brown-accent);
  border: 1px solid rgba(207, 188, 156, 0.5);
  border-radius: 2px;
}

.filter-label {
  font-size: 0.875rem;
  color: #cfbc9c;
  font-weight: 500;
  flex: 1;
}

.filter-count {
  font-size: 0.75rem;
  color: #cfbc9c;
  font-weight: 400;
}

/* Price Range */
.price-range {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-slider {
  position: relative;
  height: 8px;
  background: rgba(207, 188, 156, 0.3);
  border-radius: 4px;
  margin: 1rem 0;
  cursor: pointer;
}

.price-slider-track {
  position: absolute;
  height: 100%;
  background: var(--color-brown-accent);
  border-radius: 4px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.price-slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--color-brown-accent);
  border-radius: 50%;
  cursor: grab;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.15s ease;
  z-index: 5;
  user-select: none;
  touch-action: none;
}

.price-slider-handle:active {
  cursor: grabbing;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.price-slider-handle:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.price-slider-handle.min {
  left: 0;
}

.price-slider-handle.max {
  right: 0;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #cfbc9c;
  margin-top: 0.5rem;
}

.price-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0 0.5rem;
}

.price-input {
  flex: 1;
  max-width: 120px;
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(207, 188, 156, 0.5);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  color: #cfbc9c;
  text-align: center;
  transition: all 0.2s ease;
  -moz-appearance: textfield;
}

.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-input:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 3px rgba(191, 131, 96, 0.1);
  background: rgba(255, 255, 255, 0.15);
}

.price-input::placeholder {
  color: rgba(207, 188, 156, 0.6);
}

.price-separator {
  color: #cfbc9c;
  font-weight: 500;
  font-size: 1rem;
  user-select: none;
}

.price-apply {
  background-color: var(--color-brown-accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.price-apply:hover {
  background-color: var(--color-brown-medium);
}

/* Main Content */
.producten-main {
  min-height: 500px;
}

.producten-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.producten-results {
  font-size: 0.875rem;
  color: var(--color-brown-medium);
}

.producten-results span {
  font-weight: 600;
  color: var(--color-brown-dark);
}

.producten-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.producten-sort label {
  font-size: 0.875rem;
  color: var(--color-brown-medium);
  font-weight: 500;
}

.sort-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-brown-accent);
  border-radius: 6px;
  font-size: 0.875rem;
  background-color: var(--color-brown-extra-light);
  color: var(--color-brown-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--color-brown-dark);
  box-shadow: 0 0 0 3px rgba(64, 38, 23, 0.2);
  background-color: white;
}

/* Product Grid */
.producten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Modal styling verplaatst naar queries.css voor mobiel-specifieke toepassing */

/* Individuele inklap-knop styling per variatie */
.variation-individual-collapse {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.variation-individual-collapse-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(207, 188, 156, 0.1) 0%,
    rgba(207, 188, 156, 0.05) 100%
  );
  border: 1px solid rgba(207, 188, 156, 0.3);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #8b7345; /* Donkerder dan #cfbc9c */
  font-size: 0.85rem;
  font-weight: 600; /* Iets dikker voor betere leesbaarheid */
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.variation-individual-collapse-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(207, 188, 156, 0.2) 0%,
    rgba(207, 188, 156, 0.1) 100%
  );
  border-color: rgba(207, 188, 156, 0.5);
  color: #fff;
  transform: translateY(-1px);
}

.variation-individual-collapse-arrow {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.3s ease;
  color: #8b7345; /* Zelfde donkere kleur als tekst */
}

.variation-individual-collapse-btn:hover .variation-individual-collapse-arrow {
  transform: translateY(-2px);
  color: #fff; /* Wit bij hover, net als de tekst */
}

/* Product Cards - Producten Page Only */
.producten-content .product-card {
  background: var(--color-brown-extra-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.producten-content .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.producten-content .product-card__image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.producten-content .product-card__gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-container {
  width: 100%;
  height: 100%;
  position: relative;
  /* Touch-vriendelijke eigenschappen voor swipe */
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 3;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-prev {
  left: 0.75rem;
}

.gallery-next {
  right: 0.75rem;
}

.gallery-nav svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.gallery-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.25rem;
  z-index: 3;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: white;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Product Card Overlay */
.producten-content .product-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding: 0.75rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 4;
}

.producten-content .product-card__actions {
  display: flex;
  flex-direction: row;
  gap: 0.375rem;
  justify-content: center;
}

.producten-content .product-card__cart-btn,
.producten-content .product-card__details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.producten-content .product-card__cart-btn {
  background-color: rgba(191, 131, 96, 0.9);
  color: white;
}

.producten-content .product-card__cart-btn:hover {
  background-color: rgba(115, 78, 56, 0.9);
}

.producten-content .product-card__details-btn {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-brown-dark);
}

.producten-content .product-card__details-btn:hover {
  background-color: rgba(255, 255, 255, 0.95);
}

.producten-content .product-card__cart-btn svg,
.producten-content .product-card__details-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Product Card Content */
.producten-content .product-card__content {
  padding: 1rem;
}

.producten-content .product-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.producten-content .product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brown-accent);
  margin-bottom: 1rem;
}

.producten-content .product-card__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.producten-content .product-card__highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-brown-dark);
}

.product-card__highlight svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-brown-accent);
  flex-shrink: 0;
}

.product-card__description {
  font-size: 0.875rem;
  color: var(--color-brown-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Removed conflicting .product-card__actions definition */

/* Static buttons styling (under the card) */
.product-card__static-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-card__static-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.product-card__static-action-btn--cart {
  background-color: var(--color-brown-accent);
  color: white;
}

.product-card__static-action-btn--cart:hover {
  background-color: var(--color-brown-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card__static-action-btn--details {
  background-color: #f3f4f6;
  color: var(--color-brown-dark);
  border: 1px solid #e5e7eb;
}

.product-card__static-action-btn--details:hover {
  background-color: #e5e7eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card__static-action-btn svg {
  width: 1rem;
  height: 1rem;
}

/* No Results */
.producten-no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.no-results-content {
  max-width: 400px;
}

.no-results-icon {
  width: 4rem;
  height: 4rem;
  color: var(--color-brown-medium);
  margin-bottom: 1rem;
}

.no-results-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  margin-bottom: 0.5rem;
}

.no-results-content p {
  color: var(--color-brown-medium);
  margin-bottom: 1.5rem;
}

.no-results-clear {
  background-color: var(--color-brown-accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.no-results-clear:hover {
  background-color: var(--color-brown-medium);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .producten-layout {
    grid-template-columns: 250px 1fr;
    gap: 1.5rem;
  }

  .producten-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .producten-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .producten-filters {
    position: static;
    order: 2;
  }

  .producten-main {
    order: 1;
  }

  .producten-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .producten-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }

  .product-card__content {
    padding: 1.25rem;
  }

  .search-input {
    padding: 0.875rem 3rem 0.875rem 3rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .producten-container {
    padding: 0 0.75rem;
  }

  .producten-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card__image-container {
    height: 200px;
  }

  .product-card__content {
    padding: 1rem;
  }

  .product-card__title {
    font-size: 1rem;
  }

  .product-card__price {
    font-size: 1.125rem;
  }

  .product-card__actions {
    flex-direction: column;
  }

  .product-card__action-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }

  .filters-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .price-inputs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .price-separator {
    display: none;
  }
}

/* Variation Modal Styling - Gelijk aan Maatwerk Modal */
.modal-hang-sluitwerk-selector {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-hang-sluitwerk-selector label {
  display: flex;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.modal-hang-sluitwerk-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
  width: 100%;
}

.modal-hang-sluitwerk-option {
  position: relative;
  flex: 1;
  min-width: 0;
}

.modal-hang-sluitwerk-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.modal-hang-sluitwerk-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  position: relative;
  min-width: 70px;
  text-align: center;
  flex: 1;
  gap: 0.25rem;
}

.modal-hang-sluitwerk-label:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.modal-hang-sluitwerk-radio:checked + .modal-hang-sluitwerk-label {
  border-color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.modal-hang-sluitwerk-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.modal-hang-sluitwerk-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.75rem;
  text-align: center;
}

.modal-hang-sluitwerk-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.7rem;
  text-align: center;
}

.modal-hang-sluitwerk-info i {
  color: var(--color-brown-medium);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.modal-hang-sluitwerk-info i:hover {
  color: #fff;
}

.modal-hang-sluitwerk-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-hang-sluitwerk-info:hover .modal-hang-sluitwerk-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.modal-hang-sluitwerk-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.modal-hang-sluitwerk-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-brown-medium);
  text-align: center;
  font-style: italic;
}

/* Modal Palen Styling */
.modal-palen-selector {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modal-palen-selector:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.modal-palen-selector label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modal-palen-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-palen-option {
  position: relative;
}

.modal-palen-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.modal-palen-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.modal-palen-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(207, 188, 156, 0.1) 0%,
    rgba(207, 188, 156, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-palen-label:hover {
  border-color: rgba(207, 188, 156, 0.3);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-palen-label:hover::before {
  opacity: 1;
}

.modal-palen-radio:checked + .modal-palen-label {
  border-color: #cfbc9c;
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 4px 12px rgba(207, 188, 156, 0.2);
}

.modal-palen-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
}

.modal-palen-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.9rem;
}

.modal-palen-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.85rem;
}

.modal-palen-info {
  position: relative;
  margin-left: auto;
}

.modal-palen-info i {
  color: var(--color-brown-medium);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.modal-palen-info i:hover {
  color: #fff;
}

.modal-palen-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: normal;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
  max-width: 250px;
  line-height: 1.4;
}

.modal-palen-info:hover .modal-palen-tooltip {
  opacity: 1;
  visibility: visible;
}

.modal-palen-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0.5rem;
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.modal-palen-quantity-selector {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-palen-quantity-selector label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.modal-palen-quantity {
  width: 100%;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.modal-palen-quantity:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 2px rgba(207, 188, 156, 0.2);
}

.modal-palen-quantity option {
  background: #2d1b0f;
  color: #fff;
  padding: 0.5rem;
}

/* Modal Variation Actions Styling */
.modal-variation-actions {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-variation-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal-quantity-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-quantity-selector label {
  font-weight: 600;
  color: #fff;
  font-size: 0.875rem;
}

.modal-quantity {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.modal-quantity:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 2px rgba(207, 188, 156, 0.2);
}

.modal-quantity option {
  background: #2d1b0f;
  color: #fff;
  padding: 0.5rem;
}

.modal-add-btn {
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 22px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-add-btn:hover {
  background-color: #a66d4f;
  transform: scale(1.05);
}

.modal-add-btn:hover svg {
  transform: scale(1.2);
}

.modal-add-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Modal Variation Info Styling */
.modal-variation-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
}

.modal-variation-name-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-variation-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 1rem;
}

.modal-variation-size {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-variation-size-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.modal-variation-size-value {
  font-size: 0.75rem;
  color: var(--color-brown-medium);
  font-weight: 600;
}

.modal-variation-price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-variation-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 1.1rem;
}

.modal-variation-toggle-btn {
  background: none;
  border: none;
  color: var(--color-brown-medium);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.modal-variation-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.modal-variation-toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.modal-variation-toggle-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.modal-variation-toggle-btn.active .modal-variation-toggle-arrow {
  transform: rotate(180deg);
}

/* Modal Variation Details Styling */
.modal-variation-details {
  width: 100%;
  min-height: 200px; /* Zorg voor consistente minimale hoogte */
}

/* Zorg ervoor dat alle selectors binnen details de volle breedte innemen */
.modal-variation-details .modal-hang-sluitwerk-selector,
.modal-variation-details .modal-palen-selector {
  width: 100%;
  box-sizing: border-box;
}

.modal-variation-details .maatwerk-modal__sluiting-section {
  width: 100%;
  box-sizing: border-box;
  min-height: 80px; /* Reserveer ruimte voor sluiting sectie */
}

/* Zorg ervoor dat verborgen sluiting sectie nog steeds ruimte inneemt */
.modal-variation-details
  .maatwerk-modal__sluiting-section[style*="display: none"] {
  display: block !important;
  visibility: hidden;
  height: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Maatwerk Item Styling */
.modal-variation-item.maatwerk-item {
  background: linear-gradient(
    135deg,
    rgba(207, 188, 156, 0.1) 0%,
    rgba(207, 188, 156, 0.05) 100%
  );
  border: 1px solid rgba(207, 188, 156, 0.2);
}

.modal-maatwerk-btn {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(var(--color-brown-dark), 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-maatwerk-btn::before {
  content: "📏";
  font-size: 1.1em;
}

.modal-maatwerk-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Maatwerk Modal styling */
.maatwerk-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.maatwerk-modal--active {
  opacity: 1;
  visibility: visible;
}

.maatwerk-modal__content {
  background-color: var(--color-grey);
  border-radius: 12px;
  max-width: 80%;
  width: 80%;
  max-height: 90vh;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.maatwerk-modal--active .maatwerk-modal__content {
  transform: scale(1);
}

.maatwerk-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--color-grey);
  border-radius: 12px 12px 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
  flex-shrink: 0;
}

.maatwerk-modal__header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.maatwerk-modal__header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.maatwerk-modal__header h3 {
  color: #cfbc9c;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.maatwerk-modal__header-main-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fff;
  align-items: flex-start;
  margin-right: 3rem;
}

.maatwerk-modal__header-main-info .maatwerk-modal__header-price {
  font-size: 1rem;
}

.maatwerk-modal__header-main-info .maatwerk-modal__header-dimensions {
  font-size: 0.85rem;
  opacity: 0.8;
}

.maatwerk-modal__header-functions {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: #fff;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__header-functions
  .maatwerk-modal__header-sluiting[style*="display: none"] {
  display: none !important;
}

/* Verberg sluiting label en sectie wanneer ze niet zichtbaar moeten zijn */
.maatwerk-modal__sluiting-label[style*="display: none"],
.maatwerk-modal__sluiting-section[style*="display: none"] {
  display: none !important;
}

.maatwerk-modal__sluiting-label[style*="visibility: hidden"],
.maatwerk-modal__sluiting-section[style*="visibility: hidden"] {
  visibility: hidden !important;
}

/* Verberg header sluiting label wanneer het niet zichtbaar moet zijn */
.maatwerk-modal__header-sluiting-label[style*="display: none"] {
  display: none !important;
}

.maatwerk-modal__header-sluiting-label[style*="visibility: hidden"] {
  visibility: hidden !important;
}

@media (max-width: 768px) {
  .maatwerk-modal__header-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .maatwerk-modal__header-main-info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .maatwerk-modal__header-functions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .maatwerk-modal__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .maatwerk-modal__header-content {
    width: 100%;
  }
}

.maatwerk-modal__header-dimensions,
.maatwerk-modal__header-price,
.maatwerk-modal__header-hang-sluitwerk,
.maatwerk-modal__header-sluiting,
.maatwerk-modal__header-palen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
}

.maatwerk-modal__header-dimensions strong,
.maatwerk-modal__header-price strong,
.maatwerk-modal__header-hang-sluitwerk strong,
.maatwerk-modal__header-sluiting strong,
.maatwerk-modal__header-palen strong {
  color: #cfbc9c;
  font-weight: 600;
}

/* Styling voor de label tekst (zoals "Sluiting:", "Palen:", etc.) */
.maatwerk-modal__header-sluiting-label,
.maatwerk-modal__header-hang-sluitwerk-label,
.maatwerk-modal__header-palen-label {
  color: #fff;
  font-weight: 500;
}

.maatwerk-modal__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.maatwerk-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.maatwerk-modal__body {
  padding: 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}

.maatwerk-modal__calculator {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maatwerk-modal__inputs {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.maatwerk-modal__input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.maatwerk-modal__input-group label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.maatwerk-modal-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.maatwerk-modal-input:focus {
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.maatwerk-modal-input:invalid {
  border-color: #ef4444;
}

.maatwerk-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.maatwerk-modal__result {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maatwerk-modal__dimensions {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.maatwerk-modal__dimensions strong {
  color: #fff;
  font-weight: 600;
}

.maatwerk-modal__price {
  font-size: 1.1rem;
  color: #cfbc9c;
  font-weight: 600;
}

.maatwerk-modal__price strong {
  color: #cfbc9c;
}

.maatwerk-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.maatwerk-modal__quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.maatwerk-modal__quantity-selector label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.maatwerk-modal-quantity {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #111;
  font-size: 0.9rem;
  min-width: 60px;
  transition: all 0.3s ease;
}

.maatwerk-modal-quantity:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.maatwerk-modal-add-btn {
  background-color: var(--color-brown-accent);
  color: #111;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.maatwerk-modal-add-btn:hover {
  background-color: #a66d4f;
}

.maatwerk-modal-add-btn:hover svg {
  transform: scale(1.2);
}

.maatwerk-modal-add-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.maatwerk-modal-add-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Maatwerk item styling in variations list */
.maatwerk-item {
  background: linear-gradient(
    135deg,
    var(--color-brown-accent) 0%,
    var(--color-brown-extra-light) 100%
  );
  border: 2px solid var(--color-brown-medium);
  border-radius: 8px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.maatwerk-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.maatwerk-item .variation-name {
  color: var(--color-brown-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.maatwerk-item .variation-name::before {
  content: "📏";
  font-size: 1.2em;
}

.maatwerk-item .variation-price {
  color: var(--color-brown-dark);
  font-weight: 600;
}

.maatwerk-modal-btn {
  background: linear-gradient(
    135deg,
    var(--color-brown-medium) 0%,
    var(--color-brown-dark) 100%
  );
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(var(--color-brown-dark), 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.maatwerk-modal-btn::before {
  content: "📏";
  font-size: 1.1em;
}

.maatwerk-modal-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Responsive styling voor maatwerk modal */
@media (max-width: 768px) {
  .maatwerk-modal__content {
    width: 95%;
    padding: 1.5rem;
    max-width: 500px;
  }

  .maatwerk-modal__header h3 {
    font-size: 1.25rem;
  }

  .maatwerk-modal__inputs {
    flex-direction: column;
  }

  .maatwerk-modal__actions {
    flex-direction: column;
  }

  .maatwerk-modal__quantity-selector {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Maatwerk Modal Sectie voor Producten Pagina */
.modal-maatwerk-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-maatwerk-header h4 {
  color: #cfbc9c;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.modal-maatwerk-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.modal-maatwerk-calculator {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Maatwerk knoppen styling */
.product-card__maatwerk-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #cfbc9c 0%, #b8a67a 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.product-card__maatwerk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 188, 156, 0.3);
  background: linear-gradient(135deg, #b8a67a 0%, #cfbc9c 100%);
}

.product-card__static-action-btn--maatwerk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #cfbc9c 0%, #b8a67a 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.product-card__static-action-btn--maatwerk:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 188, 156, 0.3);
  background: linear-gradient(135deg, #b8a67a 0%, #cfbc9c 100%);
}

/* Maatwerk item in variation modal */
.modal-variation-item.maatwerk-item {
  background: linear-gradient(
    135deg,
    rgba(207, 188, 156, 0.1) 0%,
    rgba(184, 166, 122, 0.1) 100%
  );
  border: 2px solid #cfbc9c;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.modal-variation-item.maatwerk-item .modal-variation-name {
  color: #cfbc9c;
  font-weight: 600;
}

.modal-variation-item.maatwerk-item .modal-variation-price {
  color: #cfbc9c;
  font-weight: 500;
}

.modal-maatwerk-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #cfbc9c 0%, #b8a67a 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.modal-maatwerk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 188, 156, 0.3);
  background: linear-gradient(135deg, #b8a67a 0%, #cfbc9c 100%);
}

.modal-maatwerk-inputs {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.modal-maatwerk-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-maatwerk-input-group label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-maatwerk-input {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
}

.modal-maatwerk-input:focus {
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
  outline: none;
}

.modal-maatwerk-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.modal-maatwerk-result {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-maatwerk-dimensions {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal-maatwerk-dimensions strong {
  color: #fff;
  font-weight: 600;
}

.modal-maatwerk-price {
  font-size: 1.1rem;
  color: #cfbc9c;
  font-weight: 600;
}

.modal-maatwerk-price strong {
  color: #cfbc9c;
}

.modal-maatwerk-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-maatwerk-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-maatwerk-quantity-selector label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-maatwerk-quantity {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
  min-width: 60px;
}

.modal-maatwerk-quantity:focus {
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
  outline: none;
}

.modal-maatwerk-add-btn {
  background-color: var(--color-brown-accent);
  color: #111;
  padding: 0.75rem 1.5rem;
  border-radius: 22px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-maatwerk-add-btn:hover {
  background-color: #a66d4f;
  transform: translateY(-1px);
}

.modal-maatwerk-add-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-maatwerk-add-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .modal-maatwerk-inputs {
    flex-direction: column;
  }

  .modal-maatwerk-actions {
    flex-direction: column;
  }

  .modal-maatwerk-quantity-selector {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Maatwerk Modal Hang-en-sluitwerk Styling */
.maatwerk-modal__hang-sluitwerk {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__hang-sluitwerk-selector {
  margin-bottom: 1rem;
}

.maatwerk-modal__hang-sluitwerk-selector label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.maatwerk-modal__hang-sluitwerk-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
  width: 100%;
}

.maatwerk-modal__hang-sluitwerk-option {
  position: relative;
  flex: 1;
  min-width: 0;
}

.maatwerk-modal__hang-sluitwerk-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.maatwerk-modal__hang-sluitwerk-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  position: relative;
  min-width: 70px;
  text-align: center;
  flex: 1;
  gap: 0.25rem;
}

.maatwerk-modal__hang-sluitwerk-label:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.maatwerk-modal__hang-sluitwerk-radio:checked
  + .maatwerk-modal__hang-sluitwerk-label {
  border-color: var(--color-brown-accent);
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.maatwerk-modal__hang-sluitwerk-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.maatwerk-modal__hang-sluitwerk-name {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.75rem;
  text-align: center;
}

.maatwerk-modal__hang-sluitwerk-price {
  font-weight: 600;
  color: var(--color-brown-medium);
  font-size: 0.7rem;
  text-align: center;
}

.maatwerk-modal__hang-sluitwerk-info {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
}

.maatwerk-modal__hang-sluitwerk-info i {
  color: var(--color-brown-medium);
  font-size: 0.7rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.maatwerk-modal__hang-sluitwerk-info i:hover {
  color: #fff;
}

.maatwerk-modal__hang-sluitwerk-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__hang-sluitwerk-info:hover
  .maatwerk-modal__hang-sluitwerk-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.maatwerk-modal__hang-sluitwerk-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

/* Responsive design voor maatwerk modal hang-en-sluitwerk */
@media (max-width: 768px) {
  .maatwerk-modal__hang-sluitwerk-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .maatwerk-modal__hang-sluitwerk-label {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    min-width: auto;
    text-align: left;
    flex: none;
  }

  .maatwerk-modal__hang-sluitwerk-content {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .maatwerk-modal__hang-sluitwerk-name {
    margin-bottom: 0;
    font-size: 0.8rem;
    text-align: left;
  }

  .maatwerk-modal__hang-sluitwerk-price {
    font-size: 0.8rem;
    text-align: right;
  }

  .maatwerk-modal__hang-sluitwerk-info {
    position: static;
    margin-left: 0.5rem;
  }
}

/* Maatwerk Modal Palen Styles */
.maatwerk-modal__palen {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.maatwerk-modal__palen:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.maatwerk-modal__palen-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maatwerk-modal__palen-selector label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.maatwerk-modal__palen-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.maatwerk-modal__palen-option {
  position: relative;
}

.maatwerk-modal__palen-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.maatwerk-modal__palen-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  gap: 1rem;
}

.maatwerk-modal__palen-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(207, 188, 156, 0.1) 0%,
    rgba(207, 188, 156, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.maatwerk-modal__palen-label:hover {
  border-color: rgba(207, 188, 156, 0.3);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.maatwerk-modal__palen-label:hover::before {
  opacity: 1;
}

.maatwerk-modal__palen-radio:checked + .maatwerk-modal__palen-label {
  border-color: #cfbc9c;
  background: rgba(207, 188, 156, 0.1);
  box-shadow: 0 4px 12px rgba(207, 188, 156, 0.2);
}

.maatwerk-modal__palen-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1rem;
}

.maatwerk-modal__palen-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.maatwerk-modal__palen-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown-medium);
  min-width: 80px;
  text-align: right;
}

.maatwerk-modal__palen-info {
  position: relative;
}

.maatwerk-modal__palen-info i {
  color: #cfbc9c;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.maatwerk-modal__palen-info i:hover {
  color: #a66d4f;
}

.maatwerk-modal__palen-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__palen-tooltip ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.maatwerk-modal__palen-tooltip li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.maatwerk-modal__palen-tooltip li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #cfbc9c;
  font-weight: bold;
}

.maatwerk-modal__palen-tooltip li:last-child {
  margin-bottom: 0;
}

.maatwerk-modal__palen-info:hover .maatwerk-modal__palen-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.maatwerk-modal__palen-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  border: 8px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.maatwerk-modal__palen-quantity-selector {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__palen-quantity-selector label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.maatwerk-modal__palen-quantity {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23cfbc9c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.maatwerk-modal__palen-quantity:focus {
  outline: none;
  border-color: #cfbc9c;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(207, 188, 156, 0.1);
}

.maatwerk-modal__palen-quantity option {
  background-color: #402617;
  color: #fff;
}

/* Responsive styling voor maatwerk modal palen */
@media (max-width: 768px) {
  .maatwerk-modal__palen-options {
    gap: 0.5rem;
  }

  .maatwerk-modal__palen-label {
    padding: 0.75rem;
  }

  .maatwerk-modal__palen-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .maatwerk-modal__palen-price {
    min-width: auto;
    text-align: left;
  }

  .maatwerk-modal__palen-info {
    position: static;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* Maatwerk Modal Sluiting Styles */
.maatwerk-modal__sluiting-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.maatwerk-modal__sluiting-section label {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.maatwerk-modal__sluiting-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
}

.maatwerk-modal__sluiting-option {
  position: relative;
  flex: 1;
  min-width: 0;
}

.maatwerk-modal__sluiting-radio {
  display: none;
}

.maatwerk-modal__sluiting-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 45px;
  text-align: center;
  width: 100%;
}

.maatwerk-modal__sluiting-label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.maatwerk-modal__sluiting-radio:checked + .maatwerk-modal__sluiting-label {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.maatwerk-modal__sluiting-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 1rem;
}

.maatwerk-modal__sluiting-name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.maatwerk-modal__sluiting-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

.maatwerk-modal__sluiting-info i {
  color: var(--color-brown-medium);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.maatwerk-modal__sluiting-info i:hover {
  color: #fff;
}

.maatwerk-modal__sluiting-image-icon {
  position: absolute;
  top: 0.2rem;
  right: 1.2rem;
}

.maatwerk-modal__sluiting-image-icon i {
  color: var(--color-brown-medium);
  font-size: 0.6rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.maatwerk-modal__sluiting-image-icon i:hover {
  color: #fff;
}

.maatwerk-modal__sluiting-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 200px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.maatwerk-modal__sluiting-info:hover .maatwerk-modal__sluiting-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.maatwerk-modal__sluiting-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.maatwerk-modal__sluiting-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-top: 0.5rem;
  max-width: 280px;
  max-height: 180px;
}

.maatwerk-modal__sluiting-image-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 300px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.maatwerk-modal__sluiting-image-icon:hover
  .maatwerk-modal__sluiting-image-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.maatwerk-modal__sluiting-image-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.maatwerk-sluiting-note {
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* Maatwerk Modal Terms Checkbox */
.maatwerk-modal__terms {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__terms-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.maatwerk-modal__terms-checkbox {
  margin: 0;
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--color-brown-medium);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.maatwerk-modal__terms-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.maatwerk-modal__terms-error {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 6px;
  color: #dc3545;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.maatwerk-modal__terms-error i {
  color: #dc3545;
  font-size: 1rem;
}

.maatwerk-modal__palen-advice {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

.maatwerk-modal__palen-advice p {
  margin: 0;
  display: flex;
  align-items: flex-start;
}

.maatwerk-modal__palen-advice strong {
  color: #92400e;
}

/* Schild icoontje voor bescherming */
.maatwerk-modal__palen-name .fas.fa-shield-alt {
  animation: shield-glow 2s ease-in-out infinite alternate;
}

@keyframes shield-glow {
  0% {
    text-shadow: 0 0 5px rgba(207, 188, 156, 0.5);
  }
  100% {
    text-shadow: 0 0 10px rgba(207, 188, 156, 0.8),
      0 0 20px rgba(207, 188, 156, 0.4);
  }
}

/* Palen acties (afbeelding en info) */
.maatwerk-modal__palen-actions {
  display: flex;
  gap: 0.5rem;
}

.maatwerk-modal__palen-image,
.maatwerk-modal__palen-info {
  position: relative;
  cursor: pointer;
}

.maatwerk-modal__palen-image i,
.maatwerk-modal__palen-info i {
  color: var(--color-brown-medium);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.maatwerk-modal__palen-image:hover i,
.maatwerk-modal__palen-info:hover i {
  color: #fff;
}

/* Tooltips voor palen */
.maatwerk-modal__palen-image-tooltip,
.maatwerk-modal__palen-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  max-width: 200px;
  width: max-content;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

.maatwerk-modal__palen-image-tooltip {
  max-width: 220px;
  white-space: normal;
}

.maatwerk-modal__palen-image-tooltip::after,
.maatwerk-modal__palen-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.maatwerk-modal__palen-image:hover .maatwerk-modal__palen-image-tooltip,
.maatwerk-modal__palen-info:hover .maatwerk-modal__palen-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Zorg ervoor dat tooltips binnen het modal blijven */
.maatwerk-modal__palen-image,
.maatwerk-modal__palen-info {
  position: relative;
}

/* Verbeterde tooltip positioning voor palen */
.maatwerk-modal__palen-info:hover .maatwerk-modal__palen-tooltip {
  left: auto;
  right: 0;
  transform: translateY(-5px);
  max-width: 180px;
  min-width: 150px;
}

.maatwerk-modal__palen-image:hover .maatwerk-modal__palen-image-tooltip {
  left: 0;
  right: auto;
  transform: translateY(-5px);
}

/* Hang-en-sluitwerk acties (afbeelding en info) */
.maatwerk-modal__hang-sluitwerk-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  width: 100%;
}

.maatwerk-modal__hang-sluitwerk-image,
.maatwerk-modal__hang-sluitwerk-info {
  position: relative;
  cursor: pointer;
}

.maatwerk-modal__hang-sluitwerk-image i,
.maatwerk-modal__hang-sluitwerk-info i {
  color: var(--color-brown-medium);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.maatwerk-modal__hang-sluitwerk-image:hover i,
.maatwerk-modal__hang-sluitwerk-info:hover i {
  color: #fff;
}

/* Tooltips voor hang-en-sluitwerk */
.maatwerk-modal__hang-sluitwerk-image-tooltip,
.maatwerk-modal__hang-sluitwerk-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brown-dark);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  max-width: 200px;
  width: max-content;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

.maatwerk-modal__hang-sluitwerk-image-tooltip {
  max-width: 300px;
  min-width: 250px;
  white-space: normal;
}

.maatwerk-modal__hang-sluitwerk-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.maatwerk-modal__hang-sluitwerk-image:hover
  .maatwerk-modal__hang-sluitwerk-image-tooltip,
.maatwerk-modal__hang-sluitwerk-info:hover
  .maatwerk-modal__hang-sluitwerk-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Zorg ervoor dat hang-en-sluitwerk tooltips binnen het modal blijven */
.maatwerk-modal__hang-sluitwerk-image:hover
  .maatwerk-modal__hang-sluitwerk-image-tooltip {
  left: 0;
  right: auto;
  transform: translateY(-5px);
}

.maatwerk-modal__hang-sluitwerk-info:hover
  .maatwerk-modal__hang-sluitwerk-tooltip {
  left: auto;
  right: 0;
  transform: translateY(-5px);
}

/* Palen header */
.maatwerk-modal__palen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.maatwerk-modal__palen-header label {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Palen header afbeelding */
.maatwerk-modal__palen-header-image {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.maatwerk-modal__palen-header-image i {
  color: var(--color-brown-medium);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.maatwerk-modal__palen-header-image:hover i {
  color: #b8a67a;
}

.maatwerk-modal__palen-header-image-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  color: white;
  padding: 0;
  border-radius: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  max-width: 520px;
  width: max-content;
  white-space: normal;
  overflow-wrap: break-word;
}

/* Old img styling replaced by new palen-image classes */

.maatwerk-modal__palen-header-image-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #3e2723;
}

.maatwerk-modal__palen-header-image:hover
  .maatwerk-modal__palen-header-image-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Zorg ervoor dat palen header tooltip binnen het modal blijft */
.maatwerk-modal__palen-header-image:hover
  .maatwerk-modal__palen-header-image-tooltip {
  left: auto;
  right: 0;
  transform: translateY(-5px);
}

/* Palen afbeeldingen styling in tooltip */
.palen-images-container {
  background: #3e2723;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #5d4037;
  width: 480px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.palen-images-grid {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.palen-image-item {
  text-align: center;
  flex: 1;
  min-width: 130px;
}

.palen-image-label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.palen-label-oak {
  color: #d7ccc8;
  margin-bottom: 10px;
}

.palen-label-natural {
  color: #64b5f6;
  margin-bottom: 6px;
}

.palen-label-protected {
  color: #81c784;
  margin-bottom: 6px;
}

.palen-image-description {
  font-size: 11px;
  color: #bcaaa4;
  margin-bottom: 8px;
}

.palen-image {
  width: 100%;
  max-width: 110px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.palen-image-oak {
  border: 2px solid rgba(215, 204, 200, 0.3);
}

.palen-image-natural {
  border: 2px solid rgba(129, 199, 132, 0.3);
}

.palen-image-protected {
  border: 2px solid rgba(100, 181, 246, 0.3);
}

/* Responsive styling voor palen afbeeldingen */
@media (max-width: 768px) {
  .palen-images-container {
    width: 350px;
    padding: 15px;
  }

  .palen-images-grid {
    gap: 12px;
  }

  .palen-image-item {
    min-width: 100px;
  }

  .palen-image-label {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .palen-image-description {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .palen-image {
    max-width: 85px;
  }

  .maatwerk-modal__palen-header-image-tooltip {
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .palen-images-container {
    width: 280px;
    padding: 12px;
  }

  .palen-images-grid {
    gap: 8px;
  }

  .palen-image-item {
    min-width: 80px;
  }

  .palen-image-label {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .palen-image-description {
    font-size: 9px;
    margin-bottom: 4px;
  }

  .palen-image {
    max-width: 70px;
  }

  .maatwerk-modal__palen-header-image-tooltip {
    max-width: 300px;
  }
}

/* Responsive design voor maatwerk modal sluiting */
@media (max-width: 768px) {
  .maatwerk-modal__sluiting-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .maatwerk-modal__sluiting-option {
    flex: none;
  }

  .maatwerk-modal__sluiting-label {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    min-width: auto;
    text-align: left;
    flex: none;
  }

  .maatwerk-modal__sluiting-content {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
  }

  .maatwerk-modal__sluiting-name {
    margin-bottom: 0;
    font-size: 0.8rem;
    text-align: left;
  }

  .maatwerk-modal__sluiting-info {
    position: static;
    margin-left: 0.5rem;
  }

  .maatwerk-modal__sluiting-image-icon {
    position: static;
    margin-left: 0.5rem;
  }

  .maatwerk-modal__terms {
    margin: 0.75rem 0;
    padding: 0.75rem;
  }

  .maatwerk-modal__terms-label {
    font-size: 0.85rem;
  }
}

.maatwerk-modal__sluiting:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border-color: rgba(255, 255, 255, 0.15);
}

.maatwerk-modal__sluiting-selector {
  margin-bottom: 1rem;
}

.maatwerk-modal__sluiting-selector label {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Specifieke styling voor de sluiting sectie titel - zorg dat het geen knop wordt */
.maatwerk-modal__sluiting-section > label {
  display: block !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 1rem !important;
  font-size: 1rem !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: default !important;
  transition: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  position: static !important;
  min-height: auto !important;
  text-align: left !important;
  width: auto !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0 !important;
}

.maatwerk-modal__sluiting-section > label:hover {
  background: none !important;
  border-color: transparent !important;
  transform: none !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.maatwerk-modal__sluiting-options {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}

.maatwerk-modal__sluiting-option {
  position: relative;
}

.maatwerk-modal__sluiting-radio {
  display: none;
}

.maatwerk-modal__sluiting-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  gap: 1rem;
  width: 100%;
  flex-direction: row;
}

/* Nieuwe flexbox styling voor sluiting layout */
.maatwerk-modal__sluiting-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
}

/* Afbeelding icoontje - links */
.maatwerk-modal__sluiting-image-icon {
  order: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 2rem !important;
  height: 2rem !important;
  position: relative !important;
}

.maatwerk-modal__sluiting-image-icon i {
  color: var(--color-brown-medium) !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.maatwerk-modal__sluiting-image-icon i:hover {
  color: #fff !important;
}

/* Sluiting content - midden */
.maatwerk-modal__sluiting-content {
  order: 2 !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 0.5rem !important;
}

/* Info icoontje - rechts */
.maatwerk-modal__sluiting-info {
  order: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 2rem !important;
  height: 2rem !important;
  position: relative !important;
}

.maatwerk-modal__sluiting-info i {
  color: var(--color-brown-medium) !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.maatwerk-modal__sluiting-info i:hover {
  color: #fff !important;
}

.maatwerk-modal__sluiting-label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.maatwerk-modal__sluiting-radio:checked + .maatwerk-modal__sluiting-label {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-brown-accent);
  box-shadow: 0 0 0 1px var(--color-brown-accent);
}

.maatwerk-modal__sluiting-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.maatwerk-modal__sluiting-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}

.maatwerk-modal__sluiting-price {
  color: var(--color-brown-accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.maatwerk-modal__sluiting-info {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
}

.maatwerk-modal__sluiting-info i {
  color: var(--color-brown-medium);
  font-size: 0.6rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.maatwerk-modal__sluiting-info i:hover {
  color: #fff;
}

.maatwerk-modal__sluiting-image-icon {
  position: absolute;
  top: 0.2rem;
  right: 1.2rem;
}

.maatwerk-modal__sluiting-image-icon i {
  color: var(--color-brown-medium);
  font-size: 0.6rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.maatwerk-modal__sluiting-image-icon i:hover {
  color: #fff;
}

.maatwerk-modal__sluiting-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.maatwerk-modal__sluiting-info:hover .maatwerk-modal__sluiting-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.maatwerk-modal__sluiting-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

/* Responsive design voor maatwerk modal sluiting */
@media (max-width: 768px) {
  .maatwerk-modal__sluiting-options {
    flex-direction: column;
    gap: 0.5rem;
  }

  .maatwerk-modal__sluiting-label {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    min-width: auto;
    text-align: left;
    flex: none;
  }

  .maatwerk-modal__sluiting-content {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .maatwerk-modal__sluiting-name {
    margin-bottom: 0;
    font-size: 0.8rem;
    text-align: left;
  }

  .maatwerk-modal__sluiting-price {
    font-size: 0.8rem;
    text-align: right;
  }

  .maatwerk-modal__sluiting-info {
    position: static;
    margin-left: 0.5rem;
  }

  .maatwerk-modal__sluiting-image-icon {
    position: static;
    margin-left: 0.5rem;
  }
}

/* Nieuwe professionele Palen sectie voor product pagina's */
.product-poles-section {
  margin-top: 1rem;
  padding: 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-poles-section:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.product-poles-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-poles-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.product-poles-title i {
  color: var(--color-brown-accent);
  font-size: 1.2rem;
}

.product-poles-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.product-poles-toggle__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.product-poles-info {
  position: relative;
  display: inline-block;
}

.product-poles-info i {
  color: var(--color-brown-accent);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-poles-info:hover i {
  color: #a66d4f;
}

.product-poles-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 280px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-poles-info:hover .product-poles-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.product-poles-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.product-poles-advice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #ffc107;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-poles-advice i {
  color: #ffc107;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.product-poles-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.product-poles-panel.active {
  max-height: 500px;
  opacity: 1;
}

.product-poles-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.product-poles-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-poles-image {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.product-poles-image i {
  color: var(--color-brown-dark);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-poles-image:hover i {
  color: #a66d4f;
}

.product-poles-preview {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 200px;
  height: 150px;
  background-color: rgba(64, 38, 23, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.product-poles-image:hover .product-poles-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.product-poles-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-poles-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-poles-description {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-poles-description strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.product-poles-description span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}

.product-poles-price {
  margin-top: 0.5rem;
}

.product-poles-unitprice {
  color: var(--color-brown-accent);
  font-size: 1.1rem;
  font-weight: 600;
}

.product-poles-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-poles-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-poles-quantity-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.product-poles-quantity-label input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.product-poles-quantity-label input:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.product-poles-protection {
  display: flex;
  align-items: center;
}

.product-poles-protection-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  width: 100%;
}

.product-poles-protection-label:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.product-poles-protection-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-brown-accent);
}

.product-poles-protection-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.product-poles-protection-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-poles-protection-text strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-poles-protection-text strong i {
  color: var(--color-brown-accent);
}

.product-poles-protection-price {
  color: var(--color-brown-accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.product-poles-protection-info {
  position: relative;
  display: inline-block;
  margin-left: auto;
}

.product-poles-protection-info i {
  color: var(--color-brown-accent);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-poles-protection-info:hover i {
  color: #a66d4f;
}

.product-poles-protection-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 250px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
}

.product-poles-protection-info:hover .product-poles-protection-tooltip {
  opacity: 1;
  visibility: visible;
}

.product-poles-protection-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 1rem;
  border: 6px solid transparent;
  border-top-color: var(--color-brown-dark);
}

.product-poles-subtotal {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-poles-subtotal span {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.product-poles-subtotal strong {
  color: var(--color-brown-accent);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Modal specifieke styling voor producten.php */
.modal-poles-section {
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.modal-poles-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.modal-poles-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.modal-poles-title i {
  color: var(--color-brown-accent);
  font-size: 1.1rem;
}

.modal-poles-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.modal-poles-toggle__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.modal-poles-info {
  position: relative;
  display: inline-block;
}

.modal-poles-info i {
  color: var(--color-brown-accent);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-poles-info:hover i {
  color: #a66d4f;
}

.modal-poles-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 260px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-poles-info:hover .modal-poles-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.modal-poles-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.modal-poles-advice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 6px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  color: #ffc107;
  font-size: 0.8rem;
  font-weight: 500;
}

.modal-poles-advice i {
  color: #ffc107;
  font-size: 1rem;
  flex-shrink: 0;
}

.modal-poles-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.modal-poles-panel.active {
  max-height: 400px;
  opacity: 1;
}

.modal-poles-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-poles-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-poles-image {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.modal-poles-image i {
  color: var(--color-brown-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-poles-image:hover i {
  color: #a66d4f;
}

.modal-poles-preview {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 180px;
  height: 120px;
  background-color: rgba(64, 38, 23, 0.95);
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.modal-poles-image:hover .modal-poles-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.modal-poles-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-poles-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-poles-description {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.modal-poles-description strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-poles-description span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.3;
}

.modal-poles-price {
  margin-top: 0.3rem;
}

.modal-poles-unitprice {
  color: var(--color-brown-accent);
  font-size: 1rem;
  font-weight: 600;
}

.modal-poles-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-poles-quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-poles-quantity-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.modal-poles-quantity-label input {
  width: 70px;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.modal-poles-quantity-label input:focus {
  outline: none;
  border-color: var(--color-brown-accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.modal-poles-protection {
  display: flex;
  align-items: center;
}

.modal-poles-protection-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  width: 100%;
}

.modal-poles-protection-label:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.modal-poles-protection-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-brown-accent);
}

.modal-poles-protection-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.modal-poles-protection-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.modal-poles-protection-text strong {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.modal-poles-protection-text strong i {
  color: var(--color-brown-accent);
}

.modal-poles-protection-price {
  color: var(--color-brown-accent);
  font-size: 0.8rem;
  font-weight: 500;
}

.modal-poles-protection-info {
  position: relative;
  display: inline-block;
  margin-left: auto;
}

.modal-poles-protection-info i {
  color: var(--color-brown-accent);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-poles-protection-info:hover i {
  color: #a66d4f;
}

.modal-poles-protection-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 220px;
  background-color: rgba(64, 38, 23, 0.95);
  color: #fff;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  line-height: 1.3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-poles-protection-info:hover .modal-poles-protection-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

.modal-poles-protection-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 10px;
  border: 5px solid transparent;
  border-top-color: rgba(64, 38, 23, 0.95);
}

.modal-poles-subtotal {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-poles-subtotal span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-poles-subtotal strong {
  color: var(--color-brown-accent);
  font-size: 1rem;
  font-weight: 600;
}

/* Cart item poles info */
.cart-item__palen-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #cfbc9c;
  padding: 0.5rem;
  background: rgba(207, 188, 156, 0.1);
  border-radius: 4px;
  border-left: 3px solid #cfbc9c;
}

.cart-item__palen-label {
  font-weight: 600;
  color: #fff;
  min-width: 120px;
}

.cart-item__palen-name {
  color: #cfbc9c;
  font-weight: 500;
}

.cart-item__palen-price {
  font-weight: 600;
  color: #cfbc9c;
  margin-left: auto;
}

.cart-item__palen-quantity {
  color: #cfbc9c;
  font-size: 0.8rem;
  font-style: italic;
}

/* Checkout item poles info */
.checkout-item__palen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #cfbc9c;
  padding: 0.5rem;
  background: rgba(207, 188, 156, 0.1);
  border-radius: 4px;
  border-left: 3px solid #cfbc9c;
}

.checkout-item__palen-label {
  font-weight: 600;
  color: #fff;
  min-width: 120px;
}

.checkout-item__palen-name {
  color: #cfbc9c;
  font-weight: 500;
}

.checkout-item__palen-price {
  font-weight: 600;
  color: #cfbc9c;
  margin-left: auto;
}

.checkout-item__palen-quantity {
  color: #cfbc9c;
  font-size: 0.8rem;
  font-style: italic;
}

/* Responsive styling voor palen info */
@media (max-width: 768px) {
  .cart-item__palen-info,
  .checkout-item__palen {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .cart-item__palen-label,
  .checkout-item__palen-label {
    min-width: auto;
  }

  .cart-item__palen-price,
  .checkout-item__palen-price {
    margin-left: 0;
  }
}

/* Banner container basis styling */
.action-banner__text {
  position: relative;
  height: 1.5rem;
  /* overflow: hidden verwijderd - JavaScript zorgt voor zichtbaarheid */
}

/* Maatwerk modal input error styling */
.maatwerk-modal__input-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: #fee;
  border: 1px solid #f66;
  border-radius: 4px;
  color: #c33;
  font-size: 0.875rem;
}

.maatwerk-modal__input-error i {
  color: #f66;
}

/* Input styling verwijderd - alleen onderkant foutmeldingen */
