:root {
  --yellow: #ffe99e;
  --text: #000;
  --blue: #388bff;
  --red: #ec2a28;
  --font-extra: "Dela Gothic One", sans-serif;
}

::-moz-selection { /* Code for Firefox */
  color: #FFF;
  background: #000;
}

::selection {
  color: #FFF;
  background: #000;
}
 
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;  
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}
 
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Hamburger: standaard verborgen, heeft geen invloed op desktop-nav */
.nav-mobile-toggle {
  display: none;
}

/* Mobiel paneel alleen op kleine schermen tonen */
.nav-mobile-panel {
  display: none;
}

@media screen and (max-width: 991px) {
  .nav-menu.nav-menu-general {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: auto;
    transition: opacity 0.2s ease;
  }
  .nav-mobile-toggle:hover {
    opacity: 0.8;
  }
  .nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--_bioventa---green-light);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  /* Sluitknop altijd bovenop het paneel */
  body.nav-mobile-open .nav-mobile-toggle {
    position: relative;
    z-index: 1001;
  }

  /* Hamburger → kruis: 2 spans vormen X, derde verborgen */
  body.nav-mobile-open .nav-mobile-toggle span:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
  }
  body.nav-mobile-open .nav-mobile-toggle span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
  }
  body.nav-mobile-open .nav-mobile-toggle span:nth-child(3) {
    opacity: 0;
    pointer-events: none;
  }

  /* Mobiel paneel: 100% width, donkergroen, inschuiven van rechts */
  .nav-mobile-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background-color: var(--_bioventa---dark-green);
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }
  body.nav-mobile-open .nav-mobile-panel {
    transform: translateX(0);
  }

  .nav-mobile-panel-logo {
    flex-shrink: 0;
    padding: 1.5rem;
    display: inline-block;
	position: absolute;
	width: 100%;
	  top: 70px;
  }
  .nav-mobile-panel-logo .logo-img {
    display: block;
    height: auto;
    max-height: 2.5rem;
    width: auto;
  }

  .nav-mobile-panel-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
  }
  .nav-mobile-panel-menu a {
    color: var(--_bioventa---white, #eef9fe);
    font-family: var(--_bioventa---f-body);
    font-size: 1.25rem;
    text-decoration: none;
    padding: 0.5rem 0;
	  text-transform: uppercase;
  }
  .nav-mobile-panel-menu a:hover,
  .nav-mobile-panel-menu a.w--current {
    color: var(--_bioventa---green-light, #50eb87);
  }
.nav-mobile-panel-menu	.nav-btn {
    background: none;
    font-family: var(--_bioventa---f-title);
    margin-left: 0;
    padding: 6px 0px;
    font-size: 1.25rem;
    font-weight: 400;
    text-decoration: none;
    display: block;
	}
}

@media screen and (max-width: 767px) {
  .clients-carousel-item {
    width: 33vw !important;
    min-width: 100px !important;
    max-width: none !important; 
  }
  .content-quote .initials {
    margin-top: -180px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {

}

/* Clients carousel */
.clients-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.clients-carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.clients-carousel-track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.35s ease;
}
/* Max 6 zichtbaar op groot scherm, minder op klein (1 item = 1 stap) */
.clients-carousel-item {
  flex: 0 0 auto;
  width: min(200px, 16.666vw);
  min-width: 100px;
  max-width: 200px;
  box-sizing: border-box;
  padding: 0.5rem;
}
.clients-carousel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 80px;
}
.clients-carousel-logo {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.clients-carousel-name {
  font-size: 0.9rem;
  text-align: center;
}
.clients-carousel-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: rgba(0,0,0,0.08);
  color: var(--text);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.clients-carousel-arrow:hover {
  background: rgba(0,0,0,0.12);
}
.clients-carousel-arrow svg {
  display: block;
}

/* Quote / testimonial carousel */
.quote-carousel-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.quote-carousel-wrap .quote-carousel-viewport {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.quote-carousel-wrap .quote-carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}
.quote-carousel-wrap .content-quote.quote-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote-carousel-wrap .quote-carousel-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: rgba(0,0,0,0.08);
  color: var(--text);
  cursor: pointer;
  border-radius: 50%; 
  transition: background 0.2s ease, color 0.2s ease;
}
.quote-carousel-wrap .quote-carousel-arrow:hover {
  background: rgba(0,0,0,0.12);
}
.quote-carousel-wrap .quote-carousel-arrow svg {
  display: block;
}
.quote-carousel-dots {
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
	margin-bottom: 25px;
}
.quote-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s ease;
}
.quote-carousel-dot:hover {
  background: rgba(0,0,0,0.35);
}
.quote-carousel-dot-active {
  background: var(--text);
}

/* Quote carousel: onder 1200px kolomlayout zodat inhoud niet overflowt */
@media screen and (max-width: 1200px) {
  .quote-carousel-wrap .content-quote.quote-slide {
    flex-direction: column;
    max-width: 100%;
    text-align: left;
  }
  .quote-carousel-wrap .content-quote .quote-text,
  .quote-carousel-wrap .content-quote .quote-p {
    min-width: 0;
    max-width: 100%;
    padding-left: 0;
  }
  .quote-carousel-wrap .content-quote .quote-p {
    text-indent: 70px;
  }
  .quote-carousel-wrap .content-quote .initials,
  .quote-carousel-wrap .content-quote .quote-img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-top: 0;
    margin-bottom: 1rem;
  }
	.quote-carousel-track {
		width: 100% !important;
	}
	.quote-icon {
  inset: 27px auto auto 0px !important; 

}
}

/* Initialen in rondje (vervanging profielfoto) */
.initials {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--_bioventa---f-body); 
  font-size: 2rem;
  font-weight: 700;
  color: var(--_bioventa---dark-green);
  background-color: var(--_bioventa---green);
}
.content-quote .initials {
  margin-top: -100px;
}

/* FAQ accordion */
.content-faq .faq-item-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.content-faq .faq-item-open .faq-item-text {
  max-height: 80vh;
  opacity: 1;
}
.content-faq .faq-item-head {
  cursor: pointer;
  user-select: none;
}
.content-faq .faq-item .code-embed-2 {
  display: inline-flex;
  transition: transform 0.35s ease;
  transform: rotate(-180deg);
}
.content-faq .faq-item-open .code-embed-2 {
  transform: rotate(0deg);
} 