/*!
Theme Name: Vpilates Apparatus
Author: clu.
Author URI: https://clu.pl
Version: 1.0
*/
:root {
  hanging-punctuation: first last;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}
body {
  min-height: 100svh;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
body:not(.transitions) * {
  transition: none !important;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
  object-fit: cover;
}
img:not(.free),
picture:not(.free),
svg:not(.free),
video:not(.free) {
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding-top);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
.acf-map {
  width: 100%;
  height: 400px;
}
.acf-map img {
  max-width: inherit !important;
}
/* Ukrywanie przez [hidden] – zachowuje oryginalny display (grid/flex/itd.) po odsłonięciu */
.clu-infinite-scroll > *[hidden] {
  display: none !important;
}
/* Lock podczas inicjalizacji: nie pozwala rosnąć, nie skacze scroll */
.clu-infinite-scroll.is-loading {
  min-height: 100vh;
  overflow: clip;
  /* lub hidden, jeśli wolisz */
  position: relative;
}
/* Opcjonalny „veil” (wizualna osłona, zero FOUC nawet przy wolnym JS) */
.clu-infinite-scroll.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clu-loading-bg, #fff);
}
.clu-infinite-sentinel {
  height: 1px;
  width: 100%;
}
/* Konfiguracja (opcjonalnie) */
.clu-infinite-scroll {
  --clu-batch: 8;
  --clu-preload: 600px;
}
.content-grid {
  --padding-inline: max(12px, 4vw);
  --content-max-width: 2560px;
  display: grid;
  width: 100%;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width)) [content-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > :not(.full-width) {
  grid-column: content;
}
.content-grid > .full-width {
  grid-column: full-width;
}
@media (min-width: 992px) {
  .content-grid .column-md-content {
    grid-column: content;
  }
}
img.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
:has(>.bg-image):not(picture),
:has(>picture>.bg-image) {
  position: relative;
}
/* ---------------------------------
STANDARDIZE ALL FIELDS
----------------------------------*/
.field-wrap {
  display: flex;
}
.field-wrap > label {
  display: block;
}
.field-wrap > div input,
.field-wrap textarea,
.field-wrap select,
.field-wrap .pikaday__container,
.field-wrap .pikaday__display {
  width: 100%;
}
.field-wrap > div input[type="checkbox"] {
  width: auto;
}
.field-wrap input[type="submit"],
.field-wrap input[type="button"],
.field-wrap button {
  width: auto;
}
.nf-field-label {
  order: 5;
}
.nf-field-description {
  width: 100%;
  order: 10;
}
.nf-field-element {
  order: 15;
}
/* ---------------------------------
LABEL ABOVE
----------------------------------*/
.label-above .nf-field-label {
  margin-bottom: 10px;
}
/* ---------------------------------
LABEL BELOW
----------------------------------*/
.label-below .nf-field-label {
  margin-top: 10px;
  order: 15;
}
.label-below .nf-field-element {
  order: 5;
}
/* ---------------------------------
LABEL HIDDEN
----------------------------------*/
.label-hidden .field-wrap {
  flex-wrap: wrap;
}
.label-hidden .nf-field-label {
  height: 0;
  margin: 0 !important;
  width: 100%;
  visibility: hidden;
}
.label-hidden .nf-field-description {
  width: 100%;
  order: 20;
}
.label-hidden .nf-field-element {
  width: 100%;
}
/* ---------------------------------
LABEL LEFT
----------------------------------*/
.label-left .field-wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.label-left .nf-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 2%;
  text-align: right;
  width: 35%;
  order: 5;
}
.label-left .nf-field-label label {
  width: 100%;
}
.label-left .nf-field-description {
  margin-left: 35%;
}
.label-left .nf-field-element {
  display: inline-block;
  width: 65%;
  order: 10;
}
.label-left .nf-after-field {
  margin-left: 36.5%;
}
/* ---------------------------------
LABEL RIGHT
----------------------------------*/
.label-right .field-wrap {
  flex-direction: row;
}
.label-right .nf-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 2%;
  width: 35%;
  order: 10;
}
.label-right .nf-field-description {
  margin-right: 35%;
  order: 15;
}
.label-right .nf-field-element {
  display: inline-block;
  width: 65%;
  order: 5;
}
.label-right .checkbox-wrap .nf-field-label {
  width: auto;
}
.label-right .checkbox-wrap .nf-field-element {
  width: 20px;
}
.label-right .nf-after-field {
  width: 65%;
}
/* ---------------------------------
ADJUST SOME LABEL ABOVE & BELOW ISSUES
----------------------------------*/
.label-below .field-wrap,
.label-above .field-wrap {
  flex-direction: column;
  flex-flow: wrap;
}
.label-below .nf-field-element,
.label-above .nf-field-element {
  margin: 0;
  width: 100%;
}
/* ---------------------------------
ADJUST SOME LABEL LEFT & RIGHT ISSUES
----------------------------------*/
.label-left .textarea-wrap .nf-field-label,
.label-left .listradio-wrap .nf-field-label,
.label-left .listcheckbox-wrap .nf-field-label,
.label-right .textarea-wrap .nf-field-label,
.label-right .listradio-wrap .nf-field-label,
.label-right .listcheckbox-wrap .nf-field-label {
  align-items: flex-start;
}
.label-left .textarea-wrap .nf-field-label,
.label-right .textarea-wrap .nf-field-label {
  margin-top: 5px;
}
.label-left .html-wrap,
.label-left .hr-wrap,
.label-right .html-wrap,
.label-right .hr-wrap {
  display: block;
}
.label-left .html-wrap .nf-field-element,
.label-left .hr-wrap .nf-field-element,
.label-right .html-wrap .nf-field-element,
.label-right .hr-wrap .nf-field-element {
  display: block;
  margin: 0;
  width: 100%;
}
/* ---------------------------------
FIELD DESCRIPTION POSITIONS
----------------------------------*/
/*
 * Ninja Forms - Form Display Structure
 */
.ninja-forms-form-wrap *,
.ninja-forms-form-wrap *:after,
.ninja-forms-form-wrap *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.nf-response-msg {
  display: none;
}
.nf-field-container,
#ninja_forms_required_items {
  clear: both;
  position: relative;
  margin-bottom: 25px;
}
.nf-field-container::after,
#ninja_forms_required_items::after {
  clear: both;
  content: "";
  display: block;
}
.nf-field-container.hidden-container,
.nf-field-container.hr-container,
#ninja_forms_required_items.hidden-container,
#ninja_forms_required_items.hr-container {
  margin: 0;
  height: auto;
}
.nf-field-container.hidden-container .nf-field-label,
.nf-field-container.hr-container .nf-field-label,
#ninja_forms_required_items.hidden-container .nf-field-label,
#ninja_forms_required_items.hr-container .nf-field-label {
  display: none;
}
.nf-field-container.html-container .nf-field-label,
#ninja_forms_required_items.html-container .nf-field-label {
  display: none;
}
.nf-field-label .nf-label-span,
.nf-field-label label {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.nf-field-element {
  position: relative;
}
.nf-field-element input,
.nf-field-element select,
.nf-field-element textarea {
  margin: 0;
  width: auto;
  height: auto;
  vertical-align: inherit;
}
.nf-field-element textarea {
  height: 200px;
}
.nf-field-description p:last-child {
  margin: 0;
}
.nf-help {
  background: url("../img/help-info.png") no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
}
.nf-input-limit {
  font-size: 12px;
  margin-top: 5px;
}
.nf-static {
  padding: 0 10px;
}
.nf-after-field .nf-error-msg {
  margin-right: 10px;
}
/* ---------------------------------
Screen Reader CSS
----------------------------------*/
.nf-sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  opacity: 0;
  white-space: nowrap;
  width: 1px;
}
/* ---------------------------------
Date/Time FIELD
----------------------------------*/
.nf-field-element .time-wrap {
  padding: 1px;
}
/* ---------------------------------
CHECKBOX FIELD
----------------------------------*/
/* ---------------------------------
RADIO & CHECKBOX LISTS
----------------------------------*/
.list-radio-wrap .nf-field-element ul,
.list-radio-wrap .nf-field-element li,
.list-checkbox-wrap .nf-field-element ul,
.list-checkbox-wrap .nf-field-element li,
.list-image-wrap .nf-field-element ul,
.list-image-wrap .nf-field-element li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.list-radio-wrap .nf-field-element ul input,
.list-radio-wrap .nf-field-element li input,
.list-checkbox-wrap .nf-field-element ul input,
.list-checkbox-wrap .nf-field-element li input,
.list-image-wrap .nf-field-element ul input,
.list-image-wrap .nf-field-element li input {
  margin-right: 5px;
}
.list-radio-wrap .nf-field-element li,
.list-checkbox-wrap .nf-field-element li,
.list-image-wrap .nf-field-element li {
  padding-left: 10px;
  margin: 0 0 5px !important;
  text-indent: initial !important;
}
.list-radio-wrap .nf-field-element li label,
.list-checkbox-wrap .nf-field-element li label,
.list-image-wrap .nf-field-element li label {
  display: block;
  float: initial;
  width: auto;
  margin-left: 1.5em;
}
.list-radio-wrap .nf-field-element li input,
.list-checkbox-wrap .nf-field-element li input,
.list-image-wrap .nf-field-element li input {
  width: auto !important;
  float: left;
  margin-top: 0.25em;
}
.listimage-wrap li {
  width: 100%;
  height: 100%;
  display: inline-grid;
}
.listimage-wrap li label {
  padding: 5px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
}
.listimage-wrap li label.nf-checked-label {
  border-width: 2px;
  border-style: solid;
  border-color: #007acc;
  transition: all 0.5s;
}
.listimage-wrap li label img {
  display: block;
}
.listimage-wrap li input:focus + label {
  outline: 2px solid;
}
/* ---------------------------------
PRODUCT FIELD
----------------------------------*/
.product-wrap > div input {
  width: 80px !important;
}
.product-wrap > div .nf-product-field span {
  padding: 0 5px;
}
/* ---------------------------------
STAR RATING
----------------------------------*/
.starrating-wrap .star {
  border-bottom: 0;
}
/* ---------------------------------
HONEYPOT
----------------------------------*/
.nf-form-hp {
  position: absolute;
  visibility: hidden;
}
/* ---------------------------------
SELECT LIST
----------------------------------*/
.list-select-wrap div div {
  display: none;
}
/* ---------------------------------
COLORS
As minimal as possible
----------------------------------*/
.ninja-forms-req-symbol,
.nf-error-msg {
  color: #E80000;
}
.nf-error .ninja-forms-field {
  border: 1px solid #E80000;
}
.nf-error.listimage-wrap .nf-field-element ul {
  border: 1px solid #E80000;
}
.nf-field-submit-error {
  padding: 15px;
}
.ninja-forms-noscript-message {
  background: #f1f1f1;
  border: 4px dashed #ccc;
  color: #333;
  display: block;
  font-size: 20px;
  margin: 20px 0;
  padding: 40px;
  text-align: center;
}
/* ---------------------------------
HELPER CLASSES
----------------------------------*/
.two-col-list ul li {
  float: left;
  width: 50%;
}
.three-col-list ul li {
  float: left;
  width: 33.33%;
}
.four-col-list ul li {
  float: left;
  width: 25%;
}
.five-col-list ul li {
  float: left;
  width: 20%;
}
.six-col-list ul li {
  float: left;
  width: 16.66%;
}
body .pika-label {
  background: transparent;
}
/* Column Classes
    Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */
.nf-form-cont .five-sixths,
.nf-form-cont .four-sixths,
.nf-form-cont .one-fourth,
.nf-form-cont .one-half,
.nf-form-cont .one-sixth,
.nf-form-cont .one-third,
.nf-form-cont .three-fourths,
.nf-form-cont .three-sixths,
.nf-form-cont .two-fourths,
.nf-form-cont .two-sixths,
.nf-form-cont .two-thirds {
  clear: initial;
  float: left;
  margin-left: 2.56410256%;
}
.nf-form-cont .five-sixths .inside,
.nf-form-cont .four-sixths .inside,
.nf-form-cont .one-fourth .inside,
.nf-form-cont .one-half .inside,
.nf-form-cont .one-sixth .inside,
.nf-form-cont .one-third .inside,
.nf-form-cont .three-fourths .inside,
.nf-form-cont .three-sixths .inside,
.nf-form-cont .two-fourths .inside,
.nf-form-cont .two-sixths .inside,
.nf-form-cont .two-thirds .inside {
  padding: 20px;
}
.nf-form-cont .five-sixths::after,
.nf-form-cont .four-sixths::after,
.nf-form-cont .one-fourth::after,
.nf-form-cont .one-half::after,
.nf-form-cont .one-sixth::after,
.nf-form-cont .one-third::after,
.nf-form-cont .three-fourths::after,
.nf-form-cont .three-sixths::after,
.nf-form-cont .two-fourths::after,
.nf-form-cont .two-sixths::after,
.nf-form-cont .two-thirds::after {
  clear: both;
  content: "";
  display: block;
}
.nf-form-cont .one-half,
.nf-form-cont .three-sixths,
.nf-form-cont .two-fourths {
  width: 48.71794872%;
}
.nf-form-cont .one-third,
.nf-form-cont .two-sixths {
  width: 31.62393162%;
}
.nf-form-cont .four-sixths,
.nf-form-cont .two-thirds {
  width: 65.81196581%;
}
.nf-form-cont .one-fourth {
  width: 23.07692308%;
}
.nf-form-cont .three-fourths {
  width: 74.35897436%;
}
.nf-form-cont .one-sixth {
  width: 14.52991453%;
}
.nf-form-cont .five-sixths {
  width: 82.90598291%;
}
.nf-form-cont .first {
  clear: both;
  margin-left: 0;
}
/* ---------------------------------
STANDARDIZE ALL FIELDS
----------------------------------*/
.field-wrap {
  display: flex;
}
.field-wrap > label {
  display: block;
}
.field-wrap > div input,
.field-wrap textarea,
.field-wrap select,
.field-wrap .pikaday__container,
.field-wrap .pikaday__display {
  width: 100%;
}
.field-wrap > div input[type="checkbox"] {
  width: auto;
}
.field-wrap input[type="submit"],
.field-wrap input[type="button"],
.field-wrap button {
  width: auto;
}
.nf-field-label {
  order: 5;
}
.nf-field-description {
  width: 100%;
  order: 10;
}
.nf-field-element {
  order: 15;
}
/* ---------------------------------
LABEL ABOVE
----------------------------------*/
.label-above .nf-field-label {
  margin-bottom: 10px;
}
/* ---------------------------------
LABEL BELOW
----------------------------------*/
.label-below .nf-field-label {
  margin-top: 10px;
  order: 15;
}
.label-below .nf-field-element {
  order: 5;
}
/* ---------------------------------
LABEL HIDDEN
----------------------------------*/
.label-hidden .field-wrap {
  flex-wrap: wrap;
}
.label-hidden .nf-field-label {
  height: 0;
  margin: 0 !important;
  width: 100%;
  visibility: hidden;
}
.label-hidden .nf-field-description {
  width: 100%;
  order: 20;
}
.label-hidden .nf-field-element {
  width: 100%;
}
/* ---------------------------------
LABEL LEFT
----------------------------------*/
.label-left .field-wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.label-left .nf-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 2%;
  text-align: right;
  width: 35%;
  order: 5;
}
.label-left .nf-field-label label {
  width: 100%;
}
.label-left .nf-field-description {
  margin-left: 35%;
}
.label-left .nf-field-element {
  display: inline-block;
  width: 65%;
  order: 10;
}
.label-left .nf-after-field {
  margin-left: 36.5%;
}
/* ---------------------------------
LABEL RIGHT
----------------------------------*/
.label-right .field-wrap {
  flex-direction: row;
}
.label-right .nf-field-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 2%;
  width: 35%;
  order: 10;
}
.label-right .nf-field-description {
  margin-right: 35%;
  order: 15;
}
.label-right .nf-field-element {
  display: inline-block;
  width: 65%;
  order: 5;
}
.label-right .checkbox-wrap .nf-field-label {
  width: auto;
}
.label-right .checkbox-wrap .nf-field-element {
  width: 20px;
}
.label-right .nf-after-field {
  width: 65%;
}
/* ---------------------------------
ADJUST SOME LABEL ABOVE & BELOW ISSUES
----------------------------------*/
.label-below .field-wrap,
.label-above .field-wrap {
  flex-direction: column;
  flex-flow: wrap;
}
.label-below .nf-field-element,
.label-above .nf-field-element {
  margin: 0;
  width: 100%;
}
/* ---------------------------------
ADJUST SOME LABEL LEFT & RIGHT ISSUES
----------------------------------*/
.label-left .textarea-wrap .nf-field-label,
.label-left .listradio-wrap .nf-field-label,
.label-left .listcheckbox-wrap .nf-field-label,
.label-right .textarea-wrap .nf-field-label,
.label-right .listradio-wrap .nf-field-label,
.label-right .listcheckbox-wrap .nf-field-label {
  align-items: flex-start;
}
.label-left .textarea-wrap .nf-field-label,
.label-right .textarea-wrap .nf-field-label {
  margin-top: 5px;
}
.label-left .html-wrap,
.label-left .hr-wrap,
.label-right .html-wrap,
.label-right .hr-wrap {
  display: block;
}
.label-left .html-wrap .nf-field-element,
.label-left .hr-wrap .nf-field-element,
.label-right .html-wrap .nf-field-element,
.label-right .hr-wrap .nf-field-element {
  display: block;
  margin: 0;
  width: 100%;
}
/*- SETTINGS -----*/
:root {
  --wpclu-header-height: 90px;
  --wpclu-header-height-mobile: 70px;
  --wpclu-header-padding: 10px;
  --global-bg: #FFF;
  --global-text-color: #000;
  --bs-link-color-rgb: 10, 10, 10;
}
/* @link https://utopia.fyi/type/calculator?c=360,16,1.15,1920,16,1.3,5,0,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */
:root {
  --step-0: clamp(1rem, 1rem + 0vw, 1rem);
  --step-1: clamp(1.15rem, 1.1154rem + 0.1538vw, 1.3rem);
  --step-2: clamp(1.3225rem, 1.2377rem + 0.3769vw, 1.69rem);
  --step-3: clamp(1.5209rem, 1.3648rem + 0.6935vw, 2.197rem);
  --step-4: clamp(1.749rem, 1.4935rem + 1.1355vw, 2.8561rem);
  --step-5: clamp(2.0114rem, 1.6187rem + 1.7452vw, 3.7129rem);
}
/*- Bootstrap overrides -----*/
.h1,
.fs-h1 {
  font-size: var(--step-5);
}
.h2,
.fs-h2 {
  font-size: var(--step-4);
}
.h3,
.fs-h3 {
  font-size: var(--step-3);
}
.h4,
.fs-h4 {
  font-size: var(--step-2);
}
.h5,
.fs-h5 {
  font-size: var(--step-1);
}
.btn {
  --bs-btn-border-radius: 2rem;
  --bs-btn-padding-x: 2rem;
  --bs-btn-font-size: 0.875rem;
  text-transform: uppercase;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #282828;
  --bs-btn-border-color: #FFF;
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: #000;
  --bs-btn-hover-border-color: #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #282828;
  --bs-btn-disabled-border-color: #282828;
}
.btn-outline-primary {
  --bs-btn-color: #FFF;
  --bs-btn-border-color: #FFF;
  --bs-btn-hover-bg: #FFF;
  --bs-btn-hover-border-color: #FFF;
  --bs-btn-hover-color: #000;
  --bs-btn-active-bg: #e0e0e0;
  --bs-btn-active-border-color: #FFF;
  --bs-btn-active-color: #000;
}
/*- GLOBAL STYLES -----*/
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  letter-spacing: 0.08em;
  background: #F1F1F1;
  color: #222222;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.font-secondary {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
:root {
  --header-height: var(--wpclu-header-height-mobile);
}
@media (min-width: 992px) {
  :root {
    --header-height: var(--wpclu-header-height);
  }
}
.site-main {
  padding-top: var(--header-height);
}
#header {
  height: var(--header-height);
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #FFF;
}
#header .header-cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  position: relative;
}
#header a.website-logo {
  display: inline-block;
  height: 60px;
  text-indent: -999px;
  width: 100px;
  background: url(assets/vapparatus-logo.png) no-repeat left center / contain;
}
#header #hamburger {
  display: flex;
  border: none;
  background: transparent;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  overflow: hidden;
}
#header #hamburger span {
  color: transparent;
  height: 0;
  display: inline-block;
  width: 32px;
  border-top: 2px solid var(--global-text-color);
  position: relative;
}
#header #hamburger span:before,
#header #hamburger span:after {
  content: '';
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  border-top: 2px solid var(--global-text-color);
}
#header #hamburger span:before {
  top: -12px;
}
#header #hamburger span:after {
  bottom: -10px;
}
@media (min-width: 992px) {
  #header #hamburger {
    display: none;
  }
}
body.menu-open #header #hamburger span {
  border-top-color: transparent;
}
body.menu-open #header #hamburger span:before {
  transform: rotate(45deg);
  top: -2px;
}
body.menu-open #header #hamburger span:after {
  transform: rotate(-45deg);
  top: -2px;
}
#header #main-menu {
  display: none;
  position: absolute;
  top: var(--wpclu-header-height-mobile);
  height: calc(100dvh - var(--wpclu-header-height-mobile));
  background: var(--global-bg);
  left: 0;
  right: 0;
  overflow: auto;
  overscroll-behavior: contain;
  font-family: "Mohave", sans-serif;
  box-shadow: -10vw 0 var(--global-bg), 10vw 0 var(--global-bg);
}
body.scrolled #header #main-menu {
  height: calc(100dvh - 60px);
}
#header #main-menu .menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-block: 12px 0;
}
#header #main-menu .menu li {
  border-bottom: 1px solid #ffffff9e;
  cursor: default;
}
#header #main-menu .menu li a,
#header #main-menu .menu li button.menu-item {
  color: #6d6d6d;
  text-decoration: none;
  font-weight: 400;
  display: block;
  text-align: center;
  padding-block: 1em;
}
#header #main-menu .menu li button {
  background: transparent;
  color: #FFF;
  font-weight: bold;
  padding-inline: 60px !important;
}
#header #main-menu .menu li button.sub-menu-opener {
  padding-inline: 0 !important;
}
#header #main-menu .menu li.active > button.sub-menu-opener:after {
  border: 8px solid transparent;
  border-bottom-color: #BABABA;
  border-top: none;
}
#header #main-menu button.sub-menu-opener {
  position: absolute;
  right: 0;
  top: 0;
  height: 56px;
  width: 56px;
  border: none;
  background: transparent;
  border-left: 1px solid #ffffff14;
  z-index: 1;
}
@media (min-width: 992px) {
  #header #main-menu button.sub-menu-opener {
    display: none;
  }
}
#header #main-menu button.sub-menu-opener.sub-menu-opener:after {
  content: '';
  height: 8px;
  width: 0;
  border: 8px solid transparent;
  border-top-color: #BABABA;
  border-bottom: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#header #main-menu .menu-item-has-children {
  position: relative;
}
#header #main-menu .menu-item-has-children .sub-menu {
  height: 0;
  background: #eeeeee !important;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  overflow: hidden;
}
#header #main-menu .menu-item-has-children.active > a {
  background: var(--color-primary-dimmed);
}
#header #main-menu .menu-item-has-children.active > .sub-menu {
  height: auto;
}
#header #main-menu .sub-menu .menu-item-has-children .sub-menu {
  background: #222222 !important;
}
#header #main-menu .sub-menu .menu-item-has-children.active > a {
  background: var(--color-primary-dimmed);
}
@media (min-width: 992px) {
  #header {
    height: var(--wpclu-header-height);
  }
  #header #main-menu {
    display: block;
    position: static;
    background: transparent;
    height: auto !important;
    box-shadow: none;
    overflow: visible;
  }
  #header #main-menu .menu {
    flex-direction: row;
    flex-wrap: nowrap;
    margin-block: 0;
  }
  #header #main-menu .menu li {
    border-bottom: none;
  }
  #header #main-menu .menu li a {
    padding-block: 0;
    height: var(--wpclu-header-height);
    line-height: var(--wpclu-header-height);
    white-space: nowrap;
    padding-inline: 1em;
  }
  #header #main-menu .menu li .sub-menu {
    display: none;
    overflow: visible;
  }
  #header #main-menu .menu li .sub-menu a {
    height: 3em;
    line-height: 3em;
  }
  #header #main-menu .menu li .sub-menu li.menu-item-has-children > a:before {
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    left: 6px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: var(--color-primary);
  }
  #header #main-menu .menu li .sub-menu li.menu-item-has-children:hover > a:before {
    border-right-color: #FFF;
  }
  #header #main-menu .menu li .sub-menu li.menu-item-has-children .sub-menu {
    top: 0 !important;
    left: auto;
    right: 100%;
    width: auto !important;
  }
  #header #main-menu .menu li:hover {
    background: #f7f7f7;
  }
  #header #main-menu .menu li.menu-item-has-children > a:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: calc(50% - 5px);
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top-color: #ffffff8c;
  }
  #header #main-menu .menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
    height: auto;
    position: absolute;
    top: 100%;
  }
}
#header.menu-open #main-menu {
  display: block;
  flex-direction: column;
  justify-content: center;
}
#header.menu-open #hamburger span {
  border-top-color: transparent;
}
#header.menu-open #hamburger span:before {
  transform: rotate(45deg);
  top: -2px;
}
#header.menu-open #hamburger span:after {
  transform: rotate(-45deg);
  top: -2px;
}
.content-grid {
  --content-max-width: 1520px;
}
#app {
  min-height: 100lvh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: start;
}
.site-main {
  overflow: hidden;
  position: relative;
}
/* WOoCommerce */
.woocommerce-result-count,
form.woocommerce-ordering {
  display: none;
}
ul.products {
  display: grid;
  margin: 2rem 0;
  gap: 2rem;
}
ul.products:before {
  display: none !important;
}
@media (min-width: 768px) {
  ul.products {
    margin: 2rem 0 2rem -20px !important;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1600px) {
  ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
}
li.product {
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
}
li.product .woocommerce-LoopProduct-link {
  aspect-ratio: 1;
  display: block;
  display: grid !important;
  grid-template-columns: minmax(50%, auto) auto 1fr;
  align-items: end;
  text-decoration: none;
}
li.product .woocommerce-LoopProduct-link > img {
  position: absolute;
  inset: 0;
  width: calc(100% - 20px) !important;
  left: 20px;
  height: 100% !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
  object-fit: contain;
  background: #FFF;
  transition: all 0.2s ease;
}
li.product .woocommerce-LoopProduct-link .woocommerce-loop-product__title,
li.product .woocommerce-LoopProduct-link .price {
  background: #FFF;
  white-space: nowrap;
  height: 48px;
  line-height: 49px;
  text-decoration: none;
  color: #333 !important;
  position: relative;
  margin-bottom: 1rem !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
li.product .woocommerce-LoopProduct-link .woocommerce-loop-product__title {
  margin-left: 1px;
  padding: 0 0.8em 0 0.4em !important;
  font-size: var(--step-2) !important;
}
li.product .woocommerce-LoopProduct-link .price {
  margin-left: -1px;
  padding: 0 0.6em;
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--step-1) !important;
}
@media (min-width: 768px) {
  li.product .woocommerce-LoopProduct-link:hover .woocommerce-loop-product__title,
  li.product .woocommerce-LoopProduct-link:hover .price {
    background: #282828;
    color: #FFF !important;
    box-shadow: none;
  }
  li.product .woocommerce-LoopProduct-link:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.1) !important;
  }
}
li.product .add_to_cart_button {
  display: none !important;
}
ul.product-categories {
  background: #282828;
  display: flex;
  padding: 1.5rem 1.5rem 1.5rem 0;
  list-style: none;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  border-bottom-right-radius: 2rem;
  corner-shape: bevel;
  box-shadow: -10vw 0 #282828, -20vw 0 #282828;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--step-3);
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  opacity: 0.4;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
  background: #FFF;
  color: #000;
  height: 3rem;
  padding-inline: 3rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.woocommerce .quantity .qty {
  height: 3rem;
  padding-inline: 2rem;
  width: 6rem;
  border: none;
  border-radius: 2rem;
  font-size: var(--step-1);
  font-weight: 600;
  margin-right: 1rem;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
  background: black;
}
.woocommerce span.onsale {
  min-height: 3rem;
  min-width: 5rem;
  padding: 1rem;
  font-size: var(--step-1);
  line-height: 1;
  top: -0.5rem;
  left: -0.5rem;
  margin: 0;
  border-radius: 0;
  background-color: #282828;
  color: #fff;
  border-bottom-right-radius: 1rem;
  corner-shape: bevel;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active {
  font-weight: 700;
}
a.wc-menu-cart__link {
  display: none !important;
  position: relative;
  height: 100%;
  align-items: center;
}
@media (min-width: 992px) {
  a.wc-menu-cart__link {
    display: grid !important;
  }
}
a.wc-menu-cart__link .wc-cart-label {
  display: block;
  width: 40px;
  height: 40px;
  text-indent: -999px;
  overflow: hidden;
  border-radius: 20px;
  margin-inline: -20px;
  background: no-repeat center / 20px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 20 16.4'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' stroke='%23db9a91' d='M0 0h20v16.4H0z' data-name='Rectangle 240'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill='none' stroke='%23db9a91' stroke-miterlimit='10' clip-path='url(%23a)' data-name='Group 715'%3E%3Cpath d='M.4 5.1h19.2L18 13.2a3.4 3.4 0 0 1-3.4 2.9H5.3a3.4 3.4 0 0 1-3.4-2.9Z' data-name='Path 1300'/%3E%3Cpath d='M5.2 5.1a4.8 4.8 0 1 1 9.6 0' data-name='Path 1301'/%3E%3Cpath d='M3.9 8.8H16' data-name='Line 44'/%3E%3Cpath d='M4.3 12.4h11.3' data-name='Line 45'/%3E%3C/g%3E%3C/svg%3E");
}
a.wc-menu-cart__link .wc-cart-count {
  position: absolute;
  top: calc(50% - 22px);
  left: calc(50% + 8px);
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  border-radius: 8px;
  background: #1b1b1b;
  color: #fff !important;
}
a.wc-menu-cart__link:has(.wc-cart-count[data-count="0"]) .wc-cart-count {
  display: none;
}
a.wc-menu-cart__link:has(.wc-cart-count:not([data-count="0"])) .wc-cart-label {
  background-color: #9c9c9c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 20 16.4'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' stroke='%23FFFFFF' d='M0 0h20v16.4H0z' data-name='Rectangle 240'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-miterlimit='10' clip-path='url(%23a)' data-name='Group 715'%3E%3Cpath d='M.4 5.1h19.2L18 13.2a3.4 3.4 0 0 1-3.4 2.9H5.3a3.4 3.4 0 0 1-3.4-2.9Z' data-name='Path 1300'/%3E%3Cpath d='M5.2 5.1a4.8 4.8 0 1 1 9.6 0' data-name='Path 1301'/%3E%3Cpath d='M3.9 8.8H16' data-name='Line 44'/%3E%3Cpath d='M4.3 12.4h11.3' data-name='Line 45'/%3E%3C/g%3E%3C/svg%3E");
}
/* Tools */
*:has(>.bg-image) {
  position: relative;
}
*:has(>.bg-image) > .content-grid {
  position: relative;
  z-index: 1;
}
.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-image.has-blend:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #00000060;
}
.bg-image img {
  width: 100%;
  height: 100%;
}
/* Sections */
.section-intro {
  position: relative;
  color: #FFF;
}
.section-intro:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #00000060;
}
@media (min-width: 992px) {
  .section-intro:after {
    background: linear-gradient(90deg, #00000040 10%, #00000090 100%);
  }
}
.section-intro:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: min(30%, 300px);
  height: 0;
  border: 250px solid transparent;
  z-index: 1;
  border-right-color: #181818b3;
  border-top-width: 100px;
  border-bottom-width: 100px;
}
@media (min-width: 992px) {
  .section-intro:before {
    top: calc(50% - 150px);
  }
}
.section-intro .section-intro__slider {
  position: relative;
  z-index: 1;
}
.section-intro .section-intro__slider .splide__slide {
  min-height: min(80vh, calc(100vh - var(--wpclu-header-height)), 60vmax);
  display: grid;
  align-items: end;
  justify-content: start;
  padding-block: 4rem;
}
.section-intro .section-intro__slider .splide__slide .section-intro__content {
  justify-items: start;
}
.section-intro .section-intro__slider .splide__slide .section-intro__content h1 {
  font-size: clamp(48px, calc(40px + 2.5vw), 80px);
  line-height: 1;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  text-wrap-style: balance;
}
@media (min-width: 992px) {
  .section-intro .section-intro__slider .splide__slide .section-intro__content {
    padding-left: 50%;
  }
  .section-intro .section-intro__slider .splide__slide .section-intro__content > * {
    grid-column-start: full-width;
    grid-column-end: content-end;
  }
}
@media (min-width: 992px) {
  .section-intro .section-intro__slider .splide__slide {
    align-items: center;
  }
}
.section-intro .section-intro__slider .splide__arrow {
  top: auto;
  bottom: 0;
}
.block .content {
  padding-block: 3rem;
}
.block-products {
  color: #FFF;
  position: relative;
}
@media (min-width: 992px) {
  .block-products {
    padding-block: 3rem 0;
  }
  .block-products.has-content-column {
    margin-block: 3rem 6rem;
  }
}
.block-products .content {
  position: relative;
}
.block-products .content:before {
  content: '';
  grid-column-start: full-width;
  grid-column-end: full-width;
  background: #282828;
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  z-index: -1;
}
@media (min-width: 992px) {
  .block-products.has-content-column .content:before {
    grid-column-end: content;
  }
}
.block-products .splide {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .block-products .splide {
    margin-bottom: 0;
  }
}
.block-products .splide .splide__arrow {
  top: calc(100% + 25px);
  transform: none;
  width: 3rem;
  height: 3rem;
  border-radius: 0;
  background: #282828;
  color: #FFF;
  border: 1px solid #FFF;
}
.block-products .splide .splide__arrow svg {
  fill: #FFF;
}
@media (min-width: 992px) {
  .block-products .splide .splide__arrow {
    top: -75px;
  }
}
.block-products .splide .splide__arrow--prev {
  left: calc(50% - 60px);
}
@media (min-width: 992px) {
  .block-products .splide .splide__arrow--prev {
    left: auto;
    right: calc(32px + 4rem);
  }
}
.block-products .splide .splide__arrow--next {
  right: calc(50% - 60px);
}
@media (min-width: 992px) {
  .block-products .splide .splide__arrow--next {
    left: auto;
    right: 32px;
  }
}
.block-products .splide .splide__track {
  overflow: visible;
}
@media (min-width: 992px) {
  .block-products .splide .splide__track {
    overflow: hidden;
    width: calc(100% + 12rem);
  }
}
@media (min-width: 992px) {
  .block-products.has-content-column {
    margin-bottom: 5rem;
  }
  .block-products.has-content-column .splide {
    margin-bottom: -6rem;
  }
}
.block-text > .content-grid {
  --content-max-width: 800px;
  text-wrap-style: balance;
}
@media (min-width: 768px) {
  .block-text {
    text-align: center;
  }
}
.block-splot .images:not(:has(.img-1)) {
  position: relative;
  max-width: 45rem;
}
.block-splot .images:not(:has(.img-1)) img {
  aspect-ratio: 1.2;
  margin: 3rem 6rem 0 0;
  width: calc(100% - 6rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .block-splot .images:not(:has(.img-1)) img {
    max-height: 25rem;
  }
}
.block-splot .images:not(:has(.img-1)):before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 6rem;
  bottom: 5rem;
  border: 1px solid #6e6e6e;
}
.block-splot .images:not(:has(.img-1)):after {
  content: '';
  position: absolute;
  top: 2rem;
  right: 0;
  border: 4rem solid transparent;
  border-right-color: #343434;
  border-top-width: 2rem;
  border-bottom-width: 2rem;
}
.block-splot .images:has(.img-1) {
  position: relative;
  max-width: 45rem;
}
.block-splot .images:has(.img-1) img {
  aspect-ratio: 1.2;
  margin: 0;
  width: calc(100% - 0rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .block-splot .images:has(.img-1) img {
    max-height: 25rem;
  }
}
.block-splot .images:has(.img-1) img.img-0 {
  margin-left: 45%;
  width: calc(55% - 1rem);
}
.block-splot .images:has(.img-1) img.img-1 {
  margin-left: 1rem;
  width: 55%;
  margin-top: -5rem;
}
.block-splot .images:has(.img-1):before {
  content: '';
  position: absolute;
  top: min(6rem, 12vw);
  right: 0;
  left: 0;
  bottom: min(6rem, 12vw);
  border: 1px solid #6e6e6e;
}
.block-splot .images:has(.img-1):after {
  content: '';
  position: absolute;
  top: 25%;
  left: 0;
  border: 4rem solid transparent;
  border-left-color: #343434;
  border-top-width: 2rem;
  border-bottom-width: 2rem;
}
.block-cta .content {
  padding-block: 10rem;
  display: grid;
  justify-items: center;
}
/* Footer */
.footer-note {
  text-align: center;
  background: #363636;
  padding-block: 2rem;
  color: #FFF;
  font-size: 14px;
}
.footer-note > .content-grid {
  --content-max-width: 992px;
}
.footer-note a {
  color: inherit;
}
.footer-note p {
  text-wrap-style: balance;
}
.footer-note img {
  width: 158px;
  height: 80px;
  margin: 0 auto 1rem;
}
.footer-note p:last-child {
  margin-bottom: 0;
}
.footer-note .ico-instagram {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' id='Icons' viewBox='0 0 32 32'%3E%3Cstyle%3E.st0%7Bfill:none;stroke:%23fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10%7D%3C/style%3E%3Cpath d='M23 31H9a8 8 0 0 1-8-8V9a8 8 0 0 1 8-8h14a8 8 0 0 1 8 8v14a8 8 0 0 1-8 8' class='st0'/%3E%3Ccircle cx='16' cy='16' r='7' class='st0'/%3E%3Ccircle cx='24' cy='7' r='1' class='st0'/%3E%3C/svg%3E");
}
