/*--------------------------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------------------------
0.0 Resets
1.0 Typography
2.0 Basic
3.0 Forms
4.0 Basic layout
	4.1 Header
	4.2 Content
	4.3 Footer
5.0 Navigation
	5.1 Top Navigation
	5.2 Main Navigation
	5.3 Social Navigation
	5.4 Footer Navigation
	etc.
6.0 Homepage
7.0 Overview page
8.0 Article page
9.0 Custom pages
	9.1 Custom page X
	9.2 Custom page Y
	9.3 Custom page Z
	etc.
10.0 Media Queries
	10.1 Large desktop
	10.2 Portrait tablet to landscape and desktop
	10.3 Landscape phone to portrait tablet
	10.4 Landscape phones and down
--------------------------------------------------------------*/
@import url('all.min.css');

/*--------------------------------------------------------------
0.0 Resets
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/
@font-face {
  font-family: 'Jockey One';
  src: url(../webfonts/JockeyOne-Regular.woff2);
  font-weight: 700;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(../webfonts/HelveticaNeue-Regular.woff2);
  font-weight: 400;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url(../webfonts/HelveticaNeue-Bold.woff2);
  font-weight: 700;
}

/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
  --main-text: #313334;
  --main-color: #1EA8C9;
  --box-shadow: 0px 2px 80px rgb(124 0 52 / 10%);
  --action-height: 35px;
}

html {
  overflow-x: clip;
}

body {
  font-family: 'Helvetica Neue';
  font-weight: 400;
  color: var(--main-text);
  --header-height: 110px;
  overflow-x: clip;
  position: relative;
}

body::before {
  content: "";
  display: block;
  visibility: hidden;
}

body:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150vh;
  background: linear-gradient(180deg,rgba(30, 168, 201, .2) 0%, rgba(30, 168, 201, 0) 100%);
  top: 0;
  left: 0;
  z-index: -2;
}

.body-bg {
  position: absolute;
  width: calc(100% + 6%);
  top: 0;
  left: -3%;
  z-index: -1;
  height: 690px;
  object-fit: cover;
  object-position: top;
  border-radius: 0 0 1000px 1500px;
}

a {
  text-decoration: none;
  color: var(--main-color);
  display: inline-block;
  transition: all .3s;
}

a:hover {
  color: var(--main-color);
}

.btn {
  color: #fff;
  padding: 16px 34px 16px 22px;
  border-radius: 0 0 40px 0;
  background: #789B29;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  text-decoration: none !important;
}

.btn:hover {
  background: #6b8b21;
  color: #fff;
  opacity: 1;
}

.btn:after {
  content: "\f061";
  font-family: 'Font Awesome 7 Pro';
  font-size: 17px;
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: 'Jockey One';
}

h1, h2 {
  color: Var(--main-color);
  font-size: 32px;
  padding-bottom: 20px;
  width: fit-content;
  margin-bottom: 30px;
  position: relative;
}

h1:after,
h2:after {
  content: "";
  height: 2px;
  background: var(--main-color);
  width: calc(100% + 25px);
  bottom: 0;
  left: 0;
  position: absolute;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  padding-bottom: 30px;
}

.section-title p {
  margin-bottom: 0;
}

.form-control {
  border-radius: 0;
}

.form-control:focus {
  color: var(--main-text);
  border-color: var(--main-color);
  box-shadow: none;
}

.form-control::placeholder {
  color: #4B4B4B;
  opacity: .5;
}

/*--------------------------------------------------------------
3.0 Forms
--------------------------------------------------------------*/
label {
  font-size: 15px;
  margin-bottom: 4px;
}

.form-control, .form-select {
  padding: 23px 23px 18px 23px;
  border-radius: 10px;
  border: 1px solid #D1D1D1;
}

.input-info-icon {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-47%);
    cursor: pointer;
    font-size: 15px;
    z-index: 5;
}

.form-checkboxes,
.form-radios {
  display: block;
}

.form-checkboxes .checkbox-item,
.form-radios .radio-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkboxes .checkbox-item:not(:last-child),
.form-radios .radio-item:not(:last-child) {
  margin-bottom: 10px;
}

.form-checkboxes .form-check-input,
.form-radios .form-check-input {
  margin-top: 4px;
  flex: 0 0 auto;
}

.form-checkboxes .option,
.form-radios .option {
  margin: 3px 0 0 0;
  font-size: 15px;
  line-height: 1.4;
}

.form-checkboxes .description,
.form-radios .description {
  margin-top: 8px;
  font-size: 14px;
  color: #6c757d;
}

.form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.form-checkboxes .invalid-feedback,
.form-radios .invalid-feedback {
  margin-top: 8px;
}

.form-checkboxes.is-invalid .invalid-feedback,
.form-radios.is-invalid .invalid-feedback {
  display: block;
}

.form-checkboxes.is-invalid .form-check-input,
.form-radios.is-invalid .form-check-input {
  border-color: #dc3545;
}

.form-required {
  color: var(--main-color);
  margin-left: 4px;
  font-weight: 700;
}

/*--------------------------------------------------------------
4.0 Basic layout
--------------------------------------------------------------*/

/* Basis lay-out, toepasbaar op alle pagina's. Uitzonderingen in bijv. content komen later in het document. */


/*------------------------------
4.1 Header
------------------------------*/
header {
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  box-shadow: 0px 6px 10px 5px rgba(10, 70, 77, 0.15);
  animation: headerFadeIn 0.25s ease forwards;
  padding-bottom: 10px;
  background: #fff;
}

header .wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}

header .logo {
  width: 260px;
}

header .logo.color {
  display: none;
}

header.is-sticky .logo.color {
  display: block;
  width: 150px;
}

header.is-sticky .logo.white {
  display: none;
}

header .top {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
}

header .top a {
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
}

header.is-sticky .top a {
  color: var(--main-text);
}

header .top a.tel i,
header .top a.mail i {
  font-size: 18px;
  display: grid;
  place-content: center;
  background: var(--main-blue);
  color: #fff;
  border-radius: 50%;
}

header.is-sticky .top a.tel i,
header.is-sticky .top a.mail i {
  color: var(--main-text);
}

header .dropdown.language button {
  background: none;
  outline: none;
  border: none;
  color: #fff;
  font-size: 15x;
    padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid #fff;
}


header .dropdown.language .far.fa-chevron-down.arrow-down{
  margin-left: 5px;

}

header.is-sticky .dropdown.language button {
  color: var(--main-text);
  border: 1px solid var(--main-text);
}

header .dropdown.language button:after {
  margin-left: 0;
}

header .dropdown.language .dropdown-menu {
  border-color: #fff;
}

header .dropdown.language .dropdown-item {
  color: var(--main-text);
}

header .dropdown.language .dropdown-item:hover {
  background: rgba(25, 108, 232, 0.3);
  opacity: 1;
}

header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 35px 0;
}

header.is-sticky nav {
  padding: 0;
}

header nav .menu {
    display: flex;
    gap: 30px;

}

header nav .menu li a {
    padding: 15px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    display: block;
    font-size: 23px;
    font-family: 'Jockey One';

}

header nav .menu li a:last-of-type {
  padding-right: 0;
}

header nav .menu li:nth-child(2) a {
  position: relative;
}

header nav .menu > li:nth-child(2) > a:after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 7.5px;
  width: calc(100% + 0px);
  height: 3px;
  background-color: var(--main-color);
}

header.is-sticky nav .menu li a {
  color: var(--main-text);
}

header nav .menu li a:hover {
  color: var(--main-color);
}

header nav .menu li.dropdown a {
  padding-right: 5px;
}

header  nav .menu li.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

header nav .menu li.dropdown .arrow-down {
  color: #fff;
}

header.is-sticky nav .menu li.dropdown .arrow-down {
  color: var(--main-text);
}

header  nav .menu li.dropdown .drop-menu {
    position: absolute;
    left: -10px;
    top: 70px;
    background: #fff;
    box-shadow: var(--box-shadow);
    min-width: 300px;
    padding: 25px;
    display: none;

}

header  nav .menu li.dropdown .drop-menu a {
  padding: 10px 0;
  border-bottom: 1px solid rgb(228, 228, 228);
  font-weight: 400;
  color: var(--main-text);
  font-family: 'Helvetica Neue';
  font-size: 18px
}

header  nav .menu li.dropdown .drop-menu a:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

header  nav .menu li.dropdown.active > .drop-menu {
  display: block;
  animation-name: dropAnimIn;
	animation-duration: .5s;
}

@keyframes dropAnimIn {
	0%   {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}

header .search .input-group {
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid #fff;
}

header.is-sticky .search .input-group {
  border: 1px solid var(--main-text);
}

header .search .input-group i {
    font-size: 16px;
    color: #fff;

}

header.is-sticky .search .input-group i {
  color: var(--main-text);
}

header .search input {
  border-right: none;
  background: none !important;
  color: #fff;
  padding: 0;
  border: none;
}

header .search input {
  border-right: none;
  background: none;
  color: #fff !important;
  padding: 0;
  border: none;
}

header.is-sticky .search input {
  color: var(--main-text) !important;
}

header .search input::placeholder {
  color: #fff;
}

header.is-sticky .search input::placeholder {
  color: var(--main-text);
}

header .search #search-button {
  background: var(--main-color);
  color: #fff;
  border-radius: 0;
  padding: 0 20px;
  border: none;
}

header.is-sticky .search #search-button {
  color: var(--main-text);
}

header .mobile-menu-toggle {
  display: none;
}

.header-account {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.account-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-toggle::after {
  display: none !important;
}

.header-mobile-tools {
  display: none;
}

.mob-cart .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-cart.top-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.header-cart.top-cart .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

header.is-sticky .header-cart.top-cart .cart-link {
  color: var(--main-text);
}

.header-cart.top-cart .cart-link:hover {
  opacity: 0.7;
}

.header-cart .cart-icon {
  width: 30px;
}

header.is-sticky .header-cart .cart-icon {
  filter: brightness(0) saturate(100%) invert(19%) sepia(1%) saturate(2320%) hue-rotate(157deg) brightness(89%) contrast(91%);
}


.header-cart.top-cart .cart-badge {
  position: absolute;
  top: -10px;
  right: -15px;
  width: 26px;
  height: 26px;
  background: var(--main-color);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-content: center;
}

/* mini cart dropdown */
.header-cart.top-cart .mini-cart {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: #fff;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0,0,0,.08);
  z-index: 99999;
}

/* ✅ hover-bridge: voorkomt dat dropdown sluit als je muis van icoon naar dropdown gaat */
.header-cart.top-cart .mini-cart::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.header-cart.top-cart .mini-cart-inner {
  padding: 15px;
}

.header-cart.top-cart .mini-cart-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.header-cart.top-cart .mini-cart-items {
  max-height: 206px;
  overflow-y: auto;
  padding-right: 5px;
}

.header-cart.top-cart .mini-cart-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.header-cart.top-cart .mini-cart-item:last-of-type {
    border-bottom: none;
}

.header-cart.top-cart .mini-cart-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.08);
}

.header-cart.top-cart .mini-cart-thumb.placeholder {
  background: #f3f3f3;
}

.header-cart.top-cart .mini-cart-item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.header-cart.top-cart .mini-cart-totals {
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  margin-bottom: 12px;
}

.header-cart.top-cart .mini-cart-actions .btn {
  color: #FFF;
  padding: 10px 15px;
}

/*------------------------------
4.2 Content
------------------------------*/



/*------------------------------
4.3 Footer
------------------------------*/
.footer-top {
  padding: 90px 0 150px;
  background-image: url("../images/footer-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  color: #fff;
}

.footer-top .intro {
  text-align: center;
  margin-bottom: 70px;
}

.footer-top h2,
.footer-top .btn {
  margin: 0 auto;
}

.footer-top h2 {
  color: #fff;
  border-color: #fff;
}

.footer-top h2:after {
  width: 65%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

.footer-top p {
  max-width: 800px;
  margin: 30px auto;
}

.footer-top .row .col-xxl-3 {
  margin-bottom: 24px;
}

.footer-top .usp {
  border: 1px solid #fff;
  border-radius: 0 0 0 40px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-top .usp .title {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Jockey One';
  font-size: 22px;
}

.footer-top .usp .title .icon {
  height: 70px;
  width: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: grid;
  place-content: center;
}

.footer-top .usp .title .icon img {
  height: 45px;
  max-width: 45px;
}

.footer-top .usp p {
  margin-bottom: 0;
}

footer {
  background: var(--main-text);
  background: #000;
  padding: 50px 0 0;
}

footer .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 90px;
}

footer .logo {
  width: 240px;
}

footer,
footer a {
  color: #fff;
}

footer h4 {
  font-size: 18px;
}

footer .menu a {
  margin-bottom: 8px;
  font-size: 14px;
}

footer .menu.footer a {
  font-size: 18px;
  font-family: 'Jockey One';
}

footer .contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

footer .contact-link .title {
  font-family: 'Jockey One';
  font-size: 18px;
}

footer .contact-link i {
  font-size: 24px;
}

footer .menu.bottom {
  padding: 30px 0;
  border-top: 2px solid #fff;
}

footer .menu.bottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

footer .menu.bottom ul a {
  font-size: 14px;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#slider {
  padding: 0;
  position: relative;
}

#slider .swiper-wrapper {
  padding: 0;
}

#slider .img {
  height: 100%;
  position: relative;
}

#slider .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

#slider img {
  height: 100%;
  object-fit: cover;
}

#slider .content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

#slider p {
  font-size: 20px;
  margin-bottom: 35px;
}

#slider .swiper-button-next {
  bottom: 0;
  top: unset;
}

#slider .swiper-button-prev {
  bottom: 0;
  top: unset;
  right: 45px;
  left: unset;
}

#slider .swiper-pagination {
  bottom: 1.5% !important;
}

#slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

#related .row {
  --bs-gutter-y: 1.5rem;
}

#related a {
  position: relative;
}

#related .img {
  overflow: hidden;
}

#related a:hover {
  opacity: 1;
}

#related .img img {
  transition: all .5s ease-out;
}

#related a:hover img {
  scale: 1.1;
}

#related .title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 50px 15px 15px 15px;
  text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0.0) 100%);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

#usps {
  text-align: center;
}

#usps .top {
  margin-bottom: 60px;
}

#usps .usp {
  box-shadow: var(--box-shadow);
  padding: 0 25px 25px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#usps .usp i {
  height: 70px;
  width: 70px;
  background: var(--main-color);
  color: #fff;
  display: grid;
  place-content: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 35px;
  transform: translateY(-35px);
}

#usps .usp h5 {
  margin-top: -15px;
}

#usps .usp .btn {
  margin-top: auto;
  align-self: center;
}

#banner {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0;
  min-height: 300px;
  text-align: center;
}

#banner img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#banner .text {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  padding: 80px 0;
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .4)
}

#banner .text h2 {
  margin-bottom: 0;
}

#home-intro {
  padding: 80px 0 10px;
  background: none;
  text-align: center;
  color: #fff;
}

#home-intro h1 {
  color: #fff;
  padding: 0;
  margin: 0 auto 30px;
  border: none;
  font-size: 70px;
}

#home-intro h1:after {
  display: none;
}

#home-intro p {
  font-size: 25px;
  max-width: 600px;
  margin: 0 auto;
}

#home-brands {
  background: none;
  padding-bottom: 0;
  padding-top: 60px;
}

#home-brands .wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
}

#home-brands .swiper {
  flex: 1;
}

#home-brands .brand {
  display: flex;
  background-color: #fff;
  gap: 25px;
  padding: 15px 65px 0 18px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 0;
  border-top: 9px solid #000;
  background-image: url("../images/brand-bg.jpg");
  background-size: 100% 50px;
  background-repeat: no-repeat;
  background-position: center bottom;
  box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.3);
}

#home-brands .brand .logo {
  height: 60px;
  max-width: 50%;
  object-fit: contain;
}

#home-brands .brand .img {
  height: 120px;
  width: auto;
}

#home-brands .arrow {
  height: 88px;
  width: 88px;
  background: #000;
  color: #fff;
  font-size: 17px;
  border-radius: 50%;
  display: flex;
  padding: 25px;
  position: absolute;
  right: -25px;
  bottom: -25px;
  z-index: 3;
}

#home-brands .arrows {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  gap: 14px;
}

#home-privatelabel {
	margin-top: -30px;
  background: none;
  padding-top: 0;
}

#home-privatelabel .wrapper {
  display: flex;
  gap: 35px;
  align-items: center;
}

#home-privatelabel .label {
  background: #789B29;
  border-radius: 10px;
  padding: 14px 50px 14px 17px;
  color: #fff;
  font-family: 'Jockey One';
  font-size: 20px;
  rotate: -10deg;
  position: relative;
  clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0 100%, 0 0);
}

#home-privatelabel .label:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  height: 12px;
  width: 12px;
  background: #eef9fb;
  border-radius: 4px;
}

#home-privatelabel .text {
  color: #789B29;
}

#home-privatelabel .text p {
  max-width: 320px;
  margin-bottom: 0;
}

#home-sectors {
  background: none;
}

#home-sectors h2 {
  text-align: center;
  margin: 0 auto 40px;
}

#home-sectors h2:after {
  width: 65%;
  left: 50%;
  transform: translateX(-50%);
}

#home-sectors .img {
  position: relative;
}

#home-sectors .row .col-xxl-3:not(:last-of-type) {
  margin-bottom: 24px;
}

#home-sectors .sector .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg,rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 1;
}

#home-sectors .sector .icon {
  height: 80px;
  width: 80px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: -160px 24px 25px;
}

#home-sectors .sector .icon img {
  height: 45px;
}

#home-sectors .sector .title {
  width: calc(100% - 48px);
  margin: 0 auto;
  background: var(--main-color);
  position: relative;
  z-index: 2;
  padding: 30px 70px 30px 20px;
  font-family: 'Jockey One';
  color: #fff;
  font-size: 19px;
  overflow: hidden;
  border-radius: 0 0 30px 0;
  min-height: 125px;
  box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.3);
}

#home-sectors .sector .title .arrow {
  height: 88px;
  width: 88px;
  background: #fff;
  color: var(--main-color);
  font-size: 17px;
  border-radius: 50%;
  display: flex;
  padding: 25px;
  position: absolute;
  right: -25px;
  bottom: -25px;
  z-index: 3;
}

#home-sectors .row .col-xxl-3:nth-of-type(2) .title {
  background: #789B29;
}

#home-sectors .row .col-xxl-3:nth-of-type(2) .title .arrow{
  color: #789B29;
}

#home-sectors .row .col-xxl-3:nth-of-type(3) .title {
  background: #CD2C33;
}

#home-sectors .row .col-xxl-3:nth-of-type(3) .title .arrow{
  color: #CD2C33;
}

#home-sectors .row .col-xxl-3:nth-of-type(4) .title {
  background: #ED9215;
}

#home-sectors .row .col-xxl-3:nth-of-type(4) .title .arrow{
  color: #ED9215;
}

#product-highlights .swiper-slide {
  height: auto;
}

#product-highlights .arrows {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  gap: 14px;
}

/*--------------------------------------------------------------
7.0 Overview
--------------------------------------------------------------*/
#overview article {
  background: #fff;
  box-shadow: var(--box-shadow);
  margin-top: 24px;
}

#overview article .details {
  padding: 25px;
}

#overview article .details h5 {
  color: var(--main-color);
}

#overview article .details .btn {
  margin-top: 25px;
}

/*--------------------------------------------------------------
8.0 Article page
--------------------------------------------------------------*/
#breadcrumbs {
  position: relative;
  top: -15px;
  z-index: 2;
  color: #fff;
  font-family: 'Jockey One';
}

#breadcrumbs ul {
  display: flex;
}

#breadcrumbs ul li {
  position: relative;
  padding-right: 30px;
  color: #fff;
}

#breadcrumbs ul li:not(:last-child):after {
  content: "/";
  font-weight: 400;
  right: 10px;
  top: 2px;
  position: absolute;
  color: rgba(255, 255, 255, .6)
}

#breadcrumbs ul li a {
  color: rgba(255, 255, 255, .6)
}

.article-title {
  background: #fff;
  padding: 50px 0 0;
}

.article-title h1 {
  margin-bottom: 0;
}

.content {
  padding: 50px 0;
}

.content, 
p {
  line-height: 35px;
}

#text-image .row,
#text-video .row,
#text-slider .row {
  align-items: center;
  --bs-gutter-x: 3rem;
}

#text-image .text >*:last-child,
#text-video .text >*:last-child,
#text-slider .text >*:last-child {
  margin-bottom: 0;
}

#text-image.img-right .row,
#text-video.right .row,
#text-slider.right .row {
  flex-direction: row-reverse;
}

#text-image.img-top .row,
#text-image.img-bottom .row,
#text-video.top .row,
#text-video.bottom .row,
#text-slider.top .row,
#text-slider.bottom .row {
  flex-direction: column;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 3rem;
}

#text-image.img-top .col-lg-6,
#text-image.img-bottom .col-lg-6,
#text-video.top .col-lg-6,
#text-video.bottom .col-lg-6,
#text-slider.top .col-lg-6,
#text-slider.bottom .col-lg-6 {
  width: 100%;
}

#text-image.img-bottom .row,
#text-video.bottom .row,
#text-slider.bottom .row {
  flex-direction: column-reverse;
}

#text-image img {
  box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.3);
}

#logo-text .logo {
  margin-bottom: 25px;
}

#logo-text .logo img {
  max-width: 250px;
  height: auto;
  object-fit: contain;
}

#logo-text .text,
#logo-text .text p,
#logo-text .text span,
#logo-text .text h1,
#logo-text .text h2,
#logo-text .text h3,
#logo-text .text h4,
#logo-text .text h5,
#logo-text .text h6 {
  color: var(--main-color);
  font-weight: bold;
  font-size: 32px;
  line-height: 1.3;
}

@media (max-width: 767px) {
  #logo-text .text,
  #logo-text .text p,
  #logo-text .text span,
  #logo-text .text h1,
  #logo-text .text h2,
  #logo-text .text h3,
  #logo-text .text h4,
  #logo-text .text h5,
  #logo-text .text h6 {
    font-size: 24px;
  }
}

.content h2 {
  color: var(--main-text);
  padding-bottom: 0;
  font-size: 25px;
  margin-bottom: 22px;
}

.content h2:after {
  display: none;
}

.swiper-wrapper {
  padding: 25px 0;
}

.swiper-button-next,
.swiper-button-prev {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  height: 50px;
  width: 50px;
  font-size: 22px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  position: relative;
  top: unset;
  transform: unset;
  margin-top: unset;
}

.swiper-button-next:after,
.swiper-button-prev:after,
.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-button-prev {
  left: 0 !important;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: var(--main-color);
  width: 11px;
  height: 11px;
}

#gallery {
  padding-top: 0;
}

#gallery a {
  display: grid;
  place-items: center;
  padding: 35px;
  border-radius: 0 0 20px 0;
  box-shadow: 1px 7px 14px 0px rgba(0,0,0,0.16);
  height: 100%;
  aspect-ratio: 16 / 9;
}

#gallery a img {
  max-height: 55px;
  object-fit: contain;
}

#gallery .row .col-12 {
  margin-bottom: 24px;
}

#carousel .swiper-wrapper,
#carousel .swiper-slide {
  height: fit-content;
}

.content ul,
.content ol {
  margin-bottom: 16px;
}

.content ol {
  padding-left: 0;
}

.content ul li {
  position: relative;
  padding-left: 30px;
  color: var(--main-color);
}
.content ol li {
  list-style: decimal;
  list-style-position: inside;
}

.content ul li:not(:last-child),
.content ol li:not(:last-child) {
  margin-bottom: 5px;
}

.content ul li:after {
  content: "\f061";
  font-family: 'Font Awesome 7 Pro';
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  color: var(--main-color);
  left: 0;
  top: 0;
}

.content a {
  text-decoration: underline;
}

.content p:last-of-type {
  margin-bottom: 0;
}

#cta {
  background: #ffe1ee;
  text-align: center;
}

#cta .btns {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.form-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section form {
  margin-top: 30px;
}

.form-section form label {
  position: relative;
  left: 13px;
  top: 15px;
  margin: 0;
  padding: 0 10px;
  background: #fff;
  font-weight: 500;
  text-shadow:
    0.05px 0 var(--main-text),
    -0.05px 0 var(--main-text);
}

.form-section form .form-check-label,
.form-section form .option,
.form-section form .form-type-radio > label,
.form-section form .form-type-checkbox > label {
  position: static;
  left: auto;
  top: auto;
  margin: 0 0 6px 0;
  padding: 0;
  background: transparent;
  text-shadow: none;
}

.form-section .bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.form-section .bottom .required span{
  color: var(--main-color);
  font-size: 22px;
}

.form-section .contact-details .address {
  font-weight: 700;
  margin-bottom: 35px;
}

.form-section .contact-details .address .title {
  margin-bottom: 8px;
}

.form-section .contact-details .address .wrapper {
  display: flex;
  gap: 12px;
}

.form-section .contact-details .contact {
  margin-bottom: 35px;
}

.form-section .contact-details .contact a {
  color: var(--main-text);
  display: flex;
  gap: 8px;
  align-items: center;
}

.form-section .contact-details .contact a:hover {
  color: var(--main-color);
}

/*--------------------------------------------------------------
9.0 Custom pages
--------------------------------------------------------------*/


/*------------------------------
9.1 Basic
------------------------------*/
#banner.page {
  height: 40vh;
  position: relative;
}

#banner.page .content {
  text-align: center;
}

/*------------------------------
9.2 Search
------------------------------*/
#search-top {
	padding: 70px 0;
	text-align: center;
}

#search-top h1 {
	font-size: 40px;
	font-weight: 700;
}

#search-top h1 span {
	color: var(--main-color);
}

#search-top .search {
	max-width: 750px;
	margin: 30px auto 0;
}

#search-top .search p {
	font-size: 18px;
	margin-bottom: 15px;
}

#search-top .search .form-control {
	background: #F7F7F7;
  border: none;
}

#search-top .search button {
    background: #F7F7F7;
    border: none;
    padding-right: 15px;
    padding-left: 15px;
}

#search-results article {
  background: #fff;
  box-shadow: var(--box-shadow);
  margin-top: 24px;
}

#search-results article .details {
  padding: 25px;
}

#search-results article .details h5 {
  color: var(--main-color);
}

#search-results article .details .btn {
  margin-top: 25px;
}

/*--------------------------------------------------------------
9.3 Error
--------------------------------------------------------------*/
#error {
	min-height: calc(100vh - 185px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(35,35,34,0.35) 100%);
}

#error .wrapper {
	display: flex;
	align-items: center;
}

#error .wrapper > div {
	flex: 0 0 50%;
	width: 50%;
}

#error .content {
	text-align: right;
}

#error .content h1 {
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 14px;
}

#error .content p {
	font-size: 25px;
}

#error .content .cta {
	margin-top: 100px;
	text-align: right;
}

#error .content .cta p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444444;
    max-width: 360px;
    margin-left: auto;
}

#error .img {
	padding-left: 80px;
}

#error .img img {
	max-height: 60vh;
}

/*--------------------------------------------------------------
9.3 Products
--------------------------------------------------------------*/
#products .sort {
  display: flex;
  align-items: center;
  padding: 22px 30px;
  gap: 25px;
  background: rgba(30, 168, 201, .05);
  border-radius: 50px;
  margin-bottom: 40px;
}

#products .sort .title {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-family: 'Jockey One';
  gap: 10px;
  color: var(--main-color);
}

#products .sort .dropdown-toggle {
  padding: 6px 22px;
  background: none;
  border: 1px solid var(--main-color);
  border-radius: 50px;
  font-size: 17px;
  color: var(--main-color);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

#products .sort .dropdown-toggle.has-selection {
  font-weight: 700;
}

#products .sort .dropdown-toggle.has-selection:before {
  content: "\f058";
  font-weight: 700;
  font-family: 'Font Awesome 7 Pro';
  border: none;
  vertical-align: unset;
}

#products .sort .dropdown-toggle:after {
  content: "\f107";
  font-weight: 500;
  font-family: 'Font Awesome 7 Pro';
  border: none;
  vertical-align: unset;
}

#products .sort .dropdown-menu {
  background: #F4FBFD;
  border: none;
  border-radius: 0 0 20px 20px;
  padding: 20px 10px;
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
  min-width: 100%;
}

#products .sort .dropdown-menu .form-check {
  cursor: pointer;
  padding-left: 25px;
}

#products .sort .dropdown-menu li label {
  font-weight: 500;
  color: var(--main-color);
  cursor: pointer;
  margin: 0;
}

#products .sort .dropdown-menu li input {
  font-weight: 500;
  color: var(--main-color);
  border-radius: 50%;
  border: 1px solid var(--main-color);
  cursor: pointer;
  height: 18px;
  width: 18px;
}

#products .sort .dropdown-menu li input:checked,
#products .sort .dropdown-menu li input:focus {
  box-shadow: none;
}

#products .sort .dropdown-menu li input:checked {
  background-color: var(--main-color);
}

#products .sort .dropdown-menu li input:checked ~ label {
  font-weight: 700;
}

#products .col-lg-3 h3 {
  margin-bottom: 24px;
}

#products .categories h4 {
  margin-bottom: 15px;
}

#products .categories > ul > li {
  margin-bottom: 20px;
}

#products .categories ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
}

#products .categories ul li a:before {
  content: "";
  flex: 0 0 18px;
  display: block;
  height: 18px;
  width: 18px;
  border: 1px solid var(--main-text);
  border-radius: 50%;
}

#products .categories ul li a:before {
  content: "";
  flex: 0 0 18px;
  display: block;
  height: 18px;
  width: 18px;
  border: 1px solid var(--main-text);
  border-radius: 50%;
}

#products .categories ul li > ul {
  display: block;
  padding-left: 18px;
  margin-top: 6px;
}

#products .categories ul li.active > a {
  color: var(--main-color);
  font-weight: 700;
}

#products .categories ul li.active > a:before {
  background-color: var(--main-color);
  border-color: var(--main-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

#products .categories ul li.active li.active {
  margin-bottom: 0;
}

#products .categories ul li.active li.active a {
  font-weight: 400;
}

#products .categories ul li.active > ul {
  display: block;
}

#products .categories a {
  color: var(--main-text);
  padding: 3px 0;
}

#products .categories > ul > li > a {
  font-weight: 700;
  color: var(--main-text);
}

#products .categories > ul > li > a:before {
  display: none;
}

#products .filter-section li label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: fit-content;
  margin: 0;
}

#products .filter-section input {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  appearance: none;
  border: 1px solid var(--main-text);
  cursor: pointer;
  position: relative;
  top: -2px;
}

#products .filter-section .form-check-input:checked[type=checkbox] {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

#products .filter-section .form-check-input:checked[type=checkbox] ~ label {
  color: var(--main-color);
  font-weight: 700;
}

#products .alert .btn {
  margin: 0 auto;
}

#products .price-range {
  position: relative;
  height: 44px;
}

#products .price-range .track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e9ecef;
  transform: translateY(-50%);
}

#products .price-range .range-fill {
  position: absolute;
  top: 50%;
  height: 6px;
  border-radius: 999px;
  background: var(--main-color);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

#products .price-range input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 44px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

#products .price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 5px solid var(--main-color);
  cursor: pointer;
}

#products .price-range input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--main-color);
  border: none;
  cursor: pointer;
}

#products .range-min { z-index: 3; }
#products .range-max { z-index: 4; }

#products .products .col-lg-4 {
  margin-bottom: 24px;
}


.product {
  box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.15);
  background: #fff;
  display: flex;
  gap: 20px;
  padding: 15px 15px 50px 15px;
  position: relative;
  border-radius: 0 0 30px 0;
  overflow: hidden;
  height: 100%;
}

#product-highlights .product {
    box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.15);
    background: #fff;
    display: flex;
    gap: 40px;
    padding: 35px 30px 40px 30px;
    position: relative;
    border-radius: 0 0 30px 0;
    overflow: hidden;
    height: 100%;
}

#product-highlights .product img {
  width: 35%;
  object-fit: contain;
}
#product-highlights .product .logo {
  margin-top: -35px;
  width: 35%;
  object-fit: contain;
}

#products .products .row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 2rem;
}

.product a:hover {
  opacity: 1;
}

.product img {
  width: 35%;
  object-fit: contain;
}

.product .details {
  flex: 1;
}

.product .art-nr {
    text-align: right;
    color: #6A6A6A;
    /* margin-bottom: 40px; */
}

#product-highlights .product .art-nr {
    text-align: right;
    color: #6A6A6A;
    margin-bottom: 0px;
}

.product .art-nr .number {
  font-weight: 700;
}

.product .title {
    font-family: 'JOckey One';
    font-size: 24px;
    line-height: 28px;
    color: var(--main-text);
    margin-top: 20px;

}

.product .logo {
.product .logo {
  height: 35px;
  width: auto;
}
}

.product .arrow {
  height: 88px;
  width: 88px;
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  padding: 20px;
  position: absolute;
  right: -35px;
  bottom: -35px;
  z-index: 3;
  transition: all .3s;
}

.product:hover .arrow {
  background: #0586a5;
}

.product a:hover .title {
  color: var(--main-color);
}

#seo-text p:last-of-type {
  margin-bottom: 0;
}

.product .product-image-container {
  position: relative;
}

.product .product-image-container .discount {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--main-color);
  color: white;
  padding: 5px;
}

.product-link .product .product-image-container .variants {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: white;
  color: black;
  padding: 5px;
  display: none;
}

.product-link:hover .product .product-image-container .variants {
  display: block;
}

.product .product-price-container {
  padding: 0 0 15px 15px;
  display: flex;
  align-items: left;
}

.product .product-price-container span {
  margin-right: 10px;
}

#products .products .pagination svg {
  width: 20px;
}

#products .products .pagination nav div:first-child {
  display: none;
}

.nav-pagination {
  margin-top: 40px;
  padding: 0 110px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  z-index: 2;
}

.nav-pagination .amount {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pagination .amount span {
  font-weight: 600;
}

.nav-pagination .amount button {
  background: #fff;
  outline: none;
  border: 1px solid var(--main-color);
  padding: 5px 8px;
}

.nav-pagination .amount .dropdown-menu {
  border-color: var(--main-color);
}

.nav-pagination .amount .dropdown-menu .dropdown-item:hover {
  background: var(--main-color);
}

.nav-pagination .shadow-sm {
  box-shadow: none !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center ;
}

.nav-pagination nav .relative.z-0.inline-flex {
  display: flex;
  box-shadow: none !important;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-pagination svg,
.nav-pagination i {
  font-size: 20px;
}

.nav-pagination > nav > div:first-child,
.nav-pagination p {
  display: none;
}

.nav-pagination [aria-current] {
  font-weight: bold;
  color: var(--main-text);
}

.nav-pagination [aria-current] span {
  font-size: 24px;
  padding: 0 !important;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  color: var(--main-color);
  opacity: 1;
}

.nav-pagination [aria-disabled] {
  display: none;
}

.nav-pagination nav a {
  color: var(--main-color);
  opacity: .3;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  font-size: 24px;
  font-weight: 700;
}

.nav-pagination .border {
  border: none !important;
  padding: 0 !important;
}

.nav-pagination [rel="next"],
.nav-pagination [rel="prev"] {
  color: var(--main-color) !important;
  border: 2px solid var(--main-color) !important;
  border-radius: 50% !important;
  height: 58px;
  width: 58px;
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-pagination {
    padding: 0;
    margin-top: 40px;
  }
}

#products .contact-block {
  position: relative;
  border-radius: 0 0 30px 0;
  overflow: hidden;
  height: 100%;
  padding: 22px;
}

#products .contact-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
}

#products .contact-block img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top right;
}

#products .contact-block .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  color: var(--main-color);
  max-width: 60%;
  padding: 0;
}

#products .contact-block .content h3 {
  font-size: 24px;
}

#products .contact-block .content p {
  line-height: 24px;
  margin-bottom: 14px;
}

#products .contact-block .content .btn {
  padding: 12px 34px 12px 22px;
}

.product-thumbs{
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.product-thumbs_btn{
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  padding: 8px 0;
  line-height: 1;
}

.product-thumbs_viewport{
  overflow: auto;
  min-height: 0;
  padding: 10px;
}

.product-thumbs_viewport{
  scroll-behavior: smooth;
}

.product-thumbs_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumb{
  width: 100%;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  display: block;
}

.product-thumb img{
  width: 100%;
  height: auto;
  display: block;
}

.product-thumb.is-active{
  border-color: #111;
}

.product-main{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
}

.product-main img{
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}

.back-to-overview {
  color: var(--main-text);
  background: #fff;
  padding: 15px 0;
  display: block;
}

.back-to-overview .wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

#product {
  padding-top: 40px;
}

#product .logo {
  max-height: 55px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 30px;
}

#product .art-nr {
  color: #6A6A6A;
  margin-bottom: 18px;
}

#product h1 {
  color: var(--main-text);
  font-size: 25px;
  margin-bottom: 10px;
  padding-bottom: 0;
}

#product h1:after {
  display: none;
}

#product .desc {
  color: var(--main-text);
  font-size: 18px;
  margin-bottom: 15px;
}

#product .art-nr span {
  font-weight: 700;
}

.related-preview:hover {
  border: 5px solid var(--main-color);
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 12px; /* ruimte tussen qty en button */
}

/* wrapper bepaalt de breedte */
.product-actions {
    display: inline-block;
}

/* select volgt exact de breedte van de buttons */
.product-actions .form-select {
    width: 100%;
}

/* spacing onder variant select */
.variant-select-wrapper {
    margin-bottom: 12px;
}

/* action row */
.add-to-cart-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.add-to-cart-row .amount {
  font-size: 15px;
  font-weight: 700;
  color: #6A6A6A;
}

/* quantity */
.quantity-stepper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Chrome, Safari, Edge, Opera */
#shoppingcart .quantity-stepper input::-webkit-outer-spin-button,
#shoppingcart .quantity-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
#shoppingcart .quantity-stepper input[type=number] {
  -moz-appearance: textfield;
}

.qty-btn,
.qty-input {
    height: var(--action-height);
    border: none;
    color: var(--main-color);
}

.qty-input:focus {
    border: 1px solid var(--main-color);
    outline: none;
}

.qty-btn {
    font-size: 20px;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.qty-btn[disabled] {
  color: grey;
}

/* quantity input */
.qty-input {
    width: 74px;
    height: 42px;
    font-weight: 700;
    text-align: center;
    border: 1px solid var(--main-color);
    border-radius: 100px;
    color: var(--main-color);
}

/* buttons */
.add-to-cart-btn,
.btn-favorite {
    height: var(--action-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* favorite button */
.btn-favorite {
    width: var(--action-height);
    padding: 0;
    border: 1px solid #ced4da;
    color: black;
    background: #f8f9fa;
}

.btn-favorite:hover {
  transform: scale(1.05);
}

/* 🔥 pixel-perfect heart centering */
.btn-favorite i {
    display: block;
    font-size: 18px;
    transform: translateY(0.5px);
    margin-left: 0px;
}

/* ⭐ actief favoriet */
.btn-favorite.is-active {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.btn-favorite.is-active i {
  color: #fff;
}

/* active state */
.btn-favorite.is-active {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

/* subtle animation */
.btn-favorite {
  transition: all .2s ease;
}

.btn-favorite:active {
  transform: scale(0.9);
}

/* toast */
.favorite-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--main-color);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 99999;
}

.favorite-toast.show {
  opacity: 1;
  transform: translateY(0);
}

#product .disc {
  font-size: 14px;
  font-style: italic;
  color: #6b6262;
  margin-top: 14px;
}

#product .disc a {
  text-decoration: underline;
}

.accordion-collapse p:last-of-type {
  margin-bottom: 0;
}

.related img.active {
  border: 5px solid var(--main-color);
}

#product .accordion-item {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #fff;;
}

#product .accordion-header button {
  background: #F5F5F5;
  border-radius: 0;
  font-size: 22px;
  padding: 25px;
}

#product .accordion-header button:focus {
  box-shadow: none;
}

#product .accordion-button:not(.collapsed) {
  color: var(--main-text);
}

#product .accordion-body {
  padding: 15px 25px;
}

#product ul.pro-detail-list {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  color: #727272;
}

#product ul.pro-detail-list li {
  margin: 0;
  display: flex;
  width: 100%;
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

#product ul.pro-detail-list li:first-of-type {
  border-top: none;
}

#product ul.pro-detail-list li span:first-child {
  padding-right: 20px;
  width: 220px;
  font-weight: 700;
}

#product ul.pro-detail-list li span {
  width: calc(100% - 220px);
  font-size: 14px;
}

#product .links {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

#product .links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-size: 18px;
}

#product-highlights.product-detail {
  padding-top: 0;
}

/*--------------------------------------------------------------
9.4 Shoppingcart
--------------------------------------------------------------*/

#shoppingcart .product-list{
  margin-bottom: 0;
}

#shoppingcart .product-list img {
  max-width: 100px;
}

#shoppingcart .product-list td {
  vertical-align: top;
}

#shoppingcart .product-list td.image {
  width: 100px;
}

#shoppingcart .product-list td.info {
  width: 50%;
  padding-top: 15px;
}

#shoppingcart .product-list td.edit {
  width: 140px;
}

#shoppingcart .product-list td.edit .text-muted {
  font-size: .8em;
}

#shoppingcart .product-list td.remove {
  width: 25px;
  padding-top: 13px;
}

/* buttons */
/* favorite button */
.btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: black;
  background: none;
}

/* 🔥 pixel-perfect heart centering */
.btn-remove i {
  display: block;
  font-size: 16px;
  margin-left: 0px;
}

#shoppingcart .product-list td.subtotal {
  padding-top: 15px;
}

#shoppingcart .cart-summary-sticky {
  position: sticky;
  top: 300px; /* adjust based on header height */
  background: #f3f3f3;
}

#shoppingcart .cart-summary-sticky .image-wrapper {
  position: relative;
  float:left;
  width: 50px;
  margin-right: 15px;
  border: 1px solid rgba(0,0,0,.08);
}

#shoppingcart .cart-summary-sticky .image-wrapper .qty {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  font-size: 12px;
  padding: 2px;
  font-weight: bold;
  text-align: center;
  background: var(--main-color);
  color: white;
}

#shoppingcart .payment-logo {
  width: auto;
  height: 35px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .08);
}

#shoppingcart .card {
  border: none;
  background: transparent;
}

#shoppingcart .card-header {
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

#shoppingcart .card-header h2 {
  color: #000;
  font-size: 22px;
  padding-bottom: 0;
  margin-bottom: 0;
}

#shoppingcart .card-header h2:after {
  display: none;
}

#shoppingcart .card-body {
  padding-left: 0;
  padding-right: 0;
}

/*--------------------------------------------------------------
9.5 Account
--------------------------------------------------------------*/

.customer-account-nav .list-group-item {
  border-radius: 0;
  border-color: rgba(0,0,0,.08);
  color: var(--main-text);
  font-weight: 500;
}

.customer-account-nav .list-group-item.active {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

/*--------------------------------------------------------------
10.0 Media Queries
--------------------------------------------------------------*/

/*------------------------------
10.1 Large desktop
------------------------------*/
@media (min-width: 1250px) {
  .container {
    max-width: 1250px;
  }
}

@media (min-width: 1450px) {
  .container {
    max-width: 1450px;
  }
}

@media (min-width: 1650px) {
  .container {
    max-width: 1650px;
  }
}

/*------------------------------
10.2 Portrait tablet to landscape and desktop
------------------------------*/
@media (max-width: 1400px) {
  header .logo,
  header.is-sticky .logo {
    width: 180px !important;
  }
  header .search .input-group {
    display: none;
  }
  #home-intro {
    padding: 40px 0;
  }
  #home-intro h1 {
    font-size: 50px;
  }
  #home-intro p {
    font-size: 22px;
  }
}
/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
  h1, h2 {
    font-size: 25px;
    padding-bottom: 12px;
    margin-bottom: 22px;
  }
  section {
    padding: 50px 0;
  }

  header {
    padding: 25px 0;
  }

  header.is-sticky {
    padding: 14px 0;
  }

  header .logo,
  header.is-sticky .logo {
    width:  110px !important;
  }

  header.open .logo {
    display: none !important;
  }

  header.open {
    height: 100vh;
    overflow: auto;
    background: #fff;
  }

  header .top {
    display: none;
  }

  header .container {
    position: relative;
  }

  /* desktop account/cart verbergen op mobiel */
  .header-account:not(.mob-account),
  .header-cart.top-cart:not(.mob-cart) {
    display: none;
  }

  .header-cart.top-cart .mini-cart {
    display: none !important;
  }

  /* nav basis */
  header nav {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
  }

  header nav .logo {
    width: 130px;
    flex: 0 0 auto;
  }

  /* desktop menu en search standaard verborgen */
  header nav .menu,
  header nav form.search {
    display: none;
  }

  /* mobiele tools rechts in één rij */
  .header-mobile-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .header-mobile-tools .header-account,
  .header-mobile-tools .mob-cart,
  .header-mobile-tools .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
  }

  .header-mobile-tools .dropdown-toggle,
  .header-mobile-tools .account-toggle,
  .header-mobile-tools .cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    color: inherit;
    line-height: 1;
    text-decoration: none;
  }

  header .dropdown.language button {
    border: none !important;
    padding: 0 !important;
  }

  .header-mobile-tools .dropdown-toggle::after,
  .header-mobile-tools .account-toggle::after {
    display: none !important;
  }

  .header-mobile-tools .header-account i,
  .header-mobile-tools .mob-cart i {
    font-size: 22px;
    line-height: 1;
  }

  .mobile-lang-toggle {
    width: 22px;
    height: 22px;
  }

  .header-cart.top-cart {
    margin-right: 14px;
  }

  .mob-cart .cart-link {
    position: relative;
    width: 22px;
    height: 22px;
  }

  .mob-cart .cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
  }

  header .mobile-menu-toggle {
    width: 38px;
    height: 28px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: flex;
    top: 0;
    position: absolute;
  }
  header .mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  header.is-sticky .mobile-menu-toggle span,
  header.open .mobile-menu-toggle span {
    background: var(--main-color);
  }
  header .mobile-menu-toggle span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  header .mobile-menu-toggle span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  header .mobile-menu-toggle span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  header .mobile-menu-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -4px;
      left: 6px;
  }
  header .mobile-menu-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  header .mobile-menu-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
      top: 23px;
      left: 6px;
  }

  header.open .header-cart.top-cart i,
  header.open .dropdown.language button {
    color: var(--main-text);
  }

  /* menu opent onder de bovenste rij */
  header.open nav .menu,
  header.open nav form.search {
    display: block;
    width: 100%;
    animation-name: fade;
    animation-duration: .5s;
  }

  @keyframes fade {
    0%   {opacity: 0;}
    100% {opacity: 1;}
  }

  header nav .menu {
    order: 3;
    width: 100%;
    flex-direction: column;
    padding: 16px 0 0 0;
  }

  header nav form.search {
    order: 4;
    width: 100%;
    margin-top: 15px;
  }

  header nav .search .form-outline {
    width: 100%;
  }

  header nav .menu > li a {
    padding: 15px 0;
    width: calc(100% - 60px);
  }

  header.open nav .menu li a {
    color: var(--main-text);
  }

  header nav .menu li.dropdown {
    position: relative;
    justify-content: space-between;
    display: block;
  }

  header nav .menu li.dropdown .arrow-down {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 25px;
    height: 30px;
    width: 30px;
    display: grid;
    place-content: center;
    transition: all .3s;
  }

  header nav .menu li.dropdown.active .arrow-down {
    transform: rotate(180deg);
    color: var(--main-text);
  }

  header nav .menu li.dropdown .drop-menu {
    position: relative;
    left: unset;
    top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .3s;
    display: block;
    padding: 0;
  }

  header nav .menu li.dropdown.active > .drop-menu {
    max-height: 300px;
    animation: none;
    padding: 25px 0;
  }

  header nav .menu li.dropdown .drop-menu a {
    padding: 15px 25px;
  }

  header nav .header-cart .mini-cart {
    width: min(92vw, 360px);
    right: 0;
  }

  #banner .content h2 {
    font-size: 35px;
  }

  .carousel-control-next,
  .carousel-control-prev {
    bottom: 1px;
    transform: unset;
    top: unset;
  }

  .carousel-control-prev {
    right: 50px;
    left: unset;
  }

  #services .row .col-lg-4:not(:last-child) {
    margin-bottom: 24px;
  }

  footer .tel,
  footer .mail {
    display: block;
  }

  footer .footer-links {
    margin-bottom: 24px;
  }

  .content {
    padding: 25px 0;
  }

  #text-image .row,
  #text-video .row,
  #text-slider .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  .swiper-wrapper {
    padding: 20px 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    font-size: 20px;
    height: 35px;
    width: 35px;
  }

  .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }

  #slider {
    height: calc(100vh - 73px);
  }

  #slider p {
    font-size: 17px;
  }

  #slider .swiper-button-prev {
    right: 35px;
  }

  #related .title {
    font-size: 18px;
  }

  #usps .row {
    --bs-gutter-y: 3.5rem;
  }

  #usps .usp i {
    width: 50px;
    height: 50px;
    font-size: 30px;
    transform: translateY(-25px);
  }

  #products .categories {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 73px);
    background: #fff;
    padding: 50px 12px;
    border-top: 1px solid var(--main-text);
    transition: transform .3s;
    transform: translateX(-100%);
  }

  #products .categories.open {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    padding: 50px 12px;
    border-top: 1px solid var(--main-text);
    transition: transform .3s;
    transform: translateX(0);
  }

  #products .categories .close {
    position: absolute;
    top: 25px;
    right: 12px;
    font-size: 20px;
    background: var(--main-color);
    color: #fff;
    display: grid;
    place-content: center;
    height: 30px;
    width: 30px;
  }

  #products .categories > ul {
    height: 100%;
    overflow: auto;
    padding-bottom: 30px;
  }

  #products .categories ul li > ul {
    display: block;
    padding-left: 18px;
    margin-top: 6px;
  }

  #products .cat-mob-btn {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .product .title {
    font-size: 20px;
  }
  #products .products .row {
    --bs-gutter-y: 0;
  }
  #seo-text h2:after {
    width: 100%;
    left: 0;
  }
    #home-intro h1 {
    font-size: 35px;
  }
  #home-intro p {
    font-size: 18px;
  }
  #home-privatelabel .wrapper {
    flex-direction: column;
  }
  #home-brands {
    margin-top: 40px;
  }
  #home-brands .wrapper {
    display: block;
  }
  #home-brands h2 {
    color: #fff;
    margin-bottom: 0;
  }
  #home-brands h2:after {
    background: #fff;
  }
  #home-privatelabel {
    padding-bottom: 0;
  }
  #home-sectors h2 {
    margin: 0 auto 22px;
  }
  #home-sectors .sector .icon {
    height: 55px;
    width: 55px;
  }
  #home-sectors .sector .icon img {
    height: 32px;
    max-width: 32px;
  }
  .footer-top {
    padding: 50px 0;
  }
  footer .wrapper {
    flex-direction: column;
  }
  footer .logo {
    width: 180px;
  }
  footer .contact-link {
    font-size: 18px;
    gap: 12px;
  }
  footer .contact-link i {
    font-size: 20px;
  }
  #products .sort {
    flex-direction: column;
  }
  #products #filter-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  #products .sort .title {
    font-size: 18px;
  }
  #products .sort .dropdown-toggle {
    font-size: 16px;
  }
  #breadcrumbs {
    top: unset;
    background: #fff;
    padding: 15px 0;
  }
  #breadcrumbs ul li {
    color: var(--main-text);
    font-size: 14px;
  }
  #breadcrumbs ul li a {
    color: rgba(0, 0, 0, .6);
  }
  #breadcrumbs ul li:not(:last-child):after {
    color: rgba(0, 0, 0, .6);
  }
  #product .logo {
    max-height: 40px;
  }
  #product h1 {
    font-size: 22px;
  }
  #product .accordion-header button {
    font-size: 20px;
  }
  .form-section .contact-details {
    margin-top: 30px;
  }
  .article-title {
    padding: 20px 0 0;
  }
}

@media (max-width: 767px) {
  #error {
    min-height: unset;
    padding: 50px 0;
  }

  #error .wrapper {
    flex-direction: column;
  }

  #error .wrapper > div {
    flex: 0 0 100%;
    width: 100%;
  }

  #error .content {
    text-align: center;
    order: 2;
    margin-top: 40px;
  }

  #error .content h1 {
    font-size: 40px;
  }

  #error .content p {
    font-size: 20px;
  }

  #error .content .cta {
    margin-top: 40px;
    text-align: center;
  }

  #error .content .cta p {
    max-width: unset;
  }

  #error .img {
    padding-left: 0;
  }
}

/*------------------------------
10.5 Landscape phones and down
------------------------------*/
@media (max-width: 480px) {

}

#hotspots .image-container {
  position: relative;
}

#hotspots .image-container img {
  width: 100%;
  height: 100%;
}

#hotspots .hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hotspots .hotspots .hotspot {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  background-color: rgba(60, 255, 0, 0.877);
  border-radius: 50%;
  cursor: pointer;
}

#hotspots .hotspots .hotspot .content {
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 6px 12px;
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  min-height: 40px;
  width: fit-content;
  max-width: 300px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#hotspots .hotspots .hotspot .content::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-right-color: #f0f0f0;
}

#hotspots .hotspots .hotspot:hover .content {
  opacity: 1;
}
