/** Shopify CDN: Minification failed

Line 504:0 Unexpected "}"

**/
/* The toolbar holds FILTERN + SORTIEREN and sits outside .facets-vertical,
   so it needs the variables declared on it as well. */
.wd-collection-toolbar,
.facets-vertical,
.facets-vertical-sort {
  --wd-accent: #dd1155;
  --wd-fg: rgb(var(--color-foreground));
  --wd-muted: rgba(var(--color-foreground), 0.5);
  --wd-line: rgba(var(--color-foreground), 0.18);
  --wd-fill: rgba(var(--color-foreground), 0.05);
  --wd-fill-hover: rgba(var(--color-foreground), 0.12);
  --wd-panel-bg: color-mix(in srgb, rgb(var(--color-background)), rgb(var(--color-foreground)) 7%);
}

/* Native sort <select> (mobile + drawer): force a dark dropdown so the
   option list isn't a white box on the dark theme. Applies at all widths. */
#SortBy,
#SortBy-mobile,
.mobile-facets__sort .select__select,
.facets-container .select__select {
  color-scheme: dark;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
}

#SortBy option,
#SortBy-mobile option,
.mobile-facets__sort .select__select option,
.facets-container .select__select option {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* The vertical layout container is never a flex row — component-facets.css
   turns it into one from 750px up, which would shrink-wrap the single
   .facets-vertical__layout child once the drawer takes over below 1070px. */
.facets-vertical {
  display: block;
}

/* ==================================================================
   DESKTOP (>= 1070px) — the width at which the header hamburger goes
   away. Below this the mobile filter drawer is used instead, so every
   desktop-only rule below starts here.
   ================================================================== */
@media screen and (min-width: 1070px) {
  .wd-collection-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
   
  }

  .wd-collection-toolbar .facets-vertical-sort {
    min-width: 0;
    margin-left: auto;
  }

  .wd-filter-toggle {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0;
    background: none;
    font-family:Poppins, sans-serif;
    border: 0;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.15s ease;
    white-space: nowrap;
  }

  .wd-filter-toggle:hover,
  .wd-filter-toggle:focus-visible,
  .wd-filter-toggle.is-active {
    color: var(--wd-accent);
  }

  .wd-filter-toggle__count {
    color: var(--wd-accent);
    font-weight: 600;
  }

  .facets-vertical .facets-vertical__layout {
    position: relative;
  }

  .facets-vertical .product-grid-container {
    width: 100%;
    transition: margin-left 0.2s ease, width 0.2s ease;
  }

  .facets-vertical .facets__form-vertical {
    width: 100%;
  }

  .js .facets-vertical .facets-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    /* Floats ABOVE the grid (over the first column of products). The grid
       itself never moves, so there is no reflow / whitespace / jumping. */
    z-index: 20;
    /* Sidebar width: always ONE grid column = one product card. This var is
       only the no-JS fallback — wd-collection-controls.js measures the first
       product card and sets the exact width/left inline. */
    width: var(--wd-panel-w, var(--wd-col-w, 25%));
    padding: 1.8rem 1.6rem 2rem;
    background: rgb(var(--color-background));
    background: var(--wd-panel-bg);
    border-radius: 0;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.35);
    /* Height is clamped by JS to one product card (one grid cell); the filters
       scroll inside when they are taller. */
    box-sizing: border-box;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.6rem);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  /* Thin, unobtrusive scrollbar for the sidebar overlay. */
  .js .facets-vertical .facets-wrapper::-webkit-scrollbar {
    width: 4px;
  }
  .js .facets-vertical .facets-wrapper::-webkit-scrollbar-thumb {
    background: var(--wd-line);
    border-radius: 4px;
  }
  .js .facets-vertical .facets-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--wd-line) transparent;
  }

  .js .facets-vertical .facets-wrapper.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .facets-vertical .active-facets-vertical-filter {
    display: none !important;
  }

  .facets-vertical .active-facets-desktop {
    margin: 0;
    padding: 0;
  }

  .facets-vertical .active-facets__button,
  .facets-vertical .active-facets__button-wrapper {
    display: none !important;
  }

  .facets-vertical .js-filter {
    margin-bottom: 3rem;
  }

  .facets-vertical .js-filter:last-child {
    margin-bottom: 0;
  }

  .facets-vertical .facets__disclosure-vertical {
    border-top: 0;
  }

  .facets-vertical .facets__summary {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 500;
    color: var(--wd-muted);
    padding: 0 2px 1rem !important;
    margin: 0 !important;
    cursor: default;

  }

  .facets-vertical .facets__summary:hover {
    color: var(--wd-muted);
  }

  .facets-vertical .facets__summary:hover span {
    text-decoration: none;
  }

  .facets-vertical .facets__summary .icon-caret {
    display: none;
  }

  .facets-vertical .facets__disclosure-vertical .facets__selected {
    display: none;
  }

  .facets-vertical .drawer__submenu-content-wrapper {
    grid-template-rows: 1fr !important;
    overflow: visible !important;
  }

  .facets-vertical .drawer__submenu-content-wrapper > div {
    opacity: 1 !important;
  }

  .facets-vertical .facets__display-vertical {
    padding: 0;
  }

  .facets-vertical .facets-list--pill {
    display: grid;
    /* Always ONE row: equal-width columns that share the panel width exactly.
       minmax(0, 1fr) lets every track shrink below its label's min-content,
       so the row scales with the grid column width and can never overflow —
       at any viewport, any column count. */
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    margin: 0;
    background: var(--wd-fill);
    border-radius: 8px;
    overflow: hidden;
  }

  .facets-vertical .facets-list--pill > li {
    margin: 0;
    min-width: 0;
  }

  .facets-vertical .facets-list--pill > li .facet-item {
    display: block;
  }

  .facets-vertical .facet-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 3.8rem;
    padding: 0.9rem 0.6rem;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    background: transparent !important;
    color: var(--wd-fg) !important;
    border: 0 !important;
    border-radius: 0 !important;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .facets-vertical .facet-item:hover .facet-pill {
    background: var(--wd-fill-hover) !important;
    color: var(--wd-accent) !important;
  }

  .facets-vertical input:checked + .facet-pill {
    color: var(--wd-accent) !important;
    background: transparent !important;
  }

  .facets-vertical .facet-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .facets-vertical .facets-list--ansicht,
  .facets-vertical .facets-list--model {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(3.2rem, auto);
    width: fit-content;
    max-width: 100%;
  }

  /* MODEL holds words (MENSCH / GHOST / PRODUKT), not single letters —
     give them room to breathe like the reference. */
  .facets-vertical .facets-list--model .facet-pill {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  /* 8 dots per row, ALWAYS. The columns are equal 1fr tracks with the dots
     centered in them, so the spacing between dots scales with the panel
     (= product card) width by itself — wide screens get the wide-open look,
     narrow columns pull the dots closer. No fixed gap → can never overflow. */
  .facets-vertical .facets-list--swatch {
    display: grid;
    grid-template-columns: repeat(var(--wd-swatch-cols, 8), 1fr);
    justify-items: center;
    gap: 3.5rem 0;
    padding: 1.5rem;
    margin: 0;
    --swatch-size: 1.6rem;
    background: var(--wd-fill);
    border-radius: 8px;
  }

  .facets-vertical .facets-list--swatch > li {
    margin: 0;
  }

  .facets-vertical .facets-list--swatch .color-swatch__label {
    display: none;
  }

  /* Every dot: identical size, perfect circle, colour filling the whole
     circle (no inner gap ring). */
  .facets-vertical .facets-list--swatch .color-swatch,
  .facets-vertical .facets-list--swatch .color-swatch__image,
  .facets-vertical .facets-list--swatch .color-swatch__custom-color {
    border-radius: 50%;
  }

  /* Kill the theme's 1px border on hover/checked — it changed the box size and
     made the dots visibly jump. The active/hover state is shown with an OUTLINE
     (which never affects layout) instead. */
  .facets-vertical .facets-list--swatch .color-swatch,
  .facets-vertical .facets-list--swatch .color-swatch:hover,
  .facets-vertical .facets-list--swatch input:checked + .color-swatch {
    border: 0 !important;
    margin: 0;
    padding: 0;
    line-height: 0;
    box-sizing: border-box;
  }

  .facets-vertical .facets-list--swatch .color-swatch__image {
    width: var(--swatch-size);
    height: var(--swatch-size);
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    border: 0;
    box-shadow: none;
    transition: outline-color 0.15s ease;
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .facets-vertical .facets-list--swatch .color-swatch__custom-color {
    width: 100%;
    height: 100%;
  }

  .facets-vertical .facets-list--swatch .color-swatch:hover .color-swatch__image {
    outline-color: var(--wd-accent);
  }

  .facets-vertical .facets-list--swatch input:checked + .color-swatch .color-swatch__image {
    outline-color: var(--wd-accent);
  }

  .facets-vertical .facets__price {
    padding: 0.4rem 0 1.2rem;
  }

  .facets-vertical .price-slider__range,
  .facets-vertical .price-slider__handle {
    border-color: var(--wd-accent);
  }

  .facets-vertical .price-slider__range {
    background: var(--wd-accent);
  }

  .facets-vertical .price-slider__labels {
    color: var(--wd-fg);
    font-size: 1.3rem;
  }

  .facets-vertical-sort .product-count-vertical {
    display: none !important;
  }

  .wd-sortbar {
    display: flex;
    align-items: center;
    /* Never wrap: the options must stay on the SORTIEREN row so opening them
       can't add a second line and grow the toolbar. */
    flex-wrap: nowrap;
    gap: 0.4rem 1.3rem;
    justify-content: flex-end;
  }

  .wd-sortbar__options {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.4rem 1.3rem;
  }

  /* Collapsed by default; clicking SORTIEREN toggles the options open/closed.
     Hidden with visibility (NOT display:none) so the options always occupy
     their box: the toolbar height and the SORTIEREN position stay identical
     open or closed, so the product grid below never jumps. visibility:hidden
     also keeps the radios out of the tab order and away from screen readers. */
  .js .wd-sortbar__options {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }
  .js .wd-sortbar__options.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .wd-sortbar__opt {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.15s ease;
  }

  .wd-sortbar__opt + ::before {
    content: "|";
    color: #fff;
    margin-right: 1.3rem;
  }

  .wd-sortbar__opt:hover {
    color: var(--wd-accent);
  }

  .wd-sortbar__opt.is-active,
  .wd-sortbar__opt:has(input:checked) {
    color: var(--wd-accent);
  }

  /* Trailing label — click to toggle the sort options. Default colour;
     accent on hover / while open. */
  .wd-sortbar__label {
    margin-left: 1.2rem;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #ffffff;
    transition: color 0.15s ease;
  }

  .wd-sortbar__label:hover,
  .wd-sortbar__label:focus-visible,
  .wd-sortbar__label[aria-expanded="true"] {
    color: var(--wd-accent);
  }
}

/* Narrow desktops: tighten the sort bar so it never wraps. */
@media screen and (min-width: 1070px) and (max-width: 1279px) {
  .wd-sortbar {
    gap: 0.4rem 0.9rem;
  }

  .wd-sortbar__opt,
  .wd-sortbar__label {
          margin-left: 1.2rem;
        padding: 0;
        background: none;
        border: 0;
        cursor: pointer;
        font-family: inherit;
        font-size: 13px;
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
        color: #fff;
        transition: color .15s ease;
    }
  }

  .wd-sortbar__opt + .wd-sortbar__opt::before {
    margin-right: 0.9rem;
  }

  .wd-sortbar__label {
    margin-left: 0.9rem;
  }
}

/* ------------------------------------------------------------------
   Column-count driven layout (Ansicht) + open-sidebar behaviour.

   --wd-col-w = width of ONE product-grid column at full width. It is derived
   from [data-wd-cols] (3–6), which the Ansicht control keeps in sync via JS.

   --wd-panel-w = the filter overlay width: ALWAYS one column (one product
   card), at every column count. This is only the no-JS fallback — the JS
   measures the first card and sets the exact width inline. When one card is
   narrow, the JS adds `wd-panel-narrow` and the compact-spacing rules at the
   bottom of this file keep the filter content from overflowing.
   ------------------------------------------------------------------ */
@media screen and (min-width: 1070px) {
  .facets-vertical {
    --wd-gap: var(--grid-desktop-horizontal-spacing);
    /* Panel is exactly one grid column, whatever the column count. */
    --wd-panel-w: var(--wd-col-w);
  }
  .facets-vertical[data-wd-cols="3"] { --wd-col-w: calc((100% - 2 * var(--wd-gap)) / 3); }
  .facets-vertical[data-wd-cols="4"] { --wd-col-w: calc((100% - 3 * var(--wd-gap)) / 4); }
  .facets-vertical[data-wd-cols="5"] { --wd-col-w: calc((100% - 4 * var(--wd-gap)) / 5); }
  .facets-vertical[data-wd-cols="6"] { --wd-col-w: calc((100% - 5 * var(--wd-gap)) / 6); }

  /* Sidebar is a pure overlay: the grid stays full width with every product,
     including those beneath the panel. No push, no reflow, no whitespace. */
}

/* ==================================================================
   Fixed responsive product grid.

   The shopper only ever chooses a column count on large desktops; every
   narrower viewport has one fixed layout. These rules are anchored on
   #product-grid so they outrank the theme's .grid--N-col-* classes, which
   means the class the section renders never has to match the viewport.

     phone            (<= 749px)        1 per row
     tablet           (750 – 1069px)    2 per row  (portrait AND landscape)
     small desktop    (1070 – 1919px)   3 per row, no choice
     large desktop    (1920 – 2559px)   3 / 4 / 5      — 4 standard
     x-large desktop  (>= 2560px)       3 / 4 / 5 / 6  — 4 standard
   ================================================================== */
@media screen and (max-width: 749px) {
  #ProductGridContainer #product-grid > .grid__item {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 750px) and (max-width: 1069px) {
  #ProductGridContainer #product-grid > .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

@media screen and (min-width: 1070px) and (max-width: 1919px) {
  #ProductGridContainer #product-grid > .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  /* No Ansicht choice here — and the sidebar tracks the fixed 3 columns
     whatever [data-wd-cols] happens to say. */
  .facets-vertical[data-wd-cols] {
    --wd-col-w: calc((100% - 2 * var(--wd-gap)) / 3);
    --wd-panel-w: var(--wd-col-w);
    --wd-swatch-cols: 8;
  }

  .facets-vertical .wd-static-filter--ansicht {
    display: none;
  }
}

/* "6" only fits from 2560px up. Three classes deep so this always outranks
   the `.facets-vertical .wd-seg { display: flex }` rule further down. */
@media screen and (max-width: 2559px) {
  .facets-vertical .wd-segmented--ansicht .wd-ansicht-btn--min-2560 {
    display: none;
  }
}

/* Tablet: neutralise the desktop sidebar gutter — the filters are a drawer
   here, so the wrapper is just the drawer trigger. */
@media screen and (min-width: 750px) and (max-width: 1069px) {
  .facets-vertical .facets-wrapper {
    padding-right: 0;
  }
}

/* ------------------------------------------------------------------
   Custom client-side controls (Ansicht view switcher + Model image swap).
   Styled to match the sidebar filter blocks.
   ------------------------------------------------------------------ */
@media screen and (min-width: 1070px) {
  .facets-vertical .wd-static-filter {
    margin-bottom: 3rem;
            padding: 0 0 1.5rem;
  }

  .facets-vertical .wd-static-filter__title {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 500;
    color: var(--wd-muted);
    padding: 0 0 1rem;
    margin: 0;
            padding-left: 2px;

  }

  .facets-vertical .wd-segmented {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(3.2rem, 1fr);
    width: fit-content;
    max-width: 100%;
    background: var(--wd-fill);
    border-radius: 8px;
    overflow: hidden;
  }

  .facets-vertical .wd-segmented--model {
    grid-auto-columns: minmax(6rem, 1fr);
  }

  .facets-vertical .wd-seg {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.8rem;
    padding: 0.9rem 0.8rem;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--wd-fg);
    transition: background 0.15s ease, color 0.15s ease;
  }

  .facets-vertical .wd-segmented--model .wd-seg {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .facets-vertical .wd-seg:hover {
    background: var(--wd-fill-hover);
    color: var(--wd-accent);
  }

  .facets-vertical .wd-seg.is-active {
    color: var(--wd-accent);
  }

  .facets-vertical .wd-seg:focus-visible {
    outline: 2px solid var(--wd-accent);
    outline-offset: -2px;
  }
}

/* ------------------------------------------------------------------
   NARROW PANEL — same design, scaled down. Two triggers, either one wins:

   1. `.wd-panel-narrow`  — wd-collection-controls.js measures the first
      product card and sets this class when the card is narrower than
      ~435px (small desktops at 3 columns).
   2. `[data-wd-cols="5"] / "6"` — pure CSS: at 5/6 columns one card is
      always narrow, so no JS is needed to know it.

   The panel keeps the width of exactly one product card; only paddings,
   font sizes and margins tighten so every row fits without overflowing.
   Mobile/tablet (< 1070px, drawer) is untouched.
   ------------------------------------------------------------------ */
@media screen and (min-width: 1070px) {
  .js .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .facets-wrapper {
    padding: 1.4rem 1.2rem 1.6rem;
  }

  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .js-filter {
    margin-bottom: 2rem;
  }

  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .facets__summary {
    padding: 0 2px 0.8rem !important;
  }

  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .facet-pill {
    min-height: 3.4rem;
    padding: 0.8rem 0.2rem;
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  /* MODEL holds words — tighter side padding so all options fit. */
  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .facets-list--model .facet-pill {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  /* Colour dots: tighter box so the row breathes in a narrow panel. */
  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .facets-list--swatch {
    gap: 2rem 0;
    padding: 1.2rem 1rem;
  }

  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .wd-static-filter {
    margin-bottom: 2rem;
    padding: 0 0 1rem;
  }

  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .wd-static-filter__title {
    padding-bottom: 0.8rem;
  }

 

  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .wd-seg {
    min-height: 3.4rem;
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .wd-segmented--model {
    grid-auto-columns: minmax(4.5rem, 1fr);
  }

  .facets-vertical:is(.wd-panel-narrow, [data-wd-cols="5"], [data-wd-cols="6"]) .wd-segmented--model .wd-seg {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

/* ------------------------------------------------------------------
   MOBILE + TABLET (< 1070px): filter drawer slides in from the LEFT.

   This range is exactly "the header hamburger is visible", so the filters
   behave the same way the main menu does: a sidebar drawer.

   The theme's mobile facets drawer is anchored to the right edge
   (component-facets.css: margin-left:auto + translateX(105vw) when closed).
   These rules mirror it to the left edge. Everything else about the drawer —
   the trigger at the top of the collection, the open/close JS, the scrim —
   is the theme's own and is left untouched.

   Selectors are prefixed with .facets-vertical so this only affects the
   collection grid's drawer, and each one out-specifies the base rule it
   overrides (.js lives on <html>, so it stays leftmost).
   ------------------------------------------------------------------ */
@media screen and (max-width: 1069px) {
  .facets-vertical .mobile-facets__inner {
    margin-left: 0;
    margin-right: auto;
    /* Border moves to the drawer's right (inner) edge. */
    border-width: 0 var(--drawer-border-width) 0 0;
    /* Shadow is cast to the right, away from the screen edge. */
    filter: drop-shadow(
      calc(-1 * var(--drawer-shadow-horizontal-offset)) var(--drawer-shadow-vertical-offset)
        var(--drawer-shadow-blur-radius)
        rgba(var(--color-shadow), var(--drawer-shadow-opacity))
    );
  }

  /* Closed state parks the drawer off-screen to the LEFT. */
  .js .facets-vertical .disclosure-has-popup:not(.menu-opening) .mobile-facets__inner {
    transform: translateX(-105vw);
  }

  /* Close button mirrors to the drawer's top-left corner. */
  .facets-vertical .mobile-facets__close {
    right: auto;
    left: 1rem;
  }

  /* The trigger at the top: match the desktop FILTERN control instead of the
     theme's default link colour. */
  .facets-vertical .mobile-facets__open {
    color: #ffffff;
  }

  .facets-vertical .mobile-facets__open line,
  .facets-vertical .mobile-facets__open circle {
    stroke: #ffffff;
  }

  .facets-vertical .mobile-facets__open-label {
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .facets-vertical .mobile-facets__open:hover,
  .facets-vertical .mobile-facets__open:hover .mobile-facets__open-label {
    color: var(--wd-accent);
  }

  .facets-vertical .mobile-facets__open:hover line,
  .facets-vertical .mobile-facets__open:hover circle {
    stroke: var(--wd-accent);
  }

  /* Underline on hover is the theme default; the colour change reads better. */
  .facets-vertical .mobile-facets__open:hover .mobile-facets__open-label {
    text-decoration: none;
  }
}
@media (min-width: 840px) and (max-width: 1070px) {
    .wd-card-grid .wd-cs-vbtn.button {
        padding:16px;
    }
}