/** Shopify CDN: Minification failed

Line 2975:2 Unexpected ")"

**/
/* Some css class in defined in critical css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

:is(
    input[type="search"],
    input[type="tel"],
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    select,
    textarea,
    .input-style
  ):focus {
  outline: 0;
  border-color: var(--color-heading);
}

input[type="checkbox"] {
  display: inline-block;
  margin-block-end: 0.5rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  position: relative;
  height: 15px;
  width: 15px;
  background: url("icon-close.png") no-repeat center center;
  background-size: 10px;
  cursor: pointer;
  transition: var(--duration-short);
}

.search-modal__form.loading input[type="search"]::-webkit-search-cancel-button {
  opacity: 0;
  visibility: hidden;
}

/* Style the checkmark/indicator */
.checkmark:before {
  content: "";
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid var(--color-color, #ebebeb);
  background-color: var(--grey-color);
  position: relative;
  top: 2px;
  transition: var(--bls-transition);
}

.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: var(--transition);
}

input[type="checkbox"]:checked + .checkmark:after {
  opacity: 1;
}

input[type="checkbox"]:checked + .checkmark:before {
  background-color: var(--color-link);
  border-color: var(--color-link);
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.flex-100 {
  flex: 100%;
  width: 100%;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-stretch {
  align-items: stretch;
}

.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-60 {
  padding-top: clamp(30px, calc(30px + 30 * var(--responsive-rate)), 60px);
  padding-bottom: clamp(30px, calc(30px + 30 * var(--responsive-rate)), 60px);
}

.w-0 {
  width: 0;
}

.w-15 {
  width: 15px;
}

.w-20 {
  width: 20px;
}

.w-55 {
  width: 5.5rem;
}

.w-100 {
  width: 10rem;
}

.min-w-10 {
  min-width: 10px;
}

.min-w-20 {
  min-width: 20px;
}

.min-w-30 {
  min-width: 30px;
}

.min-w-full {
  min-width: 100%;
}

.max-w-15 {
  max-width: 15px;
}

.max-w-30 {
  max-width: 30px;
}

.max-w-full {
  max-width: 100%;
}

.h-0 {
  height: 0;
}

.h-15 {
  height: 15px;
}

.h-20 {
  height: 2rem;
}

.h-30 {
  height: 30px;
}

.h-55 {
  height: 5.5rem;
}

.min-h-30 {
  min-height: 30px;
}

.min-h-50 {
  min-height: 50px;
}

.min-h-full {
  min-height: 100%;
}

.max-h-full {
  max-height: 100%;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.user-select-none,
.swiper-slide {
  user-select: none;
  -webkit-user-select: none;
}

/* Hover */
@media (min-width: 1025px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  :is(
      .btn-outline,
      .btn-primary,
      .btn-hover,
      .btn-white,
      button.shopify-payment-button__more-options,
      .dmp_discount-form button
    ):hover {
    --btn-bg: var(--btn-primary-hover-bg-color);
    --btn-color: var(--btn-primary-hover-color);
    --btn-border-color: var(--btn-primary-hover-bg-color);
  }

  .btn-hover:hover {
    color: var(--btn-color);
    background-color: var(--btn-bg);
    border-color: var(--btn-border-color);
  }

  .btn-link:hover {
    color: var(--btn-link-hover-color);
  }

  .btn-link:hover::before {
    width: calc(100% - 3px);
    transition: var(--transition);
    animation: 1s infinite btnLinkAnimation;
  }

  .smooth-padding-hover:hover {
    padding-inline-start: 1rem;
  }

  .hover-effect {
    will-change: transform;
  }

  .hover-effect :is(img, .placeholder-image, picture) {
    transition: var(--transition);
    will-change: transform;
  }

  .hover_zoom .hover-effect:hover :is(img, .placeholder-image, picture) {
    transform: var(--zoom-transform, scale(1.05));
  }

  .hover_fade .hover-effect:hover :is(img, .placeholder-image, picture) {
    opacity: 0.8;
  }

  .hover_fade .hover-effect:hover .secondary-image {
    opacity: 1;
  }

  .tooltip-content {
    background: var(--color-dark);
    color: var(--color-white);
    line-height: 1;
    max-width: 360px;
    z-index: 2;
    text-align: center;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: all 0.3s;
    will-change: transform;
    padding: 7px 15px;
    transform: var(--tooltip-transform, translateY(-100%) translateX(-50%));
    left: var(--left, 50%);
    right: var(--right, auto);
    top: var(--top, 0);
  }

  .tooltip-content:before {
    border: 5px solid transparent;
    content: "";
    height: 0;
    width: 0;
    top: var(--tooltip-y, 100%);
    bottom: var(--tooltip-bottom, auto);
    margin-left: 0;
    -webkit-transform: var(--tooltip-before, translateX(-50%) translateZ(0));
    transform: var(--tooltip-before, translateX(-50%) translateZ(0));
    transform-origin: 0;
    border-top-color: var(--color-dark);
    position: absolute;
    left: var(--tooltip-left, 50%);
    right: var(--tooltip-right, auto);
  }

  .tooltip:not(.open):hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: var(
      --tooltip-hover-transform,
      translateY(calc(-100% - 10px)) translateX(-50%)
    );
  }

  .tooltip-left {
    --tooltip-transform: translateY(-50%);
    --left: auto;
    --right: 100%;
    --top: 50%;
    --tooltip-hover-transform: translateX(-10px) translateY(-50%);
    --tooltip-left: 100%;
    --tooltip-y: 50%;
    --tooltip-before: rotate(-90deg) translateY(50%);
  }

  .tooltip-right {
    --tooltip-transform: translateY(-50%);
    --left: 100%;
    --top: 50%;
    --tooltip-hover-transform: translateX(10px) translateY(-50%);
    --tooltip-left: auto;
    --tooltip-right: 100%;
    --tooltip-y: 12%;
    --tooltip-before: rotate(90deg) translateY(-50%);
  }

  .tooltip-bottom {
    --tooltip-transform: translateY(100%) translateX(-50%);
    --top: auto;
    bottom: 0;
    --tooltip-hover-transform: translateY(calc(100% + 10px)) translateX(-50%);
    --tooltip-y: auto;
    --tooltip-bottom: 100%;
  }

  .tooltip-bottom::before {
    border-bottom-color: var(--color-dark);
    border-top-color: transparent;
  }

  .instagram-item__media--ratio .instagram-icon {
    transform: scale(0.8);
    will-change: transform;
  }

  .instagram-item__media--ratio:hover .instagram-icon {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  @keyframes btnLinkAnimation {
    0% {
      left: 0;
      width: 100%;
    }
    33% {
      left: 100%;
      width: 0;
    }
    66% {
      left: 0;
      width: 0;
    }
    100% {
      right: 0;
      width: 100%;
    }
  }

  @keyframes progress {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -60px -60px;
    }
  }

  .hover-svg-zoom:hover svg {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
}

.button-close:not(:hover) {
  opacity: 0.7;
  color: var(--color-heading);
}

:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar {
  width: 4px;
}

:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-track {
  background: var(--border-color-base);
}

:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}

:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-thumb:hover {
  background: #555;
  width: 6px;
}

.translateY-100 {
  transform: translateY(-100%);
}

.transition-short {
  transition: var(--duration-short);
  -webkit-transition: var(--duration-short);
}

.transition {
  transition: var(--transition);
  -webkit-transition: var(--transition);
}

.transition-popup {
  transition: var(--transition-popup);
  -webkit-transition: var(--transition-popup);
}

/* Rounded */
.rounded-custom {
  border-radius: var(--rounded-custom);
}

.bottom-25 {
  bottom: 2.5rem;
}

.top-20 {
  top: 2rem;
}

.top-30 {
  top: 3rem;
}

.top-100 {
  top: 100%;
}

.right-45 {
  right: 4.5rem;
}

.right-50 {
  right: 5rem;
}

.icon-load {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: calc(var(--loader-width, 1.4rem) / 2 * -1);
  margin-left: calc(var(--loader-height, 1.4rem) / 2 * -1);
}

:where(.btn-primary, .btn-outline, .btn, button-quickview).loading {
  pointer-events: none;
}

:where(.btn-primary, .btn-outline, .btn, button-quickview).loading
  .hidden-on-load {
  opacity: 0;
}

:where(.btn-primary, .btn-outline, .btn, button-quickview).loading
  > .icon-load {
  opacity: 1;
}

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

.spin {
  -webkit-animation: 0.8s linear infinite spin;
  animation: 0.8s linear infinite spin;
}

/* Global style */
.w-custom-svg svg {
  height: auto;
  width: var(--custom-width);
}

.bls__spacing {
  height: var(--mobile-height);
}

@media (min-width: 768px) {
  .bls__spacing {
    height: var(--desktop-height);
  }
}

:is(.open-drawer, .nav-open) {
  overflow: hidden;
}

.overlay::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: var(--overlay-bg);
  pointer-events: none;
  transition: var(--transition);
  opacity: 0;
  z-index: 12;
  cursor: url(cursor-close.png), pointer;
}

:is(.open-drawer, .nav-open, .open-sidebar) .open.overlay::after {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.open-drawer .tingle-enabled {
  position: static;
  overflow: auto;
}

#search_mini_form.loading .loading-icon {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1025px) {
  .footer__localization.lang__currency-desktop .disclosure__list {
    top: auto;
    left: 0;
    right: auto;
    bottom: calc(100% + 30px);
  }

  .footer__localization.lang__currency-desktop
    .button-localization.open
    + .disclosure__list {
    bottom: calc(100% + 10px);
    top: auto;
  }

  .lang__currency-desktop .disclosure__button::after,
  .minicart__action.show-overlay:after,
  .lang__currency-desktop .disclosure__list icon-close {
    display: none;
  }

  .lang__currency-desktop .disclosure__list {
    top: calc(100% + 30px);
    max-height: 60vh;
    padding: 2rem 2.5rem;
    left: auto;
    min-width: 25rem;
    overflow: auto;
  }

  .lang__currency-desktop .button-localization.open + .disclosure__list {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  .topbar
    .lang__currency-desktop
    .button-localization.open
    + .disclosure__list {
    top: calc(100% + calc(var(--section-pb) * 1px));
  }

  .rounded-style :is(.topbar, .section-header) .disclosure__list {
    border-radius: 0 0 5px 5px;
  }

  .rounded-style
    .footer__localization.lang__currency-desktop
    .disclosure__list {
    border-radius: 5px;
  }

  body:has(.shopify-section-header-sticky) .sticky.top-30 {
    top: calc(var(--height-header, 0px) + 30px);
    transition: var(--transition);
  }

  body:has(.layout-2.shopify-section-header-sticky) .sticky.top-30 {
    top: 80px;
  }

  body:has(.shopify-section-header-hidden) .sticky.top-30 {
    top: 30px;
  }
}

.header-icon:hover {
  color: var(--color-primary);
}

/* Sticky header */
.shopify-section-header-sticky {
  position: sticky;
  z-index: 11;
  top: 0;
}

.shopify-section-header-sticky header.header {
  box-shadow: var(--shadow);
}

.shopify-section-header-sticky .header__normal-logo {
  display: block;
}

.shopify-section-header-sticky .header__transparent-logo {
  display: none;
}

.shopify-section-header-hidden {
  top: calc(-1 * var(--height-header));
}

.section-header.animate {
  transition: top 0.35s ease-in-out;
}

.header-sticky .gradient {
  background-attachment: unset;
}

.shopify-section-header-sticky.gradient {
  background-attachment: unset;
}

@media screen and (max-width: 1024.98px) {
  [data-sticky-mobile="false"].shopify-section-header-sticky {
    position: unset;
  }

  header-search #search-form .search__button {
    color: var(--color-heading);
  }

  :where(.lang__currency-on-nav, .lang__currency-desktop, .popup_cart)
    icon-close {
    transform: translateY(calc(-100% - 15px));
  }
}

.fadeIn {
  animation: 0.3s fadeIn;
}

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.shopify-section-header-sticky.animate:not(.scroll-up) {
  animation-name: fadeInSticky;
  animation-duration: 0.5s;
  animation-fill-mode: inherit;
  animation-fill-mode: forwards;
}

@keyframes fadeInSticky {
  0% {
    opacity: 0;
    top: calc(var(--height-header, 100%) * -1);
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

.fadeOut {
  animation: 0.3s fadeOut forwards;
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#header_size_guide {
  display: none;
}

.white-gradient:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}

/* Fake order */
@keyframes progressbar {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
}

.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.fake-order-progressbar {
  border-radius: 0 0 var(--rounded) var(--rounded);
}

.fake-order-progressbar span {
  height: 2px;
  display: block;
  width: 100%;
}

.success,
.warning {
  padding: 1.2rem 2rem;
  position: relative;
}

.success,
.message-success {
  --color-success: #137f24;
  --border-color-success: #b4deb0;
  --background-success: #dcf0d8;
  --color-link: var(--color-success);
  margin-bottom: 2rem;
  color: var(--color-success);
  background-color: var(--background-success);
  border: 1px solid var(--border-color-success);
  border-radius: 5px;
  gap: 0.5rem;
  font-weight: var(--subheading_weight, 500);
  line-height: 1.5;
  font-size: var(--body-font-size);
}

.errors,
.error,
.message-error,
.dmp_error-message {
  --color-error: #d0473e;
  --border-color-error: #eabdbd;
  --background-error: #fadfdf;
  --color-link: var(--color-error);
  padding: 11px 2rem;
  background: var(--background-error);
  border: 1px solid var(--border-color-error);
  color: var(--color-error);
  text-align: left;
  border-radius: 5px;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  gap: 0.5rem;
  font-weight: var(--subheading_weight, 500);
  line-height: 1.5;
  font-size: var(--body-font-size);
}

.dmp_error-message {
  display: block;
  margin-top: 1rem;
}

.text-overflow-ellipsis {
  text-overflow: ellipsis;
}

/* Message */
.message-info,
.warning {
  color: #907341;
  --color-link: #907341;
  --btn-link-color: #907341;
  border: 1px solid #e9d7b8;
  background: #faf0df;
  padding: 1.5rem 2rem;
  font-weight: var(--subheading_weight, 500);
  border-radius: 5px;
  line-height: 1.5;
  font-size: var(--body-font-size);
}

:is(.message-info, .message-success, .message-error) a {
  color: currentColor;
}

:is(
    .message-info,
    .success,
    .message-success,
    .message-error,
    .warning,
    .errors,
    .error
  )
  svg {
  width: 1.8rem;
  flex: 0 0 1.8rem;
}

@keyframes al-loading {
  0% {
    width: 0;
  }
  to {
    width: 80%;
  }
}

@keyframes al-loading-finish {
  0% {
    width: 80%;
  }
  to {
    width: 100%;
  }
}

.select-custom__content {
  top: calc(100% + 15px);
  max-height: 60vh;
  min-width: 22rem;
}

.select-custom.active .select-custom__content {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.select-collection-tab.active .select-custom__content {
  top: calc(100% + 2px);
}

:is(.horizontal-filter collapsible-block, .select-custom).active
  .active-rotated {
  transform: rotate(-180deg);
}

.pagination__item--current {
  color: var(--btn-primary-color);
  background-color: var(--btn-primary-bg-color);
  border-color: var(--btn-primary-bg-color);
}

.loading .loading-overlay {
  opacity: 0.7;
  visibility: visible;
}

body.loading::after {
  background: var(--color-primary);
  content: "";
  height: 3px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 11;
  animation: al-loading 1s cubic-bezier(0.43, 0.27, 0.36, 0.83) forwards;
  transition: width 1s linear, opacity 0.35s linear 0.35s;
}

body.loading.finish::after {
  width: 100%;
  animation: al-loading-finish 0.3s cubic-bezier(0.43, 0.27, 0.36, 0.83)
    forwards;
}

/* Start customer style */
.customer-forgot#recover {
  display: none;
}

.customer-forgot#recover:target {
  display: block;
}

.customer-forgot#recover:target + .customer-login {
  display: none;
}

.form-group textarea,
.form-group input {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.subtext {
  margin-bottom: 1rem;
}

.subtext.mb-20 {
  margin-bottom: 2rem;
}

.bls__tab-header > div,
.bls-login-popup {
  display: none;
}

.bls__tab-header > div[aria-hidden="false"],
.bls-login-popup[aria-hidden="false"] {
  display: block;
}

label.form-label {
  color: var(--color-link);
}

.title-customer {
  --font-h3: 2.4rem;
  font-size: clamp(2rem, 3vw, var(--font-h3));
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.forget-password,
.link-forgot {
  color: rgb(var(--base-color));
}

@media (min-width: 1024px) {
  [class*="customer-"] .row {
    --bs-gutter-x: 8rem;
  }
}

.open-drawer .bls__drawer.open {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.show-overlay::after {
  content: "";
  background: var(--show-overlay-bg, rgba(255, 255, 255, 0.9));
  opacity: 0;
  position: fixed;
  transition: var(--transition);
  visibility: hidden;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}

.open.show-overlay::after {
  opacity: 1;
  visibility: visible;
}

.toast {
  opacity: 0;
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 999999;
  top: 3rem;
  right: 3rem;
  font-size: 17px;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

.show-tooltip {
  overflow: visible;
}

.show-tooltip:not(.reveal_on_scroll) .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
  pointer-events: none;
}

body .swiper-button-next.swiper-button-disabled,
body .swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}

.error-message a {
  color: red;
  text-decoration: none;
}

cart-estimate,
cart-estimate .addon-content,
#shipping,
.cart_shipping,
.cart-estimate,
.addon-content {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Hide color option UI on product pages when variants have no images */
body.no-variant-images .product__color-swatches--js,
body.no-variant-images .product__color-swatch,
body.no-variant-images swatch-dropdown-item,
body.no-variant-images [data-swatch-type],
body.no-variant-images .product__color-swatches,
body.no-variant-images .product__color-swatch-wrapper {
  display: none !important;
}

body.no-variant-images .product-form__input:has(.product__color-swatches--js),
body.no-variant-images fieldset:has(.product__color-swatches--js) {
  display: none !important;
}

/* Globo swatches: hide color block when product has no variant images */
body.no-variant-images .globo-border-color-swatch,
body.no-variant-images .swatch-anchor.globo-border-color-swatch,
body.no-variant-images .globo-detail-style-square.globo-border-color-swatch,
body.no-variant-images .globo-color-swatch,
body.no-variant-images .globo-swatch,
body.no-variant-images .globo-product-variants,
body.no-variant-images .globo-variants,
body.no-variant-images .globo-variant-title,
body.no-variant-images .globo-option-title,
body.no-variant-images .swatch-title,
body.no-variant-images .globo-variants-title,
body.no-variant-images .variant-title,
body.no-variant-images .option-title {
  display: none !important;
}

body.no-variant-images *:has(> .globo-border-color-swatch) .attr-title,
body.no-variant-images *:has(> .globo-border-color-swatch) .attr-title-hover {
  display: none !important;
}

body.no-variant-images legend.name-option[data-name="Kleur"],
body.no-variant-images legend.name-option[data-name="Color"] {
  display: none !important;
}

/* ===== Collection color swatches ===== */
.swatch-attribute.color .items {
  display: grid !important;
  grid-template-columns: repeat(6, 30px) !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.swatch-attribute.color .item,
.swatch-attribute.color .item::before,
.swatch-attribute.color .item::after,
.swatch-attribute.color .link-filter,
.swatch-attribute.color .link-filter::before,
.swatch-attribute.color .link-filter::after,
.swatch-attribute.color .tooltip,
.swatch-attribute.color .tooltip::before,
.swatch-attribute.color .tooltip::after,
.swatch-attribute.color .swatch-option,
.swatch-attribute.color .swatch-option::before,
.swatch-attribute.color .swatch-option::after,
.swatch-attribute.color .pointer.color,
.swatch-attribute.color .pointer.color::before,
.swatch-attribute.color .pointer.color::after {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.product__color-swatch,
.swatch-attribute.color .product__color-swatch,
.swatch-attribute.color .product__color-swatch::before,
.swatch-attribute.color .product__color-swatch::after {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  display: block !important;
  border-radius: 4px !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.swatch-attribute.color .tooltip-content {
  z-index: 5;
}

.current-filter .product__color-swatch,
.swatch-attribute.color .current-filter .product__color-swatch {
  box-shadow: inset 0 0 0 2px #111 !important;
}

@media (min-width: 1025px) {
  .product__color-swatch:hover {
    transform: scale(1.06);
  }
}

/* =========================
ONDERSTE SEO TEKST
========================= */
.seo-bottom-wrap {
  width: 100%;
  margin: 40px 0 70px;
}

.seo-bottom-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  column-gap: 32px;
  box-sizing: border-box;
}

.seo-bottom-spacer {
  width: 100%;
}

.seo-bottom-content {
  width: 100%;
  text-align: left;
}

.seo-bottom-content h2,
.seo-bottom-content h3 {
  font-weight: 700;
  line-height: 1.3;
  margin: 32px 0 12px;
}

.seo-bottom-content h2 {
  font-size: 24px;
}

.seo-bottom-content h3 {
  font-size: 20px;
}

.seo-bottom-content p {
  margin: 0 0 16px;
  line-height: 1.8;
  font-size: 15px;
}

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

.seo-bottom-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* =========================
BOVENSTE H1 + BESCHRIJVING
========================= */
.heading-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 220px;
  text-align: left !important;
  box-sizing: border-box;
}

.heading-content .page-title,
.heading-content h1 {
  text-align: left !important;
  margin-bottom: 12px;
}

/* korte beschrijving boven producten */
.collection-top-description {
  width: 100%;
  margin: 10px 0 24px;
}

.collection-top-description__inner {
  width: 100%;
  max-width: 820px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.collection-top-description__content {
  width: 100%;
  max-width: 980px;
  max-height: 90px;
  overflow: hidden;
  position: relative;
  line-height: 1.65;
  font-size: 15px;
  transition: max-height 0.3s ease;
}

.collection-top-description__content:not(.is-expanded)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.collection-top-description__content.is-expanded {
  max-height: 1000px;
}

.collection-top-description__toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
  width: 820px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.collection-top-description__toggle::after {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #e30613;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.collection-top-description__content.is-expanded
  + .collection-top-description__toggle::after {
  transform: rotate(90deg);
  background: #111;
}

.collection-top-description__toggle:hover {
  opacity: 0.7;
}

/* =========================
MOBIEL
========================= */
@media screen and (max-width: 990px) {
  .heading-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .collection-top-description__inner,
  .collection-top-description__content,
  .collection-top-description__toggle {
    max-width: 100%;
    width: 100%;
  }

  .seo-bottom-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .seo-bottom-spacer {
    display: none;
  }

  .collection-top-description__content {
    max-width: 100%;
  }
}

.collection-heading-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.collection-heading-image {
  flex: 0 0 150px;
  display: flex;
  justify-content: flex-end;
}

.collection-heading-image img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

@media screen and (max-width: 990px) {
  .collection-heading-flex {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 16px;
  }

  .collection-heading-image {
    justify-content: flex-end;
    margin-top: 0;
  }

  .collection-heading-image img {
    width: 90px;
    height: 90px;
  }
}

/* =========================
COLLECTION FAQ
========================= */
.collection-faq {
  padding: 48px 0 56px;
}

.collection-faq__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  column-gap: 32px;
  box-sizing: border-box;
}

.collection-faq__spacer {
  width: 100%;
}

.collection-faq__content {
  width: 100%;
  max-width: 980px;
}

.collection-faq__title {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.collection-faq__items {
  border-top: 1px solid #e9e9e9;
}

.collection-faq__item {
  border-bottom: 1px solid #e9e9e9;
  transition: background 0.2s ease;
}

.collection-faq__item[open] {
  background: #fafafa;
}

.collection-faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.collection-faq__question::-webkit-details-marker {
  display: none;
}

.collection-faq__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f3f3f3;
  transition: background 0.2s ease;
}

.collection-faq__icon::before,
.collection-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #111;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.collection-faq__icon::before {
  width: 10px;
  height: 2px;
}

.collection-faq__icon::after {
  width: 2px;
  height: 10px;
}

.collection-faq__item[open] .collection-faq__icon {
  background: #e30613;
}

.collection-faq__item[open] .collection-faq__icon::before,
.collection-faq__item[open] .collection-faq__icon::after {
  background: #fff;
}

.collection-faq__item[open] .collection-faq__icon::after {
  opacity: 0;
}

.collection-faq__question-text {
  flex: 1 1 auto;
}

.collection-faq__answer {
  padding: 0 0 18px 36px;
  color: #333;
  line-height: 1.75;
  font-size: 15px;
}

.collection-faq__answer p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 990px) {
  .collection-faq {
    padding: 36px 0 44px;
  }

  .collection-faq__grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .collection-faq__spacer {
    display: none;
  }

  .collection-faq__content {
    max-width: 100%;
  }

  .collection-faq__title {
    font-size: 22px;
  }

  .collection-faq__question {
    font-size: 15px;
    padding: 16px 0;
  }

  .collection-faq__answer {
    padding-left: 32px;
  }
}

/* =================================
   HARD FIX product gallery images
================================= */

/* Product gallery square fix */
body[class*="product"] .media-main-swiper .media-gallery__image,
body[class*="product"] .media-main-swiper .media-gallery__model,
body[class*="product"] .media-main-swiper .media-gallery__local-video,
body[class*="product"] .media-main-swiper .media-gallery__external-video,
body[class*="product"] .media-main-swiper .bls__responsive-image,
body[class*="product"] .media-main-swiper .deferred-media {
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: #fff !important;
}

body[class*="product"] .media-main-swiper .media-gallery__image img,
body[class*="product"] .media-main-swiper .media-gallery__image picture > img,
body[class*="product"] .media-main-swiper .media-gallery__model img,
body[class*="product"] .media-main-swiper .media-gallery__local-video img,
body[class*="product"] .media-main-swiper .media-main-swiper img.drift-trigger {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body[class*="product"] .thumbnail-slide .swiper-slide,
body[class*="product"] .media-thumb-swiper .swiper-slide {
  aspect-ratio: 1 / 1 !important;
  width: 70px !important;
  height: 70px !important;
  overflow: hidden !important;
}

body[class*="product"] .thumbnail-slide .swiper-slide img,
body[class*="product"] .media-thumb-swiper .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
/* ===== COLOR SWATCH PREMIUM LIGHT ===== */

.product-group-heading {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.product-group-list--swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-group-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 92px;
  text-decoration: none;
  color: #111;
  padding: 8px;
  border-radius: 14px;
  border: 1.5px solid #e5e5e5; /* LICHT GRIJS */
  background: #fff;
  transition: all .25s ease;
}

/* image box */
.product-group-swatch__image-wrap {
  width: 70px;
  height: 70px;
  border: 1.5px solid #e5e5e5; /* LICHT GRIJS */
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.product-group-swatch__image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform .25s ease;
}

.product-group-swatch__dot {
  display: none !important;
}

.product-group-swatch__label {
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
  text-align: center;
  line-height: 1.3;
}

/* ===== HOVER ===== */

.product-group-swatch:hover {
  border-color: #DD0618;
  background: #DD0618;
  color: #fff;
}

.product-group-swatch:hover .product-group-swatch__image-wrap {
  border-color: #DD0618;
  transform: translateY(-3px);
}

.product-group-swatch:hover .product-group-swatch__image {
  transform: scale(1.08);
}

.product-group-swatch:hover .product-group-swatch__label {
  color: #fff;
}

/* ===== ACTIVE ===== */

.product-group-swatch.is-active {
  border: 2px solid #bdbdbd; /* donkerder grijs */
}

.product-group-swatch.is-active .product-group-swatch__image-wrap {
  border: 2px solid #bdbdbd;
}
/* =========================
   VOORDEELBUNDELS CLEAN CSS
   ========================= */

.voordeelbundels {
  background: #f9f9f9;
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  padding: 22px;
  margin-top: 28px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.voordeelbundels-box {
  width: 100%;
  max-width: 100%;
}

.voordeelbundels-head {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.voordeelbundels-heading {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  color: #DD0618 !important;
}

.voordeelbundels-subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

.voordeelbundels-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: end;
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  box-sizing: border-box;
}

.voordeelbundels-products-col {
  min-width: 0;
  width: 100%;
}

.voordeelbundels-products-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  width: 100%;
  scrollbar-width: thin;
}

/* PRODUCT KAART */
.voordeelbundels-card {
  position: relative;
  flex: 0 0 190px;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
}

.voordeelbundels-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* HOOFDPRODUCT */
.voordeelbundels-card.bundle-main {
  border: 1px solid #e6e6e6 !important;
  box-shadow: none !important;
}

.voordeelbundels-card.bundle-main:hover {
  border: 1px solid #e6e6e6 !important;
  box-shadow: none !important;
}

.voordeelbundels-card.bundle-main .voordeelbundels-check {
  display: none !important;
}

/* EXTRA PRODUCTEN */
.voordeelbundels-card.bundle-extra {
  border: 2px solid #1995ff !important;
  box-shadow: 0 0 0 2px rgba(25,149,255,0.05) !important;
}

.voordeelbundels-card.bundle-extra:not(.select),
.product-bought-image-item.bundle-extra:not(.select),
.product-bought-together-item.bundle-extra:not(.select) {
  border: 1px solid #e6e6e6 !important;
  box-shadow: none !important;
  opacity: 0.5;
}

/* BADGE */
.voordeelbundels-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #dd0618;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 999px;
  z-index: 3;
}

/* CHECKBOX */
.voordeelbundels-check {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  cursor: pointer;
}

.voordeelbundels-check input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.voordeelbundels-checkmark {
  width: 18px;
  height: 18px;
  background: #1995ff;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.voordeelbundels-checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.voordeelbundels-check input:not(:checked) + .voordeelbundels-checkmark {
  background: #fff;
  border: 1px solid #cfcfcf;
}

.voordeelbundels-check input:not(:checked) + .voordeelbundels-checkmark::after {
  opacity: 0;
}

.voordeelbundels-check input:checked + .voordeelbundels-checkmark {
  background: #1995ff;
  border: 1px solid #1995ff;
}

.voordeelbundels-check input:checked + .voordeelbundels-checkmark::after {
  opacity: 1;
}

/* wanneer product uitgezet is, visueel duidelijk */
.product-bought-together-item:not(.select),
.product-bought-image-item:not(.select) {
  opacity: 0.45;
}

.product-bought-together-item.select,
.product-bought-image-item.select {
  opacity: 1;
}

/* AFBEELDING */
.voordeelbundels-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  min-height: 150px;
  margin-bottom: 12px;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.voordeelbundels-image-link img,
.voordeelbundels-image,
.voordeelbundels-card .product-image,
.voordeelbundels-card .product-image img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 140px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

/* TITEL / PRIJS / SELECTOR */
.voordeelbundels-card-title {
  min-height: 56px;
  margin-bottom: 8px;
}

.voordeelbundels-card-title a {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voordeelbundels-card-title a:hover {
  color: #dd0618;
}

.voordeelbundels-card-price {
  min-height: 22px;
  margin-bottom: 10px;
}

.voordeelbundels-card-price .price,
.voordeelbundels-card-price .price-item {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111 !important;
}

.voordeelbundels-card-price .compare-price {
  color: #888 !important;
  font-size: 12px !important;
  margin-left: 4px;
}

.voordeelbundels-card-variant {
  margin-top: auto;
}

.voordeelbundels-select,
.voordeelbundels-single-variant {
  width: 100%;
  min-height: 38px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  box-sizing: border-box;
}

.voordeelbundels-select {
  padding: 0 10px;
}

.voordeelbundels-single-variant {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  padding: 8px 10px;
}

/* PLUS */
.voordeelbundels-plus {
  flex: 0 0 34px;
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #dd0618;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.voordeelbundels-plus svg {
  width: 14px;
  height: 14px;
}

/* SUMMARY RECHTS */
.voordeelbundels-summary-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.voordeelbundels-totalbox {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: right;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 14px;
}

.voordeelbundels-total {
  margin-bottom: 0;
}

.voordeelbundels-total-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.voordeelbundels-total-prices {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.voordeelbundels-newprice {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: #111;
}

.voordeelbundels-oldprice {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}

.voordeelbundels-saving {
  font-size: 13px;
  color: #555;
  margin-bottom: 0;
}

.voordeelbundels-saving span {
  color: #18a341;
  font-weight: 700;
}

/* KNOP */
.voordeelbundels-submit {
  width: auto;
  min-width: 190px;
  height: 46px;
  min-height: 46px;
  border-radius: 999px !important;
  background: #dd0618 !important;
  border: none !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 0 22px;
  margin: 0;
}

.voordeelbundels-submit:hover {
  background: #b90514 !important;
  border: none !important;
  box-shadow: none !important;
}

/* MOBIEL */
@media (max-width: 991px) {
  .voordeelbundels {
    padding: 16px;
  }

  .voordeelbundels-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .voordeelbundels-totalbox {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
  }

  .voordeelbundels-total-prices {
    justify-content: flex-start;
  }

  .voordeelbundels-card {
    flex: 0 0 170px;
    width: 170px;
    min-width: 170px;
    max-width: 170px;
  }

  .voordeelbundels-image-link {
    height: 135px;
    min-height: 135px;
  }

  .voordeelbundels-image-link img,
  .voordeelbundels-image,
  .voordeelbundels-card .product-image,
  .voordeelbundels-card .product-image img {
    max-height: 125px !important;
  }

  .voordeelbundels-heading {
    font-size: 24px;
  }

  .voordeelbundels-newprice {
    font-size: 26px;
  }

  .voordeelbundels-submit {
    width: 100%;
    min-width: 0;
  }
}

/* DESKTOP GROTERE AFBEELDINGEN */
@media (min-width: 1200px) {
  .voordeelbundels {
    padding: 28px 32px;
  }

  .voordeelbundels-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    padding: 20px 22px;
  }

  .voordeelbundels-products-row {
    gap: 16px;
  }

  .voordeelbundels-card {
    flex: 0 0 215px;
    width: 215px;
    min-width: 215px;
    max-width: 215px;
    padding: 14px;
  }

  .voordeelbundels-image-link {
    height: 180px;
    min-height: 180px;
    margin-bottom: 14px;
  }

  .voordeelbundels-image-link img,
  .voordeelbundels-image,
  .voordeelbundels-card .product-image,
  .voordeelbundels-card .product-image img {
    max-height: 170px !important;
  }

  .voordeelbundels-card-title {
    min-height: 64px;
  }

  .voordeelbundels-card-title a {
    font-size: 14px;
    line-height: 1.4;
  }

  .voordeelbundels-card-price .price,
  .voordeelbundels-card-price .price-item {
    font-size: 16px !important;
  }

  .voordeelbundels-newprice {
    font-size: 34px;
  }

  .voordeelbundels-submit {
    min-width: 210px;
    padding: 0 24px;
  }
}
/* hoofdproduct afbeelding zonder schaduw/overlay */
.voordeelbundels-card.bundle-main .voordeelbundels-image-link,
.voordeelbundels-card.bundle-main .voordeelbundels-image-wrap,
.voordeelbundels-card.bundle-main .product-item__media--ratio,
.voordeelbundels-card.bundle-main .product-image,
.voordeelbundels-card.bundle-main img {
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  background: transparent !important;
}

.voordeelbundels-card.bundle-main::before,
.voordeelbundels-card.bundle-main::after,
.voordeelbundels-card.bundle-main .voordeelbundels-image-link::before,
.voordeelbundels-card.bundle-main .voordeelbundels-image-link::after,
.voordeelbundels-card.bundle-main .product-item__media--ratio::before,
.voordeelbundels-card.bundle-main .product-item__media--ratio::after {
  display: none !important;
  content: none !important;
}

/* hoofdproduct niet faded */
.voordeelbundels-card.bundle-main,
.product-bought-image-item.bundle-main,
.product-bought-together-item.bundle-main {
  opacity: 1 !important;
}
/* ===== PRODUCT BADGES (ASK + SHARE) ===== */
product-addons.product-addons__ask-question > div:first-child,
product-addons.product-addons__share > div:first-child {
  background: #d60000 !important;
  color: #ffffff !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.2px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  min-height: 44px !important;
  transition: all .2s ease !important;
}

/* hover effect */
product-addons.product-addons__ask-question > div:first-child:hover,
product-addons.product-addons__share > div:first-child:hover {
  background: #b80000 !important;
  transform: translateY(-1px);
}

/* icoon + tekst wit */
product-addons.product-addons__ask-question > div:first-child *,
product-addons.product-addons__share > div:first-child * {
  color: #ffffff !important;
}
.badge-solid{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 1px 2px rgba(0,0,0,.12);
  transition:.18s;
}

.badge-solid:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(0,0,0,.18);
}

.badge-solid-icon{
  display:flex;
}

.badge-solid-icon svg{
  width:13px;
  height:13px;
  color:#fff;
}

.badge-solid-text{
  display:block;
}
/* --- 1. INFO-BADGES & ICONEN VERBERGEN --- */
.fa-circle-info, 
[data-button-info="true"], 
.collapsible-heading::after,
.info-badge {
    display: none !important;
}

/* --- 2. RODE CHECKBOX STYLING (MET WIT VINKJE) --- */
label.tw\:bg-white.tw\:border {
    width: 20px !important;
    height: 20px !important;
    border-radius: 4px !important;
    border: 2px solid #dcdcdc !important;
    transition: all 0.2s ease !important;
}

input:checked + label.tw\:bg-white.tw\:border,
.peer:checked ~ label {
    background-color: #E10B1B !important; 
    border-color: #E10B1B !important;
}

input:checked + label i.fa-check {
    opacity: 1 !important;
    color: #ffffff !important;
    display: inline-block !important;
}

/* --- 3. FILTER TITELS, SPACING & HOVER --- */
.collapsible-heading {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 25px !important; 
    padding-bottom: 10px !important;
    position: relative !important;
    font-weight: 700 !important;
    transition: color 0.2s ease !important;
}

.collapsible-heading:hover,
.link-filter:hover, 
.filter-group-display__list-item:hover label {
    color: #E10B1B !important;
}

.link-filter, 
.filter-group-display__list-item {
    padding: 6px 0 !important;
    margin-bottom: 5px !important;
    display: flex !important;
    align-items: center !important;
}

/* --- 4. PRIJSFILTER MAKE-OVER (VOLLEDIG RODE BOLLEN) --- */
.price-range.drop-range {
    position: relative !important;
    height: 6px !important;
    background-color: #e0e0e0 !important;
    border-radius: 10px !important;
    margin: 45px 10px 25px 10px !important;
}

/* De rode actieve balk tussen de bollen */
.price-range::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    height: 100% !important;
    left: var(--range-from) !important;
    right: calc(100% - var(--range-to)) !important;
    background-color: #E10B1B !important;
    z-index: 1 !important;
    border-radius: 10px !important;
}

/* De Bollen (Handles) - Nu VOLLEDIG Rood (ook de rand) */
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    background: #E10B1B !important; 
    border: 1px solid #E10B1B !important; /* Rand ook rood gemaakt */
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    margin-top: -8px !important;
}

.range-slider::-moz-range-thumb {
    width: 18px !important;
    height: 18px !important;
    background: #E10B1B !important;
    border: 1px solid #E10B1B !important; /* Rand ook rood gemaakt */
    border-radius: 50% !important;
    cursor: pointer !important;
}

/* --- 5. PIJLTJES (OPEN/DICHT) --- */
.icon_plus-animation {
    display: none !important;
}

.open-children-toggle::before {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}

collapsible-block.active .open-children-toggle::before {
    transform: translateY(-30%) rotate(-135deg);
}

/* --- 6. RODE CIRCEL BADGES (HEADER) --- */
.cart-count-bubble, 
.header__icon .count-bubble {
    background-color: #E10B1B !important;
    color: #ffffff !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    font-weight: bold !important;
    border: 2px solid #ffffff !important;
}
.product-detail__media {
  position: relative;
}

.product-media-badges-wrapper {
  position: relative;
  width: 100%;
}

.product-image-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 50;
  pointer-events: none;
}

.product-badge-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.product-badge-ribbon.badge-1 {
  background: #00AAFF;
}

.product-badge-ribbon.badge-2 {
  background: #00B311;
}

.product-badge-ribbon.badge-3 {
  background: #DB253E;
}

.product-badge-ribbon.badge-4 {
  background: #FF8A00;
}
.product-triple-row--premium {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.product-triple-item {
  min-width: 0;
  height: auto;
}

.product-info-card--premium {
  background: #F9F9F9;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 22px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.product-info-card--business {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-info-card__title {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: #DD0618;
}

.product-info-card__content {
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
}

.product-info-card__content p {
  margin: 0;
}

/* Compatibel met */
.product-compat-box {
  width: 100%;
}

.product-compat-search-wrap {
  margin-bottom: 14px;
}

.product-compat-search {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #222222;
  box-sizing: border-box;
}

.product-compat-search:focus {
  outline: none;
  border-color: #DD0618;
  box-shadow: 0 0 0 3px rgba(221, 6, 24, 0.08);
}

.product-compat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

.product-compat-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #333333;
}

.product-compat-list__item:last-child {
  margin-bottom: 0;
}

.product-compat-list__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.product-compat-list__icon::before {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #22c55e;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.product-compat-toggle {
  display: inline-block;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #DD0618;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.product-compat-toggle:hover {
  text-decoration: underline;
}

.product-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #15803d;
  font-size: 14px;
  font-weight: 600;
}

.product-info-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

/* Plus en minpunten */
.product-pros-cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-pros-cons-list + .product-pros-cons-list {
  margin-top: 12px;
}

.product-pros-cons-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #333333;
}

.product-pros-cons-list__item:last-child {
  margin-bottom: 0;
}

.product-pros-cons-list__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-top: 1px;
}

.product-pros-cons-list__item.is-plus .product-pros-cons-list__icon {
  background: #22c55e;
}

.product-pros-cons-list__item.is-plus .product-pros-cons-list__icon::before,
.product-pros-cons-list__item.is-plus .product-pros-cons-list__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.product-pros-cons-list__item.is-plus .product-pros-cons-list__icon::before {
  width: 11px;
  height: 2px;
}

.product-pros-cons-list__item.is-plus .product-pros-cons-list__icon::after {
  width: 2px;
  height: 11px;
}

.product-pros-cons-list__item.is-minus .product-pros-cons-list__icon {
  background: #9ca3af;
}

.product-pros-cons-list__item.is-minus .product-pros-cons-list__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 2px;
  background: #ffffff;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

/* Zakelijk bestellen */
.product-business-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-business-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #333333;
}

.product-business-list__item:last-child {
  margin-bottom: 0;
}

.product-business-list__icon {
  flex: 0 0 22px;
  width: 22px;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 1px;
}

.product-business-note {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.product-business-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 11px 16px;
  border-radius: 8px;
  background: #DD0618;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.product-business-btn:hover {
  background: #b80514;
  color: #ffffff;
}

@media (max-width: 991px) {
  .product-triple-row--premium {
    grid-template-columns: 1fr;
  }

  .product-info-card--premium {
    padding: 18px;
  }

  .product-info-card__title {
    font-size: 19px;
  }

  .product-compat-list__item,
  .product-pros-cons-list__item,
  .product-business-list__item {
    font-size: 15px;
  }

  .product-compat-list {
    max-height: 280px;
  }
}
/* Reserveer ruimte voor de secties zodat de pagina niet verspringt */
.recently-viewed-products-section, 
.related-products-section,
[data-section-type="recently-viewed"] {
    min-height: 400px !important;
    display: block !important;
    background-color: rgba(245, 245, 245, 0.3); /* Optioneel: heel lichte kleur als placeholder */
}
/* Maak de gerelateerde producten sneller zichtbaar */
product-recommendations {
  display: block;
  min-height: 400px;
  transition: opacity 0.1s ease-in-out !important; /* Versnel de animatie */
}

/* Voorkom dat de footer omhoog schiet als de sectie nog leeg is */
.sec__related-product {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}
/* --- SPECIFIEKE FIX VOOR SNEL KLIKKEN & ZOOM --- */
.product-media-modal__content {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: auto !important; /* Forceert de mogelijkheid om te scrollen */
    -webkit-overflow-scrolling: touch !important;
}

.product-media-modal__content img {
    max-width: none !important;
    width: auto !important;
    min-width: 150vw !important; /* Maakt foto breder dan scherm voor schuif-effect */
    height: auto !important;
    touch-action: pan-x pan-y pinch-zoom !important; /* Staat alle vinger-bewegingen toe */
    user-select: auto !important; /* Overschrijft de 'none' uit je basis CSS tijdens zoom */
}

/* Verberg de scrollbar voor een cleane look op mobiel */
.product-media-modal__content::-webkit-scrollbar {
    display: none;
}
.dot-between:not(:last-child):after {
  content: "";
  display: inline-block;
  width: var(--dot-width, 3px);
  height: var(--dot-width, 3px);
  border-radius: 50%;
  margin: var(--dot-space, 0 8px);
  background-color: #cbcbcb;
}
.breadcrumb-item a {
  text-decoration: none;
}
.sec__rich-text-inner {
  max-height: var(--max-height);
}
.gradient-effect:not(.hide-less):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  transform-origin: center;
  height: 61px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.rich-text-expand-content {
  transition: max-height 0.3s ease-out;
}
/* Loading effect */
.product__color-swatch:not([style*="background"]),
.skeleton .thumbnail-slide [class*="media-gallery__"],
.skeleton
  :is(
    .skeleton-loading,
    .product__badges-inner,
    .shopify-payment-button,

  ):after,
review-product.inline-loading:after {
  background-color: var(--grey-color);
  background-image: linear-gradient(90deg, #16182300 0, #1618230a, #16182300);
  -webkit-background-size: 200% 100%;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  -webkit-animation: 1.5s cubic-bezier(0, 0, 1, 1) infinite
    animation-loading-images;
  animation: 1.5s cubic-bezier(0, 0, 1, 1) infinite animation-loading-images;
}
@keyframes animation-loading-images {
  0% {
    background-position-x: 200%;
  }
  100% {
    background-position-x: -150%;
  }
}
.terms-conditions label a {
  color: var(--color-heading);
  font-weight: var(--heading-weight);
  text-decoration: none;
}
cookie-bar {
  max-width: 43rem;
  width: 80%;
}
/* Search */
.predictive-search--header:not(.results) .search-list-item {
  display: none;
}
.predictive-search--header .search-list-item.search-suggest,
.predictive-search--header.results .search-list-item:not(.flex) {
  display: block;
}
.predictive-search--header.results .search-list-item.flex {
  display: flex;
}
.predictive-search--header.results .search-list-item {
  margin-top: 0;
}
.cart-recommend .bls-add-cart-list {
  background: transparent;
  border: 0;
  color: var(--btn-link-color);
  flex-grow: unset;
  padding: 0 0 3px;
  width: auto;
}
.cart-recommend .bls-add-cart-list::before {
  content: "";
  position: absolute;
  height: var(--height, 2px);
  background-color: var(--btn-link-color);
  right: 0;
  bottom: 0;
  left: 0;
  transition: var(--transition);
}
:is(.footer__block-info, .newsletter-note) a {
  text-decoration: none;
}
@media (min-width: 1025px) {
  .footer__block-heading {
    pointer-events: none;
  }
  .cart-recommend.beside .bls-add-cart-list {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .mobi-navigation-bar {
    padding-bottom: 6.5rem;
  }
  .footer back-to-top {
    bottom: 7.5rem;
  }
  .footer__blocks {
    --bs-gutter-x: 0;
  }
  .footer__blocks .footer-block:last-child {
    border-bottom: 0;
  }
  .header__normal-logo {
    width: var(--header-logo-width-mobile);
  }
}
.bg-transparent {
  background: transparent !important;
}
.bls__drawer {
  --transition-type: transform;
}
.bls__drawer.left {
  transform: translateX(100%);
  width: 100%;
  max-width: var(--drawer-width, 48rem);
}
.bls__drawer.right {
  transform: translateX(-100%);
  width: 100%;
  max-width: var(--drawer-width, 48rem);
}
@media (min-width: 768px) {
  .bls__drawer.top {
    transform: translateY(-100%);
  }
}

:root {
  --swiper-navigation-color: var(--color-dark);
  --swiper-navigation-size: 16px;
  --swiper-pagination-bullet-width: 2.5rem;
  --swiper-pagination-bullet-height: 2.5rem;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: transparent;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-horizontal-gap: 0;
}
@media screen and (max-width: 767.98px) {
  .free-scroll {
    margin-left: calc(-1 * var(--bs-gutter-x, 1.5rem));
    margin-right: calc(-1 * var(--bs-gutter-x, 1.5rem));
  }
  .free-scroll [data-free-scroll] {
    padding-left: var(--bs-gutter-x);
    padding-right: var(--bs-gutter-x);
    --col: var(--col-number);
  }
  [data-free-scroll] .swiper-wrapper::-webkit-scrollbar,
  .grid_scroll::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  :is(.grid_scroll, .swiper.grid_scroll) {
    grid-template-columns: repeat(
      var(--repeat, auto-fit),
      minmax(calc(100% / var(--col-number)), 1fr)
    );
    grid-auto-flow: column;
    grid-auto-columns: minmax(calc(100% / var(--col-number)), 1fr);
    gap: var(--col-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    display: grid;
    margin-left: calc(-1 * var(--bs-gutter-x));
    margin-right: calc(-1 * var(--bs-gutter-x));
    padding-left: var(--bs-gutter-x);
    padding-right: var(--bs-gutter-x);
  }
  :is(
      .grid_scroll .col-w-custom:not(.product-item__inner),
      [data-free-scroll="true"].flex-cols > *,
      [data-free-scroll].flex-col-custom > *
    ) {
    width: 100%;
    padding-inline: 0;
  }
  [data-free-scroll="true"].flex-cols.flex-column:not(.swiper-initialized) {
    flex-direction: row;
  }
  [data-free-scroll] .swiper-pagination {
    margin-top: 1.5rem;
  }
  [data-enable="true"].swiper.grid-cols {
    grid-template-columns: repeat(
      var(--repeat, var(--col)),
      calc((100% - var(--gap, 0px) * calc(var(--col) - 1)) / var(--col))
    );
  }
  [data-enable="true"].swiper.flex-column:not(.swiper-initialized) {
    flex-direction: row;
  }
  :root {
    --swiper-pagination-bullet-width: 1.5rem;
    --swiper-pagination-bullet-height: 1.5rem;
    --swiper-pagination-bullet-horizontal-gap: -17px;
  }
  .swiper-pagination-bullet {
    padding: 2.4rem;
  }
  body
    .swiper-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet,
  body
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: -1.7rem;
  }
  .swiper-pagination-bullet:before {
    display: none;
  }
  .row-gap-mb-0 {
    row-gap: 0;
  }
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  --swiper-pagination-color: var(--color-heading);
}
.swiper:not([class*="initialized"]) .swiper-wrapper {
  --gap: var(--col-gap);
  overflow: hidden;
  gap: var(--gap, 1.5rem);
}
.swiper:not([class*="initialized"])[data-mobile="1.5"] .swiper-wrapper {
  overflow: unset;
}
:is(.swiper-button-next, .swiper-button-prev).swiper-arrow:before,
:is(.swiper-button-next, .swiper-button-prev).swiper-arrow:after {
  display: none;
}
.swiper:not([class*="initialized"]) .swiper-wrapper .swiper-slide {
  flex: 0 0 auto;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar-fill {
  border-radius: 1rem;
  overflow: hidden;
}
.swiper:not([class*="initialized"])[data-mobile="6"] .swiper-slide {
  width: calc((100% - (var(--gap, 3rem) * 5)) / 6);
}
.swiper:not([class*="initialized"])[data-mobile="5"] .swiper-slide {
  width: calc((100% - (var(--gap, 3rem) * 4)) / 5);
}
.swiper:not([class*="initialized"])[data-mobile="4"] .swiper-slide {
  width: calc((100% - (var(--gap, 3rem) * 3)) / 4);
}
.swiper:not([class*="initialized"])[data-mobile="3"] .swiper-slide {
  width: calc((100% - (var(--gap, 3rem) * 2)) / 3);
}
.swiper:not([class*="initialized"])[data-mobile="2"] .swiper-slide {
  width: calc((100% - (var(--gap, 3rem) * 1)) / 2);
}

.swiper:not([class*="initialized"])[data-mobile="1.5"] .swiper-slide {
  width: calc((100% - (var(--gap, 3rem) * 1)) / 1.5);
}
.swiper:not([class*="initialized"])[data-mobile="1"] .swiper-slide {
  width: 100%;
}
@media (min-width: 768px) {
  .swiper:not([class*="initialized"])[data-tablet="6"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 5)) / 6);
  }
  .swiper:not([class*="initialized"])[data-tablet="5"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 4)) / 5);
  }
  .swiper:not([class*="initialized"])[data-tablet="4"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 3)) / 4);
  }
  .swiper:not([class*="initialized"])[data-tablet="3"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 2)) / 3);
  }
  .swiper:not([class*="initialized"])[data-tablet="2"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 1)) / 2);
  }
  .swiper:not([class*="initialized"])[data-tablet="1"] .swiper-slide {
    width: 100%;
  }
  .swiper:not([class*="initialized"]) .swiper-wrapper {
    --gap: var(--col-gap-desktop);
  }
}
@media (min-width: 1025px) {
  .swiper:not([class*="initialized"])[data-desktop="8"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 7)) / 8);
  }
  .swiper:not([class*="initialized"])[data-desktop="7"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 6)) / 7);
  }
  .swiper:not([class*="initialized"])[data-desktop="6"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 5)) / 6);
  }
  .swiper:not([class*="initialized"])[data-desktop="5"] .swiper-slide {
    width: calc(100% / 5);
  }
  .swiper:not([class*="initialized"])[data-desktop="4"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 3)) / 4);
  }
  .swiper:not([class*="initialized"])[data-desktop="3"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 2)) / 3);
  }
  .swiper:not([class*="initialized"])[data-desktop="2"] .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 1)) / 2);
  }
  .swiper:not([class*="initialized"])[data-desktop="1"] .swiper-slide {
    width: 100%;
  }
}
:is(.swiper-button-next, .swiper-button-prev).swiper-arrow {
  width: var(--swiper-width, clamp(3.5rem, 5vw, 5rem));
  height: var(--swiper-width, clamp(3.5rem, 5vw, 5rem));
  margin-top: 0;
  transform: translateY(-50%);
  top: var(--arrows-offset-top, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
:is(.swiper-button-next, .swiper-button-prev).swiper-arrow svg {
  width: var(--swiper-size, 10px);
  height: var(--swiper-size, 10px);
}
@media (min-width: 768px) {
  :where(.swiper-actions:not(.show-arrow) .swiper-arrow),
  :is(.swiper-actions:not(.show-arrow) .swiper-arrow.swiper-button-disabled) {
    opacity: 0;
    visibility: hidden;
  }
  .swiper:hover
    .swiper-actions:not(.show-arrow)
    :is(.swiper-button-next, .swiper-button-prev) {
    opacity: 1;
    visibility: visible;
    --swiper-navigation-sides-offset: 20px;
  }
  .swiper:hover
    :is(.swiper-actions:not(.show-arrow) .swiper-arrow.swiper-button-disabled) {
    opacity: 0.75;
    visibility: visible;
  }
  :where(.swiper-arrow:hover) {
    background-color: var(--color-dark);
    color: var(--color-white);
  }
}
@media screen and (max-width: 767.98px) {
  .swiper-actions.original-style {
    margin-bottom: 0;
  }
  .swiper-actions:not(.show-on-mobile) {
    display: none;
  }
  .w-1024-full {
    width: 100%;
  }
  .thumbnail_left[data-thumb-slides-per-view="4"]
    .thumbnail-slide
    .swiper-slide {
    width: calc((100% - (var(--gap, 3rem) * 3)) / 4);
  }
}
body .swiper-pagination-lock,
body
  .swiper-pagination:not(
    .swiper-pagination-bullets,
    .swiper-pagination-custom
  ) {
  display: none;
}
body .swiper-pagination {
  position: var(--swiper-pagination-position, relative);
  margin-top: var(--swiper-pagination-mt, 3rem);
}
.swiper-pagination-bullet {
  position: relative;
}
.swiper-pagination-bullet:after,
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  transition: var(--transition);
}
.swiper-pagination-bullet:after {
  display: inline-block;
  width: var(--tns-nav-width, 5px);
  height: var(--tns-nav-width, 5px);
  background-color: var(--color-dark);
  opacity: 0.4;
  margin: auto;
}
.swiper-pagination-bullet:before {
  border: 1px solid var(--tns-nav-border, var(--color-dark));
  opacity: 0;
  transform: scale(0.3);
}
.swiper-pagination-bullet-active::after,
.swiper-pagination-bullet-active:before {
  opacity: 1;
  transform: scale(1);
}
@media only screen and (min-width: 1025px) {
  .swiper.reveal_on_scroll {
    overflow: visible;
  }
  .product_with-banner .swiper.reveal_on_scroll {
    overflow: hidden;
  }
}
:is(.swiper-button-next, .swiper-button-prev).swiper-button-lock {
  display: none;
}

.overlay-bg:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: var(--overlay-opacity, 30%);
  pointer-events: none;
}
.rounded-style.overlay-bg:after {
  border-radius: var(--rounded-radius, 0);
}

.footer:not(.remove_spacing-on-home) {
  margin-top: calc(var(--section-spacing) - 1.8rem);
}
.footer.border-top:not(.remove_spacing-on-home) {
  margin-top: var(--section-spacing);
}

mobile-navigation-bar {
  transform: translateY(100%);
}
mobile-navigation-bar.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
mobile-navigation-bar > a {
  flex: 0 0 auto;
  width: calc(100% / var(--number, 5));
  gap: 4px;
}
