/** Shopify CDN: Minification failed

Line 1067:0 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:product-upsell-smart (INDEX:68, SCOPED:FALSE) */
.product-upsell-smart {
  width: 100%;
}

.upsell-grid {
  display: grid;
  gap: var(--spacing-4);
}

.upsell-card {
  position: relative;
  background: rgb(var(--background));
  border: 1px solid rgb(var(--border));
  border-radius: var(--rounded);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.upsell-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.upsell-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgb(var(--background));
}

.upsell-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.upsell-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.upsell-card:hover .upsell-card__image {
  transform: scale(1.05);
}

.upsell-info-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FE5000;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}

.upsell-info-btn:hover {
  transform: scale(1.1);
  background: #e44b00;
}

.upsell-card__content {
  padding: var(--spacing-4);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

.upsell-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.upsell-card__title a {
  color: rgb(var(--text));
  text-decoration: none;
  transition: color 0.2s ease;
}

.upsell-card__title a:hover {
  color: #FE5000;
}

.upsell-card__price {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-weight: 600;
}

.upsell-price--compare {
  text-decoration: line-through;
  color: rgb(var(--text-subdued));
  font-size: 0.9rem;
}

.upsell-price--sale {
  color: #FE5000;
  font-size: 1.1rem;
}

.upsell-price--regular {
  color: rgb(var(--text));
  font-size: 1.1rem;
}

.upsell-card__desc {
  color: rgb(var(--text-subdued));
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  min-height: 40px;
}

.upsell-card__actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  margin-top: var(--spacing-2);
}

@media screen and (min-width: 700px) {
  .upsell-card__actions {
    flex-direction: row;
  }
  
  .upsell-card__actions .btn {
    flex: 1;
  }
}

.upsell-add-to-cart.is-adding .btn-text::after {
  content: '...';
}

.upsell-add-to-cart.is-added .btn-text {
  content: '✓ Added!';
}

/* Info Panel Overlay */
.upsell-info-panel {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  z-index: 10;
  animation: slideUpFade 0.3s ease forwards;
  overflow-y: auto;
}

@supports (backdrop-filter: blur(8px)) {
  .upsell-info-panel {
    background: rgba(255, 255, 255, 0.95);
  }
}

.upsell-info-panel__inner {
  padding: var(--spacing-6) var(--spacing-4);
  max-width: 500px;
  margin: 0 auto;
}

.upsell-info-panel__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--background));
  border: 1px solid rgb(var(--border));
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 11;
}

.upsell-info-panel__close:hover {
  background: rgb(var(--background-subdued));
}

.upsell-info-panel__title {
  color: #FE5000;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 var(--spacing-4) 0;
}

.upsell-info-panel__section {
  margin-bottom: var(--spacing-4);
}

.upsell-info-panel__subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-2) 0;
  color: rgb(var(--text));
}

.upsell-info-panel__desc {
  color: rgb(var(--text-subdued));
  line-height: 1.6;
  margin: 0;
}

.upsell-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

.upsell-info-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.upsell-info-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.upsell-info-list--pros li {
  color: #00a341;
}

.upsell-info-list--cons li {
  color: #c92a2a;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .upsell-info-panel {
    background: rgba(0, 0, 0, 0.95);
  }
}

/* Quick View Modal */
.upsell-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.upsell-modal[hidden] {
  display: none;
}

.upsell-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.upsell-modal__container {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: rgb(var(--background));
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease;
}

@media (max-width: 768px) {
  .upsell-modal__container {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 8px;
  }
  
  .upsell-modal {
    padding: 10px;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.upsell-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--background));
  border: 1px solid rgb(var(--border));
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1002;
}

.upsell-modal__close:hover {
  background: rgb(var(--background-subdued));
  transform: rotate(90deg);
}

.upsell-modal__content {
  overflow-y: auto;
  max-height: 90vh;
}

.upsell-modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
  color: rgb(var(--text-subdued));
}

.upsell-modal__data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px;
}

@media (max-width: 768px) {
  .upsell-modal__data {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
}

.upsell-modal__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upsell-modal__main-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: rgb(var(--background-subdued));
}

.upsell-modal__main-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}

.upsell-modal__main-image.zoomed {
  cursor: grab;
}

.upsell-modal__main-image.zoomed:active {
  cursor: grabbing;
}

.upsell-modal__main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform-origin: center center;
}

.upsell-modal__main-image.zoomed img {
  object-fit: none;
  max-width: none;
  max-height: none;
}

/* Navigation arrows */
.upsell-modal__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.upsell-modal__nav-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.upsell-modal__nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.upsell-modal__nav-btn[hidden] {
  display: none;
}

.upsell-modal__nav-prev {
  left: 12px;
}

.upsell-modal__nav-next {
  right: 12px;
}

@media (max-width: 768px) {
  .upsell-modal__nav-btn {
    width: 36px;
    height: 36px;
  }
  
  .upsell-modal__nav-prev {
    left: 8px;
  }
  
  .upsell-modal__nav-next {
    right: 8px;
  }
}

/* Zoom controls */
.upsell-modal__zoom-controls {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.upsell-modal__zoom-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.upsell-modal__zoom-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.upsell-modal__zoom-btn:active {
  transform: scale(0.95);
}

.upsell-modal__zoom-btn svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .upsell-modal__zoom-controls {
    bottom: 8px;
    right: 8px;
    gap: 4px;
  }
  
  .upsell-modal__zoom-btn {
    width: 32px;
    height: 32px;
  }
  
  .upsell-modal__zoom-btn svg {
    width: 16px;
    height: 16px;
  }
}

.upsell-modal__thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}

.upsell-modal__thumbnail {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.upsell-modal__thumbnail:hover {
  border-color: #FE5000;
}

.upsell-modal__thumbnail.active {
  border-color: #FE5000;
}

.upsell-modal__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upsell-modal__details {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.upsell-modal__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: rgb(var(--text));
}

@media (max-width: 768px) {
  .upsell-modal__title {
    font-size: 1.5rem;
  }
}

.upsell-modal__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FE5000;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .upsell-modal__price {
    font-size: 1.25rem;
  }
}

.upsell-modal__price .compare-price {
  text-decoration: line-through;
  color: rgb(var(--text-subdued));
  font-size: 1.2rem;
  margin-right: 8px;
}

.upsell-modal__description {
  color: rgb(var(--text));
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.upsell-modal__description:empty {
  display: none;
}

.upsell-modal__description h1,
.upsell-modal__description h2,
.upsell-modal__description h3 {
  margin-top: 16px;
  margin-bottom: 8px;
}

.upsell-modal__reviews {
  border-top: 1px solid rgb(var(--border));
  padding-top: 16px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.upsell-modal__reviews:empty {
  display: none;
}

.upsell-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgb(var(--border));
  flex-shrink: 0;
}

.upsell-modal__actions .btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.upsell-modal__actions .btn-primary {
  background: #FF5722;
  color: #fff;
}

.upsell-modal__actions .btn-primary:hover {
  background: #E64A19;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.upsell-modal__actions .btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.upsell-modal__actions .btn--secondary {
  background: rgb(var(--background));
  color: rgb(var(--text));
  border: 2px solid rgb(var(--border));
}

.upsell-modal__actions .btn--secondary:hover {
  background: rgb(var(--background-subdued));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .upsell-modal__actions .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
/* END_SECTION:product-upsell-smart */

/* START_SECTION:section-variants (INDEX:76, SCOPED:FALSE) */
.variants-slider{
  max-height: 90px;
  min-height: 75px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.variants-slider.loaded {
  opacity: 1;
  visibility: visible;
}

.variants-slider .swiper-slide {
  width: 75px !important;  /* of auto als je slidesPerView gebruikt */
  height: 75px !important;
  flex-shrink: 0 !important;
}

@supports (-webkit-touch-callout: none) {
  .variants-slider .swiper-slide {
    width: 75px !important;  /* of auto als je slidesPerView gebruikt */
  }
}

.swiper-button-next::after,
.swiper-button-prev::after{
    color: #000 !important;
    font-size: 18px !important;
    background: #ccc !important;
    padding: 12px 14px !important;
    border-radius: 100% !important;

}

@media(max-width: 767px){
 .swiper-button-next::after,
  .swiper-button-prev::after{    
    font-size: 14px  !important;
    padding: 6px 8px  !important;
} 
}
/* END_SECTION:section-variants */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:case-type-modal (INDEX:104, SCOPED:FALSE) */
.modal {
    --modal_padding: 24px;

    max-width: 700px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
  }
  .modal-header {
    padding: 12px var(--modal_padding);
    border-bottom: 1px solid #eee;
    text-align: center;
  }
  .modal-header--title {
    font-size: var(--text-h3);
  }
  .modal-content-container {
    padding: var(--modal_padding);
  }

  .modal-case-selectors {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: var(--modal_padding);
  }

  .modal-content {
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.9em;
    max-height: 500px;
    overflow-y: scroll;
  }
  .modal-content h5 {
    text-align: center;
    font-size: xx-large;
    padding: 5px 0;
    margin: 10px 0 15px 0;
  }

  .modal .block-swatch.tall-block {
    background-color: unset;
    flex: 1;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
  }
  .modal .block-swatch.tall-block:hover {
    background-color: rgba(0,0,0,0.03);
  }
  .modal .block-swatch:before {
    transform: scale(0.98);
  }
  .block-swatch.active:before {
    opacity: 1;
    transform: scale(1);
  }

  ul.with-ul,
  ul.with-ul ul {
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
  }

  .modal-link {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .modal-link svg {
    height: 12px;
  }
/* END_SNIPPET:case-type-modal */

/* START_SNIPPET:collection-top-bar (INDEX:106, SCOPED:FALSE) */
.facets-summary.custom-search{
  display: flex;
  flex-direction: column-reverse;
}

.search__popup_banner{
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: var(--rounded-sm);
  width: 100%;
}

@media(max-width: 767px){
  .search__popup_banner{
    flex-direction: column;
  }
}

.search__popup_banner_text{
  flex: 2;
}

.search__popup_banner_text .title{
  font-size: 18px;
  font-weight: 600;
}

.open__search_popup{
  background: #fcb595;
  border-radius: 4px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  width: 100%;
  flex: 1;
}

.sort-by-facet.with-search{
  margin-left: unset;
}
/* END_SNIPPET:collection-top-bar */

/* START_SNIPPET:facets-vertical (INDEX:111, SCOPED:FALSE) */
.switch:checked{
    background: green !important;
  }
/* END_SNIPPET:facets-vertical */

/* START_SNIPPET:horizontal-product-modal (INDEX:116, SCOPED:FALSE) */
/* Ensure upsell drawers appear above everything when moved to body */
  body > x-drawer.x-drawer--upsell {
    z-index: 9999 !important;
  }

  .product-info__modal-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    .product-info__modal-button {
      margin: auto 0 0 auto;
      max-width: 250px;

      button {
        margin-top: 0!important;
      }
    }
  }
  .product-info__modal-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgb(255 255 255);
    border: 1px solid rgb(221 221 221);
    transition: all 0.3s ease;
  }

  .product-info__modal-content-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgb(231 231 231);
    padding: var(--spacing-4);
    border-radius: var(--rounded-xs);
  }
  .product-info__modal-content-wrapper .product-info__image,
  .product-info__modal-content-wrapper .product-info__modal-content {
    flex: 1;
  }

  .product-info__modal-content-wrapper .product-info__image img{
    width: 100%;
    height: auto;
    border-radius: var(--rounded-xs);
    object-fit: contain;
  }

  @media (max-width: 768px) {
    .product-info__modal {
      top: -20px;
      right: -8px;
    }
    .product-info__modal-content-wrapper{
      gap: 20px;
      flex-direction: column;
      align-items: start;
    }
    .product-info__modal-content-wrapper .product-info__image{
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .product-info__modal-content-wrapper .product-info__image img{
      max-height: 250px;      
    }
  }
/* END_SNIPPET:horizontal-product-modal */

/* START_SNIPPET:horizontal-product (INDEX:117, SCOPED:FALSE) */
.horizontal-product{
    position: relative;
  }
  .product-info__modal {
    position: absolute;
    top: 4px;
    right: 4px;
    color: #ff4f01;

    svg {
      width: 16px;
      height: 16px;
    }
  }
  .horizontal-product__info .text-sm{
    max-width: 210px;
  }
/* END_SNIPPET:horizontal-product */

/* START_SNIPPET:option-value (INDEX:134, SCOPED:FALSE) */
.block-swatch.tall-block {
  height: unset;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 28px;
  background-color: #fff;
}
  .block-swatch__inner {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .block-swatch__inner .title {
    font-weight: 600;
    line-height: 1;
  }
  .block-swatch__inner .subtitle {
    color: #888;
    font-size: 0.8em;
  }
  .block-swatch__inner {
    font-size: 0.9em;
  }
  .block-swatch__inner .price-original {
    text-decoration: line-through;
    margin-right: 2px;
  }
/* END_SNIPPET:option-value */

/* START_SNIPPET:product-info (INDEX:147, SCOPED:FALSE) */
.product__info__image_text{
  display: flex;
  align-items: center;
  gap: 8px;
}

.product__info__image_text .text{
  font-size: 16px;
}

.product__info__image_text .image_wrap img{
  width: 100%;
  height: auto;
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  border-radius: 6px;
}

@media(max-width: 767px){
  .product__info__image_text .image_wrap img{
    max-width: 60px;
    max-height: 60px;
  }
  .product__info__image_text .text{
    font-size: 14px;
  }
}

@media(min-width: 767px){
  .upsell__recommendations .horizontal-product .button,
  .cart-drawer__recommendations .horizontal-product .button{
    padding: 12px;
  }
  .upsell__recommendations .horizontal-product__cta,
  .cart-drawer__recommendations .horizontal-product__cta{
    justify-content: space-between;
  }
  .upsell__recommendations .horizontal-product__cta .price-list,
  .product-info__modal-inner .price-list,
  .cart-drawer__recommendations .horizontal-product__cta .price-list{
    flex: 1;
    flex-direction: column;
  } 
  .upsell__recommendations .horizontal-product__cta form,
  .cart-drawer__recommendations .horizontal-product__cta form{
    flex: 2;
    display: flex;
    justify-content: end;
    align-items: center;
  }
   .upsell__recommendations .horizontal-product__cta form .price-list {
    flex-direction: row;
   }
}
}


.variant__wrap_with_loader{
  position: relative;
  min-height: 75px;
}

.image__loader_wrap{
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

.variant__image_loader{
  height: 100%;
  width: fit-content !important;
  border-radius: 4px;
  border: 1px solid #dedede;
  background: #00000054;
  transition: opacity 0.4s ease;

  position: relative;
  display: inline-block;
  width: 75px;
  height: 75px;
}

.variant__image_loader img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: darken;
  filter: grayscale(1);
}

.variant__image_loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  pointer-events: none;
}


.image__loader_wrap.hidden-loader {
  opacity: 0;
  pointer-events: none;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.custom-select {
  position: relative;
  margin: 0;
}
.custom-select .custom-select__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid #dedede;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.custom-select.active .custom-select__button .icon {
  transform: rotate(180deg);
}
.custom-select .custom-select__button:hover {
  background-color: #f4f4f4;
}
.custom-select .custom-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dedede;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  max-height: 300px;
  overflow-y: scroll;
}
.custom-select.active .custom-select__list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 4;
}
.custom-select .custom-select__list li a {
  display: block;
  width: 100%;
  padding: 4px 12px;
  border-bottom: 1px solid #dedede;
}
.custom-select .custom-select__list li.active a,
.custom-select .custom-select__list li a:hover {
  background-color: #eee;
}
/* END_SNIPPET:product-info */

/* START_SNIPPET:search-product-popup (INDEX:152, SCOPED:FALSE) */
.popup__overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: none;
}

.search__product__popup {
  position: fixed; /* gebruik fixed, niet absolute */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centreer */
  z-index: 1000000;
  max-height: 90vh; /* optioneel: beperk hoogte */
  overflow-y: auto; /* optioneel: scrollbaar als te lang */
  background: white; /* optioneel: zorg dat het niet transparant is */
  padding: 2rem;     /* optioneel: wat ademruimte */
  border-radius: 8px; /* optioneel: wat styling */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* optioneel */
  display: none;
  max-width: 950px;
  min-width: 950px;
  height: 100%;
  max-height: 500px;
}

@media(max-width: 992px){
  .search__product__popup {
    min-width: unset;
    min-height: unset;
    width: 100%;
    height: 100%;
    max-width: 95%;
    /* max-height: 70%; */
    padding: 20px;
  }
}

.search__product__popup_text{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup__close{
  cursor: pointer;
}

.search__product__popup_title-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee
}


.search__product__popup_title-wrap .title{
  font-size: 24px;
  font-weight: 600;
}

.search__product__popup_title-wrap .subtitle{
  font-size: 16px;
  font-weight: 500;
}


@media(max-width: 992px){
  .search__product__popup_title-wrap{
    padding-bottom: 16px;
  }
  .search__product__popup_title-wrap .title{
    font-size: 18px;
  }
}

.search__filters{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-radius: 0.375rem;
  height: 100%;
  padding: 20px;
}

.search__filters_active {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search__filters_active .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.search__filters_active .text span {
  font-weight: bold;
}

.search__filters_active .btn_wrap {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
}

.search__filters_active .btn_wrap span{
  color: #fff;
}

.search__filters_wrap{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search__filters_wrap.hidden{
  display: none;
}

.search__filters_swiper{
  width: 100%;
  height: 50px;
}

.search__filters_swiper .swiper-button-next:after,
.search__filters_swiper .swiper-button-prev:after{
  font-size: 22px;
  color: var(--accent);
}

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

.search__filters_brand-btn{
  padding: 4px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* border-radius: 4px; */
  border: 1px solid rgb(var(--text-color) / .15);
  background: #fff;
  transition: 0.3s ease all;
  border-radius: var(--rounded-button);
  font-size: 14px;
}

.search__filters_brand-btn:hover{
  background: #eee;
}

/* loading spinner */
 .search__filters{
  position: relative;
}
.big-search__filters-loading-spinner{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  left: 45%;
  top: 45%;
  z-index: 99;
}
.big-search__filters-loading-spinner.hidden{
  display: none;
}
.big-search__filters-loading-spinner svg {
  animation: spin 1s linear infinite;
}
.search__filters_wrap.loading{
  opacity: 0.4;
}


@media(max-width: 992px){
  .collection__top-bar .topbar__second_wrap{
    display: block;
  }
}
/* END_SNIPPET:search-product-popup */