/*!***********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js!./src/scss/main.scss ***!
  \***********************************************************************************************************************************************************************************/
@charset "UTF-8";
.glide {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.glide * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -ms-touch-action: pan-Y;
      touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide--rtl {
  direction: rtl;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #bca76b;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #ccc;
}

.pswp__error-msg a {
  color: #ccc;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../dist/images/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../dist/images/default-skin.svg);
  }

  .pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #fff;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}
.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #fff;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}
a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #fff;
}
a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a;
}

a.pswp__share--twitter:hover {
  background: #55acee;
  color: #fff;
}

a.pswp__share--pinterest:hover {
  background: #ccc;
  color: #ce272d;
}

a.pswp__share--download:hover {
  background: #ddd;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #fff;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}
.pswp__caption small {
  font-size: 11px;
  color: #bbb;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #ccc;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(../dist/images/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
          animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
          animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
  /* 
  	The idea of animating inner circle is based on Polymer ("material") loading indicator 
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

h1,
.h1 {
  font: normal normal 400 62px/72px "Playfair Display", sans-serif;
  color: #000;
  margin-block: 0;
}
@media (max-width: 767px) {
  h1,
.h1 {
    font: normal normal 400 36px/38px "Playfair Display", sans-serif;
  }
}

h2,
.h2 {
  font: normal normal 400 42px/48px "Playfair Display", sans-serif;
  color: #242424;
  margin-block: 0;
}
@media (max-width: 767px) {
  h2,
.h2 {
    font: normal normal 400 28px/30px "Playfair Display", sans-serif;
  }
}

h3,
.h3 {
  font: normal normal 400 20px/25px "Playfair Display", sans-serif;
  color: #242424;
  margin-block: 0;
}

a {
  font: normal normal 700 18px/24px "Roboto Condensed", sans-serif;
}

div,
li,
p,
.p {
  font: normal normal 400 18px/24px "Roboto Condensed", sans-serif;
  color: #000000;
}
@media (max-width: 767px) {
  div,
li,
p,
.p {
    font: normal normal 400 16px/18px "Roboto Condensed", sans-serif;
  }
}

button,
label,
td,
th,
ins,
del,
bdi {
  font-family: "Roboto Condensed", sans-serif;
}

small {
  font: normal normal 400 14px/19px "Roboto Condensed", sans-serif;
  color: #707070;
}

input {
  font: normal normal normal 16px/16px "Roboto Condensed", sans-serif;
  color: #00000080;
  border: 0;
}
input::-webkit-input-placeholder {
  font: normal normal normal 16px/16px "Roboto Condensed", sans-serif;
  color: #00000080;
}
input::-moz-placeholder {
  font: normal normal normal 16px/16px "Roboto Condensed", sans-serif;
  color: #00000080;
}
input:-ms-input-placeholder {
  font: normal normal normal 16px/16px "Roboto Condensed", sans-serif;
  color: #00000080;
}
input::-ms-input-placeholder {
  font: normal normal normal 16px/16px "Roboto Condensed", sans-serif;
  color: #00000080;
}
input::placeholder {
  font: normal normal normal 16px/16px "Roboto Condensed", sans-serif;
  color: #00000080;
}
input:focus {
  color: #000000;
  border-color: #000000;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ajax-search-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
}

#ajax-search-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: #fff;
  z-index: 10;
  opacity: 0;
  -webkit-transform: translateY(-28px);
          transform: translateY(-28px);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  pointer-events: none;
}
#ajax-search-wrapper.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
#ajax-search-wrapper .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#ajaxsearchlite1.asl_w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 75%;
}
#ajaxsearchlite1.asl_w .probox {
  width: 100%;
}
#ajaxsearchlite1.asl_w .promagnifier {
  display: none;
}

.container {
  width: 100%;
  padding-inline: 15px;
  margin-inline: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (min-width: 0) {
  .container {
    width: 525px;
    max-width: 100%;
    padding-inline: 0;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 940) {
  .container {
    width: 881px;
  }
}
@media (min-width: 1000px) {
  .container {
    width: 998px;
  }
}
@media (min-width: 1264px) {
  .container {
    width: 1185px;
  }
}
.cookies {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #000000;
  -webkit-box-shadow: 0 5px 10px #fff;
          box-shadow: 0 5px 10px #fff;
}
.cookies__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding-block: 2rem;
}
.cookies__content {
  font: normal normal normal 12px/18px "Atkinson Hyperlegible";
  color: #7c7c7c;
  max-width: 70%;
}
.cookies__content p,
.cookies__content a {
  font: inherit;
  color: inherit;
}
.cookies__content a {
  text-decoration: underline;
}
.cookies__accept {
  font: normal normal 900 14px/23px "Roboto Condensed", sans-serif;
  letter-spacing: 0.45px;
  color: #fefefe;
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
}
@media (max-width: 560px) {
  .cookies {
    padding-inline: 2rem;
  }
  .cookies__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
  .cookies__content {
    max-width: 95%;
  }
}

.skip-link {
  padding: 1rem 2rem;
  background-color: #242424;
  color: #ffffff;
}

.left-aside {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 1rem;
  padding-right: 6px;
}
.left-aside__scroll-marker {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 6px;
  background-color: #bca76b;
}
.left-aside__custom-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.left-aside__custom-logo > img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 48px;
  height: 40px;
}
.left-aside .socials__logo {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .left-aside {
    display: none;
  }
}

.right-aside {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 68px;
  padding-block: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 998;
}
.right-aside .user-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.right-aside .user-menu li {
  width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.right-aside .user-menu img {
  -o-object-fit: contain;
     object-fit: contain;
}
.right-aside .search-bar {
  position: relative;
}
.right-aside .search-bar.search-bar--active form[role=search] {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.right-aside .search-bar.search-bar--active .search-bar__icon path {
  stroke: #fff;
}
.right-aside .search-bar__button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  padding: 0;
}
.right-aside .search-bar__icon {
  position: relative;
  z-index: 10;
}
.right-aside .search-bar__icon path {
  -webkit-transition: stroke 0.4s ease-in-out;
  transition: stroke 0.4s ease-in-out;
}
.right-aside .search-bar form[role=search] {
  position: absolute;
  right: 0;
  top: 0;
  height: 48px;
  background-color: #bca76b;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.right-aside .search-bar label {
  position: relative;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.right-aside .search-bar label::after {
  content: "";
  position: absolute;
  left: 1rem;
  width: 291px;
  height: 1px;
  background-color: #fff;
  bottom: 10px;
}
.right-aside .search-bar input[type=search] {
  line-height: 20px;
  background-color: #bca76b;
  width: 323px;
  color: #fff;
  padding: 14px 68px 14px 16px;
  text-decoration: none;
}
.right-aside .search-bar input[type=search]::-webkit-input-placeholder {
  color: #fff;
}
.right-aside .search-bar input[type=search]::-moz-placeholder {
  color: #fff;
}
.right-aside .search-bar input[type=search]:-ms-input-placeholder {
  color: #fff;
}
.right-aside .search-bar input[type=search]::-ms-input-placeholder {
  color: #fff;
}
.right-aside .search-bar input[type=search]::placeholder {
  color: #fff;
}
.right-aside .search-bar input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 17px;
  width: 17px;
  margin-left: 0.4em;
  background-image: url(../dist/images/x.svg);
  background-size: contain;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.right-aside .search-bar button[type=submit] {
  display: none;
}
.right-aside #scroll-top {
  border: none;
  background-color: transparent;
  opacity: 0;
  -webkit-transform: translateY(calc(100% + 2rem));
          transform: translateY(calc(100% + 2rem));
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.right-aside #scroll-top.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.right-aside #scroll-top img {
  height: 27px;
  width: 27px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .right-aside {
    display: none;
  }
}

.info-bar {
  position: fixed;
  top: 64px;
  left: 68px;
  width: calc(100% - 136px);
  padding: 1rem;
  z-index: 997;
  background-color: #bca76b;
}
@media (max-width: 767px) {
  .info-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    position: initial;
    width: 100%;
  }
  .info-bar .info-bar__close {
    position: initial;
  }
}
.info-bar p,
.info-bar a {
  font: normal normal 400 14px/19px "Roboto Condensed", sans-serif;
  color: #fff;
  margin: 0;
}
.info-bar__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.info-bar__close img {
  width: 12px;
  height: 12px;
}

.site-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 24px;
}
.site-info span.copyright {
  font: normal normal normal 15px/17px "Roboto Condensed", sans-serif;
  color: #707070;
}
.site-info a {
  font: normal normal 400 26px/30px "Roboto Condensed", sans-serif;
  color: #f5f5f5;
  font-weight: 400;
  text-decoration: none;
}
.site-info .gansaLogo {
  font: normal normal 400 18px/21px "PT Sans", sans-serif;
  padding: 4px 16px;
  text-decoration: none;
  border-radius: 4px;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 110px;
  outline: none;
  border: none;
}
.site-info .gansaLogo img {
  width: auto;
  height: 17px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.site-footer {
  margin-top: 2rem;
  padding-inline: 2rem;
}
.site-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f2f2f2;
  padding: 2rem 4rem;
}
.site-footer__info p {
  color: #242424;
}
.site-footer__info a {
  color: #242424;
}
@media (max-width: 767px) {
  .site-footer {
    padding-inline: 0;
  }
  .site-footer__content {
    padding: 2rem 2rem;
  }
}

.p {
  margin-block: 0;
}

.small {
  font: normal normal 400 14px/19px "Roboto Condensed", sans-serif;
}

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

.grid421 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.grid421::before, .grid421::after {
  content: unset;
}
@media (max-width: 767px) {
  .grid421 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .grid421 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.h-underline {
  position: relative;
}
.h-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 95px;
  background-color: #bca76b;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #ffffff;
  background-color: #242424;
  padding: 1rem 2rem;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  text-decoration: none;
  font: normal normal 700 20px/27px "Roboto Condensed", sans-serif;
}
.btn--light {
  color: #242424;
  background-color: #f2f2f2;
}

.btn-reset {
  background-color: transparent;
  border: none;
  padding: 0;
}

.link {
  font: normal normal 700 14px/19px "Roboto Condensed", sans-serif;
  color: #242424;
  text-decoration: none;
  border-bottom: 1px solid #bca76b;
}

.heading-underline {
  position: relative;
  margin-bottom: 2rem;
}
.heading-underline::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 95px;
  height: 6px;
  background-color: #bca76b;
}

.sr-only,
.screen-reader-text {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  /* 1 */
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
  /* 3 */
}

/*
	Use in conjunction with .sr-only to only display content when it's focused.
	@note Useful for skip links 
	@see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
	@note Based on a HTML5 Boilerplate technique, included in Bootstrap
	@note Fixed a bug with position: static on iOS 10.0.2 + VoiceOver
		@author Sylvain Pigeard
		@see https://github.com/twbs/bootstrap/issues/20732
*/
.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5 {
  margin-bottom: 1rem;
}
.wysiwyg h2 {
  position: relative;
}
.wysiwyg h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 95px;
  height: 6px;
  background-color: #bca76b;
}
.wysiwyg h3 {
  font: normal normal 400 32px/38px "Playfair Display", sans-serif;
}
.wysiwyg h4 {
  font: normal normal 400 26px/35px "Playfair Display", sans-serif;
}
.wysiwyg h5 {
  font: normal normal 400 22px/30px "Playfair Display", sans-serif;
}
.wysiwyg a {
  color: #000000;
}
.wysiwyg a:hover, .wysiwyg a:visited {
  color: #000000;
}
.wysiwyg figcaption.blocks-gallery-caption {
  text-align: left;
  font: normal normal 400 14px/19px "Roboto Condensed", sans-serif;
  color: #707070;
}
.wysiwyg figcaption.blocks-gallery-caption a {
  font: inherit;
  color: inherit;
  text-decoration: none;
}
.wysiwyg ul {
  list-style: none;
  margin-bottom: 2rem;
}
.wysiwyg ul li {
  position: relative;
  margin-bottom: 1rem;
  font: normal normal 400 18px/24px "Roboto Condensed", sans-serif;
  color: #000000;
}
.wysiwyg ul li::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 9px;
  height: 6px;
  width: 24px;
  background-color: #bca76b;
}
.wysiwyg .wp-block-image:hover {
  position: relative;
}
.wysiwyg .wp-block-image:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #bca76bbf;
}

main {
  padding-top: 96px;
}

#page {
  margin-inline: 68px;
}
@media (max-width: 767px) {
  #page {
    margin-inline: 0;
  }
  #page #content {
    padding-inline: 1rem;
    padding-top: 2rem;
  }
}

.company-name {
  font-family: "Playfair Display", sans-serif;
  position: absolute;
  left: 0;
  top: 72px;
  line-height: 62px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
@media (max-width: 767px) {
  .company-name {
    display: none;
  }
}

#breadcrumbs {
  margin: 0;
  font: normal normal 400 13px/18px "Roboto Condensed", sans-serif;
  color: #707070;
}
#breadcrumbs span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#breadcrumbs a {
  font: normal normal 400 13px/18px "Roboto Condensed", sans-serif;
  color: #707070;
  text-decoration: none;
}
#breadcrumbs img {
  height: 100%;
  max-height: 16px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar-toggler {
  display: none;
  outline: none;
  border: none;
  background-color: transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  justify-self: center;
}
@media (max-width: 767px) {
  .navbar-toggler {
    display: block;
  }
}

.menu-btn {
  position: relative;
  z-index: 998;
  height: 30px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-btn__burger {
  width: 23px;
  height: 2px;
  background-color: #242424;
  border-radius: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burger::before, .menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 2px;
  background-color: #242424;
  border-radius: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-btn__burger::before {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
.menu-btn__burger::after {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

/* ANIMATION */
.menu-btn.open .menu-btn__burger {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
  -webkit-transform: rotate(45deg) translate(35px, -35px);
          transform: rotate(45deg) translate(35px, -35px);
  background-color: #242424;
}

.menu-btn.open .menu-btn__burger::after {
  -webkit-transform: rotate(-45deg) translate(35px, 35px);
          transform: rotate(-45deg) translate(35px, 35px);
  background-color: #242424;
}

.primary-menu > .nav-item > .nav-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1;
}

.primary-menu > .nav-item > .nav-link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 0;
  height: 5px;
  -webkit-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
}

.navbar-toggler:focus, .navbar-toggler:focus-within {
  outline: none;
}

#folded-menu__wrapper {
  width: 100%;
}
#folded-menu__wrapper:not(.show) {
  display: none;
}
#folded-menu__wrapper.collapsing {
  position: relative;
  height: 0px;
  overflow: hidden;
  pointer-events: none;
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
}

#folded-menu {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-bottom: 2rem;
}
#folded-menu .gansa_walker__heading {
  font: normal normal 700 15px/20px "Playfair Display", sans-serif;
  margin-bottom: 1.15rem;
}
#folded-menu .gansa_walker__list {
  padding-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
#folded-menu .gansa_walker__link {
  font: normal normal 700 13px/18px "Roboto Condensed", sans-serif;
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
#folded-menu .gansa_walker__link span {
  min-width: 12px;
  min-height: 12px;
  border: 1px solid #cecece;
  background-color: var(--b-color, hotpink);
  border-radius: 50%;
}
#folded-menu .gansa_walker__link img {
  width: 12px;
  height: auto;
}

#footer-menu {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2vw;
  margin-top: 2rem;
}
#footer-menu a {
  color: #707070;
  text-decoration: none;
}
@media (max-width: 767px) {
  #footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#main-nav {
  position: fixed;
  width: calc(100% - 136px);
  top: 0;
  left: 68px;
  z-index: 998;
  border-bottom: 1px solid #cecece;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  #main-nav {
    display: none;
  }
}

#main-menu {
  height: 64px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3vw;
}
#main-menu.disable a {
  opacity: 0.4;
}
#main-menu.disable button img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#main-menu .dropdown-menu {
  display: none;
  position: absolute;
}
#main-menu .dropdown:hover .dropdown-menu {
  display: block;
}
#main-menu .dropdown button {
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
#main-menu .dropdown button::after {
  content: "";
  background-image: url(../dist/images/arrow-bottom.svg);
  background-size: contain;
  margin-left: 0.5rem;
  width: 8px;
  height: 8px;
}
#main-menu .dropdown button:focus-within + .dropdown-menu {
  display: block;
}
#main-menu a,
#main-menu button {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  background-color: transparent;
  padding: 0;
  border: 0;
}
#main-menu button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding-right: 2rem;
  background-image: url(../dist/images/arrow-bottom.svg);
  background-repeat: no-repeat;
  background-position: center right 0.5rem;
  background-size: 10px 15px;
}
#main-menu button img {
  height: 12px;
  width: auto;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
@media (max-width: 767px) {
  #main-menu {
    display: none;
  }
}

#mobile-nav {
  display: none;
  grid-template-rows: 64px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #cecece;
}
@media (max-width: 767px) {
  #mobile-nav {
    display: grid;
  }
}
#mobile-nav .mobileNav__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 1rem;
  background-color: #fff;
}
#mobile-nav .mobileNav__custom-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mobile-nav .mobileNav__custom-logo > img {
  width: 48px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
#mobile-nav .mobileNav__return {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
#mobile-nav .mobileNav__return.active {
  opacity: 1;
  pointer-events: auto;
}
#mobile-nav .user-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-right: 0.5rem;
}
#mobile-nav .user-menu .search-bar-mobile form {
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 58px;
  background-color: #bca76b;
  padding-inline: 1rem;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
#mobile-nav .user-menu .search-bar-mobile form.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#mobile-nav .user-menu .search-bar-mobile form label {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  border-bottom: 1px solid #fff;
  padding-right: 1rem;
}
#mobile-nav .user-menu .search-bar-mobile form input {
  background-color: #bca76b;
  width: 100%;
  font: normal normal 400 15px/20px "Roboto Condensed", sans-serif;
  color: #fff;
}
#mobile-nav .user-menu .search-bar-mobile form input:focus {
  outline: none;
}
#mobile-nav .user-menu .search-bar-mobile form input::-webkit-input-placeholder {
  font: normal normal 400 15px/20px "Roboto Condensed", sans-serif;
  color: #fff;
}
#mobile-nav .user-menu .search-bar-mobile form input::-moz-placeholder {
  font: normal normal 400 15px/20px "Roboto Condensed", sans-serif;
  color: #fff;
}
#mobile-nav .user-menu .search-bar-mobile form input:-ms-input-placeholder {
  font: normal normal 400 15px/20px "Roboto Condensed", sans-serif;
  color: #fff;
}
#mobile-nav .user-menu .search-bar-mobile form input::-ms-input-placeholder {
  font: normal normal 400 15px/20px "Roboto Condensed", sans-serif;
  color: #fff;
}
#mobile-nav .user-menu .search-bar-mobile form input::placeholder {
  font: normal normal 400 15px/20px "Roboto Condensed", sans-serif;
  color: #fff;
}
#mobile-nav .user-menu .search-bar-mobile form input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 17px;
  width: 17px;
  margin-left: 0.4em;
  margin-top: 3px;
  background-image: url(../dist/images/x-b.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
#mobile-nav .user-menu .search-bar-mobile form button[type=submit] {
  font-size: 0;
  line-height: 0;
  width: 17px;
  height: 23px;
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  background-image: url(../dist/images/search-w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  #mobile-nav .user-menu .search-bar-mobile form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#mobile-nav .mobileNav__wrapper {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 64px);
  z-index: 998;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#mobile-nav .mobileNav__wrapper:not(.show) {
  display: none;
}
#mobile-nav .mobileNav__wrapper #mobile-menu {
  max-height: 100%;
  overflow-y: auto;
  width: 100vw;
  min-width: 100vw;
  padding-top: 1rem;
  border-top: 1px solid #cecece;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
#mobile-nav .mobileNav__wrapper #mobile-menu.move {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
#mobile-nav .mobileNav__wrapper #mobile-menu a,
#mobile-nav .mobileNav__wrapper #mobile-menu button {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  background-color: transparent;
  padding: 0;
  border: 0;
}
#mobile-nav .mobileNav__wrapper #mobile-menu button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding-right: 2rem;
  background-image: url(../dist/images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center right 0.5rem;
  background-size: 10px 15px;
}
#mobile-nav .mobileNav__wrapper #mobile-folded-menu {
  width: 100vw;
  min-width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  max-height: 100%;
  overflow-y: auto;
  padding-top: 1rem;
  padding-bottom: 6rem;
  border-top: 1px solid #cecece;
}
#mobile-nav .mobileNav__wrapper #mobile-folded-menu .gansa_walker__element {
  padding-left: 25%;
}
#mobile-nav .mobileNav__wrapper #mobile-folded-menu .gansa_walker__heading {
  font: normal normal 700 15px/20px "Playfair Display", sans-serif;
  margin-bottom: 0.5rem;
}
#mobile-nav .mobileNav__wrapper #mobile-folded-menu .gansa_walker__list {
  padding-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
#mobile-nav .mobileNav__wrapper #mobile-folded-menu .gansa_walker__link {
  font: normal normal 700 13px/18px "Roboto Condensed", sans-serif;
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
#mobile-nav .mobileNav__wrapper #mobile-folded-menu .gansa_walker__link span {
  min-width: 12px;
  min-height: 12px;
  border: 1px solid #cecece;
  background-color: var(--b-color, hotpink);
  border-radius: 50%;
}
#mobile-nav .mobileNav__wrapper #mobile-folded-menu .gansa_walker__link img {
  width: 12px;
  height: auto;
}
#mobile-nav .mobileNav__wrapper #mobile-folded-menu.move {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
#mobile-nav .mobileNav__social-icon {
  position: absolute;
  left: 1rem;
  bottom: 4rem;
  width: 24px;
  height: 24px;
}
#mobile-nav .mobileNav__social-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
#mobile-nav .mobileNav__account {
  position: absolute;
  right: 1rem;
  bottom: 4rem;
  width: 24px;
  height: 24px;
}
#mobile-nav .mobileNav__account img {
  -o-object-fit: contain;
     object-fit: contain;
}

#shop-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#shop-menu .gansa_walker__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
#shop-menu .dropdown--active .sign {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#shop-menu .dropdown--active .sign::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#shop-menu button {
  width: 90%;
  background-color: transparent;
  color: #242424;
  padding: 0;
  margin: 0;
  border: none;
  font: normal normal 700 18px/24px "Roboto Condensed", sans-serif;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
#shop-menu button span.sign {
  --size: 18px;
  position: relative;
  width: var(--size);
  height: var(--size);
  min-height: var(--size);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
#shop-menu button span.sign::before, #shop-menu button span.sign::after {
  position: absolute;
  content: "";
  background-color: #242424;
}
#shop-menu button span.sign::after {
  width: var(--size);
  height: 2px;
}
#shop-menu button span.sign::before {
  width: 2px;
  height: var(--size);
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
#shop-menu .dropdown-menu {
  height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
#shop-menu .dropdown-menu--active {
  max-height: 100%;
}
#shop-menu a {
  text-decoration: none;
  color: #000000;
}
#shop-menu a:hover, #shop-menu a:visited {
  color: #000000;
}
#shop-menu ul {
  padding-left: 1rem;
}
#shop-menu ul a {
  font-weight: 400;
}

#side-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
#side-menu .gansa_walker__element.active {
  border-right: 1px solid #bca76b;
}
#side-menu a {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.user-menu__cart {
  position: relative;
}
.user-menu__cart-count {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  font: normal normal 700 10px/14px "Roboto Condensed", sans-serif;
  color: #ffffff;
  -webkit-transform: translate(50%, 15%);
          transform: translate(50%, 15%);
  background-color: #bca76b;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.gansa_walker,
.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion {
  margin-block: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.accordion__item {
  padding: 2rem;
  background-color: #f2f2f2;
}
.accordion h2 {
  margin-top: 0;
  margin-bottom: 0rem;
}
.accordion__question {
  font: normal normal 400 32px/38px "Playfair Display", sans-serif;
  color: #000;
  text-align: left;
  -ms-flex-negative: 4;
      flex-shrink: 4;
  padding-right: 1rem;
}
.accordion button[data-toggle] {
  position: relative;
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion button[data-toggle] span.sign {
  position: relative;
  width: 27px;
  height: 27px;
  min-height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
.accordion button[data-toggle] span.sign::before, .accordion button[data-toggle] span.sign::after {
  position: absolute;
  content: "";
  background-color: #242424;
}
.accordion button[data-toggle] span.sign::after {
  width: 24px;
  height: 2px;
}
.accordion button[data-toggle] span.sign::before {
  width: 2px;
  height: 24px;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
.accordion button[data-toggle][aria-expanded=true] .sign {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion button[data-toggle][aria-expanded=true] .sign::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion__panel:not(.show) {
  display: none;
}
.accordion__panel.collapsing {
  position: relative;
  height: 0px;
  overflow: hidden;
  pointer-events: none;
  -webkit-transition: height 0.35s ease-in-out;
  transition: height 0.35s ease-in-out;
}
.accordion__panel p,
.accordion__panel ul,
.accordion__panel li {
  margin: 0;
  padding: 0;
}
.accordion__panel ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  list-style: none;
}
.accordion__body {
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 990px) {
  .accordion__question {
    font: normal normal 400 20px/25px "Playfair Display", sans-serif;
  }
}

.banner {
  padding: 4rem 20%;
  margin-block: 8rem;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-weight: 700;
}
.banner__heading img {
  height: 30px;
  width: auto;
}
.banner__paragraph p {
  text-align: center;
}

.chessboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
  margin-block: 4rem;
}
.chessboard__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.chessboard__image-wrapper {
  position: sticky;
  top: 2rem;
  -ms-flex-item-align: start;
      align-self: start;
}
.chessboard__image-wrapper::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 25%;
  width: 6px;
  height: calc(60% + 3rem);
  background-color: #bca76b;
}
.chessboard__image {
  width: 100%;
  height: auto;
}
.chessboard__heading {
  margin-bottom: 3rem;
}
@media (max-width: 560px) {
  .chessboard__row {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .chessboard__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .chessboard__image-wrapper {
    position: relative;
    top: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#custom-select {
  margin-bottom: 2rem;
  display: block;
}
#custom-select .select-box {
  position: relative;
  height: 52px;
  width: 300px;
  overflow-y: hidden;
  background-color: #fff;
  border-radius: 4px;
  z-index: 100;
  position: relative;
}
#custom-select .select-box.active {
  overflow-y: visible;
}
#custom-select .select-box.active::after {
  background-image: url(../dist/images/arrow-up.svg);
}
#custom-select .select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  z-index: 10;
  pointer-events: none;
  background-image: url(../dist/images/arrow-bottom.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#custom-select .options-container {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-height: 50px;
  background-color: #f2f2f2;
}
#custom-select .options-container .option {
  line-height: 52px;
  padding-inline: 1rem;
}
#custom-select .options-container label,
#custom-select .options-container .label {
  font-weight: 700;
  font-size: 15px;
  line-height: 52px;
  font-family: "Roboto Condensed", sans-serif;
  margin: 0;
}
#custom-select .options-container.active {
  max-height: 300px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 4px;
  -webkit-box-shadow: 5px 5px 5px #00000011;
          box-shadow: 5px 5px 5px #00000011;
}
#custom-select .options-container input {
  display: none;
}
#custom-select .defaultOption {
  font: normal normal normal 12px/16px "DM Sans";
}

.hero {
  margin-top: 4rem;
}
.hero h1.h1 {
  text-align: center;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .hero h1.h1 {
    margin-bottom: 64px;
  }
}
.hero__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  grid-template-rows: 1fr;
}
.hero .glide {
  position: relative;
  grid-column: 2;
  grid-row: 1/-1;
}
.hero .glide::before {
  content: url(../dist/images/bg-logo.svg);
  position: absolute;
  z-index: -1;
  top: -150px;
  left: 50%;
  height: 170px;
  width: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hero .glide::after {
  content: "";
  position: absolute;
  top: -4rem;
  right: 3rem;
  width: 6px;
  height: 300px;
  background-color: #bca76b;
}
.hero .glide__track {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.hero .glide__slides {
  margin-block: 0;
}
.hero .glide__slide.glide__slide--active img {
  height: auto;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
.hero .glide__slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 746/933;
}
.hero__content-wrapper {
  position: sticky;
  bottom: 2rem;
  align-self: end;
  grid-column: 1/-1;
  grid-row: 1/-1;
  margin-inline: 3rem;
  margin-block: 1rem;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.hero__content {
  grid-column: 1/span 4;
  grid-row: 1;
}
.hero__links {
  grid-column: 5/span 8;
  grid-row: 1;
  align-self: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.hero__slide-marker {
  grid-column: 1/-1;
  grid-row: 2;
  justify-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}
.hero__prev-slide, .hero__next-slide {
  border: none;
  background-color: transparent;
}
.hero__current-slide {
  font: normal normal 400 14px/19px "Roboto Condensed", sans-serif;
  color: #242424;
}
@media (max-width: 990px) {
  .hero__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }
  .hero .btn {
    min-width: unset;
  }
  .hero__content-wrapper {
    margin-inline: 0.5rem;
    margin-bottom: 4rem;
  }
  .hero__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .hero__links {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .hero__slide-marker {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-left: auto;
  }
  .hero .glide {
    grid-column: unset;
    grid-row: unset;
  }
  .hero__content-wrapper {
    position: relative;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .hero {
    margin-top: 1rem;
  }
}
@media (max-width: 560px) {
  .hero .btn {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.blog-posts {
  margin-block: 128px;
  padding-inline: 2rem;
}
.blog-posts header {
  margin-bottom: 4rem;
}
.blog-posts header > p {
  margin-bottom: 1rem;
  max-width: 75%;
}
.blog-posts .lch-cart__heading {
  margin-bottom: 6px;
}
.blog-posts__post-date {
  font: normal normal 400 18px/15px "Roboto Condensed", sans-serif;
  color: #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}
.blog-posts__post-date img {
  -o-object-fit: contain;
     object-fit: contain;
}
.blog-posts .lch-cart__description {
  margin-bottom: 1rem;
}
.blog-posts__img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 293/450;
  background-color: #bca76b;
}
.blog-posts__img-placeholder img {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 18px;
}
@media (max-width: 767px) {
  .blog-posts {
    padding-inline: 0;
  }
  .blog-posts .grid421 {
    grid-auto-flow: column;
    grid-template-columns: unset;
    grid-auto-columns: 80%;
    overflow-x: auto;
    padding-right: 1rem;
    width: 100%;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
  .blog-posts .grid421 .lch-cart {
    scroll-snap-align: center;
  }
  .blog-posts header > p {
    max-width: 100%;
  }
}

.illumine {
  margin-block: 128px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.illumine__content {
  position: sticky;
  bottom: 2rem;
  align-self: end;
  grid-column: 1/span 5;
  padding-left: 2rem;
}
.illumine__link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.illumine__gsap-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.illumine__decorator {
  position: absolute;
  left: 6rem;
  bottom: -2rem;
  height: 30%;
  width: 6px;
  background-color: #bca76b;
}
.illumine__image-wrapper {
  position: relative;
  grid-column: 6/span 7;
}
.illumine__image-wrapper a {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.illumine__main-image {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
.illumine__.illumine {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.illumine__.illumine__content {
  position: sticky;
  bottom: 2rem;
  align-self: end;
  grid-column: 1/span 5;
  padding-left: 2rem;
}
.illumine__.illumine__link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.illumine__.illumine__image-wrapper {
  position: relative;
  grid-column: 6/span 7;
  align-self: start;
}
.illumine__.illumine__image-wrapper a {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.illumine__.illumine__main-image {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 990px) {
  .illumine {
    display: block;
  }
  .illumine__content {
    padding-left: 0;
    margin-bottom: 2rem;
  }
}

.get-mirror {
  margin-block: 128px;
}
.get-mirror header {
  margin-left: 2rem;
}
.get-mirror__controls {
  width: 100%;
  padding-block: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 2rem;
}
.get-mirror__prev-slide, .get-mirror__next-slide {
  border: none;
  background-color: transparent;
}
.get-mirror .glide__slides {
  margin-left: 2rem;
  margin-bottom: 0;
}
.get-mirror .glide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 290/450;
}
.get-mirror .lch-cart__description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .get-mirror header {
    margin-left: 0;
  }
}

.mirror-types {
  margin-block: 128px;
  padding-inline: 2rem;
}
.mirror-types header p {
  max-width: 75%;
}
.mirror-types__taxonomies-wrapper {
  margin-top: 4rem;
}
.mirror-types ul.list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 767px) {
  .mirror-types ul.list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .mirror-types ul.list {
    gap: 3rem 1rem;
    grid-auto-flow: column;
    grid-template-columns: unset;
    grid-auto-columns: 80%;
    overflow-x: auto;
    padding-right: 1rem;
    width: 100%;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
  .mirror-types ul.list .lch-cart {
    scroll-snap-align: center;
  }
}
.mirror-types .lch-cart__image {
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .mirror-types {
    padding-inline: 0;
  }
  .mirror-types header p {
    max-width: 100%;
  }
}

.mirror-by-space {
  margin-block: 128px;
  padding-inline: 2rem;
}
.mirror-by-space header p {
  max-width: 75%;
}
.mirror-by-space__taxonomies-wrapper {
  margin-top: 4rem;
}
.mirror-by-space .lch-cart__description > p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mirror-by-space {
    padding-inline: 0;
  }
  .mirror-by-space header p {
    max-width: 100%;
  }
}
@media (max-width: 560px) {
  .mirror-by-space {
    overflow: hidden;
    width: calc(100% + 1rem);
  }
  .mirror-by-space header {
    padding-right: 1rem;
  }
  .mirror-by-space .list.grid421 {
    grid-auto-flow: column;
    grid-template-columns: unset;
    grid-auto-columns: 80%;
    overflow-x: auto;
    padding-right: 1rem;
    width: 100%;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
  .mirror-by-space .lch-cart {
    scroll-snap-align: center;
  }
}

.lch-cart {
  position: relative;
}
.lch-cart__link {
  position: absolute;
  inset: 0;
  z-index: 10;
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.lch-cart__image-wrapper {
  position: relative;
  overflow: hidden;
}
.lch-cart__image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #bca76bbf;
  opacity: 0;
  -webkit-transition: opacity 0.65s ease-in-out;
  transition: opacity 0.65s ease-in-out;
}
.lch-cart__arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  width: 55px;
  height: 18px;
  opacity: 0;
  -webkit-transition: opacity 0.65s ease-in-out;
  transition: opacity 0.65s ease-in-out;
}
.lch-cart__image {
  width: 100%;
  height: auto;
  aspect-ratio: 293/450;
  display: block;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.95s ease-in-out;
  transition: -webkit-transform 0.95s ease-in-out;
  transition: transform 0.95s ease-in-out;
  transition: transform 0.95s ease-in-out, -webkit-transform 0.95s ease-in-out;
}
.lch-cart__heading {
  font-weight: 700;
  margin-block: 2rem 1rem;
  text-transform: uppercase;
  padding-right: 20%;
}
.lch-cart__heading--small {
  font-size: 18px;
  line-height: 1.2;
  text-transform: none;
}
.lch-cart__heading--underline {
  position: relative;
  padding-bottom: 3px;
  overflow: hidden;
}
.lch-cart__heading--underline::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 95px;
  height: 6px;
  background-color: #bca76b;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.65s ease-in-out;
  transition: -webkit-transform 0.65s ease-in-out;
  transition: transform 0.65s ease-in-out;
  transition: transform 0.65s ease-in-out, -webkit-transform 0.65s ease-in-out;
}
.lch-cart__post-date {
  font: normal normal 400 18px/15px "Roboto Condensed", sans-serif;
  color: #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}
.lch-cart__post-date img {
  -o-object-fit: contain;
     object-fit: contain;
}
.lch-cart__description {
  font: normal normal 400 14px/19px "Roboto Condensed", sans-serif;
  color: #707070;
  margin-block: 1rem;
  padding-right: 20%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lch-cart__description--dark {
  color: #000000;
}
.lch-cart__description p {
  font: inherit;
  color: inherit;
}
.lch-cart__price {
  font: normal normal 400 14px/19px "Roboto Condensed", sans-serif;
  color: #707070;
}
.lch-cart__price span {
  font-weight: 700;
  color: #707070;
}
.lch-cart__price .lch-cart__price-regular {
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 0.5rem;
  opacity: 0.7;
}
.lch-cart:hover .lch-cart__image-wrapper::after {
  opacity: 1;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
.lch-cart:hover .lch-cart__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.65s ease-in-out;
  transition: -webkit-transform 0.65s ease-in-out;
  transition: transform 0.65s ease-in-out;
  transition: transform 0.65s ease-in-out, -webkit-transform 0.65s ease-in-out;
}
.lch-cart:hover .lch-cart__arrow {
  opacity: 1;
  -webkit-transition: opacity 0.65s 0.15s ease-in-out;
  transition: opacity 0.65s 0.15s ease-in-out;
}
.lch-cart:hover .lch-cart__heading--underline::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.65s ease-in-out;
  transition: -webkit-transform 0.65s ease-in-out;
  transition: transform 0.65s ease-in-out;
  transition: transform 0.65s ease-in-out, -webkit-transform 0.65s ease-in-out;
}
.lch-cart.product:hover .lch-cart__image-wrapper::after {
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}

.background-text {
  position: fixed;
  z-index: -1;
  left: 0;
  bottom: 20%;
  width: 100%;
  overflow: hidden;
}
.background-text__text {
  font: normal normal 700 148px/184px "Playfair Display", sans-serif;
  color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.lch-archive {
  margin-inline: 2rem;
}
.lch-archive .page-header {
  margin-bottom: 4.5rem;
}
.lch-archive .page-header__content {
  display: grid;
  grid-template-columns: auto 300px;
  gap: 2rem;
}
.lch-archive .page-header__content > p {
  max-width: 85%;
}
.lch-archive #custom-select {
  grid-column: 2;
}
.lch-archive .page-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
  margin-bottom: 6rem;
}
.lch-archive .posts-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.lch-archive .posts-filters__label {
  font: normal normal 700 16px/38px "Playfair Display", sans-serif;
  color: #000;
  margin-bottom: 1rem;
}
.lch-archive .posts-filters__list {
  padding: 1rem;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.lch-archive .posts-filters__link {
  display: inline-block;
  width: 100%;
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000000;
  text-decoration: none;
}
.lch-archive .posts-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 1rem;
}
.lch-archive .lch-cart__image {
  aspect-ratio: 1;
}
.lch-archive #custom-select .select-label {
  margin-block: 0 0.5rem;
}
.lch-archive .navigation.posts-navigation {
  grid-column: 2;
  margin-top: 4rem;
}
.lch-archive__pagination {
  grid-column: 2;
  justify-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}
.lch-archive__pagination .page-numbers {
  display: block;
  width: 48px;
  height: 48px;
  background-color: #f2f2f2;
  font-weight: 400;
  color: #000000;
  display: grid;
  place-content: center;
  -webkit-text-decoration: 0;
          text-decoration: 0;
}
.lch-archive__pagination .page-numbers.current {
  opacity: 30%;
}
.lch-archive__pagination .page-numbers.prev, .lch-archive__pagination .page-numbers.next {
  position: relative;
}
.lch-archive__pagination .page-numbers.prev::before, .lch-archive__pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: center;
}
.lch-archive__pagination .page-numbers.prev::before {
  background-image: url(../dist/images/arrow-left.svg);
}
.lch-archive__pagination .page-numbers.next::before {
  background-image: url(../dist/images/arrow-right.svg);
}
@media (max-width: 1064px) {
  .lch-archive .posts-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 990px) {
  .lch-archive .page-header {
    margin-bottom: 1rem;
  }
  .lch-archive .page-header__content {
    grid-template-columns: 1fr;
  }
  .lch-archive #custom-select {
    grid-column: 1;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .lch-archive .page-content {
    display: block;
  }
  .lch-archive .posts-filters {
    margin-bottom: 2rem;
  }
}
@media (max-width: 560px) {
  .lch-archive .posts-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.contact-page {
  padding-inline: 2rem;
}
.contact-page__info {
  height: 156px;
  width: 100%;
  display: grid;
  place-content: center;
  background-color: #f2f2f2;
  margin-block: 3rem;
}
.contact-page__info .p {
  font-weight: 700;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 3rem;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-block: 3rem 6rem;
}
.contact-page__grid .h2 {
  grid-column: 1/-1;
}
.contact-page .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-page .wpcf7-form label {
  font: normal normal 400 13px/38px "Roboto Condensed", sans-serif;
}
.contact-page .wpcf7-form p {
  grid-column: 1/-1;
  margin: 0;
}
.contact-page .wpcf7-form textarea {
  grid-column: 1/-1;
  width: 100%;
  height: 166px;
  border: none;
  resize: none;
}
.contact-page .wpcf7-form p:nth-of-type(1) input {
  width: 100%;
  height: 52px;
  padding-inline: 1rem;
}
.contact-page .wpcf7-form span[class*=file] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 52px;
  position: relative;
  width: 100%;
}
.contact-page .wpcf7-form span[class*=file]::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  z-index: 0;
  background: repeating-conic-gradient(#242424 0deg 25%, transparent 0deg 50%);
  background-size: 8px 8px;
}
.contact-page .wpcf7-form span[class*=file]::after {
  content: "Wybierz plik";
  position: relative;
  z-index: 1;
  line-height: 52px;
  width: 100%;
  text-align: center;
  background-color: #fff;
}
.contact-page .wpcf7-form p.file-name {
  font: normal normal 400 13px/18px "Roboto Condensed", sans-serif;
}
.contact-page .wpcf7-form .wpcf7-list-item {
  margin-left: 0;
}
.contact-page .wpcf7-form .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  line-height: 14px;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}
.contact-page .wpcf7-form .wpcf7-list-item input[type=checkbox] {
  margin: 0;
}
.contact-page .wpcf7-form input[type=submit] {
  height: 52px;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #000;
  font: normal normal 700 20px/27;
}
.contact-page__form {
  background-color: #f2f2f2;
  padding: 2rem;
}
.contact-page__map iframe {
  width: 100%;
  height: 100%;
}
.contact-page .place {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .contact-page__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .contact-page__grid > .h2 {
    margin-bottom: 0;
  }
  .contact-page__info {
    padding-inline: 1rem;
  }
  .contact-page__map {
    aspect-ratio: 600/450;
  }
}

.page-template-faq #page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.page-template-faq #page .site-footer {
  margin-top: auto;
}

.page-faq__header {
  padding-inline: 2rem;
  margin-bottom: 2rem;
}
.page-faq__header p {
  max-width: 70%;
}
.page-faq__content {
  max-width: 66%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .page-faq__header {
    padding-inline: 0;
  }
  .page-faq__header p {
    max-width: 100%;
  }
  .page-faq .page-faq__content {
    margin-inline: 0;
    max-width: 100%;
  }
}

.single-post__content {
  max-width: 808px;
  margin-inline: auto;
}
.single-post__date {
  color: #707070;
  margin-block: 0 2rem;
}
.single-post__date img {
  -o-object-fit: contain;
     object-fit: contain;
}
.single-post__image-container {
  position: relative;
}
.single-post__image-container::after {
  content: "";
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  width: 6px;
  height: 70%;
  background-color: #bca76b;
}
.single-post__featured-image {
  width: 100%;
  height: auto;
  aspect-ratio: 808/460;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 4rem;
}
.single-post__related-posts {
  margin-block: 2rem 4rem;
  padding-inline: 2rem;
}
.single-post__posts-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.single-post__posts-list .lch-cart__image {
  aspect-ratio: 1;
}
.single-post__posts-list .lch-cart__heading {
  margin-bottom: 6px;
}
.single-post__container h2,
.single-post__container h3,
.single-post__container h4,
.single-post__container h5 {
  margin-bottom: 1rem;
}
.single-post__container h2 {
  position: relative;
}
.single-post__container h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 95px;
  height: 6px;
  background-color: #bca76b;
}
.single-post__container h3 {
  font: normal normal 400 32px/38px "Playfair Display", sans-serif;
}
.single-post__container h4 {
  font: normal normal 400 26px/35px "Playfair Display", sans-serif;
}
.single-post__container h5 {
  font: normal normal 400 22px/30px "Playfair Display", sans-serif;
}
.single-post__container figcaption.blocks-gallery-caption {
  text-align: left;
  font: normal normal 400 14px/19px "Roboto Condensed", sans-serif;
  color: #707070;
}
.single-post__container figcaption.blocks-gallery-caption a {
  font: inherit;
  color: inherit;
  text-decoration: none;
}
.single-post__container a {
  color: #000000;
}
.single-post__container ul {
  list-style: none;
  margin-bottom: 2rem;
}
.single-post__container ul li {
  position: relative;
  margin-bottom: 1rem;
  font: normal normal 400 18px/24px "Roboto Condensed", sans-serif;
  color: #000000;
}
.single-post__container ul li::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 9px;
  height: 6px;
  width: 24px;
  background-color: #bca76b;
}
.single-post__container .wp-block-image a:hover {
  position: relative;
}
.single-post__container .wp-block-image a:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #bca76bbf;
}

.single p.stock.out-of-stock {
  display: none;
}
.single .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.single .wpcf7-form .wp7-acceptance {
  grid-column: 1/-1;
}
.single .wpcf7-form .wp7-acceptance label {
  font: normal normal 400 13px/38px "Roboto Condensed", sans-serif;
}
.single .wpcf7-form .wp7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.single .wpcf7-form .wp7-acceptance .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  line-height: 14px;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  margin-top: 0.5rem;
}
.single .wpcf7-form .wp7-acceptance .wpcf7-list-item input[type=checkbox] {
  margin: 0;
  height: unset;
  width: unset;
}

.why-us-page header p {
  max-width: 70%;
}
.why-us-page__header {
  padding-inline: 2rem;
}
.why-us-page__content {
  width: 66%;
  margin-inline: auto;
}
.why-us-page .customization {
  margin-block: 6rem;
}
.why-us-page .customization__grid {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 5fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.why-us-page .customization__image-wrapper {
  position: sticky;
  top: 2rem;
  -ms-flex-item-align: start;
      align-self: start;
  overflow: hidden;
}
.why-us-page .customization__image-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15%;
  width: 6px;
  height: calc(50% + 3rem);
  background-color: #bca76b;
}
.why-us-page .customization__image-wrapper .glide__track {
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
.why-us-page .customization__image-wrapper .hero__slide-marker {
  margin-top: 1rem;
}
.why-us-page .customization__image {
  width: 100%;
  height: auto;
}
.why-us-page .customization__replacement {
  display: none;
  width: 100%;
  height: auto;
}
.why-us-page .customization .option {
  margin-bottom: 2rem;
}
.why-us-page .customization .option:nth-last-of-type() {
  margin-bottom: 0;
}
.why-us-page .customization .option__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  font: normal normal 400 32px/38px "Playfair Display", sans-serif;
  color: #000;
}
.why-us-page .customization .option__icon {
  width: 27px;
  height: auto;
  margin-top: 6px;
}
.why-us-page .customization .option__icon-wrapper {
  position: relative;
  min-width: 27px;
}
.why-us-page .customization .option__icon-replacement {
  position: absolute;
  left: 0;
  top: 20px;
  height: 6px;
  width: 24px;
  background-color: #bca76b;
}
.why-us-page .customization .option .wysiwyg {
  padding-left: 43px;
}
.why-us-page .customization .option__btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  line-height: 27px;
}
.why-us-page .customer-service {
  margin-block: 6rem;
}
.why-us-page .customer-service__grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
}
.why-us-page .customer-service__image-wrapper {
  position: relative;
}
.why-us-page .customer-service__image-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15%;
  width: 6px;
  height: calc(50% + 3rem);
  background-color: #bca76b;
}
.why-us-page .customer-service__image {
  width: 100%;
  height: auto;
}
.why-us-page .customer-service .banner {
  padding-inline: 4rem;
  margin: 0;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (max-width: 990px) {
  .why-us-page__header {
    padding-inline: 0;
  }
  .why-us-page__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .why-us-page header p {
    max-width: 100%;
  }
}
@media (max-width: 560px) {
  .why-us-page .customization__grid {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
  .why-us-page .customization__image-wrapper {
    position: relative;
    top: 0;
  }
  .why-us-page .customer-service__grid {
    grid-template-columns: 1fr;
  }
  .why-us-page .customer-service__image-wrapper {
    display: none;
  }
}

.page-template-default #content {
  padding-inline: 2rem;
}

.woocommerce-cart table.shop_table button[type=submit],
.woocommerce-cart table.shop_table button[type=submit][disabled] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #ffffff;
  background-color: #242424;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font: normal normal 700 18px/24px "Roboto Condensed", sans-serif;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: auto;
  float: unset;
  border-radius: 0;
}
.woocommerce-cart table.shop_table button[type=submit][name=update_cart],
.woocommerce-cart table.shop_table button[type=submit][disabled][name=update_cart] {
  color: #ffffff;
}
.woocommerce-cart table.shop_table button[type=submit][name=update_cart]:hover,
.woocommerce-cart table.shop_table button[type=submit][disabled][name=update_cart]:hover {
  color: #ffffff;
  background-color: #242424;
}
.woocommerce-cart table.shop_table dl.variation {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-cart table.shop_table dl.variation p {
  margin: 0;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button.button.alt {
  background-color: #bca76b;
  border-radius: 0;
}
.woocommerce-cart a {
  color: #242424;
  border-radius: 0;
}

.woocommerce-page #content table.cart.shop_table td.actions .input-text {
  width: 192px;
  height: 40px;
}
@media (max-width: 767px) {
  .woocommerce-page #content table.cart.shop_table td.actions .input-text {
    width: 48%;
  }
}

.woocommerce-checkout #content {
  padding-inline: 2rem;
}
.woocommerce-checkout .showcoupon {
  color: #242424;
}
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #order_review_heading {
  font-weight: 700;
}
.woocommerce-checkout table.shop_table dl.variation {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-checkout table.shop_table dl.variation p {
  margin: 0;
}
.woocommerce-checkout #customer_details {
  margin-block: 2rem;
  border-radius: 0;
}
.woocommerce-checkout #payment {
  border-radius: 0;
  margin-block: 2rem;
}
.woocommerce-checkout #payment button[type=submit] {
  background-color: #bca76b;
  border-radius: 0;
}
.woocommerce-checkout #payment a {
  color: #242424;
  border-radius: 0;
}
.woocommerce-checkout #customer_details input:not([type=checkbox]) {
  min-height: 52px;
  padding-left: 1rem;
  border: none;
  background-color: #f2f2f2;
}
.woocommerce-checkout #customer_details .col-1 label,
.woocommerce-checkout #customer_details .col-2 label {
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
}
.woocommerce-checkout #customer_details .select2-container,
.woocommerce-checkout #customer_details .select2-selection,
.woocommerce-checkout #customer_details .selection {
  border: none;
  background-color: #f2f2f2;
}
.woocommerce-checkout .select2-dropdown,
.woocommerce-checkout .select2-results > .select2-results__options {
  border: none;
  background-color: #f2f2f2;
}
.woocommerce-checkout .select2-search__field {
  border: none;
}
.woocommerce-checkout form.checkout_coupon input {
  border: 1px solid #242424;
  min-height: 50px;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .woocommerce-checkout form.checkout_coupon input {
    min-height: 48px;
  }
}
.woocommerce-checkout form.checkout_coupon button[type=submit] {
  color: #ffffff;
  background-color: #242424;
  text-decoration: none;
  border-radius: 0;
  padding-block: 1rem;
}

#custom-select-f {
  display: block;
  margin-bottom: 2rem;
}
#custom-select-f .select-box {
  position: relative;
  height: 52px;
  overflow-y: hidden;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
}
#custom-select-f .select-box.active {
  overflow-y: visible;
}
#custom-select-f .select-box.active::after {
  background-image: url(../dist/images/arrow-up.svg);
}
#custom-select-f .select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  z-index: 10;
  pointer-events: none;
  background-image: url(../dist/images/arrow-bottom.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#custom-select-f .options-container {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-height: 52px;
  background-color: #f2f2f2;
}
#custom-select-f .options-container .option {
  padding-inline: 2rem;
  line-height: 18px;
  padding-block: 0.75rem;
}
#custom-select-f .options-container .option.defaultOption {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  padding: 0 1rem;
  background-color: #f2f2f2;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#custom-select-f .options-container .option.defaultOption label,
#custom-select-f .options-container .option.defaultOption .label {
  line-height: 18px;
}
#custom-select-f .options-container label,
#custom-select-f .options-container .label {
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  font-family: "Roboto Condensed", sans-serif;
  margin: 0;
}
#custom-select-f .options-container.active {
  max-height: 300px;
  overflow-y: scroll;
  border-radius: 4px;
  -webkit-box-shadow: 5px 5px 5px #00000011;
          box-shadow: 5px 5px 5px #00000011;
}
#custom-select-f .options-container.active::-webkit-scrollbar {
  width: 12px;
  border-radius: 16px;
}
#custom-select-f .options-container.active::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
}
#custom-select-f .options-container.active::-webkit-scrollbar-thumb {
  background-color: rgba(242, 242, 242, 0.85);
  border: 1px solid #00000040;
  border-radius: 16px;
}
#custom-select-f .options-container input {
  display: none;
}

.p-modal {
  position: fixed;
  inset: 0;
  z-index: 998;
  background-color: #bca76bbf;
  padding-inline: 1rem;
  display: grid;
  place-content: center;
}
.p-modal__btn-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 20px;
  height: 20px;
  padding: 0;
}
.p-modal:not(.show) {
  display: none;
}
.p-modal__content {
  position: relative;
  background-color: #fff;
  padding: 2rem;
}
.p-modal__heading {
  font: normal normal 700 20px/38px "Playfair Display", sans-serif;
  margin-bottom: 2rem;
}
.p-modal .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 0.5rem;
}
.p-modal .wpcf7 p {
  grid-column: 1;
  width: 100%;
  margin: 0;
}
.p-modal .wpcf7 p:nth-of-type(5) {
  grid-column: 2;
  grid-row: 1/5;
  margin-bottom: 0;
}
.p-modal .wpcf7 p:nth-of-type(5) label {
  display: grid;
  grid-template-rows: 28px 1fr;
  height: 100%;
}
.p-modal .wpcf7 p:nth-of-type(5) span {
  display: block;
}
.p-modal .wpcf7 p:nth-of-type(6) {
  grid-column: 1/-1;
  margin-top: 1.5rem;
  position: relative;
}
.p-modal .wpcf7 p:nth-of-type(6) input[type=submit] {
  background-color: #242424;
  color: #ffffff;
}
.p-modal .wpcf7 p:nth-of-type(6) .wpcf7-spinner {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #f2f2f2;
}
.p-modal .wpcf7 p:nth-of-type(6) .wpcf7-spinner::before {
  background-color: #242424;
}
.p-modal .wpcf7 label {
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
}
.p-modal .wpcf7 input {
  height: 52px;
  width: 100%;
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  background-color: #f2f2f2;
  padding-inline: 2rem;
}
.p-modal .wpcf7 input::-webkit-input-placeholder {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000;
}
.p-modal .wpcf7 input::-moz-placeholder {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000;
}
.p-modal .wpcf7 input:-ms-input-placeholder {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000;
}
.p-modal .wpcf7 input::-ms-input-placeholder {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000;
}
.p-modal .wpcf7 input::placeholder {
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  color: #000;
}
.p-modal .wpcf7 textarea {
  width: 100%;
  height: 100%;
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  background-color: #f2f2f2;
  border: none;
  padding: 1rem;
}
@media (max-width: 560px) {
  .p-modal__content {
    max-height: 85vh;
    overflow: auto;
  }
  .p-modal .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 0.5rem;
  }
  .p-modal .wpcf7 p:nth-of-type(5) {
    grid-column: 1;
    grid-row: unset;
    margin-bottom: 0;
  }
}

.woocommerce-account #content {
  padding-inline: 2rem;
}
.woocommerce-account a {
  color: #242424;
}
.woocommerce-account a.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #ffffff;
  background-color: #242424;
  padding: 0.5rem 1rem;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  text-decoration: none;
  font: normal normal 700 18px/24px "Roboto Condensed", sans-serif;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: auto;
  float: unset;
  border-radius: 0;
}
.woocommerce-account .woocommerce-EditAccountForm input {
  border: 1px solid #242424;
  min-height: 36px;
  padding-left: 1rem;
}
.woocommerce-account .woocommerce-EditAccountForm .password-input {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-account .woocommerce-EditAccountForm .show-password-input {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.woocommerce-account .woocommerce-EditAccountForm button[type=submit] {
  color: #ffffff;
  background-color: #242424;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  text-decoration: none;
  font: normal normal 700 18px/24px "Roboto Condensed", sans-serif;
  border-radius: 0;
}

.woocommerce-page .woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.woocommerce-page .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #ffffff;
  background-color: #242424;
  padding: 0.5rem 1rem;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  text-decoration: none;
  font: normal normal 700 18px/24px "Roboto Condensed", sans-serif;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -ms-flex-item-align: center;
      align-self: center;
  margin-left: auto;
  float: unset;
  border-radius: 0;
}

.pswp--animated-in .pswp__bg,
.pswp__img--placeholder--blank {
  background: #bca76b;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  width: 90px;
  height: 36px;
}

.pswp--svg .pswp__button--arrow--right:before,
.pswp__button--arrow--right:before {
  background: url(../dist/images/arrow-right-l.svg) 0 0 no-repeat;
  background-position: right center;
}

.pswp--svg .pswp__button--arrow--left:before,
.pswp__button--arrow--left:before {
  background: url(../dist/images/arrow-left-l.svg) 0 0 no-repeat;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  width: 90px;
  height: 36px;
}

.pswp__button--arrow--left {
  left: 1rem;
}

.pswp__button--arrow--right {
  right: 1rem;
}

.search-page.woocommerce-products-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.woocommerce #content .shop-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
  width: 100%;
  padding-inline: 2rem;
  margin-top: 4rem;
}
.woocommerce #content .shop-wrapper__sidebar {
  position: sticky;
  top: 2rem;
}
.woocommerce #content .shop-wrapper__sidebar h2.h3 {
  margin-bottom: 1rem;
}
.woocommerce #content .shop-wrapper__sidebar-parent {
  font-weight: 700;
}
.woocommerce #content .shop-wrapper__subheading {
  font: normal normal 700 16px/38px "Playfair Display", sans-serif;
}
.woocommerce #content .shop-wrapper__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
}
.woocommerce #content .shop-wrapper__label {
  font: normal normal 400 13px/28px "Roboto Condensed", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 0.5rem;
}
.woocommerce #content .shop-wrapper select {
  height: 53px;
  background-color: #f2f2f2;
  width: 100%;
  border: none;
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  padding-inline: 1rem;
  color: #242424;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../dist/images/arrow-bottom.svg);
  background-position: center right 2rem;
  background-size: 10px 14px;
  background-repeat: no-repeat;
}
.woocommerce #content .shop-wrapper select option {
  color: #242424;
}
.woocommerce #content .shop-wrapper button[type=submit] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}
.woocommerce #content .shop-wrapper .products-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1064px) {
  .woocommerce #content .shop-wrapper .products-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .woocommerce #content .shop-wrapper {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
  .woocommerce #content .shop-wrapper__sidebar {
    position: static;
    margin-bottom: 4rem;
  }
}
@media (max-width: 560px) {
  .woocommerce #content .shop-wrapper .products-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.woocommerce-products-header {
  padding-inline: 2rem;
}
.woocommerce-products-header__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.woocommerce-products-header .woocommerce-ordering {
  margin-top: 2rem;
  grid-column: 2;
  align-self: end;
  justify-self: end;
}
.woocommerce-products-header .woocommerce-ordering select {
  position: relative;
  height: 52px;
  background-color: #f2f2f2;
  border: none;
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
  padding: 0 2rem 0 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../dist/images/arrow-bottom.svg);
  background-position: center right 1rem;
  background-size: 8px 12px;
  background-repeat: no-repeat;
}
.woocommerce-products-header .woocommerce-ordering select option {
  color: #242424;
}
@media (max-width: 767px) {
  .woocommerce-products-header {
    padding-inline: 0;
  }
  .woocommerce-products-header__wrapper {
    grid-template-columns: 1fr;
  }
  .woocommerce-products-header .woocommerce-ordering {
    grid-column: 1;
  }
}

.pagination {
  max-width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-block: 2rem;
}
.pagination .nav-links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .nav-links * + * {
  margin-left: 1rem;
}
.pagination .page-numbers {
  min-width: 37px;
  height: 37px;
  display: grid;
  place-content: center;
  font: normal normal 400 18px/24px "Roboto Condensed", sans-serif;
  color: #242424;
  text-decoration: none;
  background-color: #f2f2f2;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  padding-inline: 0.5rem;
  position: relative;
}
.pagination .page-numbers.next::before, .pagination .page-numbers.prev::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../dist/images/arrow-left.svg);
  background-size: 30%;
  background-position: center;
  background-repeat: no-repeat;
}
.pagination .page-numbers.next::before {
  background-image: url(../dist/images/arrow-right.svg);
}
.pagination .page-numbers.current {
  opacity: 0.3;
}

.woocommerce-page .woocommerce-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-block: 2rem;
}
.woocommerce-page .woocommerce-pagination .nav-links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-page .woocommerce-pagination .nav-links * + * {
  margin-left: 1rem;
}
.woocommerce-page .woocommerce-pagination ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  font: normal normal 400 18px/24px "Roboto Condensed", sans-serif;
  color: #242424;
  text-decoration: none;
  border: none;
}
.woocommerce-page .woocommerce-pagination ul.page-numbers::before, .woocommerce-page .woocommerce-pagination ul.page-numbers::after {
  content: unset;
}
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
  min-width: 37px;
  height: 37px;
  background-color: #f2f2f2;
  border: none;
  display: grid;
  place-content: center;
}
.woocommerce-page .woocommerce-pagination ul.page-numbers li .page-numbers {
  font: normal normal 400 18px/24px "Roboto Condensed", sans-serif;
  color: #242424;
}
.woocommerce-page .woocommerce-pagination ul.page-numbers li .page-numbers.current {
  opacity: 0.2;
}
.woocommerce-page .woocommerce-pagination ul.page-numbers.next, .woocommerce-page .woocommerce-pagination ul.page-numbers.prev {
  padding-inline: 0.5rem;
  position: relative;
}
.woocommerce-page .woocommerce-pagination ul.page-numbers.next::before, .woocommerce-page .woocommerce-pagination ul.page-numbers.prev::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../dist/images/arrow-left.svg);
  background-size: 30%;
  background-position: center;
  background-repeat: no-repeat;
}
.woocommerce-page .woocommerce-pagination ul.page-numbers.next::before {
  background-image: url(../dist/images/arrow-right.svg);
}
.woocommerce-page .woocommerce-pagination ul.page-numbers.current {
  opacity: 0.3;
}

.product-gallery {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.product-gallery .wrapper {
  width: 100%;
  max-width: 100%;
}
.product-gallery .glide .js-photoswipe-init {
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 64px;
  z-index: 1;
  padding: 0;
  border: 0;
}
.product-gallery .glide__track {
  margin-bottom: 2rem;
  max-width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.product-gallery .glide__slides {
  margin: 0;
}
.product-gallery .glide__slide img {
  width: 100%;
  height: auto;
}
.product-gallery .glide__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1rem;
}
.product-gallery .glide__bullet {
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
}
.product-gallery .glide__bullet img {
  width: 100%;
  height: auto;
  aspect-ratio: 242/343;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 767px) {
  .product-gallery .wrapper {
    padding-inline: 2rem;
  }
  .product-gallery .glide__bullets {
    display: grid;
    grid-template-columns: unset;
    grid-auto-flow: column;
    gap: 16px;
    grid-auto-columns: calc(50% - 1.5rem);
    overflow-x: scroll;
    margin-bottom: 2rem;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
  .product-gallery .glide__bullet {
    scroll-snap-align: center;
  }
}

.woocommerce .product-type-simple .product-wrapper,
.woocommerce .product-type-variable .product-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: -webkit-min-content auto;
  grid-template-rows: min-content auto;
  -webkit-column-gap: 8vw;
     -moz-column-gap: 8vw;
          column-gap: 8vw;
  margin-bottom: 10rem;
  padding: 0 2rem;
}
@media (max-width: 1064px) {
  .woocommerce .product-type-simple .product-wrapper,
.woocommerce .product-type-variable .product-wrapper {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
@media (max-width: 767px) {
  .woocommerce .product-type-simple .product-wrapper,
.woocommerce .product-type-variable .product-wrapper {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
}
@media (max-width: 560px) {
  .woocommerce .product-type-simple .product-wrapper,
.woocommerce .product-type-variable .product-wrapper {
    margin-bottom: 6rem;
  }
}

.woocommerce #content div.product div.summary.entry-summary,
.woocommerce-page #content div.product div.summary.entry-summary {
  float: unset;
  width: 100%;
  -ms-flex-item-align: start;
      align-self: start;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .woocommerce #content div.product div.summary.entry-summary,
.woocommerce-page #content div.product div.summary.entry-summary {
    padding-inline: 0.5rem;
  }
}
.woocommerce #content div.product div.summary.entry-summary p.stock,
.woocommerce-page #content div.product div.summary.entry-summary p.stock {
  color: #000000;
}
.woocommerce #content div.product div.summary.entry-summary .product_title.entry-title,
.woocommerce-page #content div.product div.summary.entry-summary .product_title.entry-title {
  font-size: 42px;
  line-height: 45px;
  max-width: 80%;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-product-details__additional-description,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-product-details__additional-description {
  margin-bottom: 2rem;
}
.woocommerce #content div.product div.summary.entry-summary .product-unavailable .ask-about,
.woocommerce-page #content div.product div.summary.entry-summary .product-unavailable .ask-about {
  padding: 0;
  background-color: transparent;
}
.woocommerce #content div.product div.summary.entry-summary .ask-about,
.woocommerce-page #content div.product div.summary.entry-summary .ask-about {
  padding: 0 2rem 2rem;
  background-color: #f2f2f2;
}
.woocommerce #content div.product div.summary.entry-summary .ask-about__label,
.woocommerce-page #content div.product div.summary.entry-summary .ask-about__label {
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
  line-height: 16px;
  margin: 0;
  margin-bottom: 6px;
}
.woocommerce #content div.product div.summary.entry-summary .ask-about__btn,
.woocommerce-page #content div.product div.summary.entry-summary .ask-about__btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: unset;
}
.woocommerce #content div.product div.summary.entry-summary .ask-about__btn::before,
.woocommerce-page #content div.product div.summary.entry-summary .ask-about__btn::before {
  content: "";
  width: 21px;
  height: 21px;
  background-image: url(../dist/images/message.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.woocommerce #content div.product div.summary.entry-summary .ask-about__btn img,
.woocommerce-page #content div.product div.summary.entry-summary .ask-about__btn img {
  -o-object-fit: contain;
     object-fit: contain;
}
.woocommerce #content div.product div.summary.entry-summary > .price,
.woocommerce-page #content div.product div.summary.entry-summary > .price {
  display: none;
}
.woocommerce #content div.product div.summary.entry-summary .single_variation_wrap,
.woocommerce-page #content div.product div.summary.entry-summary .single_variation_wrap {
  background-color: #f2f2f2;
  padding: 0 2rem;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation.single_variation,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation.single_variation {
  padding-block: 0 1rem;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation.single_variation .price,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation.single_variation .price {
  font: normal normal 700 20px/27px "Roboto Condensed", sans-serif;
  color: #000000;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation.single_variation .price ins,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation.single_variation .price ins {
  text-decoration: none;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation.single_variation .label,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation.single_variation .label {
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
  color: #000000;
  margin: 0;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container {
  background-color: #f2f2f2;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container p,
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container a,
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container label,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container p,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container a,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container label {
  line-height: 1;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-subtotal-line .price,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-subtotal-line .price {
  color: #000;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .product-addon-totals,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .product-addon-totals {
  margin-bottom: 0;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-name,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-name {
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
  color: #000000;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-description > p,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-description > p {
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
  color: #000000;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-select,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-select {
  width: 100%;
  height: 52px;
  padding-inline: 1rem;
  border: none;
  font: normal normal 700 20px/27px "Roboto Condensed", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-select option,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-select option {
  font: normal normal 700 20px/27px "Roboto Condensed", sans-serif;
  height: 52px;
  padding: 0.5rem;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .form-row::before,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .form-row::before {
  display: none;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-wrap,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-select,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-select {
  grid-column: span 3;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-image-swatch,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-image-swatch {
  aspect-ratio: 1;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-image-swatch img,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-image-swatch img {
  -webkit-transition: all 0.95s ease-in-out;
  transition: all 0.95s ease-in-out;
  max-width: 100%;
  max-height: unset;
}
.woocommerce #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-image-swatch:hover,
.woocommerce-page #content div.product div.summary.entry-summary .wc-pao-addons-container .wc-pao-addon-image-swatch:hover {
  -webkit-transform: scale(1.5) translateY(-20px);
          transform: scale(1.5) translateY(-20px);
  -webkit-transition: all 0.65s ease-in-out;
  transition: all 0.65s ease-in-out;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  background-color: #f2f2f2;
  padding: 3rem 0 2rem;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart::before, .woocommerce #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart::after,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart::before,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart::after {
  content: unset;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart .quantity,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart .quantity {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex: 2 3 25%;
          flex: 2 3 25%;
  min-width: 60px;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart .quantity::before,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart .quantity::before {
  content: "Ilość: ";
  position: absolute;
  top: -28px;
  left: 0;
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart .quantity .qty,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart .quantity .qty {
  width: 100%;
  height: 52px;
  -ms-flex-negative: 2;
      flex-shrink: 2;
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart button[type=submit],
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-variation-add-to-cart button[type=submit] {
  height: 52px;
  -webkit-box-flex: 4;
      -ms-flex: 4 0 55%;
          flex: 4 0 55%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  background-color: #bca76b;
  border-radius: 0;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .sku_wrapper__label,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .sku_wrapper__label {
  display: block;
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .sku_wrapper__content,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .sku_wrapper__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font: normal normal 700 20px/27px "Roboto Condensed", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .sku_wrapper__content img,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .sku_wrapper__content img {
  -o-object-fit: contain;
     object-fit: contain;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .sku_wrapper__content span,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .sku_wrapper__content span {
  word-break: break-word;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .delivery_time__label,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .delivery_time__label {
  display: block;
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .delivery_time__content,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .delivery_time__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font: normal normal 700 20px/27px "Roboto Condensed", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .delivery_time__content img,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .delivery_time__content img {
  -o-object-fit: contain;
     object-fit: contain;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .posted_in,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .posted_in {
  grid-column: 1/-1;
  line-height: 16px;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .tagged_as,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .tagged_as {
  grid-column: 1/-1;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .posted_in__title,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .posted_in__title {
  display: block;
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary .product_meta .posted_in a,
.woocommerce-page #content div.product div.summary.entry-summary .product_meta .posted_in a {
  font: normal normal 400 11px/14px "Roboto Condensed", sans-serif;
  color: #000000;
  text-decoration: none;
}
.woocommerce #content div.product div.summary.entry-summary table.variations,
.woocommerce-page #content div.product div.summary.entry-summary table.variations {
  padding: 2rem;
  background-color: #f2f2f2;
  margin-bottom: 0;
}
.woocommerce #content div.product div.summary.entry-summary table.variations tbody,
.woocommerce-page #content div.product div.summary.entry-summary table.variations tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.woocommerce #content div.product div.summary.entry-summary table.variations tr,
.woocommerce-page #content div.product div.summary.entry-summary table.variations tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.woocommerce #content div.product div.summary.entry-summary table.variations th.label,
.woocommerce-page #content div.product div.summary.entry-summary table.variations th.label {
  text-align: start;
  line-height: 18px;
}
.woocommerce #content div.product div.summary.entry-summary table.variations th.label label,
.woocommerce-page #content div.product div.summary.entry-summary table.variations th.label label {
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
  color: #000000;
}
.woocommerce #content div.product div.summary.entry-summary table.variations td.value select,
.woocommerce-page #content div.product div.summary.entry-summary table.variations td.value select {
  width: 100%;
  height: 52px;
  padding-inline: 1rem;
  border: none;
  font: normal normal 700 20px/27px "Roboto Condensed", sans-serif;
}
.woocommerce #content div.product div.summary.entry-summary table.variations td.value option,
.woocommerce-page #content div.product div.summary.entry-summary table.variations td.value option {
  height: 52px;
  padding: 0.5rem;
}
.woocommerce #content div.product div.summary.entry-summary table.variations .reset_variations,
.woocommerce-page #content div.product div.summary.entry-summary table.variations .reset_variations {
  color: #242424;
}
@media (max-width: 767px) {
  .woocommerce #content div.product div.summary.entry-summary .product_title.entry-title,
.woocommerce-page #content div.product div.summary.entry-summary .product_title.entry-title {
    max-width: 100%;
    font-size: 36px;
    line-height: 38px;
  }
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-tabs__specification table,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-tabs__specification table {
  margin-bottom: 2rem;
  width: 100%;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-tabs__specification caption,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-tabs__specification caption {
  text-align: left;
  font: normal normal normal 16px/24px "Roboto Condensed", sans-serif;
  letter-spacing: 0px;
  color: #4b4b4b;
  max-width: 80%;
  margin-bottom: 1rem;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-tabs__specification th,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-tabs__specification th {
  text-align: center;
  font: normal normal normal 14px/24px "Roboto Condensed", sans-serif;
  letter-spacing: 0.3px;
  color: #908b87;
  padding-block: 0.75rem;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-tabs__specification tbody > tr,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-tabs__specification tbody > tr {
  background-color: #f2f2f2;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-tabs__specification tr > td:first-child,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-tabs__specification tr > td:first-child {
  text-align: right;
  font-weight: 700;
  width: 33%;
  padding-left: 2rem;
}
.woocommerce #content div.product div.summary.entry-summary .woocommerce-tabs__specification td,
.woocommerce-page #content div.product div.summary.entry-summary .woocommerce-tabs__specification td {
  text-align: left;
  font: normal normal normal 14px/24px "Roboto Condensed", sans-serif;
  letter-spacing: 0px;
  color: #4b4b4b;
  padding: 1rem 0.5rem;
}

.woocommerce-page #content div.product.product-type-simple div.summary.entry-summary form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  background-color: #f2f2f2;
  padding: 3rem 2rem 2rem;
}
.woocommerce-page #content div.product.product-type-simple div.summary.entry-summary form.cart::before, .woocommerce-page #content div.product.product-type-simple div.summary.entry-summary form.cart::after {
  content: unset;
}
.woocommerce-page #content div.product.product-type-simple div.summary.entry-summary form.cart .quantity {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex: 2 3 25%;
          flex: 2 3 25%;
  min-width: 60px;
}
.woocommerce-page #content div.product.product-type-simple div.summary.entry-summary form.cart .quantity::before {
  content: "Ilość: ";
  position: absolute;
  top: -28px;
  left: 0;
  font: normal normal 700 14px/28px "Playfair Display", sans-serif;
}
.woocommerce-page #content div.product.product-type-simple div.summary.entry-summary form.cart .quantity .qty {
  width: 100%;
  height: 52px;
  -ms-flex-negative: 2;
      flex-shrink: 2;
  font: normal normal 700 15px/20px "Roboto Condensed", sans-serif;
}
.woocommerce-page #content div.product.product-type-simple div.summary.entry-summary form.cart button[type=submit] {
  height: 52px;
  -webkit-box-flex: 4;
      -ms-flex: 4 0 55%;
          flex: 4 0 55%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  background-color: #bca76b;
  border-radius: 0;
}

.woocommerce-tabs.wc-tabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}
.woocommerce-tabs.wc-tabs-wrapper h2.h3 {
  font: normal normal 700 20px/38px "Playfair Display", sans-serif;
}
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes {
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 2rem;
  background-color: #f2f2f2;
  border-top: none;
}
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes td,
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes th {
  border-bottom: none;
}
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes th {
  width: 120px;
  text-align: end;
  padding-right: 1rem;
  font: normal normal 700 15px/18px "Roboto Condensed", sans-serif;
}
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes td {
  font: normal normal 400 15px/18px "Roboto Condensed", sans-serif;
  text-align: start;
}
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes td p,
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes td a {
  font: normal normal 400 15px/18px "Roboto Condensed", sans-serif;
  color: #000000;
}
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes tr:nth-child(even) th,
.woocommerce-tabs.wc-tabs-wrapper table.shop_attributes tr:nth-child(even) td {
  background: transparent;
}
.woocommerce-tabs.wc-tabs-wrapper .accordion-wrapper {
  background-color: #f2f2f2;
  padding: 2rem;
}
.woocommerce-tabs.wc-tabs-wrapper .accordion-wrapper .accordion {
  margin-block: 0;
  gap: 1rem;
}
.woocommerce-tabs.wc-tabs-wrapper .accordion-wrapper .accordion__item {
  padding: 0;
}
.woocommerce-tabs.wc-tabs-wrapper .accordion-wrapper .accordion__question {
  font: normal normal 700 17px/24px "Playfair Display", sans-serif;
}
.woocommerce-tabs.wc-tabs-wrapper .accordion-wrapper .accordion__body {
  padding-block: 1rem;
}
.woocommerce-tabs.wc-tabs-wrapper .files-wrapper {
  padding: 2rem;
  background-color: #f2f2f2;
}
.woocommerce-tabs.wc-tabs-wrapper .files-wrapper .download-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font: normal normal 400 15px/13px "Roboto Condensed", sans-serif;
  color: #000000;
}

.woocommerce #content .related {
  padding-inline: 2rem;
}
.woocommerce #content .products-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.woocommerce #content .products-list::before, .woocommerce #content .products-list::after {
  content: unset;
}
@media (max-width: 767px) {
  .woocommerce #content .products-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .woocommerce #content .products-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.single-product .woocommerce-message .wc-forward {
  color: #ffffff;
  background-color: #242424;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font: normal normal 700 18px/24px "Roboto Condensed", sans-serif;
  border-radius: 0;
}

.text-wrapper:target .text .term-description {
  height: 100%;
}

.text-wrapper:target .btn-show {
  display: none;
}

.text-wrapper:target .btn-hide {
  display: block;
}

.text-wrapper {
  width: 100%;
}

.btn-hide {
  display: none;
}

.btn-hide, .btn-show {
  color: #000;
}

.text .term-description {
  line-height: 20px;
  position: relative;
  height: 89px;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}
body.mobile .followCursor {
  display: none;
}
body .followCursor {
  display: block;
  position: fixed;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -webkit-transform: translate(-19px, -19px);
          transform: translate(-19px, -19px);
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999999;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: url(../dist/images/cursor.svg) -4 -4, auto;
}

:root {
  --wc-blue: #242424;
}

/*# sourceMappingURL=style.css.map*/