/*
fonts
*/

@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

/*
global vars
*/

:root {
  /* layout */
  --global-content-width: 1440px;
  /* fonts - fluid scale 390px–1440px */
  --font-headline: "Oswald", sans-serif;
  --font-body: "Roboto", sans-serif;
  --font-size-h1: clamp(46px, calc(46px + 10 * (100vw - 390px) / 1050), 56px);
  --font-size-h2: clamp(32px, calc(32px + 8 * (100vw - 390px) / 1050), 40px);
  --font-size-h3: clamp(22px, calc(22px + 2 * (100vw - 390px) / 1050), 24px);
  --font-size-h4: clamp(18px, calc(18px + 2 * (100vw - 390px) / 1050), 20px);
  --font-size-h5: clamp(18px, calc(18px + 2 * (100vw - 390px) / 1050), 20px);
  --font-size-h6: clamp(18px, calc(18px + 2 * (100vw - 390px) / 1050), 20px);
  --font-size-body-large: clamp(16px, calc(16px + 2 * (100vw - 390px) / 1050), 18px);
  --font-size-body: clamp(14px, calc(14px + 2 * (100vw - 390px) / 1050), 16px);
  --font-size-body-small: 14px;
  --font-size-body-tiny: 12px;
  /* colors */
  --color-yellow: #FFED00;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-grey-light: #f7f7f7;
  --color-grey: #888888;
  --color-grey-dark: #4c4c4c;
  --color-dark: var(--color-black);
  --color-success: #65c900;
  /* stock colors */
  --stock-signal-0: #b90000;
  --stock-signal-1: #a56823;
  --stock-signal-2: var(--color-success);
  /* spacing - fluid scale 390px–1440px */
  --spacing-xxl: clamp(64px, calc(64px + 64 * (100vw - 390px) / 1050), 128px);
  --spacing-xl: clamp(48px, calc(48px + 16 * (100vw - 390px) / 1050), 64px);
  --spacing-lg: clamp(32px, calc(32px + 16 * (100vw - 390px) / 1050), 48px);
  --spacing-md: clamp(24px, calc(24px + 8 * (100vw - 390px) / 1050), 32px);
  --spacing-sm: clamp(16px, calc(16px + 8 * (100vw - 390px) / 1050), 24px);
  --spacing-xs: clamp(8px, calc(8px + 8 * (100vw - 390px) / 1050), 16px);
  --spacing-xxs: clamp(4px, calc(4px + 4 * (100vw - 390px) / 1050), 8px);
  --spacing-section: var(--spacing-xl);
  --spacing-column: clamp(32px, calc(32px + 8 * (100vw - 390px) / 1050), 40px);
  --spacing-module: var(--spacing-xs);
  --spacing-content-margin: 1rem;
  --navigation-height: 72px;
  /* overwrites */
  --primary: var(--color-yellow);
  --secondary: var(--color-grey-dark);
  --light: var(--color-grey-light);
  --dark: var(--color-black);
  --gray: var(--color-grey);
  --gray-dark: var(--color-grey-dark);
  /* product list cards */
  --product-card-radius: 8px;
  --product-card-image-bg: var(--color-grey-light);
}

/*
layout
*/

#content-wrapper:not(.has-fluid),
#content {
  padding-top: 0;
  padding-bottom: 0;
}

.container,
.container-fluid,
.container-fluid-xl {
  max-width: var(--global-content-width) !important;
  margin-left: auto;
  margin-right: auto;
}

#jtl-nav-wrapper .container,
#jtl-nav-wrapper .container-fluid,
#jtl-nav-wrapper .container-fluid-xl,
header .container,
header .container-fluid,
header .container-fluid-xl,
.hide-navbar.container,
.hide-navbar.container-fluid,
.hide-navbar.container-fluid-xl {
  max-width: var(--global-content-width) !important;
}

/*
general
*/

.alert-info {
  color: var(--color-dark);
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
}

:focus-visible {
  outline: none;
}

/*
typography
*/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4, 
.h5,
.h6 {
  font-family: var(--font-headline);
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

h1
h2.h1,
h3.h1,
h4.h1,
h5.h1,
h6.h1,
p.h1  {
  font-size: var(--font-size-h1);
  line-height: 114%;
  text-transform: uppercase;
}

h2,
h1.h2,
h3.h2,
h4.h2,
h5.h2,
h6.h2,
p.h2 {
  font-size: var(--font-size-h2);
  line-height: 120%;
}

h3,
h1.h3,
h2.h3,
h4.h3,
h5.h3,
h6.h3,
p.h3 {
  font-size: var(--font-size-h3);
  line-height: 130%;
}

h4,
h1.h4,
h2.h4,
h3.h4,
h5.h4,
h6.h4,
p.h4 {
  font-size: var(--font-size-h4);
  line-height: 140%;
}

h5,
h1.h5,
h2.h5,
h3.h5,
h4.h5,
h6.h5,
p.h5 {
  font-size: var(--font-size-h5);
  line-height: 140%;
}

h6,
h1.h6,
h2.h6,
h3.h6,
h4.h6,
h5.h6,
p.h6 {
  font-size: var(--font-size-h6);
  line-height: 140%;
}

body,
body p,
ul,
ol,
li,
div,
span,
a,
label,
input,
select,
textarea {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-black);
  font-size: var(--font-size-body);
  line-height: 150%;
}

body .small,
p.small,
ul.small,
ol.small,
li.small,
div.small,
span.small,
a.small,
label.small,
input.small,
select.small,
textarea.small {
  font-size: var(--font-size-body-small);
  line-height: 140%;
}

body .tiny,
p.tiny,
ul.tiny,
ol.tiny,
li.tiny,
div.tiny,
span.tiny,
a.tiny,
label.tiny,
input.tiny,
select.tiny,
textarea.tiny {
  font-size: var(--font-size-body-tiny);
  line-height: 150%;
}

strong,
b {
  font-weight: 700;
}

a {
  color: var(--color-black);
  text-decoration: underline;
}

a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.subline {
  font-family: var(--font-headline);
  color: var(--color-black);
  font-weight: 700;
}

.overline {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 128%;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.light {
  color: var(--color-white);
}

/*
header
*/

header {
  box-shadow: none;
  padding: var(--spacing-xxs) 0;
}

header .navbar {
  align-items: center !important;

}

header .navbar-brand {
  padding-left: 0;
}

header .navbar-nav {
  padding: 0 !important;
}

header #mainNavigation {
  height: auto;
}

header .navbar-nav > .nav-item > .nav-link {
  padding: 10px var(--spacing-sm)
}

header .navbar-nav .nav-link:before {
  display: none;
}

header .navbar-nav .nav-link,
header .navbar-nav .nav-link span {
  font-family: var(--font-headline);
  color: var(--color-black) !important;
  font-size: var(--font-size-body-large);
  font-weight: 500;
  text-transform: uppercase;
}

header .navbar-nav .nav-link:hover {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--color-yellow);
  text-decoration-thickness: 5px;
  text-underline-offset: 5px;
  text-underline-position: from-font;
}

header .navbar-nav .nav-link.dropdown-toggle:after {
  display: none;
}

header .navbar-nav .nav-item:hover .nav-mobile-heading {
  overflow: visible;
}

header .nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

header .nav-right .nav-item,
header .nav-right .nav-item > button,
header .nav-right .nav-item > span,
header .nav-right .nav-item > a {
  padding: 0 !important;
  margin: 0 !important;
}

header .nav-right .cart-icon-dropdown,
header .nav-right .cart-icon-dropdown .ec-cart-nav-link {
  display: inline-flex;
}

/*
megamenu
*/

.ec-megamenu .ec-megamenu__body {
  background-color: var(--color-black);
  padding: 0;
}

.ec-megamenu__grid {
  --ec-megamenu-row-min-height: 450px;
  display: none;
  grid-template-columns: 230px 230px minmax(0, 1fr);
  grid-template-rows: auto;
  min-height: var(--ec-megamenu-row-min-height);
  margin: 0 auto;
  padding-left: calc(((100vw - var(--global-content-width)) / 2) + var(--spacing-content-margin));
}

.ec-megamenu__grid.ec-megamenu__grid--no-level2 {
  grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
}

@media (min-width: 992px) {
  .ec-megamenu__grid {
    display: grid;
  }
}

.ec-megamenu__col-level1 {
  box-sizing: border-box;
  padding: var(--spacing-xl) var(--spacing-xs);
}

.ec-megamenu__col-level2 {
  box-sizing: border-box;
  padding: 0 var(--spacing-xs);
}

.ec-megamenu__col-level2-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  align-self: start;
  min-width: 0;
  max-width: max-content;
  padding: var(--spacing-xl) 0;
}

.ec-megamenu__col-level2 .ec-megamenu__all-show,
.ec-megamenu__col-level2 .ec-megamenu__subcategories {
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.ec-megamenu__col-level2.is-empty .ec-megamenu__all-show,
.ec-megamenu__col-level2.is-empty .ec-megamenu__subcategories {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.ec-megamenu__list,
.ec-megamenu__subcategories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-megamenu__list li,
.ec-megamenu__subcategories li {
  margin: 0;
  padding: 0;
}

.ec-megamenu__all-categories,
.ec-megamenu__category-link {
  font-family: var(--font-headline);
  font-size: var(--font-size-h3);
  font-weight: 700;
  text-decoration: none;
  color: var(--color-white) !important;
  transition: color 0.2s ease;
  line-height: 200%;
}

.ec-megamenu__all-show,
.ec-megamenu__subcategory-link {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  text-decoration: none;
  color: var(--color-white) !important;
  transition: color 0.2s ease;
  line-height: 200%;
}

.ec-megamenu__all-categories:hover,
.ec-megamenu__category-link:hover,
.ec-megamenu__all-show:hover,
.ec-megamenu__subcategory-link:hover {
  color: var(--color-yellow) !important;
}

.ec-megamenu__category-link.is-active,
.ec-megamenu__category-link:hover {
  color: var(--color-yellow) !important;
}

.ec-megamenu__list .ec-megamenu__all-categories,
.ec-megamenu__list .ec-megamenu__category-link,
.ec-megamenu__subcategories .ec-megamenu__subcategory-link {
  display: block;
  padding: 0;
}

.ec-megamenu__col-separator {
  flex: 0 0 3px;
  width: 3px;
  min-width: 3px;
  overflow: hidden;
  background-color: var(--color-yellow);
  margin: 0;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    flex-basis 0.2s ease,
    width 0.2s ease,
    min-width 0.2s ease;
  pointer-events: none;
}

.ec-megamenu__grid:has(.ec-megamenu__col-level2:not(.is-empty)) .ec-megamenu__col-separator {
  flex: 0 0 3px;
  width: 3px;
  min-width: 3px;
  opacity: 1;
}

.ec-megamenu__col-image {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  justify-content: stretch;
  container-type: size;
  container-name: ec-megamenu-imgcol;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.ec-megamenu__image {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: max(200px, var(--ec-megamenu-row-min-height, 280px));
  height: 100%;
}

.ec-megamenu__image::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--color-black) transparent transparent transparent;
  border-top-width: var(--ec-megamenu-row-min-height, 280px);
  border-right-width: var(--ec-megamenu-row-min-height, 280px);
  border-bottom-width: 0;
  border-left-width: 0;
  pointer-events: none;
}

@supports (width: 1cqw) {
  .ec-megamenu__col-image {
    --ec-megamenu-corner-leg: min(100cqw, 100cqh);
  }

  .ec-megamenu__image::after {
    border-top-width: var(--ec-megamenu-corner-leg);
    border-right-width: var(--ec-megamenu-corner-leg);
  }
}

.ec-megamenu__image img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ec-megamenu__image img.ec-megamenu-preview-img {
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: opacity;
}

.ec-megamenu__image img.ec-megamenu-preview-img.is-visible {
  opacity: 1;
}

.ec-megamenu__image img.ec-megamenu-preview-img.ec-megamenu-preview-img--instant {
  transition: none;
  opacity: 0;
}

@media (max-width: 1440px) {
  .ec-megamenu__grid {
    padding-left: var(--spacing-content-margin);
  }
}

@media (min-width: 992px) {
  @keyframes ec-mainnav-dropdown-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  #mainNavigation .navbar-nav > .dropdown > .dropdown-menu.show {
    animation: ec-mainnav-dropdown-in 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .ec-megamenu-wrapper .dropdown-menu.ec-megamenu {
    left: 0;
    right: auto;
    min-width: 100%;
  }

  header .nav-scrollbar {
    overflow: visible !important;
  }
  .ec-megamenu.dropdown-menu.show {
    z-index: 1050;
  }
}

@media (max-width: 991.98px) {
  header .navbar-nav .ec-megamenu-wrapper > .dropdown-menu.ec-megamenu {
    width: 100%;
    background-color: var(--color-black);
    border: none;
    box-shadow: none;
  }

  .ec-megamenu .ec-megamenu__body {
    background-color: var(--color-white);
    min-height: 0;
    padding: 0;
  }

  .ec-megamenu .ec-megamenu__grid,
  .ec-megamenu .ec-megamenu-subcats-data,
  .ec-megamenu .ec-megamenu__col-image {
    display: none !important;
  }

  .ec-megamenu__mobile {
    display: block !important;
    padding: 0;
  }

  .ec-megamenu__mobile-all,
  .ec-megamenu__mobile-l1 {
    font-family: var(--font-headline);
    color: var(--color-black) !important;
    font-size: var(--font-size-body-large);
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px var(--spacing-sm)
  }

  .ec-megamenu__mobile-all:hover,
  .ec-megamenu__mobile-all:focus,
  .ec-megamenu__mobile-l1:hover,
  .ec-megamenu__mobile-l1:focus {
    background-color: transparent !important;
  }

  .ec-megamenu__mobile-group:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  header .navbar-nav .ec-megamenu__mobile-l2 {
    display: block;
  }

  header .navbar-nav .ec-megamenu__mobile-l2-link.nav-link {
    display: block;
    font-family: var(--font-headline);
    font-size: var(--font-size-body-large);
    text-transform: unset;
    color: var(--color-black) !important;
    padding: 10px var(--spacing-md);
    width: 100%;
    margin: 0;
    font-weight: 400;
  }

  header .navbar-nav .ec-megamenu__mobile-l2-link.nav-link:after {
    display: none;
  }
  header .navbar-nav .nav-link:hover,
  header .navbar-nav .ec-megamenu__mobile-l2-link.nav-link:hover {
    text-decoration: none;
  }
}

/*
search icon & search popup
*/

.nav-item-search-popup {
  display: flex !important;
  position: relative;
  align-items: center;
}

.search-popup-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xs);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
}

.search-popup-trigger svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.search-popup {
  position: fixed;
  top: 72px;
  right: max(0px, calc((100vw - var(--global-content-width)) / 2) + 1rem);
  left: auto;
  width: 90%;
  max-width: 400px;
  z-index: 1030;
  background-color: var(--color-white);
  padding: var(--spacing-sm);
}

.search-popup-inner {
  width: 100%;
}

.search-popup .main-search .form-control {
  border-color: var(--color-black);
  border-radius: 0;
  color: var(--color-black);
}

.search-popup .main-search .form-control:focus {
  box-shadow: none
}

.search-popup button,
.search-popup button:hover  {
  background-color: var(--color-black) !important;
  border-color: var(--color-black) !important;
}

.search-popup button .fa-search  {
  color: var(--color-white);
}


.search-popup .form-clear {
  color: var(--color-black);
}

@media (min-width: 992px) {
  #jtl-nav-wrapper.full-width-mega #shop-nav .nav-item-search-popup {
    display: none;
  }
}

@media (max-width: 991px) {
  .search-popup {
    top: 53px;
    max-width: 100%;
    width: 100%;
  }
}

/*
account icon
*/

.account-icon-dropdown .nav-link {
  font-size: 0;
  color: var(--color-black);
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-icon-dropdown .nav-link::before {
  content: '';
  width: 24px;
  height: 24px;
  background-color: var(--color-black);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 21V19C20 17.9391 19.5786 16.9217 18.8284 16.1716C18.0783 15.4214 17.0609 15 16 15H8C6.93913 15 5.92172 15.4214 5.17157 16.1716C4.42143 16.9217 4 17.9391 4 19V21' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 11C14.2091 11 16 9.20914 16 7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7C8 9.20914 9.79086 11 12 11Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 21V19C20 17.9391 19.5786 16.9217 18.8284 16.1716C18.0783 15.4214 17.0609 15 16 15H8C6.93913 15 5.92172 15.4214 5.17157 16.1716C4.42143 16.9217 4 17.9391 4 19V21' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 11C14.2091 11 16 9.20914 16 7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7C8 9.20914 9.79086 11 12 11Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/*
cart icon
*/

.cart-icon-dropdown .ec-cart-nav-link {
  padding: var(--spacing-xxs) 0;
  color: var(--color-black);
}

.cart-icon-dropdown .ec-cart-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.cart-icon-dropdown .ec-cart-badge.has-items {
  background-color: var(--color-yellow);
  padding: var(--spacing-xxs) var(--spacing-xs);
}

.cart-icon-dropdown .ec-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-dropdown .ec-cart-icon svg {
  width: 24px;
  height: 24px;
}

.cart-icon-dropdown .ec-cart-count {
  font-family: var(--font-headline);
  font-size: var(--font-size-body);
  font-weight: 600;
  line-height: 1;
}

.cart-icon-dropdown .ec-cart-nav-link:hover .ec-cart-badge {
  color: var(--color-grey-dark);
}

.cart-icon-dropdown .cart-icon-dropdown-price {
  display: none !important;
}

/*
buttons
*/

.btn,
.btn-primary,
.btn-secondary,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary.disabled,
.btn-secondary.disabled {
  line-height: 1em;
  box-shadow: none;
}

/* primary button */

.btn-primary,
.btn-primary:disabled,
.btn-primary.disabled {
  background-color: var(--color-black) !important;
  border-color: var(--color-black) !important;
  color: var(--color-white) !important;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  padding: var(--spacing-xs) var(--spacing-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
.show > .btn-primary[data-toggle="collapse"]:not(.navbar-toggler) {
  background-color: var(--color-grey-dark) !important;
  border-color: var(--color-grey-dark) !important;
  color: var(--color-white) !important;
}

.btn-primary.light,
.btn-primary.light:disabled,
.btn-primary.light.disabled {
  background-color: var(--color-white) !important;
  border-color: var(--color-white) !important;
  color: var(--color-black) !important;
}

.btn-primary.light:hover,
.btn-primary.light:focus,
.btn-primary.light:not(:disabled):not(.disabled):active {
  background-color: var(--color-grey-light) !important;
  border-color: var(--color-grey-light) !important;
  color: var(--color-black) !important;
}

.btn-primary.yellow,
.btn-primary.yellow:disabled,
.btn-primary.yellow.disabled {
  background-color: var(--color-yellow) !important;
  border-color: var(--color-yellow) !important;
  color: var(--color-black) !important;
}

.btn-primary.yellow:hover,
.btn-primary.yellow:focus,
.btn-primary.yellow:not(:disabled):not(.disabled):active {
  background-color: #e6d600 !important;
  border-color: #e6d600 !important;
  color: var(--color-black) !important;
}

/* secondary button */

.btn-secondary,
.btn-secondary:disabled,
.btn-secondary.disabled {
  background-color: var(--color-yellow) !important;
  border-color: var(--color-yellow) !important;
  color: var(--color-black) !important;
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  padding: 8px var(--spacing-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  background-color: #e6d600 !important;
  border-color: #e6d600 !important;
  color: var(--color-black) !important;
}

.btn-secondary.dark,
.btn-secondary.dark:disabled,
.btn-secondary.dark.disabled {
  background-color: var(--color-black) !important;
  border-color: var(--color-black) !important;
  color: var(--color-white) !important;
}
.btn-secondary.dark:hover,
.btn-secondary.dark:focus,
.btn-secondary.dark.focus,
.btn-secondary.dark:not(:disabled):not(.disabled):active {
  background-color: var(--color-grey-dark) !important;
  border-color: var(--color-grey-dark) !important;
  color: var(--color-white) !important;
}

/* icon buttons */

.btn.arrow {
  gap: var(--spacing-xxs);
}

.btn.arrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.66663 8H13.3333' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.88885 3.55566L13.3331 8.00011L8.88876 12.4446' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.66663 8H13.3333' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.88885 3.55566L13.3331 8.00011L8.88876 12.4446' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn.globe {
  gap: var(--spacing-xxs);
}

.btn.globe::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 12H22' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 2C14.5013 4.73835 15.9228 8.29203 16 12C15.9228 15.708 14.5013 19.2616 12 22C9.49872 19.2616 8.07725 15.708 8 12C8.07725 8.29203 9.49872 4.73835 12 2V2Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 12H22' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 2C14.5013 4.73835 15.9228 8.29203 16 12C15.9228 15.708 14.5013 19.2616 12 22C9.49872 19.2616 8.07725 15.708 8 12C8.07725 8.29203 9.49872 4.73835 12 2V2Z' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn.basket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xxs);
}

.btn.basket::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M7%2021C7%2019.8954%207.89543%2019%209%2019C10.1046%2019%2011%2019.8954%2011%2021C11%2022.1046%2010.1046%2023%209%2023C7.89543%2023%207%2022.1046%207%2021Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M18%2021C18%2019.8954%2018.8954%2019%2020%2019C21.1046%2019%2022%2019.8954%2022%2021C22%2022.1046%2021.1046%2023%2020%2023C18.8954%2023%2018%2022.1046%2018%2021Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M5%200C5.47661%200%205.88691%200.336378%205.98047%200.803711L6.82031%205H23C23.298%205%2023.5805%205.13276%2023.7705%205.3623C23.9605%205.59193%2024.0382%205.89475%2023.9824%206.1875L22.3818%2014.5771L22.3809%2014.585C22.2437%2015.2755%2021.8677%2015.8954%2021.3193%2016.3369C20.776%2016.7743%2020.0975%2017.0078%2019.4004%2016.999L9.67969%2017C8.98256%2017.0088%208.30414%2016.7744%207.76074%2016.3369C7.21258%2015.8956%206.83656%2015.2761%206.69922%2014.5859L5.02344%206.21289C5.0214%206.20348%205.01935%206.19407%205.01758%206.18457L4.18066%202H1C0.447715%202%200%201.55228%200%201C0%200.447715%200.447715%200%201%200H5ZM8.66016%2014.1934L8.66113%2014.1953C8.70688%2014.4254%208.83188%2014.6322%209.01465%2014.7793C9.19747%2014.9265%209.42648%2015.0045%209.66113%2015H19.4189C19.6536%2015.0045%2019.8826%2014.9265%2020.0654%2014.7793C20.2254%2014.6505%2020.3414%2014.4761%2020.3984%2014.2803L20.4189%2014.1953L21.791%207H7.2207L8.66016%2014.1934Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M7%2021C7%2019.8954%207.89543%2019%209%2019C10.1046%2019%2011%2019.8954%2011%2021C11%2022.1046%2010.1046%2023%209%2023C7.89543%2023%207%2022.1046%207%2021Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M18%2021C18%2019.8954%2018.8954%2019%2020%2019C21.1046%2019%2022%2019.8954%2022%2021C22%2022.1046%2021.1046%2023%2020%2023C18.8954%2023%2018%2022.1046%2018%2021Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M5%200C5.47661%200%205.88691%200.336378%205.98047%200.803711L6.82031%205H23C23.298%205%2023.5805%205.13276%2023.7705%205.3623C23.9605%205.59193%2024.0382%205.89475%2023.9824%206.1875L22.3818%2014.5771L22.3809%2014.585C22.2437%2015.2755%2021.8677%2015.8954%2021.3193%2016.3369C20.776%2016.7743%2020.0975%2017.0078%2019.4004%2016.999L9.67969%2017C8.98256%2017.0088%208.30414%2016.7744%207.76074%2016.3369C7.21258%2015.8956%206.83656%2015.2761%206.69922%2014.5859L5.02344%206.21289C5.0214%206.20348%205.01935%206.19407%205.01758%206.18457L4.18066%202H1C0.447715%202%200%201.55228%200%201C0%200.447715%200.447715%200%201%200H5ZM8.66016%2014.1934L8.66113%2014.1953C8.70688%2014.4254%208.83188%2014.6322%209.01465%2014.7793C9.19747%2014.9265%209.42648%2015.0045%209.66113%2015H19.4189C19.6536%2015.0045%2019.8826%2014.9265%2020.0654%2014.7793C20.2254%2014.6505%2020.3414%2014.4761%2020.3984%2014.2803L20.4189%2014.1953L21.791%207H7.2207L8.66016%2014.1934Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
}

.btn.arrow::after,
.btn.globe::after,
.btn.basket::after {
  width: var(--font-size-body);
  height: var(--font-size-body);
  max-width: var(--font-size-body);
  max-height: var(--font-size-body);
}

/* strip focus & target chrome (outline, shadow, ring) */

.btn:focus,
.btn.focus {
  box-shadow: none !important;
}

.btn:focus-visible,
.btn.focus {
  outline: none !important;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
  box-shadow: none !important;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: none !important;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus,
.show > .btn-primary[data-toggle="collapse"]:focus:not(.navbar-toggler) {
  box-shadow: none !important;
}

.btn.basket:focus,
.btn.basket:focus-visible,
.btn.basket.focus,
.btn.basket:active,
#add-to-cart .btn.basket:focus,
#add-to-cart .btn.basket:focus-visible,
#add-to-cart .btn.basket.focus,
#add-to-cart .btn.basket:active,
#add-to-cart:target .btn.basket,
#add-to-cart:focus-within .btn.basket,
button.basket-details-add-to-cart:focus,
button.basket-details-add-to-cart:focus-visible,
button.basket-details-add-to-cart.focus,
button.basket-details-add-to-cart:active,
button[name="inWarenkorb"]:focus,
button[name="inWarenkorb"]:focus-visible,
button[name="inWarenkorb"].focus,
button[name="inWarenkorb"]:active {
  outline: none !important;
  box-shadow: none !important;
}

#add-to-cart:target,
#add-to-cart:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

.btn.basket::-moz-focus-inner,
button.basket-details-add-to-cart::-moz-focus-inner,
button[name="inWarenkorb"]::-moz-focus-inner {
  border: 0;
}

/*
hero slider
*/

.hero-slider {
  padding: 0;
  background: var(--color-white);
  overflow: hidden;
}

.hero-slider__inner {
  position: relative;
}

.hero-slider .js-hero-slider {
  margin: 0;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
  min-height: 400px;
}

.hero-slider .slick-slide {
  padding: 0;
}

.hero-slide {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background-color: var(--color-yellow);
}

.hero-slide__content {
  padding: var(--spacing-xxl) var(--spacing-xl);
  padding-left: calc(((100vw - var(--global-content-width)) / 2) + var(--spacing-content-margin));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-md);
}

.hero-slide__headline {
  margin: 0;
  font-size: var(--font-size-h1);
  line-height: 114%;
  text-transform: uppercase;
}

.hero-slide__text {
  margin: 0;
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
}

.hero-slide__button {
  width: fit-content;
}

.hero-slider__dots {
  position: absolute;
  left: calc(((100vw - var(--global-content-width)) / 2) + var(--spacing-content-margin));
  bottom: var(--spacing-xl);
  z-index: 10;
}

.hero-slider .slick-dots {
  position: static;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: var(--spacing-md) 0 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  list-style: none;
}

.hero-slider .slick-dots li {
  margin: 0 6px;
}

.hero-slider .slick-dots li button {
  display: block;
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-grey);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hero-slider .slick-dots li button:hover {
  background: var(--color-black);
}

.hero-slider .slick-dots li.slick-active button {
  background: var(--color-black);
}

.hero-slider .slick-dots li button:before {
  display: none;
}

.hero-slide__media {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  clip-path: polygon(77% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.hero-slide__product {
  position: absolute;
  z-index: 2;
  left: 60%;
  top: 50%;
  transform: translateY(-50%);
  max-height: 90%;
  max-width: 40%;
  object-fit: contain;
}

@media (max-width: 1440px) {
  .hero-slide__content {
    padding-left: var(--spacing-content-margin);
    padding-right: var(--spacing-content-margin);
  }

  .hero-slider__dots {
    left: var(--spacing-content-margin);
  }

  .hero-slide__product {
    left: 50%;
  }
}

@media (max-width: 991px) {
  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-slide__media {
    min-height: 0;
    height: 250px !important;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    clip-path: none;
  }

  .hero-slide__product {
    bottom: var(--spacing-lg);
    right: 0;
    top: auto;
    left: auto;
    transform: translateY(0);
    max-height: 100%;
    max-width: 60%;
    height: calc(250px + var(--spacing-xxl));
  }

  .hero-slide__content {
    padding-top: var(--spacing-lg);
    padding-bottom: calc(250px + var(--spacing-xxl)) !important;
  }

  .hero-slider__dots {
    bottom: calc(250px + var(--spacing-lg));
  }
}

@media (max-width: 767px) {
  
  .hero-slide__content {
    padding-bottom: calc(250px + var(--spacing-xxl) + var(--spacing-xxl)) !important;
    justify-content: flex-start;
  }
}

/*
home categories
*/

.home-categories {
  padding: var(--spacing-section) 0;
}

.home-categories-header {
  margin-bottom: var(--spacing-lg);
}

.home-categories-title {
  font-family: var(--font-headline);
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: var(--spacing-xs);
}

.home-categories-subtitle {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 400;
  line-height: 140%;
  color: var(--color-black);
  margin: 0;
}

.home-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  align-items: stretch;
}

.home-categories-card {
  position: relative;
  display: block;
  flex: 1 1 300px;
  max-width: 400px;
  min-height: 400px;
  border-radius: 32px;
  border-top-right-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.home-categories-card:hover {
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}

.home-categories-card:focus,
.home-categories-card:focus-visible {
  text-decoration: none;
}

.home-categories-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: var(--color-black);
}

.home-categories-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-categories-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: inherit;
}

.home-categories-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}

.home-categories-card-title {
  font-family: var(--font-headline);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.home-categories-all {
  margin-top: var(--spacing-lg);
}

/*
home brand bar
*/

.home-brand-bar {
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) 0;
  margin: var(--spacing-section) 0;
}

.home-brand-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--global-content-width);
  padding: 0 var(--spacing-content-margin);
  margin: 0 auto;
}

.home-brand-bar-title {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 140%;
  color: var(--color-black);
  margin: 0;
}

.home-brand-bar-logos {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.home-brand-bar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.home-brand-bar-logo img {
  display: block;
  height: auto;
  max-height: 43px;
  width: auto;
  object-fit: contain;
}

.home-brand-bar-logo:nth-child(3) img {
  max-height: 36px;
}

.home-brand-bar-logo:nth-child(5) img {
  max-height: 36px;
}

.home-brand-bar-separator {
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .home-brand-bar-inner,
  .home-brand-bar-logos {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
  }

  .home-brand-bar-logo {
    width: 100%;
    justify-content: center;
  }

  .home-brand-bar-separator {
    display: none;
  }
}

/*
home company
*/

.home-company {
  padding: var(--spacing-section) 0;
}

.home-company-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.home-company-top-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xs);
  height: 400px;
}

.home-company-bottom-row {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr 2fr;
  gap: var(--spacing-xs);
  height: 400px;
}

.home-company-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.home-company-img-wrap.home-company-img-treppen {
  overflow: visible;
}

.home-company-img-inner {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
}

.home-company-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-company-img-main,
.home-company-img-treppen {
  height: 400px;
}

.home-company-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.home-company-img-treppen .home-company-img-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.home-company-box {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-company-box-dark {
  padding: var(--spacing-md);
  background-color: var(--color-black);
  color: var(--color-white);
}

.home-company-box-yellow {
  padding: var(--spacing-md);
  background-color: var(--color-yellow);
  color: var(--color-black);
  position: relative;
  justify-content: flex-start;
}

.home-company-box-dark .home-company-title,
.home-company-box-dark .home-company-text {
  color: var(--color-white);
}

.home-company-box-yellow .home-company-subtitle,
.home-company-box-yellow .home-company-text {
  color: var(--color-black);
}

.home-company-quote {
  position: absolute;
  bottom: 0;
  right: var(--spacing-xs);
  width: 138px;
  height: 103px;
  pointer-events: none;
}

.home-company-title,
.home-company-subtitle {
  font-family: var(--font-headline);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 var(--spacing-xs);
}

.home-company-text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 150%;
  margin: 0 0 var(--spacing-xs);
}

.home-company-headline-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-company-headline {
  font-family: var(--font-headline);
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 var(--spacing-md);
}

.home-company-btn {
  align-self: flex-start;
}

.home-company-stoerer {
  position: absolute;
  bottom: calc(var(--spacing-section) * -1);
  right: var(--spacing-md);
  background-color: var(--color-yellow);
  color: var(--color-black);
  width: 180px;
  height: 180px;
  border-radius: 32px;
  border-top-right-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: top;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 16px 24px rgba(124, 120, 164, 0.2);
  padding: var(--spacing-sm);
}

.home-company-stoerer-xx {
  font-family: var(--font-headline);
  font-size: clamp(40px, calc(40px + 16 * (100vw - 390px) / 1050), 64px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-company-stoerer-label {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .home-company-top-row {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 340px;
  }

  .home-company-bottom-row {
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: 340px;
  }

  .home-company-img-main {
    height: 340px;
  }

  .home-company-img-treppen {
    height: 340px;
    grid-column: span 2;
  }

  .home-company-quote {
    width: 100px;
    height: 73px;
  }

  .home-company-box-dark,
  .home-company-box-yellow,
  .home-company-headline-block {
    min-height: 340px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .home-company-top-row,
  .home-company-bottom-row {
    grid-template-columns: 1fr;
  }

  .home-company-top-row {
    min-height: 280px;
  }

  .home-company-bottom-row {
    min-height: 280px;
  }

  .home-company-img-main {
    height: 280px;
  }

  .home-company-img-treppen {
    height: 280px;
    grid-column: span 1;
  }

  .home-company-box-dark,
  .home-company-box-yellow,
  .home-company-headline-block {
    min-height: 280px;
    justify-content: center;
  }
}

/*
home customer
*/

.home-customer {
  padding: var(--spacing-section) 0;
}

.home-customer-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-customer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 620px;
}

.home-customer-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: var(--spacing-xl) var(--spacing-lg);
}

.home-customer-box-yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
  border-radius: 8px 0 0 0;
}

.home-customer-box-dark {
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 0 0 8px 0;
}

.home-customer-box-dark .home-customer-title,
.home-customer-box-dark .home-customer-subline,
.home-customer-box-dark .home-customer-text {
  color: var(--color-white);
}

.home-customer-title {
  font-family: var(--font-headline);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 var(--spacing-xs);
}

.home-customer-subline {
  font-family: var(--font-headline);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 var(--spacing-xs);
}

.home-customer-text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 150%;
  margin: 0 0 var(--spacing-xs);
}

.home-customer-btn {
  align-self: flex-start;
}

.home-customer-img-wrap {
  position: relative;
  overflow: visible;
  min-height: 620px;
}

.home-customer-img-wrap .home-customer-img {
  position: absolute;
  inset: 0;
}

.home-customer-img-privat {
  border-radius: 0 8px 0 0;
}

.home-customer-img-gewerbe {
  border-radius: 0 0 0 8px;
}

.home-customer-img-wrap .home-customer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.home-customer-stoerer {
  position: absolute;
  background-color: var(--color-yellow);
  color: var(--color-black);
  width: 180px;
  height: 180px;
  border-radius: 32px;
  border-top-right-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 16px 24px rgba(124, 120, 164, 0.2);
  padding: var(--spacing-sm);
}

.home-customer-stoerer-top {
  top: calc(var(--spacing-section) * -1);
  left: var(--spacing-md);
}

.home-customer-stoerer-bottom {
  bottom: calc(var(--spacing-section) * -1);
  right: var(--spacing-md);
}

.home-customer-stoerer-xx {
  font-family: var(--font-headline);
  font-size: clamp(40px, calc(40px + 16 * (100vw - 390px) / 1050), 64px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-customer-stoerer-label {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .home-customer-grid {
    gap: var(--spacing-md);
  }

  .home-customer-row {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 400px;
  }

  .home-customer-row-top .home-customer-box-yellow {
    order: 2;
  }

  .home-customer-row-top .home-customer-img-privat {
    order: 1;
  }

  .home-customer-box-yellow {
    border-radius: 0 0 8px 8px;
  }

  .home-customer-row-top .home-customer-img-privat {
    border-radius: 8px 8px 0 0;
    min-height: 400px;
  }

  .home-customer-img-gewerbe {
    border-radius: 8px 8px 0 0;
    min-height: 400px;
  }

  .home-customer-box-dark {
    border-radius: 0 0 8px 8px;
    padding-top: var(--spacing-xxl);
  }
}

/*
home google reviews
*/

.home-reviews {
  padding: var(--spacing-section) 0;
}

.home-reviews-header {
  max-width: 945px;
  margin: 0 auto var(--spacing-xl);
  padding: var(--spacing-sm);
  text-align: center;
}

.home-reviews-title {
  font-family: var(--font-headline);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-black);
  margin: 0 0 var(--spacing-xs);
}

.home-reviews-subline {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-black);
  margin: 0;
}

.home-reviews-content {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  background-color: var(--color-grey-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--color-grey);
}

/*
home trust bar
*/

.home-trust-bar {
  padding: var(--spacing-xxl) 0;
}

.home-trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  align-items: start;
}

.home-trust-bar-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-trust-bar-icon-wrap {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.home-trust-bar-icon {
  width: auto;
  height: auto;
  max-width: 110px;
  max-height: 110px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.home-trust-bar-title {
  font-family: var(--font-headline);
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 130%;
  color: var(--color-black);
  margin: 0 0 var(--spacing-xs);
  padding-bottom: 7px;
  display: inline-block;
  position: relative;
}

.home-trust-bar-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-color: var(--color-yellow);
}

.home-trust-bar-desc {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  line-height: 150%;
  color: var(--color-black);
  margin: 0;
}

@media (max-width: 991px) {
  .home-trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .home-trust-bar-grid {
    grid-template-columns: 1fr;
  }
}

/*
newsletter
*/

.newsletter {
  background-color: var(--color-white);
  padding: var(--spacing-xl) 0 0 0 !important;
}

.newsletter-inner {
  position: relative;
  overflow: hidden;
  max-width: calc(var(--global-content-width) - 2 * var(--spacing-content-margin));
  margin: 0 auto;
  background-color: var(--color-yellow);
  border-radius: 16px;
  padding: var(--spacing-xl) var(--spacing-xxl);
}

.newsletter-bg-percent {
  font-family: var(--font-body);
  font-weight: 700;
  position: absolute;
  right: -8rem;
  top: 55%;
  transform: translateY(-50%) rotate(10deg);
  font-size: 55rem;
  line-height: 1;
  color: var(--color-white);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.newsletter-inner > .overline,
.newsletter-inner > .newsletter-title,
.newsletter-inner > .newsletter-text {
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-family: var(--font-headline);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 120%;
  color: var(--color-black);
}

.newsletter-text {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 150%;
  color: var(--color-black);
  margin: 0 0 var(--spacing-md);
}

/* newsletter form (MailerLite embed) */

.newsletter-container {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .newsletter-container {
    width: 70%;
  }
}

.newsletter-container .ml-form-embedContainer,
.newsletter-container .ml-form-align-center,
.newsletter-container .ml-form-embedWrapper,
.newsletter-container .ml-form-embedBody {
  width: 100%;
  max-width: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.newsletter-container .ml-form-embedContent {
  margin: 0 !important;
}

.newsletter-container .ml-form-formContent {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.newsletter-container .ml-form-fieldRow {
  flex: 1 0 0;
  min-width: 250px;
  margin: 0;
  padding: 0;
}

.newsletter-container .ml-field-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxs);
  width: 100%;
}

.newsletter-container .ml-field-group label {
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-grey);
  margin: 0;
}

.newsletter-container .ml-validate-required > label::after {
  content: " *";
  color: var(--color-grey);
}

.newsletter-container .ml-field-group .form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-white);
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.newsletter-container .ml-field-group .form-control::placeholder {
  color: var(--color-grey);
}

.newsletter-container .ml-field-group .form-control:focus {
  outline: none;
  border-color: var(--color-black);
}

.newsletter-container .ml-error .form-control,
.newsletter-container .form-control[aria-invalid="true"] {
  border-color: var(--stock-signal-0);
}

.newsletter-container .ml-error .form-control:focus,
.newsletter-container .form-control[aria-invalid="true"]:focus {
  border-color: var(--stock-signal-0);
}

.newsletter-container .ml-field-error-message,
.newsletter-container .ml-server-error {
  display: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-weight: 400;
  line-height: 1.5;
  color: var(--stock-signal-0);
}

.newsletter-container .ml-validate-required.ml-error:not(.ml-validate-email) > .ml-field-error-message:empty::before {
  content: "Bitte einen Namen eingeben!";
}

.newsletter-container .ml-validate-email.ml-error > .ml-field-error-message:empty::before {
  content: "Bitte eine gültige E-Mail-Adresse eingeben!";
}

.newsletter-container .ml-error .ml-field-error-message,
.newsletter-container .ml-server-error:not(:empty) {
  display: block;
}

.newsletter-container .ml-form-checkboxRow {
  margin: var(--spacing-sm) 0;
}

.newsletter-container .ml-form-checkboxRow .checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xxs);
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  cursor: pointer;
}

.newsletter-container .ml-form-checkboxRow .checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--color-black);
  cursor: pointer;
}

.newsletter-container .ml-form-checkboxRow.ml-error .checkbox input[type="checkbox"],
.newsletter-container .ml-form-checkboxRow input[aria-invalid="true"] {
  outline: 2px solid var(--stock-signal-0);
  outline-offset: 2px;
}

.newsletter-container .ml-form-checkboxRow .label-description p {
  margin: 0;
}

.newsletter-container .ml-form-checkboxRow.ml-error .ml-field-error-message:empty::before {
  content: "Bitte den Datenschutzbestimmungen zustimmen";
}

.newsletter-container .ml-form-checkboxRow a {
  color: var(--color-black);
  text-decoration: underline;
}

.newsletter-container .ml-form-checkboxRow a:hover {
  color: var(--color-grey-dark);
}

.newsletter-container .ml-form-embedSubmit {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.newsletter-container .ml-form-embedSubmit button.primary,
.newsletter-container .ml-form-embedSubmit button.loading {
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
  border-radius: 8px;
  padding: var(--spacing-xs) var(--spacing-sm);
  min-height: 56px;
  min-width: 288px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.newsletter-container .ml-form-embedSubmit button.primary:hover,
.newsletter-container .ml-form-embedSubmit button.primary:focus {
  background-color: var(--color-grey-dark);
  border-color: var(--color-grey-dark);
  color: var(--color-white);
  outline: none;
}

.newsletter-container .ml-form-successBody h4 {
  font-family: var(--font-headline);
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 var(--spacing-xxs);
}

.newsletter-container .ml-form-successBody p {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--color-black);
  margin: 0;
}

@media (max-width: 1440px) {
  .newsletter {
    padding-left: var(--spacing-content-margin) !important;
    padding-right: var(--spacing-content-margin) !important;
  }
}

@media (max-width: 991px) {
  .newsletter-inner {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 767px) {
  .newsletter-bg-percent {
    display: none;
  }
}

@media (max-width: 575px) {
  .newsletter-container .ml-form-fieldRow {
    flex-basis: 100%;
    min-width: 0;
  }

  .newsletter-container .ml-form-embedSubmit button.primary,
  .newsletter-container .ml-form-embedSubmit button.loading {
    width: 100%;
    min-width: 0;
  }
}

/*
marquee
*/

.marquee {
  background-color: var(--color-white);
  overflow: hidden;
  padding: var(--spacing-section) 0;
}

.marquee-inner {
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 76px;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-headline);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .marquee-track {
    gap: 48px;
    animation-duration: 20s;
  }

  .marquee-item {
    font-size: var(--font-size-h3);
  }
}

@media (max-width: 767px) {
  .marquee-track {
    gap: 32px;
    animation-duration: 15s;
  }

  .marquee-item {
    font-size: var(--font-size-h4);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*
 breadcrumb
*/

.breadcrumb-wrapper {
  border: none !important;
  align-items: center;
  margin: 0;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: var(--font-size-body-tiny);
  line-height: 150%;
  letter-spacing: 0.5px;
  color: var(--color-black);
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  background-color: transparent;
}

.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  min-height: 0;
}

.breadcrumb a,
.breadcrumb .breadcrumb-link,
.breadcrumb .breadcrumb-link span {
  color: inherit;
  text-decoration: none;
  font-size: var(--font-size-body-tiny);
}

.breadcrumb a,
.breadcrumb .breadcrumb-link {
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  align-self: center;
}

.breadcrumb .breadcrumb-item.last.active,
.breadcrumb .breadcrumb-item.last.active .breadcrumb-link,
.breadcrumb .breadcrumb-item.last.active span {
  font-weight: 700;
  color: var(--color-black);
}

.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "" !important;
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  align-self: center;
  padding: 0 !important;
  margin-left: var(--spacing-xxs);
  margin-right: var(--spacing-xxs);
  background: url("../img/breadcrumb-chevron-right.svg") center / contain no-repeat;
  color: transparent;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item:hover::before {
  color: transparent;
}

.breadcrumb-category-image {
  margin-bottom: var(--spacing-xl);
}

.breadcrumb-category-image-img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 460px) {
  .breadcrumb-category-image-img {
    max-height: 150px;
  }
}

/*
product list
*/

#product-list .product-wrapper {
  padding-left: var(--spacing-content-margin);
  padding-right: var(--spacing-content-margin);
  margin-bottom: var(--spacing-content-margin) !important;
}

#product-list.row {
  align-items: stretch;
}

#product-list.layout-gallery .product-wrapper {
  display: flex;
  flex-direction: column;
}

#product-list.layout-gallery .product-wrapper > .product-card--schaich {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

/* Gallery: single column on small phones/tablets (viewport width ≤ 640px) */
@media (max-width: 460px) {
  #product-list.layout-gallery > .product-wrapper[class*="col-"] {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  #product-list.layout-gallery > .product-wrapper.col-xl-3 {
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 33.33333333%;
  }
}

.product-card--schaich {
  height: 100%;
  background: var(--color-white);
  border-radius: var(--product-card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Gallery cards: fill row height and pin CTA to bottom (same baseline per row) */
.product-card--schaich:not(.product-card--schaich-list) > form.form-basket {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
}

.product-card--schaich .productbox-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.product-card--schaich:not(.product-card--schaich-list) .productbox-inner > .row {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-left: 0;
  margin-right: 0;
  min-width: 0;
  min-height: 0;
}

.product-card--schaich .productbox-inner > .row {
  flex: 1 1 auto;
  margin-left: 0;
  margin-right: 0;
  min-width: 0;
}

.product-card--schaich .productbox-inner > .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.product-card--schaich .product-card__media-col {
  flex: 0 0 auto;
}

.product-card--schaich:not(.product-card--schaich-list) .productbox-inner > .row > [class*="col-"]:last-child {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-card--schaich .product-card__media {
  background: var(--product-card-image-bg);
  border-radius: var(--product-card-radius) var(--product-card-radius) 0 0;
  overflow: hidden;
}

.product-card--schaich .product-card__media .productbox-image {
  background: transparent;
}

.product-card--schaich .product-card__media .list-gallery {
  margin: 0;
}

.product-card--schaich .product-card__media .square-image .inner {
  background: transparent;
}

.product-card--schaich .product-card__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: var(--spacing-md) var(--spacing-sm);
  gap: var(--spacing-xxs);
  min-height: 0;
}

.product-card__overline {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--color-black);
  text-align: left;
}

.product-card__title.productbox-title {
  margin-bottom: 0;
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.product-card__title-link,
.product-card__title-link:hover {
  color: var(--color-black);
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.product-card__rating {
  margin-bottom: var(--spacing-xxs);
}

.product-card__offer .price_wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxs);
  align-items: flex-start;
}

.product-card__offer .product-card__price-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.product-card__offer .product-card__price-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  width: 100%;
}

.product-card__offer .product-card__price-primary span {
  font-family: var(--font-headline);
  font-size: var(--font-size-body);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.product-card__offer .product-card__price-primary .price,
.product-card__offer .product-card__price-primary .productbox-price {
  margin: 0;
  font-family: var(--font-headline);
  font-size: var(--font-size-body);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
}

.product-card__offer .product-card__vat-inline {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: var(--font-size-body-tiny);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-black);
}

.product-card__offer .product-card__vat-inline a {
  font-family: var(--font-body);
  font-size: var(--font-size-body-tiny);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-black);
}

.product-card__offer .price-note {
  font-size: var(--font-size-body-tiny);
  margin-top: 0;
}

.product-card__offer .price_label {
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
}

.product-card--schaich:not(.product-card--schaich-list) .product-card__content .btn-primary.yellow {
  margin-top: auto;
}

.product-card--schaich:not(.product-card--schaich-list) .product-card__content .btn-primary.yellow:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Slider product cards */
.product-card--schaich-slider {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border-radius: var(--product-card-radius);
  overflow: hidden;
}

.product-card__slider-main-link {
  display: block;
  flex: 1 1 auto;
  color: inherit;
  text-decoration: none;
}

.product-card__slider-main-link:hover,
.product-card__slider-main-link:focus {
  color: inherit;
  text-decoration: none;
}

.product-card__slider-media {
  background: var(--product-card-image-bg);
  border-radius: var(--product-card-radius) var(--product-card-radius) 0 0;
}

.product-card__slider-media .inner {
  background: transparent;
}

.product-card__slider-caption {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxs);
  padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
}

.product-card--schaich-slider > a.btn-primary.yellow {
  margin: 0 var(--spacing-sm) var(--spacing-md);
  flex-shrink: 0;
  align-self: stretch;
  border-radius: var(--product-card-radius);
  padding: 0.75rem 1rem;
  letter-spacing: 0.03em;
}

.slick-slider-other .product-card--schaich-slider,
.slick-slider-mb .product-card--schaich-slider {
  margin-bottom: 0;
}

/* List layout (desktop list view) */
.product-card--schaich-list .product-card__list-media-col {
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .product-card--schaich-list .product-card__list-media-col {
    margin-bottom: 0;
  }
}

.product-card--schaich-list .product-card__media--list {
  background: var(--product-card-image-bg);
  border-radius: var(--product-card-radius);
  overflow: hidden;
}

.product-card--schaich-list .product-card__overline--list {
  margin-bottom: var(--spacing-xxs);
}

.product-card--schaich-list .product-card__title--list {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
}

.product-card--schaich-list .product-card__list-price .product-card__price-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xxs);
  width: 100%;
}

.product-card--schaich-list .product-card__list-price .product-card__price-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  width: 100%;
}

.product-card--schaich-list .product-card__list-price .product-card__vat-inline {
  display: block;
  width: 100%;
}

.product-card--schaich-list .btn-primary.yellow {
  width: 100%;
  max-width: 20rem;
}

/* Product cards: keep default appearance on hover (no NOVA lift / shadow / image swap) */
.product-card--schaich .productbox-quick-actions,
.product-card--schaich-list .productbox-quick-actions {
  display: none !important;
}

.product-card--schaich .list-gallery img,
.product-card--schaich-list .list-gallery img {
  transition: none !important;
}

.product-card--schaich .list-gallery img.first,
.product-card--schaich .list-gallery .first-wrapper img {
  opacity: 1 !important;
}

.product-card--schaich .list-gallery img.second,
.product-card--schaich .list-gallery .second-wrapper img {
  opacity: 0 !important;
}

.product-card--schaich .list-gallery:hover img.first,
.product-card--schaich .list-gallery:hover .first-wrapper img {
  opacity: 1 !important;
}

.product-card--schaich .list-gallery:hover img.second,
.product-card--schaich .list-gallery:hover .second-wrapper img {
  opacity: 0 !important;
}

.product-card--schaich-list .list-gallery img.first,
.product-card--schaich-list .list-gallery .first-wrapper img {
  opacity: 1 !important;
}

.product-card--schaich-list .list-gallery img.second,
.product-card--schaich-list .list-gallery .second-wrapper img {
  opacity: 0 !important;
}

.product-card--schaich-list .list-gallery:hover img.first,
.product-card--schaich-list .list-gallery:hover .first-wrapper img {
  opacity: 1 !important;
}

.product-card--schaich-list .list-gallery:hover img.second,
.product-card--schaich-list .list-gallery:hover .second-wrapper img {
  opacity: 0 !important;
}

@media (min-width: 768px) {
  .product-card--schaich.productbox-hover:hover,
  .product-card--schaich.productbox-hover:focus,
  .product-card--schaich.productbox-hover.focus,
  .product-card--schaich-list.productbox-hover:hover,
  .product-card--schaich-list.productbox-hover:focus,
  .product-card--schaich-list.productbox-hover.focus {
    z-index: auto !important;
  }

  .product-card--schaich.productbox-hover:hover .productbox-inner::before,
  .product-card--schaich.productbox-hover:focus .productbox-inner::before,
  .product-card--schaich.productbox-hover.focus .productbox-inner::before,
  .product-card--schaich-list.productbox-hover:hover .productbox-inner::before,
  .product-card--schaich-list.productbox-hover:focus .productbox-inner::before,
  .product-card--schaich-list.productbox-hover.focus .productbox-inner::before {
    box-shadow: none !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
  }

  /* Variant cards: remove NOVA hover/focus ring on pseudo-layer (box-shadow + outline) */
  .product-card--schaich.productbox-show-variations.productbox-hover:hover .productbox-inner::before,
  .product-card--schaich.productbox-show-variations.productbox-hover:focus .productbox-inner::before,
  .product-card--schaich.productbox-show-variations.productbox-hover.focus .productbox-inner::before,
  .product-card--schaich.productbox-show-variations.productbox-hover:focus-visible .productbox-inner::before,
  .product-card--schaich.productbox-show-variations.productbox-hover:focus-within .productbox-inner::before,
  .product-card--schaich-list.productbox-show-variations.productbox-hover:hover .productbox-inner::before,
  .product-card--schaich-list.productbox-show-variations.productbox-hover:focus .productbox-inner::before,
  .product-card--schaich-list.productbox-show-variations.productbox-hover.focus .productbox-inner::before,
  .product-card--schaich-list.productbox-show-variations.productbox-hover:focus-visible .productbox-inner::before,
  .product-card--schaich-list.productbox-show-variations.productbox-hover:focus-within .productbox-inner::before {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
  }

  .product-card--schaich.productbox-show-variations.productbox-hover:hover,
  .product-card--schaich-list.productbox-show-variations.productbox-hover:hover {
    outline: none !important;
    box-shadow: none !important;
  }

  .product-card--schaich.productbox-hover:hover .productbox-ribbon.ribbon,
  .product-card--schaich.productbox-hover:focus .productbox-ribbon.ribbon,
  .product-card--schaich.productbox-hover.focus .productbox-ribbon.ribbon,
  .product-card--schaich-list.productbox-hover:hover .productbox-ribbon.ribbon,
  .product-card--schaich-list.productbox-hover:focus .productbox-ribbon.ribbon,
  .product-card--schaich-list.productbox-hover.focus .productbox-ribbon.ribbon {
    top: 1rem !important;
    left: -0.5rem !important;
  }

  .layout-gallery .product-card--schaich.productbox-show-variations.productbox-hover:hover .productbox-quick-actions {
    right: 0.5rem !important;
    top: 0.5rem !important;
  }
}

#product-list.layout-gallery .product-card--schaich.productbox-show-variations.transition,
#product-list.layout-gallery .product-card--schaich.productbox-show-variations:hover,
#product-list.layout-gallery .product-card--schaich.productbox-show-variations:focus,
#product-list.layout-gallery .product-card--schaich.productbox-show-variations.focus {
  position: relative !important;
  z-index: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

#product-list.layout-gallery .product-card--schaich.productbox-show-variations:hover {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#product-list.layout-gallery .product-card--schaich.productbox-show-variations.show-variation-collapse:hover {
  background-color: transparent !important;
}

/* Gallery cards: no variant UI (hidden; collapse cannot open on hover/click target) */
.product-card--schaich .productbox-variations,
.product-card--schaich .productbox-variations .collapse,
.product-card--schaich .collapse[id^="variations-collapse-"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  pointer-events: none !important;
}

.product-card--schaich .collapse[id^="variations-collapse-"].show {
  display: none !important;
}

.product-card--schaich .product-card__media > .productbox-image[role="button"][data-target] {
  pointer-events: none;
  cursor: default;
}

.product-card--schaich .product-card__media .productbox-images,
.product-card--schaich .product-card__media .productbox-images a,
.product-card--schaich .product-card__media .productbox-ribbon,
.product-card--schaich .product-card__media .productbox-ribbon a {
  pointer-events: auto;
}

.product-card--schaich .product-card__media .productbox-images a {
  cursor: pointer;
}

/* List rows: hide variation column and “choose variations” hint */
.product-card--schaich-list .productbox-variations {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.product-card--schaich-list .choose-variations {
  display: none !important;
}

#result-wrapper .title,
#result-wrapper .content-cats-small {
  display: none !important;
}

/* Productlist header nav (Figma: 2300:23383) */
.productlist-page-nav {
  margin: var(--spacing-md) 0;
}

.productlist-page-nav.productlist-page-nav-header-m {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xs);
}

.productlist-page-nav:not(.productlist-page-nav-header-m) {
  margin-bottom: 0;
}

.productlist-page-nav.productlist-page-nav-header-m .productlist-item-info {
  order: 1;
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions {
  order: 2;
  margin: 0;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort {
  margin: 0;
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 4px;
  background-color: #f6f6f5;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: none;
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn:hover,
.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn:focus,
.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort.show > .btn {
  background-color: #f6f6f5;
  color: var(--color-black);
  border: 0;
  box-shadow: none;
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn::after {
  content: "" !important;
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  height: 6px;
  margin: 0;
  vertical-align: middle;
  border: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6' fill='none'%3E%3Cpath d='M1 1L6 5L11 1' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 6px;
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort.show > .btn::after {
  transform: rotate(180deg);
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn::before,
.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn .caret,
.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn .fa,
.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn .fas,
.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort > .btn .icon {
  display: none !important;
  content: none !important;
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort .dropdown-menu {
  left: auto !important;
  right: 0 !important;
  transform: translateY(40px) !important;
  min-width: 280px;
  width: max-content;
  max-width: min(90vw, 360px);
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort .dropdown-menu.show[x-placement^="bottom"],
.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort .dropdown-menu.show[data-popper-placement^="bottom"] {
  left: auto !important;
  right: 0 !important;
  transform: translateY(40px) !important;
}

.productlist-page-nav.productlist-page-nav-header-m .displayoptions .filter-type-FilterItemSort .dropdown-menu .dropdown-item {
  white-space: normal;
}

.productlist-page-nav .productlist-pagination {
  width: 100%;
  margin: 0;
}

.productlist-page-nav .productlist-pagination-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
}

.productlist-page-nav .navbar-pagination {
  flex: 1;
  display: flex;
  justify-content: center;
}

.productlist-page-nav .pagination {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.productlist-page-nav .pagination .page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  box-shadow: none;
}

.productlist-page-nav .pagination .page-item.active .page-link {
  background-color: var(--color-yellow);
  color: var(--color-white);
}

.productlist-page-nav .pagination .page-item.active .page-link::after {
  content: none;
}

.productlist-page-nav .pagination .page-item.page-item-chevron .page-link {
  color: var(--color-black);
  width: 20px;
}

.productlist-page-nav .pagination .page-item.page-item-chevron .page-link:hover,
.productlist-page-nav .pagination .page-item .page-link:hover,
.productlist-page-nav .pagination .page-item .page-link:focus {
  color: var(--color-grey-dark);
  background: transparent;
}

.productlist-page-nav .pagination .page-item.disabled .page-link {
  color: var(--color-grey);
  pointer-events: none;
  opacity: 0.6;
}

.productlist-page-nav .productlist-pagination-step.disabled,
.productlist-page-nav .productlist-pagination-step[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

.productlist-page-nav .productlist-pagination-step-next.disabled,
.productlist-page-nav .productlist-pagination-step-next[aria-disabled="true"] {
  background-color: var(--color-white) !important;
  border: 1px solid var(--color-black) !important;
  color: var(--color-black) !important;
  opacity: 1;
}

.productlist-page-nav .productlist-pagination-step-prev:not(.disabled):not([aria-disabled="true"]) {
  background-color: var(--color-black) !important;
  border-color: var(--color-black) !important;
  color: var(--color-white) !important;
}

.productlist-page-nav .productlist-pagination-step-prev.disabled,
.productlist-page-nav .productlist-pagination-step-prev[aria-disabled="true"] {
  background-color: var(--color-white) !important;
  border: 1px solid var(--color-black) !important;
  color: var(--color-black) !important;
  opacity: 1;
}

@media (max-width: 991px) {
  .productlist-page-nav .productlist-pagination-layout {
    gap: var(--spacing-xs);
  }

  .productlist-page-nav .pagination {
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .productlist-page-nav .productlist-pagination-layout {
    flex-wrap: wrap;
    justify-content: center;
  }

  .productlist-page-nav .navbar-pagination {
    order: 1;
    width: 100%;
    justify-content: flex-start;
  }

  .productlist-page-nav .productlist-pagination-step-prev {
    order: 2;
  }

  .productlist-page-nav .productlist-pagination-step-next {
    order: 3;
  }
}

/*
product filter
*/

#sidepanel_left {
  padding: 0 var(--spacing-xs) 0 0;
}

#sidepanel_left .ec-filter-box {
  border: 1px solid var(--color-grey-light);
  border-radius: 12px;
  background-color: var(--color-white);
  margin-bottom: 12px;
  overflow: hidden;
}

#sidepanel_left .ec-filter-group {
  border-bottom: 1px solid var(--color-grey-light);
}

#sidepanel_left .ec-filter-group:last-child {
  border-bottom: 0;
}

#sidepanel_left .ec-filter-group-title {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-black);
  padding: 14px 16px;
}

#sidepanel_left .ec-filter-group-title::-webkit-details-marker {
  display: none;
}

#sidepanel_left .ec-filter-group-title::after {
  content: "+";
  color: var(--color-grey-dark);
  font-size: 1.125rem;
}

#sidepanel_left .ec-filter-group-body {
  padding: 0 16px 14px;
}

#sidepanel_left .ec-filter-option-list,
#sidepanel_left .ec-filter-tree {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--spacing-xxs) 0;
}

#sidepanel_left .ec-filter-option-item + .ec-filter-option-item,
#sidepanel_left .ec-filter-tree-item + .ec-filter-tree-item {
  margin-top: 6px;
}

#sidepanel_left .ec-filter-option-link,
#sidepanel_left .ec-filter-tree-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  color: var(--color-grey-dark);
  border-radius: 6px;
  padding: var(--spacing-xxs) var(--spacing-xs);
  transition: background-color 0.15s ease, color 0.15s ease;
}

#sidepanel_left .ec-filter-option-link:hover span,
#sidepanel_left .ec-filter-tree-link:hover span {
  color: var(--color-yellow);
}

#sidepanel_left .ec-filter-tree-link.is-current,
#sidepanel_left .ec-filter-tree-item.is-current > .ec-filter-tree-link {
  color: var(--color-yellow) !important;
}

#sidepanel_left .ec-filter-tree-link.is-current span,
#sidepanel_left .ec-filter-tree-item.is-current > .ec-filter-tree-link span {
  color: var(--color-yellow) !important;
}

#sidepanel_left .ec-filter-option-link.is-active,
#sidepanel_left .ec-filter-option-item.is-active > .ec-filter-option-link {
  color: var(--color-yellow) !important;
}

#sidepanel_left .ec-filter-option-link.is-active span,
#sidepanel_left .ec-filter-option-item.is-active > .ec-filter-option-link span {
  color: var(--color-yellow) !important;
}

#sidepanel_left .ec-filter-option-link.is-disabled {
  color: var(--color-grey);
  cursor: not-allowed;
  background-color: transparent;
}

#sidepanel_left .ec-filter-option-count {
  font-size: 0.75rem;
  color: var(--color-grey);
}

#sidepanel_left .ec-filter-tree.level-1,
#sidepanel_left .ec-filter-tree.level-2,
#sidepanel_left .ec-filter-tree.level-3 {
  margin-left: var(--spacing-xs);
  padding-left: var(--spacing-xxs);
}

/* Figma: Filter category card variant */
#sidepanel_left .ec-filter-sidebar-hardcoded {
  background: var(--color-yellow);
  border-radius: 16px;
  padding: 24px;
}

#sidepanel_left .ec-filter-sidebar-title,
#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group-title span {
  color: var(--color-black);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-large);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-box {
  margin-bottom: var(--spacing-xxs) !important;
  border: 0;
  background: transparent;
  border-radius: 8px;
  overflow: visible;
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--spacing-xxs)
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group-title {
  background: var(--color-grey-light);
  border: 1px solid transparent;
  border-radius: 8px;
  margin: 0;
  min-height: 61px;
  padding: 16px;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group-title::after {
  content: "";
  width: 12px;
  height: 24px;
  display: inline-block;
  background-color: var(--color-black);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 24px 24px;
  mask-size: 24px 24px;
  transform: rotate(0deg);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-title::after {
  transform: rotate(90deg);
  background-color: var(--color-white);
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-title {
  background-color: var(--color-black);
  color: var(--color-white);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-title span {
  color: var(--color-white);
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group-body {
  padding: 0;
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-body {
  background: var(--color-black);
  color: var(--color-white);
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-body a,
#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-body .ec-filter-option-label,
#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-body .ec-filter-option-count {
  color: var(--color-white);
}

#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-body a:hover,
#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-body .ec-filter-option-label:hover,
#sidepanel_left .ec-filter-sidebar-hardcoded .ec-filter-group[open] > .ec-filter-group-body .ec-filter-option-count:hover {
  color: var(--color-yellow);
}

#sidepanel_left .ec-filter-box--selected .ec-filter-selected-link {
  min-height: 61px;
  border: 1px solid var(--color-black);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-black);
  background: var(--color-yellow);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

#sidepanel_left .ec-filter-box--selected .ec-filter-selected-icon {
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}

#sidepanel_left .ec-filter-actions {
  margin-top: 8px;
}

#sidepanel_left .ec-filter-action {
  width: 100%;
  min-height: 61px;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
}

#sidepanel_left .ec-filter-action.ec-filter-action--apply {
  background: var(--color-black);
  color: var(--color-white);
}

#sidepanel_left .ec-filter-action.ec-filter-action--clear {
  background: var(--color-yellow);
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

#sidepanel_left .ec-filter-action.ec-filter-action--clear span:first-child {
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-large);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#sidepanel_left .ec-filter-action-icon {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 400;
}

/* 
product detail gallery
*/

#image_wrapper[data-product-gallery="custom"] .product-actions {
  display: none !important;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--spacing-xs);
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-thumbs {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  width: 120px;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-thumb {
  display: block;
  width: 120px;
  height: 120px;
  padding: 0;
  margin: 0;
  border: 2px solid var(--color-grey-light);
  border-radius: 4px;
  background: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
  border-radius: 8px;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-thumb:hover,
#image_wrapper[data-product-gallery="custom"] .product-gallery-thumb:focus {
  border-color: var(--color-grey);
  outline: none;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-thumb.is-active {
  border-color: var(--color-black);
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-thumb-inner {
  display: block;
  width: 100%;
  height: 100%;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-thumb-inner img,
#image_wrapper[data-product-gallery="custom"] .product-gallery-thumb-inner picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#image_wrapper[data-product-gallery="custom"] #gallery.product-gallery-main {
  position: relative;
  flex: 1 1 0;
  min-height: 500px;
  align-self: stretch;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  box-sizing: border-box;
  background-color: transparent;
}

#image_wrapper[data-product-gallery="custom"]
  .product-gallery-layout--first-active
  #gallery.product-gallery-main {
  border-color: var(--color-yellow);
  background-color: var(--color-yellow);
}

#image_wrapper[data-product-gallery="custom"]
  .product-gallery-layout[data-gallery-accent="poolforce"].product-gallery-layout--first-active
  #gallery.product-gallery-main {
  border-color: #00a0e0;
  background-color: #00a0e0;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-slide.d-none {
  display: none !important;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-slide-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-slide-inner picture {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-slide-inner picture img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: top center;
}

#image_wrapper[data-product-gallery="custom"] .product-gallery-slide-inner > img.product-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

#image_wrapper[data-product-gallery="custom"] .product-detail .product-image {
  cursor: zoom-in;
}

@media (max-width: 767.98px) {
  #image_wrapper[data-product-gallery="custom"] .product-gallery-layout {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  #image_wrapper[data-product-gallery="custom"] .product-gallery-thumbs {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  #image_wrapper[data-product-gallery="custom"] .product-gallery-thumb {
    flex-shrink: 0;
  }

  #image_wrapper[data-product-gallery="custom"] #gallery.product-gallery-main {
    min-height: min(70vw, 420px);
  }
}

.product-images-modal-lightbox .product-images-modal-dialog {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 0;
}

.product-images-modal-lightbox .modal-content {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.92);
  border: 0;
  min-height: 100vh;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

.product-images-modal-lightbox .modal-header {
  border: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-shrink: 0;
}

.product-images-modal-lightbox .modal-header .close {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  left: auto;
  transform: none !important;
  margin: 0;
  z-index: 1060;
  background-color: var(--color-yellow) !important;
  color: var(--color-black) !important;
  opacity: 1;
  text-shadow: none;
}

.product-images-modal-lightbox .modal-header .close:hover,
.product-images-modal-lightbox .modal-header .close:focus {
  background-color: var(--color-yellow) !important;
  color: var(--color-black) !important;
  opacity: 1;
}

.product-images-modal-lightbox .modal-header .close .fa {
  color: inherit;
}

.product-images-modal-lightbox .product-images-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: max(3.5rem, env(safe-area-inset-top, 0px)) var(--spacing-md) var(--spacing-md);
  padding-right: max(var(--spacing-md), env(safe-area-inset-right, 0px));
  padding-left: max(var(--spacing-md), env(safe-area-inset-left, 0px));
  padding-bottom: max(var(--spacing-md), env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

.product-images-modal-lightbox .product-modal-gallery-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--spacing-sm);
  flex: 1 1 auto;
  min-height: 0;
}

.product-images-modal-lightbox .product-modal-gallery-thumbs {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  width: 120px;
}

.product-images-modal-lightbox .product-modal-gallery-thumb {
  display: block;
  width: 120px;
  height: 120px;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.product-images-modal-lightbox .product-modal-gallery-thumb:hover,
.product-images-modal-lightbox .product-modal-gallery-thumb:focus {
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

.product-images-modal-lightbox .product-modal-gallery-thumb.is-active {
  border-color: var(--color-yellow);
}

.product-images-modal-lightbox .product-modal-gallery-thumb-inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.product-images-modal-lightbox .product-modal-gallery-thumb-inner img,
.product-images-modal-lightbox .product-modal-gallery-thumb-inner picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product-images-modal-lightbox .product-modal-gallery-thumb-inner picture img {
  border-radius: 8px;
}

.product-images-modal-lightbox #product-modal-gallery-main.product-modal-gallery-main {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  border-radius: 0;
  overflow: hidden;
}

.product-images-modal-lightbox .product-modal-gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.product-images-modal-lightbox .product-modal-gallery-slide.d-none {
  display: none !important;
}

.product-images-modal-lightbox .product-modal-gallery-slide-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  border-radius: 0;
  overflow: hidden;
}

.product-images-modal-lightbox .product-modal-gallery-slide-inner picture {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.product-images-modal-lightbox .product-modal-gallery-slide-inner picture img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 0;
}

.product-images-modal-lightbox .product-modal-gallery-slide-inner > img.product-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: 0;
}

@media (max-width: 767.98px) {
  .product-images-modal-lightbox .product-modal-gallery-layout {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .product-images-modal-lightbox .product-modal-gallery-thumbs {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .product-images-modal-lightbox .product-modal-gallery-thumb {
    flex-shrink: 0;
  }

  .product-images-modal-lightbox #product-modal-gallery-main.product-modal-gallery-main {
    min-height: min(55vh, 480px);
  }
}

/* 
prodcut details meta
*/

#buy_form,
#buy_form-quickview {
  position: relative;
}
#buy_form > button.js-cfg-validate.btn-hidden-default,
#buy_form-quickview > button.js-cfg-validate.btn-hidden-default {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

#product-offer {
  margin-bottom: var(--spacing-xxl);
}

#product-offer .product-details-brand-bar {
  margin-bottom: var(--spacing-sm);
}

#product-offer.product-details-brand-bar-img {
  display: block;
  max-width: min(280px, 100%);
  height: auto;
  max-height: 56px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

#product-offer .product-title  {
  margin-bottom: var(--spacing-xxs);
}

#product-offer .product-info ul.info-essential {
  margin: 0;
}

#product-offer .product-info ul.info-essential li,
#product-offer .product-info ul.info-essential li strong,
#product-offer .product-info ul.info-essential li span {
  color: var(--color-grey);
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#product-offer .product-info .shortdesc,
#product-offer .product-info .delivery-status {
  margin: var(--spacing-sm) 0 0 0;
}

#product-offer .product-info .delivery-status .status,
#product-offer .product-info .delivery-status .estimated-delivery span {
  font-family: var(--font-body);
  font-size: var(--font-size-body-large);
  font-style: normal;
  font-weight: 700;
}

#product-offer .delivery-status .status .status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-inline-end: var(--spacing-xxs);
  vertical-align: middle;
  flex-shrink: 0;
}

#product-offer .delivery-status .status-2,
#product-offer .signal_image .status-2 {
  color: var(--color-success) !important;
}

#product-offer .delivery-status .status-0 .status-dot {
  background-color: var(--stock-signal-0);
}

#product-offer .delivery-status .status-1 .status-dot {
  background-color: var(--stock-signal-1);
}

#product-offer .delivery-status .status-2 .status-dot {
  background-color: var(--stock-signal-2);
}

#product-offer .delivery-status li .status + .estimated-delivery {
  display: inline;
}

#product-offer .delivery-status .estimated-delivery > span[class^="a"] {
  color: var(--color-dark);
}

#product-offer .product-offer {
  margin: var(--spacing-sm) 0 0 !important;
}

#product-offer .product-info .product-offer>.row {
  margin-bottom: 0;
}

#product-offer .choose_quantity-label {
  display: block;
  text-align: left;
  width: 100%;
}

#product-offer .dropdown-toggle {
  border-radius: 8px;
  border: 1px solid var(--color-dark);
  padding: 16px;
}

#product-offer .dropdown-toggle::after {
  content: "" !important;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 0.255em;
  vertical-align: middle;
  border: 0 !important;
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0%200%2025%2025' fill='none'%3E%3Cpath d='M9.05762%2018.0866L15.1156%2012.1452L9.17421%206.08714' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

#product-offer .dropdown-toggle .filter-option-inner-inner {
  line-height: 1;
}

#product-offer .choose_quantity {
  border-radius: 8px;
  border: 1px solid var(--color-dark);
  max-height: none;
  padding: var(--spacing-xs) 0;
  height: 58px;
}

#product-offer .dropdown-toggle .filter-option span,
#product-offer .choose_quantity .quantity,
#product-offer .choose_quantity .unit {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: var(--font-size-body-large);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0;
  line-height: 1;
  height: auto;
}

#product-offer .choose_quantity .unit {
  color: var(--color-grey);
}

#product-offer .form-counter .btn {
  max-height: none;
  padding: 0 var(--spacing-xs);
}

#product-offer .form-counter .btn:hover,
#product-offer .form-counter .btn:focus,
#product-offer .form-counter .btn:focus-visible,
#product-offer .form-counter .btn:active,
#product-offer .quantity:hover,
#product-offer .quantity:focus,
#product-offer .quantity:focus-visible,
#product-offer .quantity:active {
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

#product-offer .choose_quantity .choose_quantity-icon-plus,
#product-offer .choose_quantity .choose_quantity-icon-minus {
  display: block;
  color: var(--color-grey);
}

#product-offer .btn.basket span {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#product-offer #add-to-cart .btn.basket .btn-basket-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#product-offer #add-to-cart .btn.basket .btn-basket-check > span {
  line-height: 1.2;
}

#product-offer #add-to-cart .btn.basket > svg {
  display: none;
}

#product-offer #add-to-cart .btn.basket.is-added .btn-basket-check {
  color: inherit;
  top: auto;
  transform: none;
}

#product-offer #add-to-cart {
  border-top: 1px solid #d9d9d9;
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
}

#product-offer .product-detail-price-col .price_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-xxs);
  width: 100%;
  text-align: end;
  margin-bottom: 0;
}

.price-detail__primary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  width: 100%;
}

#product-offer .price-detail__primary {
  justify-content: flex-end;
}

#product-offer .product-detail-price-col .price-note {
  width: 100%;
  text-align: end;
}

#product-offer .product-detail-price-col .bulk-prices .table {
  margin-inline-start: auto;
}

#product-offer .price_wrapper .price {
  margin-bottom: 0;
}

#product-offer .price_wrapper .price span {
  color: var(--color-dark);
  font-family: var(--font-headline);
  font-size: var(--font-size-h3);
  font-style: normal;
  font-weight: 700;
  line-height: var(--font-line-height-h3);
  letter-spacing: var(--font-letter-spacing-h3);
}

#product-offer .price_wrapper .vat_info {
  color: var(--color-black);
}

#product-offer .product-payment-methods__img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*
product details content
*/

.product-detail-navigation {
  max-width: var(--global-content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background-color: var(--color-white);
}

.product-detail-about {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-white);
  padding-top: 0;
  padding-bottom: 0;
}

.product-detail-about .row,
.product-detail-meta .row {
  margin-left: auto;
  margin-right: auto;
}

.product-detail-about .col,
.product-detail-meta .col {
  padding-left: var(--spacing-content-margin);
  padding-right: var(--spacing-content-margin);
}

#about,
#technical-details {
  scroll-margin-top: var(--sticky-offset, 100px);
}

.product-detail-about .introduction,
.product-detail-about .scope,
.product-detail-about .works,
.product-detail-about .properties {
  padding-top: var(--spacing-xxl);
}

.product-detail-about .scope > .scope__content {
  padding-left: var(--spacing-column);
}

.product-detail-about .works > .works__content {
  padding-right: var(--spacing-column);
}

.product-detail-about .properties > .properties__content {
  padding-left: var(--spacing-column);
}

.scope__gallery-grid,
.works__gallery-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  height: 100%;
}

.scope__thumbs,
.works__thumbs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 182px;
  flex-shrink: 0;
}

.scope__thumb,
.works__thumb {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.scope__thumb img,
.works__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scope__main-image,
.works__main-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.scope__main-image img,
.works__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scope__content,
.works__content,
.properties__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--spacing-column);
}

.scope__headline,
.works__headline,
.properties__headline {
  font-family: var(--font-headline);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin: 0;
  hyphens: auto;
}

.scope__list ul,
.scope__list ol,
.works__list ul,
.works__list ol,
.properties__list ul,
.properties__list ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.scope__list li,
.works__list li,
.properties__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 400;
  line-height: 28px;
  color: var(--color-black);
}

.scope__list li::before,
.works__list li::before,
.properties__list li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("../img/circle-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* properties row */
.product-detail-about .properties {
  align-items: center;
}

.properties__image-wrap {
  border-radius: 8px;
  overflow: hidden;
  max-height: 640px;
}

.properties__image-wrap img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  display: block;
}

.product-detail-meta {
  max-width: calc(var(--global-content-width) - 2 * var(--spacing-content-margin));
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--spacing-xxl);
  padding-bottom: 0;
}

.product-detail-meta__inner {
  background-color: var(--color-grey-light);
  border-radius: 16px;
  padding: 38px 40px 48px;
}

.product-detail-meta__headings {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--spacing-column);
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.product-detail-meta__heading {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 28px;
  color: var(--color-black);
  margin: 0;
}

.product-detail-meta__accent {
  height: 3px;
  background-color: var(--color-yellow);
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.product-detail-meta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--spacing-column);
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.tech-data {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-data__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 24px;
  color: var(--color-black);
}

.tech-data__row dt {
  font-weight: 700;
  margin: 0;
}

.tech-data__row dd {
  font-weight: 400;
  margin: 0;
}

.meta-notices {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 700;
  line-height: 24px;
  color: var(--color-black);
}

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

.meta-downloads__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxs);
}

.meta-downloads__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.meta-downloads__link {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  color: var(--color-black);
}

.meta-downloads__link:hover {
  text-decoration: underline;
}

.meta-downloads__name {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 700;
  line-height: 24px;
}

.meta-downloads__size {
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-weight: 400;
  line-height: 20px;
  color: var(--color-grey);
}

.product-detail-meta__col-heading {
  display: none;
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 28px;
  color: var(--color-black);
  margin: 0 0 var(--spacing-xs) 0;
}

@media (max-width: 1440px) {
  .product-detail-meta {
    max-width: none;
    margin-left: var(--spacing-content-margin);
    margin-right: var(--spacing-content-margin);
  }
}

@media (max-width: 991.98px) {
  .product-detail-meta__inner {
    padding: var(--spacing-lg);
  }

  .product-detail-meta__headings,
  .product-detail-meta__accent {
    display: none;
  }

  .product-detail-meta__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    padding: 0;
  }

  .product-detail-meta__col:not(:last-child) {
    margin-bottom: var(--spacing-sm);
  }

  .product-detail-meta__col-heading {
    display: block;
    padding-bottom: var(--spacing-xs);
    border-bottom: 3px solid var(--color-yellow);
  }
}

.scope-lightbox,
.works-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
}

.scope-lightbox.is-open,
.works-lightbox.is-open {
  display: flex;
}

.scope-lightbox__close,
.works-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  padding: 8px;
}

.scope-lightbox__prev,
.scope-lightbox__next,
.works-lightbox__prev,
.works-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  padding: 12px;
}

.scope-lightbox__prev,
.works-lightbox__prev { left: 16px; }
.scope-lightbox__next,
.works-lightbox__next { right: 16px; }

.scope-lightbox__img,
.works-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .product-detail-about .scope > .scope__content {
    padding-top: var(--spacing-md);
    padding-left: var(--spacing-content-margin);
  }
  .product-detail-about .works > .works__content {
    padding-top: var(--spacing-md);
    padding-right: var(--spacing-content-margin);
    order: 2;
  }
  .product-detail-about .properties > .properties__content {
    padding-top: var(--spacing-md);
    padding-left: var(--spacing-content-margin);
  }
}

@media (max-width: 767px) {
  
  .scope__gallery-grid,
  .works__gallery-grid {
    gap: 16px;
  }
  .scope__thumbs,
  .works__thumbs {
    width: 80px;
    gap: 16px;
  }
  .scope__content,
  .works__content,
  .properties__content {
    gap: var(--spacing-sm);
  }
}

.product-detail-navigation.is-sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
}

.product-detail-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  list-style: none;
  margin: 0;
  padding: var(--spacing-xs) 0;
}

.product-detail-nav__link {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 400;
  line-height: 140%;
  color: var(--color-black) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: font-weight 0.15s ease;
}

.product-detail-nav__bar {
  height: 6px;
  background-color: var(--color-yellow);
  width: 100%;
}

@media (max-width: 575px) {
  .product-detail-nav__list {
    gap: var(--spacing-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-left: var(--spacing-content-margin);
    padding-right: var(--spacing-content-margin);
  }
}

.recommendations {
  padding: var(--spacing-xxl) 0;
}

.recommendations .slick-slider-other.is-not-opc,
.recommendations .slick-slider-other.is-not-opc .carousel {
  margin-bottom: 0;
}

.recommendations .recommendations__headline {
  border-bottom: 6px solid var(--color-yellow);
  padding-bottom: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.recommendations .product-card__offer .price_wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.recommendations .product-card__offer .product-card__price-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.recommendations .product-card__offer .product-card__price-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  width: 100%;
}

.recommendations .product-card__offer .product-card__vat-inline {
  display: block;
  width: 100%;
  margin-top: 0;
  text-align: left;
}

.recommendations .slick-arrow {
  padding: 0;
  line-height: 1;
  width: var(--spacing-lg);
  height: var(--spacing-lg);
  border-radius: var(--spacing-lg);
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.recommendations .slick-arrow:after {
  font-size: var(--font-size-body);
  line-height: 1;
}

.recommendations .slick-arrow:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

/*
cart popup
*/

.cart-dropdown {
  position: fixed !important;
  top: calc(var(--spacing-xl) + var(--navigation-height)) !important;
  bottom: var(--spacing-xl) !important;
  right: var(--spacing-xl) !important;
  left: auto !important;
  margin: 0 !important;
  max-width: 50vw;
  width: min(50vw, 100vw);
  height: auto;
  min-height: 0;
  max-height: calc(100dvh - (var(--spacing-xl) * 2) - var(--navigation-height));
  overflow: hidden;
  border-radius: 0;
  z-index: 1050;
  display: block !important;
  display: flex !important;
  flex-direction: column;
  transform: translateY(calc(-100% - var(--spacing-xl)));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 260ms ease,
    opacity 220ms ease,
    visibility 0s linear 260ms;
}

.cart-dropdown .cart-popup-close {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.cart-dropdown .cart-popup-close svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cart-icon-dropdown.show .cart-dropdown {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
  padding: 0;
  border-radius: 8px;
}

.cart-dropdown .cart-popup-success {
  padding: var(--spacing-md) var(--spacing-xl) var(--spacing-md);
}

.cart-dropdown .cart-popup-success-title {
  margin: 0 0 var(--spacing-xs);
  font-family: var(--font-headline);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-black);
}

.cart-dropdown .cart-popup-success-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-black);
}

.cart-dropdown .cart-popup-success-product-name {
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-style: normal;
  font-weight: 700;
}

.cart-dropdown .cart-popup-success-product-no {
  color: var(--color-grey);
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

  .cart-dropdown .cart-popup-success-variation {
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: var(--font-size-body-small);
    letter-spacing: 0;
}

.cart-dropdown .cart-popup-items {
  padding: var(--spacing-md) !important;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none !important;
  overflow-y: auto;
  overflow-x: hidden;
}

.cart-dropdown .dropdown-body {
  flex: 0 0 auto;
  background: var(--color-grey-light);
  padding: var(--spacing-md);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.cart-dropdown .dropdown-body .list-unstyled {
  margin-bottom: var(--spacing-sm);
}

.cart-dropdown .cart-dropdown-total-item {
  margin-bottom: var(--spacing-xxs);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.cart-dropdown .cart-dropdown-total-item a {
  color: var(--color-black) !important;
  text-decoration: underline !important;
}

.cart-dropdown .cart-dropdown-total-item:first-child {
  padding-bottom: var(--spacing-xxs);
  border-bottom: 1px solid var(--color-white);
  margin-bottom: var(--spacing-xxs);
}

.cart-dropdown .font-weight-bold-util {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--spacing-xs);
  margin-bottom: 6px;
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.2;
}

.cart-dropdown .font-weight-bold-util .cart-dropdown-total-item-price {
  white-space: nowrap;
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.2;
}

.cart-dropdown .cart-dropdown-buttons {
  margin-left: calc(var(--spacing-xxs) * -1);
  margin-right: calc(var(--spacing-xxs) * -1);
}

.cart-dropdown .cart-dropdown-buttons [class*="col-"] {
  padding-left: var(--spacing-xxs);
  padding-right: var(--spacing-xxs);
}

.cart-dropdown .cart-dropdown-buttons .btn {
  min-height: 56px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cart-dropdown .cart-dropdown-buttons .btn-outline-primary {
  border-color: transparent !important;
  background: var(--color-white);
  color: var(--color-black) !important;
}

.cart-dropdown .cart-dropdown-buttons .btn-outline-primary:hover,
.cart-dropdown .cart-dropdown-buttons .btn-outline-primary:focus {
  border-color: transparent !important;
  background: var(--color-white) !important;
  color: var(--color-black) !important;
}

@media (max-width: 991.98px) {
  .cart-dropdown {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    max-height: 100dvh;
  }
}

@media (max-width: 575.98px) {
  .cart-dropdown .dropdown-body {
    padding: var(--spacing-sm);
  }

  .cart-dropdown .cart-dropdown-buttons [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.cart-dropdown .cart-popup-items-title {
  margin: 0 0 var(--spacing-xl);
  font-family: var(--font-headline);
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-black);
}

.cart-dropdown .cart-popup-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-md);
}

.cart-dropdown .cart-popup-item-card {
  display: flex;
  align-items: stretch;
  gap: var(--spacing-xs);
  background: transparent;
}

.cart-dropdown .cart-popup-item-image-wrap {
  flex: 0 0 111px;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--color-grey-light);
  border-radius: 8px;
}

.cart-dropdown .cart-popup-item-image-link img {
  width: 100%;
  max-width: 92px;
  height: 84px;
  object-fit: contain;
}

.cart-dropdown .cart-popup-item-body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
}

.cart-dropdown .cart-popup-item-name {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-headline);
  font-size: var(--font-size-body);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black) !important;
}

.cart-dropdown .cart-popup-item-product-no {
  margin-bottom: 4px;
  color: var(--color-grey);
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.cart-dropdown .cart-popup-item-quantity {
  margin-bottom: var(--spacing-xs);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.cart-dropdown .cart-popup-item-price-row {
  display: block;
}

.cart-dropdown .cart-popup-item-price {
  font-family: var(--font-headline);
  font-size: var(--font-size-body);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
}

@media (max-width: 1399.98px) {
  .cart-dropdown .cart-popup-items-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
}

.cart-dropdown .dropdown-item.cart-dropdown-empty {
  color: var(--color-dark);
  background-color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  padding: var(--spacing-xxs) var(--spacing-xs)
}

.cart-dropdown .dropdown-item.cart-dropdown-empty:hover,
.cart-dropdown .dropdown-item.cart-dropdown-empty:focus {
  color: var(--color-dark);
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
}

/*
basket
*/

.basket .basket-summary > .card-body {
  background: var(--color-grey-light);
  padding: var(--spacing-md);
  border-radius: 8px;
}

.basket .basket-summary > .card-body .row {
  margin-bottom: var(--spacing-xxs);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--font-size-body-small);
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.basket .basket-summary > .card-body .row:last-of-type {
  margin-bottom: 0;
}

.basket .basket-summary > .card-body .price-col {
  text-align: right;
}

.basket .basket-summary > .card-body .basket-summary-total {
  margin-top: var(--spacing-xxs);
  margin-bottom: 6px;
  padding-top: var(--spacing-xxs);
  border-top: 1px solid var(--color-white);
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.2;
}

.basket .basket-summary > .card-body .basket-summary-total .total-sum,
.basket .basket-summary > .card-body .basket-summary-total .price_label {
  white-space: nowrap;
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.2;
}

.basket .basket-summary > .card-body .shipping-costs small,
.basket .basket-summary > .card-body > div a {
  color: var(--color-black) !important;
}

.basket .basket-summary > .card-body > div a {
  text-decoration: underline !important;
}

.basket .cart-items-body .cart-items-name {
  color: var(--color-black);
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.basket .cart-items-body .wishlist-button {
  display: none !important;
}

/*
checkout
*/

.badge-primary {
  background-color: var(--color-yellow) !important;
}
.badge-secondary {
  background-color: var(--color-dark) !important;
}

.stepper .badge-count {
  color: var(--color-white);
}

.stepper .step-active .badge-count {
  color: var(--color-black);
}

.stepper .step-active .step-content::after {
  background: var(--color-yellow);
}

.checkout-steps .step-check {
  color: var(--color-dark);
}

.card-header,
.card-products .card-header .btn,
.card-gray {
  background-color: var(--color-grey-light);
}

.card-products .checkout-items-item-main a {
  font-family: var(--font-headline);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-black);
}

.checkout-confirmation-items .checkout-button-row .order-2 {
  display: none;
}

#result-wrapper .checkout-shipping-form .title {
  display: block !important;
  margin-bottom: var(--spacing-xxs);
}

/*
forms
*/

.form-control:focus {
  border-color: var(--color-yellow);
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--color-dark);
  background-color: var(--color-dark);
}

.form-control:focus {
  box-shadow: none;
}

/*
footer
*/

#footer.ec-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0;
}

#footer.ec-footer section {
  padding: var(--spacing-section) 0;
}

.ec-footer-contact {
  text-align: center;
  border-bottom: 8px solid var(--color-yellow);
}

.ec-footer-contact-subtitle {
  font-weight: 400;
  margin-bottom: 0;
}

.ec-footer-contact-boxes {
  margin-top: var(--spacing-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-column);
}

.ec-footer-contact-box {
  border-radius: 8px;
  border: 1px solid var(--color-yellow);
  padding: var(--spacing-sm);
}

.ec-footer-contact-box svg {
  margin-bottom: var(--spacing-xs);
}

.ec-footer-contact-label,
.ec-footer-contact-value {
  color: var(--color-yellow);
  font-family: var(--font-headline);
  font-size: var(--font-size-h3);
  margin-bottom: 0;
}

.ec-footer-main .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-column);
}

.ec-footer-main .left-column {
  max-width: 450px;
}

.ec-footer-main .right-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-column);
}

.ec-footer-slogan {
  margin-top: var(--spacing-xs);
}

.ec-footer-description {
  margin-bottom: var(--spacing-sm);
}

.ec-footer-social {
  display: flex;
  gap: var(--spacing-xs);
}

.ec-footer-social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.ec-footer-social-icon i:before {
  color: var(--color-white);
}

.ec-footer-heading {
  margin-bottom: var(--spacing-md);
}

#footer .ec-footer-links li {
  margin-bottom: var(--spacing-xs);
}

.ec-footer-links a {
  color: var(--color-white) !important;
  text-decoration: none;
}

#footer.ec-footer .ec-footer-copyright {
  padding: 0 0 var(--spacing-sm) 0;
  text-align: center;
}

.ec-footer-copyright-text {
  color: var(--color-white);
  font-size: var(--font-size-body-small);
  margin: 0;
}

@media (max-width: 991px) {
  .ec-footer-main .container {
    grid-template-columns: 1fr;
  }

  .ec-footer-main .left-column {
    max-width: none;
    order: 1;
  }

  .ec-footer-main .right-column {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
  }

  .ec-footer-contact-boxes {
    grid-template-columns: 1fr;
  }

  .ec-footer-contact-box svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .ec-footer-main .right-column {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .ec-footer-main .left-column {
    text-align: center;
  }

  .ec-footer-main .left-column img {
    max-width: 180px;
    height: auto;
  }

  .ec-footer-social {
    justify-content: center;
  }

  .ec-footer-contact-box svg {
    width: 36px;
    height: 36px;
  }

  .ec-footer-contact-label,
  .ec-footer-contact-value {
    font-size: var(--font-size-body-large);
  }

  .ec-footer-col {
    text-align: center;
  }

  .ec-footer-copyright-text {
    font-size: var(--font-size-body-tiny);
  }
}

@media (max-width: 575px) {
  .ec-footer-contact-boxes {
    gap: var(--spacing-xs);
  }

  .ec-footer-contact-box {
    padding: var(--spacing-xs);
  }

  .ec-footer-contact-box svg {
    width: 32px;
    height: 32px;
  }

  .ec-footer-social-icon {
    width: 36px;
    height: 36px;
  }
}





















/*
megamenu - vertikales Layout mit gestaffelter Animation
*/
@keyframes ec-megamenu-item-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header .nav-scrollbar .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav,
header .nav-scrollbar .dropdown-menu .dropdown-body .row.nav {
  flex-direction: column;
}

header .nav-scrollbar .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"],
header .nav-scrollbar .dropdown-menu .dropdown-body .row.nav > [class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
}

header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"],
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"] {
  opacity: 0;
  animation: ec-megamenu-item-in 0.35s ease-out forwards;
}

header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(1),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(1) { animation-delay: 0ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(2),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(2) { animation-delay: 200ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(3),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(3) { animation-delay: 400ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(4),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(4) { animation-delay: 600ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(5),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(5) { animation-delay: 800ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(6),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(6) { animation-delay: 1000ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(7),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(7) { animation-delay: 1200ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(8),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(8) { animation-delay: 1400ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(9),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(9) { animation-delay: 1600ms; }
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .subcategory-wrapper .row.nav > [class*="col-"]:nth-child(10),
header .nav-scrollbar .dropdown.show .dropdown-menu .dropdown-body .row.nav > [class*="col-"]:nth-child(10) { animation-delay: 1800ms; }

/* === Links === */
a:hover,
a:focus {
  color: var(--color-grey-dark);
}

/* === Buttons Outline Primary === */
.btn-outline-primary {
  color: var(--color-yellow) !important;
  border-color: var(--color-yellow) !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
  background-color: var(--color-yellow) !important;
  border-color: var(--color-yellow) !important;
  color: var(--color-black) !important;
}

/* === Alerts === */
.alert-primary {
  background-color: rgba(255, 237, 0, 0.2);
  border-color: var(--color-yellow);
  color: var(--color-black);
}
.alert-secondary {
  background-color: rgba(76, 76, 76, 0.2);
  border-color: var(--color-grey-dark);
  color: var(--color-grey-dark);
}

/* === Background utilities === */
.bg-primary {
  background-color: var(--color-yellow) !important;
}
.bg-secondary {
  background-color: var(--color-grey-dark) !important;
}
.bg-light {
  background-color: var(--color-grey-light) !important;
}
.bg-dark {
  background-color: var(--color-black) !important;
}

/* === Text utilities === */
.text-primary {
  color: var(--color-yellow) !important;
}
.text-secondary {
  color: var(--color-grey-dark) !important;
}
.text-muted {
  color: var(--color-grey) !important;
}