.has-modal-open,
.has-drawer-open,
.has-search-open {
  overflow: hidden;
}

[data-modal] {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal, 9999999995);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 175ms cubic-bezier(0.4, 0, 0.2, 1), visibility 175ms cubic-bezier(0.4, 0, 0.2, 1);
}
[data-modal][hidden] {
  display: none;
}
[data-modal].is-open {
  opacity: 1;
  visibility: visible;
}

[data-modal-overlay] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  opacity: 0;
  transition: opacity 125ms cubic-bezier(0.4, 0, 0.2, 1);
}
[data-modal].is-open [data-modal-overlay] {
  opacity: 1;
}

.theme-modal__content {
  position: relative;
  background: #fff;
  color: #111;
  width: 100%;
  max-width: 37.5em;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(1em);
  transition: transform 175ms cubic-bezier(0.4, 0, 0.2, 1);
}
[data-modal].is-open .theme-modal__content {
  transform: translateY(0);
}

.theme-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25em 1.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.theme-modal__title {
  margin: 0;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.3;
}

.theme-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  margin: -0.5em -0.5em -0.5em 0;
  padding: 0;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 150ms ease;
}
.theme-modal__close:hover {
  opacity: 1;
}
.theme-modal__close svg {
  width: 1.25em;
  height: 1.25em;
}

.theme-modal__body {
  flex: 1 1 auto;
  padding: 1.5em;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.theme-modal__footer {
  display: flex;
  gap: 0.75em;
  padding: 1.25em 1.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

[data-drawer] {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer, 9999999995);
  visibility: hidden;
  transition: visibility 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
[data-drawer][hidden] {
  display: none;
}
[data-drawer].is-open {
  visibility: visible;
}

[data-drawer-overlay] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  cursor: pointer;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
[data-drawer].is-open [data-drawer-overlay] {
  opacity: 1;
}

.theme-drawer__content {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 25em;
  max-width: 85vw;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
[data-drawer].is-position-left .theme-drawer__content {
  left: 0;
  transform: translateX(-100%);
}
[data-drawer].is-position-left.is-open .theme-drawer__content {
  transform: translateX(0);
}
[data-drawer].is-position-right .theme-drawer__content {
  right: 0;
  transform: translateX(100%);
}
[data-drawer].is-position-right.is-open .theme-drawer__content {
  transform: translateX(0);
}

.theme-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25em 1.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.theme-drawer__title {
  margin: 0;
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.3;
}

.theme-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  margin: -0.5em -0.5em -0.5em 0;
  padding: 0;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 150ms ease;
}
.theme-drawer__close:hover {
  opacity: 1;
}
.theme-drawer__close svg {
  width: 1.25em;
  height: 1.25em;
}

.theme-drawer__body {
  flex: 1 1 auto;
  padding: 1.5em;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.theme-drawer__footer {
  display: flex;
  gap: 0.75em;
  padding: 1.25em 1.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

@media (max-width: 40em) {
  .theme-drawer__content {
    max-width: 90vw;
  }
}
.theme-modal__body,
.theme-drawer__body {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.theme-modal__body::-webkit-scrollbar,
.theme-drawer__body::-webkit-scrollbar {
  width: 6px;
}
.theme-modal__body::-webkit-scrollbar-track,
.theme-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}
.theme-modal__body::-webkit-scrollbar-thumb,
.theme-drawer__body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.theme-modal__body::-webkit-scrollbar-thumb:hover,
.theme-drawer__body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.swiper {
  position: relative;
  overflow: hidden;
  --swiper-pagination-space: 0em;
}
.swiper:has(.swiper-pagination) {
  --swiper-pagination-space: 2em;
  padding-block-end: var(--swiper-pagination-space);
}

.swiper-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex: 0 0 auto;
  height: auto;
}

.swiper-nav {
  position: absolute;
  top: calc((100% - var(--swiper-pagination-space, 0em)) / 2);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  border: 1px solid var(--theme-color-border, rgba(0, 0, 0, 0.1));
  border-radius: 0;
  background: var(--swiper-nav-bg, rgba(255, 255, 255, 0.9));
  color: var(--swiper-nav-color, #111);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 150ms ease;
}
.swiper-nav:hover {
  background: var(--swiper-nav-bg-hover, #fff);
}
.swiper-nav:disabled, .swiper-nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.swiper-nav svg {
  width: 1.25em;
  height: 1.25em;
}

.swiper-nav--prev {
  left: 0.5em;
}
.swiper-nav--prev svg {
  transform: rotate(90deg);
}

.swiper-nav--next {
  right: 0.5em;
}
.swiper-nav--next svg {
  transform: rotate(-90deg);
}

.swiper-nav--chevron svg {
  transform: none;
}

.swiper-dots,
.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.swiper-dot,
.swiper-pagination-bullet {
  width: 0.5em;
  height: 0.25em;
  padding: 0;
  border: none;
  border-radius: 0;
  background: currentColor;
  opacity: 0.3;
  cursor: pointer;
}
.swiper-dot:focus, .swiper-dot:focus-visible,
.swiper-pagination-bullet:focus,
.swiper-pagination-bullet:focus-visible {
  outline: none;
  box-shadow: none;
}
.swiper-dot::before, .swiper-dot::after,
.swiper-pagination-bullet::before,
.swiper-pagination-bullet::after {
  display: none;
}
.swiper-dot:hover,
.swiper-pagination-bullet:hover {
  opacity: 0.5;
}
.swiper-dot.is-active, .swiper-dot.swiper-pagination-bullet-active,
.swiper-pagination-bullet.is-active,
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 1.5em;
}

.swiper--all-visible .swiper-wrapper {
  justify-content: center;
}
.swiper--all-visible .swiper-nav,
.swiper--all-visible .swiper-nav--prev,
.swiper--all-visible .swiper-nav--next,
.swiper--all-visible .swiper-dots,
.swiper--all-visible .swiper-pagination {
  display: none;
}

.card {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  background: var(--card-bg, #fff);
  color: var(--card-text, #111);
}

.card__link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.card--vertical {
  grid-template-rows: auto 1fr;
}

.card--horizontal {
  grid-template-columns: 35% 1fr;
  align-items: start;
}

@media (max-width: 40em) {
  .card--horizontal {
    grid-template-columns: 30% 1fr;
  }
}
.card__media {
  position: relative;
  overflow: hidden;
}

.card__figure {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: var(--card-ratio, auto);
  overflow: hidden;
}

.card__figure .theme-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 125ms ease;
}

@media (hover: hover) {
  .card:hover .card__figure .theme-media__img {
    transform: scale(1.02);
  }
}
.card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--theme-color-grey-light, #f5f5f5);
  color: var(--theme-color-grey, #999);
}

.card__image--primary {
  position: relative;
  z-index: 1;
}

.card__image--secondary {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 300ms ease;
}

@media (hover: hover) {
  .card--has-secondary:hover .card__image--secondary {
    opacity: 1;
  }
  .card--has-secondary:hover .card__image--primary {
    opacity: 0;
  }
}
.card__badges {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  z-index: 11;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}

.card__badge {
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card__badge--sale {
  background: var(--theme-color-sale, #e53935);
  color: #fff;
}

.card__badge--soldout {
  background: var(--theme-color-grey, #999);
  color: #fff;
}

.card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1em;
  min-width: 0;
}

.card__label {
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.card__title {
  font-family: var(--theme-font-family-serif);
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.card__title a {
  color: inherit;
  text-decoration: none;
}

.card__vendor {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.card__meta {
  font-size: 0.85em;
  opacity: 0.8;
}

.card__excerpt {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.5;
  opacity: 0.8;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  margin-top: auto;
  font-size: 0.9em;
  font-weight: 500;
  color: var(--theme-color-accent, currentColor);
}
.card__cta svg {
  transition: transform 150ms ease;
}

@media (hover: hover) {
  .card:hover .card__cta svg {
    transform: translateX(4px);
  }
}
.card__actions {
  position: relative;
  z-index: 12;
  margin-top: auto;
}

.card--collection .card__title {
  font-size: 1.1em;
}

.card--article {
  border: 1px solid var(--theme-color-border, #e5e5e5);
}

.card--article .card__title {
  font-size: 1.1em;
}

.card--article .card__cta {
  margin-top: auto;
}

.card--horizontal .card__media {
  height: 100%;
}

.card--horizontal .card__figure {
  height: 100%;
}

.card--horizontal.card--ratio-square .card__figure,
.card--horizontal.card--ratio-portrait .card__figure,
.card--horizontal.card--ratio-landscape .card__figure {
  display: flex;
  align-items: flex-start;
}
.card--horizontal.card--ratio-square .card__image,
.card--horizontal.card--ratio-portrait .card__image,
.card--horizontal.card--ratio-landscape .card__image {
  height: auto;
  aspect-ratio: var(--card-ratio);
}

.card--horizontal .card__content {
  padding: 0.75em 1em;
  height: 100%;
}

.card--horizontal .card__title {
  font-size: 1em;
}

@media (max-width: 40em) {
  .card__content {
    padding: 0.75em;
  }
}
.product-price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.2em;
  row-gap: 0;
}

.product-price__current {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: var(--theme-letter-spacing);
}

.product-price__compare {
  font-size: 0.65em;
  opacity: 0.6;
  position: relative;
}
.product-price__compare::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  top: 50%;
  height: 1px;
  background-color: currentColor;
  transform: rotate(-12deg);
}

.product-price__tax-notice,
.product-price__unit {
  flex-basis: 100%;
  font-size: 0.4em;
  opacity: 0.6;
  margin-top: -0.3em;
}

.product-price .price {
  display: inline-flex;
  align-items: flex-start;
}

.product-price .valuta {
  margin-right: 0.1em;
}

.product-price .after_seperator {
  font-size: 0.6em;
  line-height: 1;
  vertical-align: super;
  position: relative;
  top: 0.2em;
}

.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.8em;
  font-size: 0.8em;
  border: 1px solid currentColor;
  border-radius: 0;
}

.product-stock__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: currentColor;
}

.product-stock--no-inventory,
.product-stock--in-stock,
.product-stock--in-stock-backorder,
.product-stock--low-in-stock-backorder,
.product-stock--out-of-stock-backorder {
  color: #009922;
}

.product-stock--low-in-stock {
  color: #f05a22;
}

.product-stock--out-of-stock {
  color: #FF0000;
}

.product-delivery {
  font-size: 0.8em;
  line-height: 1.2;
}

.product-delivery__message {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: #009922;
}

.product-delivery--backorder .product-delivery__message {
  color: #009922;
}

.volume-pricing-disclosure {
  font-size: 0.8em;
}

.volume-pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  cursor: pointer;
  color: var(--theme-color-blue, #0f1f38);
  list-style: none;
}
.volume-pricing-toggle::-webkit-details-marker {
  display: none;
}
.volume-pricing-toggle i {
  width: 1em;
  height: 1em;
  transition: transform 150ms ease;
}
.volume-pricing-toggle i svg {
  width: 100%;
  height: 100%;
}
details[open] .volume-pricing-toggle i {
  transform: rotate(180deg);
}

.volume-pricing-table {
  margin-top: 0.5em;
  padding: 0.5em;
  background-color: var(--theme-color-grey, #f8f8f8);
}

.volume-pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.volume-pricing-item {
  display: flex;
  justify-content: space-between;
  padding: 0.25em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.volume-pricing-item:last-child {
  border-bottom: none;
}

.volume-pricing-qty {
  font-weight: 500;
}

.quantity-rule {
  font-size: 0.75em;
  padding: 0.2em 0.5em;
  background-color: var(--theme-color-grey, #f8f8f8);
  border-radius: 2px;
}

.card--product .card__content {
  gap: 0.2em;
}

.card--product .card__title {
  font-size: 1.2em;
}

.card--product .product-price {
  font-size: 1.4em;
  margin-top: 0em;
}

.card--product .card__stock {
  margin-top: 0.5em;
}
.card--product .card__stock .product-stock--low-in-stock {
  color: #009922;
}

.card--product .card__delivery {
  margin-top: auto;
  padding-top: 0.5em;
}

.card--product .card__volume-pricing {
  margin-top: 0.5em;
}

.card--product .card__quantity-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 0.25em;
}

.card--product .card__rating {
  font-size: 0.85em;
}

.shopify-pc-banner,
.shopify-pc__banner,
#shopify-pc__banner {
  font-family: var(--theme-font-family-sans, inherit) !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
  border: none !important;
  border-radius: 0 !important;
  max-width: 37.5em !important;
  padding: 0 !important;
  position: fixed !important;
  bottom: 1em !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}
@media (max-width: 40em) {
  .shopify-pc-banner,
  .shopify-pc__banner,
  #shopify-pc__banner {
    width: calc(100% - 2em) !important;
  }
}
.shopify-pc-banner > div,
.shopify-pc__banner > div,
#shopify-pc__banner > div {
  padding: 1.5em !important;
}

.shopify-pc-banner-title,
.shopify-pc__banner-title,
[class*=shopify-pc] h2,
[class*=shopify-pc] h3 {
  margin: 0 0 0.75em !important;
  font-family: var(--theme-font-family-serif, inherit) !important;
  font-size: 1.25em !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: #111 !important;
}

.shopify-pc-banner-text,
.shopify-pc__banner-text,
.shopify-pc-banner p,
.shopify-pc__banner p,
[class*=shopify-pc-banner] p {
  margin: 0 0 1.25em !important;
  font-size: 0.9375em !important;
  line-height: 1.6 !important;
  color: #111 !important;
  opacity: 0.8;
}

.shopify-pc-banner a,
.shopify-pc__banner a,
[class*=shopify-pc-banner] a {
  color: #111 !important;
  text-decoration: underline !important;
}
.shopify-pc-banner a:hover,
.shopify-pc__banner a:hover,
[class*=shopify-pc-banner] a:hover {
  opacity: 0.7;
}

.shopify-pc-banner-manage-preferences,
[class*=manage-preferences],
[class*=shopify-pc] a[href*=preferences],
.shopify-pc-banner > div > a {
  display: block !important;
  text-align: center !important;
  margin-bottom: 1em !important;
  font-size: 0.875em !important;
  color: #111 !important;
  opacity: 0.7 !important;
}
.shopify-pc-banner-manage-preferences:hover,
[class*=manage-preferences]:hover,
[class*=shopify-pc] a[href*=preferences]:hover,
.shopify-pc-banner > div > a:hover {
  opacity: 1 !important;
}

.shopify-pc-banner-buttons,
.shopify-pc__banner-btns,
[class*=shopify-pc-banner] > div > div:last-child {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75em !important;
  margin: 0 !important;
  padding: 0 !important;
}

.shopify-pc-banner button,
.shopify-pc__banner button,
[class*=shopify-pc-banner] button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 0.875em 1.5em !important;
  font-family: var(--theme-font-family-sans, inherit) !important;
  font-size: 0.9375em !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: opacity 150ms ease !important;
}
.shopify-pc-banner button:hover,
.shopify-pc__banner button:hover,
[class*=shopify-pc-banner] button:hover {
  opacity: 0.9 !important;
}

.shopify-pc-banner button:first-of-type,
.shopify-pc__banner button:first-of-type,
[class*=shopify-pc-banner] button:first-of-type,
.shopify-pc-banner-accept-button,
button[class*=accept] {
  background: var(--theme-color-blue, #0f1f38) !important;
  color: var(--theme-color-white, #fff) !important;
  border: none !important;
}

.shopify-pc-banner button:last-of-type,
.shopify-pc__banner button:last-of-type,
[class*=shopify-pc-banner] button:last-of-type,
.shopify-pc-banner-decline-button,
button[class*=decline] {
  background: transparent !important;
  color: #111 !important;
  border: 1px solid #111 !important;
}

.shopify-pc-banner button:only-of-type,
.shopify-pc__banner button:only-of-type {
  background: var(--theme-color-blue, #0f1f38) !important;
  color: var(--theme-color-white, #fff) !important;
  border: none !important;
}

.shopify-pc-prefs,
.shopify-pc__prefs,
[class*=shopify-pc-prefs] {
  font-family: var(--theme-font-family-sans, inherit) !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
  border: none !important;
  border-radius: 0 !important;
  max-width: 37.5em !important;
  max-height: 90vh !important;
}

.shopify-pc-overlay,
.shopify-pc__overlay,
[class*=shopify-pc-overlay] {
  background: rgba(0, 0, 0, 0.6) !important;
}

.block-header-bottom {
  position: relative;
  z-index: var(--z-sticky);
}

.block-header-bottom__wrapper {
  display: block;
}

.block-header-bottom__nav {
  position: relative;
}
.block-header-bottom__nav::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease, visibility 150ms ease;
  pointer-events: none;
}
.block-header-bottom__nav:has(.has-dropdown:hover)::after {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 60em) {
  .block-header-bottom__nav {
    display: none;
  }
}

.block-header-bottom__menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.block-header-bottom__item {
  position: static;
}
.block-header-bottom__item > a {
  display: inline-flex;
  align-items: center;
  height: var(--header-bottom-height, 3.5em);
  padding: 0;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.block-header-bottom__item > a span {
  font-size: 0.9em;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.block-header-bottom__item > a:hover {
  opacity: 0.8;
}
.block-header-bottom__item.has-dropdown > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.25em;
  transform: translateX(-50%);
  width: 1em;
  height: 1em;
  opacity: 0.4;
  background-color: currentColor;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100%;
}
.block-header-bottom__item.has-dropdown:hover > .block-header-bottom__dropdown, .block-header-bottom__item.has-dropdown:focus-within > .block-header-bottom__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.block-header-bottom__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background-color: var(--theme-color-grey);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5em);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  pointer-events: none;
}
.block-header-bottom__dropdown--nested {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
  transform: none;
}

.block-header-bottom__dropdown-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5em;
  padding-block: 2em;
}

.block-header-bottom__links {
  flex: 1 1 auto;
}
.block-header-bottom__links > ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16em, 1fr));
  gap: 0.2em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.block-header-bottom__links > ul > li {
  position: static;
  background-color: var(--theme-color-white);
}
.block-header-bottom__links > ul > li.has-dropdown.is-selected > .block-header-bottom__dropdown--nested {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.block-header-bottom__link {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75em;
  width: 100%;
  height: 100%;
  min-height: 4.5em;
  padding: 0.75em;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}
.block-header-bottom__link:hover {
  background-color: var(--theme-color-blue);
  color: var(--theme-color-white);
}
.block-header-bottom__link span {
  font-size: 0.85em;
  line-height: 1.3;
}
.block-header-bottom__link--back {
  background-color: var(--theme-color-white);
  color: var(--theme-color-blue);
}
.block-header-bottom__link--back span {
  order: 1;
}
.block-header-bottom__link--back i {
  order: 0;
}
.block-header-bottom__link--back i svg {
  transform: rotate(180deg);
}
.block-header-bottom__link--all {
  background-color: var(--theme-color-blue);
  color: var(--theme-color-white);
}

.block-header-bottom__link-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4.5em;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.block-header-bottom__link-image .theme-media,
.block-header-bottom__link-image .theme-media__picture,
.block-header-bottom__link-image .theme-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-header-bottom__link-image + span {
  padding-inline-start: 5.25em;
}

.block-header-bottom__caret {
  flex: 0 0 1em;
  line-height: 1;
}
.block-header-bottom__caret svg {
  transform: rotate(-90deg);
}

.block-header-bottom__navigate {
  grid-column: 1/-1;
  text-align: center;
  background-color: transparent !important;
  display: flex;
  justify-content: center;
  gap: 0.5em;
  padding-top: 0.5em;
}
.block-header-bottom__navigate--top {
  display: none;
}
.block-header-bottom__navigate .block-header-bottom__link {
  width: auto;
  height: auto;
  min-height: auto;
  display: inline-flex;
}

.block-header-bottom__assist {
  flex: 0 0 16.25em;
}

.block-header-bottom__assist-item {
  position: relative;
  width: 100%;
  height: 18.6em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--theme-color-blue);
}
.block-header-bottom__assist-item:hover .block-header-bottom__assist-image .theme-media__img {
  opacity: 1;
  transform: scale(1.02);
}

.block-header-bottom__assist-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.block-header-bottom__assist-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
}
.block-header-bottom__assist-image .theme-media,
.block-header-bottom__assist-image .theme-media__picture,
.block-header-bottom__assist-image .theme-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 150ms ease, transform 150ms ease;
}

.block-header-bottom__assist-content {
  position: relative;
  z-index: 1;
  padding: 1em;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}
.block-header-bottom__assist-content h3 {
  font-family: var(--theme-font-family-serif);
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5em 0;
}

.block-header-bottom__assist-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.4em 0.75em;
  background-color: var(--theme-color-blue);
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  transition: background-color 150ms ease, color 150ms ease;
}
.block-header-bottom__assist-link:hover {
  background-color: #fff;
  color: var(--theme-color-blue);
}
.block-header-bottom__assist-link i {
  width: 1em;
  height: 1em;
  line-height: 1;
}

.theme-media {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.theme-media.has-background {
  background: var(--theme-color-grey, #f5f5f5);
}
.theme-media.is-mode-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.theme-media__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: var(--media-ratio, 1);
  color: var(--theme-color-foreground-subtle, #999);
}

.theme-media__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.theme-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-media.is-contain .theme-media__img {
  object-fit: contain;
}

.theme-media__video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.theme-media__video-wrapper .theme-media__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.theme-media__video-wrapper.is-playing .theme-media__poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.theme-media__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.theme-media__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.theme-media__video-wrapper.is-playing .theme-media__play-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.theme-media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.theme-media__iframe-wrapper {
  position: absolute;
  inset: 0;
  display: none;
}
.theme-media__iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.theme-media__video-wrapper.is-playing .theme-media__iframe-wrapper {
  display: block;
}

.theme-media__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.theme-media.is-mode-card .theme-media__play-btn {
  width: 56px;
  height: 56px;
}
.theme-media.is-mode-card .theme-media__play-btn svg {
  width: 28px;
  height: 28px;
}

.theme-media__video--background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.theme-media__video--background.is-loaded {
  opacity: 1;
}

.theme-media__picture--background {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.6s ease;
}
.theme-media__picture--background .theme-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.is-video-playing .theme-media__picture--background {
  opacity: 0;
  pointer-events: none;
}

.theme-media__iframe-wrapper--background {
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.theme-media__iframe-wrapper--background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}

.theme-media__model-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.theme-media__model-wrapper .theme-media__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.theme-media__model-wrapper.is-active .theme-media__poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.theme-media__model-wrapper.is-active .theme-media__play-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.theme-media__model {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.theme-media__model model-viewer {
  width: 100%;
  height: 100%;
}

.theme-media__model-wrapper.is-active .theme-media__model {
  opacity: 1;
  visibility: visible;
}
