/*--------------------------------------------------------------
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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
  --main-text: #131718;
  --main-color: #e30613;
  --box-shadow: 0px 18px 28px 0px rgba(62,45,45,.3)
}

body {
  font-family: 'Fira Sans';
  font-weight: 400;
  color: var(--main-text);
}

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

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

.btn {
    background: var(--main-color);
    border: none;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    padding: 10px 50px 10px 25px;
    position: relative;
    transition: all .3s;
    font-size: 18px;
}

.btn:after {
    background: #fff;
    border-radius: 50%;
    color: var(--main-color);
    content: "\f061";
    display: grid;
    font-family: "Font Awesome 7 Pro";
    font-size: 16px;
    height: 32px;
    place-content: center;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px
}

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

.btn i {
    margin-left: 8px
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section {
  padding: 80px 0;
}

.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;
}

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

.form-control {
  padding: 15px 12px;
}

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

.password-input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}


/*--------------------------------------------------------------
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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: var(--box-shadow);
  z-index: 9999;
}

header .top {
  background: #fff0f6;
  padding: 8px 0;
}

header  .top .wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

header .top a {
  color: var(--main-text);
  font-size: 15px;
}

header .dropdown.language button {
  background: none;
  outline: none;
  border: none;
  color: var(--main-text);
  font-size: 15x;
}

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

header .dropdown.language .dropdown-menu {
  border-color: var(--main-color);
}

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

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

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

header nav .logo {
  width: 200px;
}

header nav .menu {
  display: flex;
  padding: 0 20px;
}

header nav .menu li a {
  padding: 15px;
  color: var(--main);
  font-weight: 600;
  white-space: nowrap;
  display: block;
}

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

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

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

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

header  nav .menu li.dropdown .drop-menu {
  position: absolute;
  left: -15px;
  top: 50px;
  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;
}

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;
}

header .search input {
  border-right: none;
}

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

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;
}

/* ✅ Cart in topbar (naast taalkeuze) */
.header-cart.top-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-cart.top-cart .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--main-text);
}

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

.header-cart.top-cart .cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 2px 5px 0px 5px;
  background: var(--main-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-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;
}

/* ✅ Mobile fallback: op touch geen hover-dropdown (klik gaat gewoon naar cart) */
@media (max-width: 992px) {
  .header-cart.top-cart .mini-cart {
    display: none !important;
  }
}

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



/*------------------------------
4.3 Footer 
------------------------------*/
footer {
  background: var(--main-text);
  color: #fff;
  padding: 70px 0;
}

footer .logo {
  max-width: 80%;
  margin-bottom: 12px;
}

footer h4 {
  font-size: 20px;
}

footer li {
  padding: 5px 0;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

footer a i {
  color: #ff79b1;
  margin-right: 8px;
}

footer .tel,
footer .mail {
  padding: 5px 0;
}

footer .social-links {
  margin-top: 15px;
}

footer .social-links i {
  font-size: 20px;
}

footer .copyright {
  text-align: center;
  margin-top: 20px;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#account {
  display: grid;
  place-items: center;
  min-height: 100vh;
  background-image:  linear-gradient(rgba(255, 73, 73, 0.4), rgba(255, 73, 73, 0.4)), url('../images/login-bg.jpg');  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

#account .logo-wrapper {
  width: 300px;
  margin: 0 auto 25px;
  text-align: center;
}

#account .wrapper {
  max-width: 750px;
  min-width: 750px;
  width: 100%;
  padding: 50px;
  background: #fff;
  margin: 0 auto;
}

#account .title-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

#account .title-wrapper img {
  width: 35px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(74%) saturate(5830%) hue-rotate(350deg) brightness(86%) contrast(108%);
}

#account h1 {
  margin-bottom: 0;
}

#account form .form-control,
#account form label {
  color: var(--main-text);
  font-size: 18px;
}

#account form .form-control {
  border: 1px solid #a3a3a3;
}

#account form .form-floating:not(:last-of-type) {
  margin-bottom: 15px;
}

.form-floating>.form-control-plaintext~label, 
.form-floating>.form-control:focus~label, 
.form-floating>.form-control:not(:placeholder-shown)~label, 
.form-floating>.form-select~label {
  color: var(--main-color);
  transform: scale(.85) translateY(-1.5rem) translateX(4px);
  font-weight: 700;
}

.form-floating>.form-control-plaintext:focus, 
.form-floating>.form-control-plaintext:not(:placeholder-shown), 
.form-floating>.form-control:focus, 
.form-floating>.form-control:not(:placeholder-shown) {
  padding: 23px 15px 15px 15px;
}

.form-check .form-check-input[type=checkbox] {
  border: 1px solid var(--main-text);
  border-radius: 0;
  cursor: pointer;
}

.form-check .form-check-input[type=checkbox]:focus {
  box-shadow: none;
}

.form-check .form-check-input:checked[type=checkbox] {
  background-image: none;
  background-color: var(--main-color);
}

.form-check .form-check-input:checked[type=checkbox] ~ label {
  font-weight: 700;
}

.form-check label {
  color: var(--main-color);
  cursor: pointer;
}


#account form .form-control:focus {
  border: 1px solid var(--main-color)
}

#account form label span {
  color: var(--main-color);
}

#account form .btn {
  margin-top: 20px;
  margin-bottom: 20px;
}

#slider {
  padding: 0;
  position: relative;
  height: calc(100vh - 126px);
}

#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: 45px;
  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;
}


/*--------------------------------------------------------------
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 {
  padding: 30px 0;
}

#breadcrumbs ul {
  display: flex;
}

#breadcrumbs ul li {
  position: relative;
  padding-right: 30px;
  font-size: 14px;
}

#breadcrumbs ul li:not(:last-child):after {
  content: "\f054";
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  right: 10px;
  top: 2px;
  position: absolute;
  font-size: 12px;
}

.content {
  padding: 50px 0;
}

#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;
}

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

.swiper-button-next,
.swiper-button-prev {
  background: var(--main-color);
  color: #fff;
  height: 45px;
  width: 45px;
  font-size: 22px;
  display: grid;
  place-content: center;
}

.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 .row .col-12:not(:last-of-type) {
  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;
}

.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: "\f00c";
  font-family: 'Font Awesome 7 Pro';
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  color: var(--main-color);
  left: 0;
  top: 0;
}

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

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

.form-checkboxes {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkboxes input {
  margin-top: 5px;
}

/*--------------------------------------------------------------
9.0 Custom pages
--------------------------------------------------------------*/
#account-portal .logo-wrapper {
  width: 180px;
  text-align: center;
}

#account-portal .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

#account-portal h1 {
  font-size: 23px;
  margin: 0 !important;
}

#account-portal .top .menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

#account-portal .top .menu a {
  color: var(--main-text);
}

#account-portal .top .menu a.active {
  color: var(--main-color);
  font-weight: 600;
}

#account-portal .iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.6;
}

#account-portal .menu-toggle {
  display: none;
}

/*------------------------------
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 .categories h4 {
  margin-bottom: 15px;
}
#products .categories ul li > ul {
  display: none;
  margin-left: 20px;
}

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

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

#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 .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:not(:last-child) {
  margin-bottom: 24px;
}

.product {
  box-shadow: var(--box-shadow);
  background: #fff;
}

.product a:hover {
  opacity: 1;
}

.product .title {
  padding: 15px;
  font-weight: 500;
  font-size: 20px;
  color: var(--main-text);
}

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

.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;
}

.product-gallery{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: stretch;
}

.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;
}

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

.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: inline-flex;
    align-items: center;
    gap: 10px;
}

/* quantity */
.quantity-stepper {
    display: inline-flex;
    align-items: stretch;
}

.qty-btn,
.qty-input {
    height: var(--action-height);
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ced4da;
    background: #f8f9fa;
    font-size: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* quantity input */
.qty-input {
    width: 50px;
    height: 35px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ced4da;
    border-left: 0;
    border-right: 0;
}

/* 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);
}

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

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

/*--------------------------------------------------------------
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: 100px; /* 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-header {
  background: #f3f3f3;
  border-bottom: none;
}

/*--------------------------------------------------------------
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: 1200px) { 
	
}

/*------------------------------
10.2 Portrait tablet to landscape and desktop
------------------------------*/
@media (min-width: 768px) and (max-width: 979px) { 
	
}

/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
  section {
    padding: 50px 0;
  }

  #account .wrapper {
    padding: 50px 20px;
    min-width: unset;
  }

  #account .title-wrapper img {
    width: 27px;
  }

  #account form .form-control, #account form label {
    font-size: 16px;
  }
  #account-portal {
    padding: 20px 0 !important;
  }
  #account-portal .top {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 20px;
  }
  #account-portal .logo-wrapper {
    width: 150px
  }
  #account-portal .top h1 {
    margin-bottom: 0 !important; 
    font-size: 20px;
  }
  #account-portal .iframe iframe {
    height: 500px; /* Your requested override */
    aspect-ratio: unset;
  }
  #account-portal .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: absolute;
    top: 4px;
    right: 0;
  }
  .menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--main-text);
    transition: all 0.3s ease;
  }
  #account-portal .top .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    gap: 25px;
    transform: translateX(100%); 
    transition: transform 0.4s ease-in-out;
  }
  #account-portal .top .menu.active {
    transform: translateX(0);
  }
  #account-portal .top .menu a {
    font-size: 1.25rem;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  header {
    padding: 25px 0;
  }
  header.open {
    height: 100vh;
    overflow: auto;
  }
  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;
  }

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

  header nav .logo {
    width: 170px;
    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 .language,
  .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-mobile-tools .dropdown-toggle::after,
  .header-mobile-tools .account-toggle::after {
    display: none !important;
  }

  .header-mobile-tools .language i,
  .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;
  }

  .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;
  }

  /* hamburger */
  header .mobile-menu-toggle {
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    top: auto;
    right: auto;
  }

  header .mobile-menu-toggle span {
    display: block;
    position: relative;
    height: 4px;
    width: 100%;
    background: var(--main-text);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    top: auto;
    transform: none;
    transition: .25s ease-in-out;
  }

  header .mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    top: 0;
    left: 0;
  }

  header .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    width: 0%;
  }

  header .mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    top: 0;
    left: 0;
  }

  /* 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 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);
  }

  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;
  }

  #products .cat-mob-btn {
    margin-bottom: 20px;
  }
}

@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;
}