/*!***********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/photoswipe/dist/photoswipe.css ***!
  \***********************************************************************************************/
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

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

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

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

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/*!**************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./assets/scss/main.scss ***!
  \**************************************************************************************************************************************************************************************/
@charset "UTF-8";
@font-face {
  font-family: "Barlow";
  src: url(Barlow-Thin.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-ThinItalic.woff2) format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-ExtraLight.woff2) format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-ExtraLightItalic.woff2) format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-LightItalic.woff2) format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-Italic.woff2) format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-MediumItalic.woff2) format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-SemiBoldItalic.woff2) format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-BoldItalic.woff2) format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-ExtraBold.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-ExtraBoldItalic.woff2) format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-Black.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(Barlow-BlackItalic.woff2) format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  max-width: 100%;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html #wpadminbar {
  position: fixed;
}

body {
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Barlow", san-serif;
}
body.hidden {
  overflow: hidden;
}

.section {
  position: relative;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.container.container-gt > .row > .col-auto > *[class*=wp-block-] {
  margin-bottom: 28px;
}

.overflow-hidden {
  overflow: hidden !important;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
.container {
  width: 100%;
  max-width: 1920px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 1400px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.container--full {
  max-width: 100%;
}
.container--small {
  max-width: 720px;
}
.container--normal {
  max-width: 1420px;
}
.container > div {
  width: 100%;
}
.container .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  margin-left: calc(var(--bs-gutter-x) / -2);
  margin-right: calc(var(--bs-gutter-x) / -2);
  width: calc(100% + var(--bs-gutter-x));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1400px) {
  .container .row {
    --bs-gutter-x: 60px;
  }
}
@media (max-width: 767px) {
  .container .row {
    --bs-gutter-x: 15px;
    margin-left: calc(var(--bs-gutter-x) / -2);
    margin-right: calc(var(--bs-gutter-x) / -2);
    width: calc(100% + var(--bs-gutter-x));
  }
}
.container .col-auto {
  padding-left: calc(var(--bs-gutter-x) / 2);
  padding-right: calc(var(--bs-gutter-x) / 2);
  width: 100%;
}
@media (max-width: 767px) {
  .container .col-auto {
    padding-left: calc(var(--bs-gutter-x) / 2);
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
}
.container--left-offset {
  overflow: hidden;
}
@media (min-width: 1400px) {
  .container--left-offset {
    position: relative;
    width: 100%;
    margin-right: 0;
    padding: 0 0 0 30px;
    max-width: 100%;
    overflow: hidden;
  }
}
@media (min-width: 1400px) and (max-width: 991px) {
  .container--left-offset .row {
    margin-left: calc(var(--bs-gutter-x) / -2);
    margin-right: calc(var(--bs-gutter-x) / -2);
    width: calc(100% + var(--bs-gutter-x));
  }
}
@media (min-width: 1400px) and (max-width: 991px) {
  .container--left-offset .col-auto {
    padding-left: calc(var(--bs-gutter-x) / 2);
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
}
@media (min-width: 1400px) {
  .container--right-offset {
    position: relative;
    width: calc(100% - ((100% - 1920px) / 2 + 30px));
    margin-right: max(30px, (100% - 1920px) / 2 + 30px);
    margin-left: 0;
    max-width: 100%;
    padding: 0;
  }
  .container--right-offset .row {
    margin: 0;
  }
}
@media (min-width: 1400px) and (max-width: 991px) {
  .container--right-offset .row {
    margin-left: calc(var(--bs-gutter-x) / -2);
    margin-right: calc(var(--bs-gutter-x) / -2);
    width: calc(100% + var(--bs-gutter-x));
  }
}
@media (min-width: 1400px) {
  .container--right-offset .col-auto {
    padding: 0;
  }
}
@media (min-width: 1400px) and (max-width: 991px) {
  .container--right-offset .col-auto {
    padding-left: calc(var(--bs-gutter-x) / 2);
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
}
@media (max-width: 991px) {
  .container--left-offset {
    padding-right: 0;
  }
}

.w-100 {
  width: 100%;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

@media (max-width: 991px) {
  .d-mobile-none {
    display: none !important;
  }
  .d-mobile-block {
    display: block !important;
  }
  .d-mobile-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .d-tablet-none {
    display: none !important;
  }
  .d-tablet-block {
    display: block !important;
  }
  .d-tablet-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-desktop-none {
    display: none !important;
  }
  .d-desktop-block {
    display: block !important;
  }
  .d-desktop-flex {
    display: flex !important;
  }
}
.d-none {
  display: none !important;
}

.g-0 {
  --bs-gutter-x: 0;
}

.g-1 {
  --bs-gutter-x: 0.25rem;
}

.g-2 {
  --bs-gutter-x: 0.5rem;
}

.g-3 {
  --bs-gutter-x: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 3rem;
}

.primary-button {
  border-radius: 256px;
  max-width: 240px;
  width: 100%;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 24px;
}
.primary-button:after {
  content: "";
  background: #FFFFFF;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
  width: 16px;
  height: 16px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .primary-button {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .only-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .mobile-spacer {
    height: 50px !important;
  }
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal !important;
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  overflow-wrap: normal !important;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.image-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0196078431);
  position: absolute;
  z-index: 1;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .post-type-archive-product .image-overlay.mobile-slider {
    display: none;
  }
}

.heading-1 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-1 {
    font-size: 5rem;
    line-height: 88px;
  }
}
@media (max-width: 767px) {
  .heading-1 {
    font-size: 2.5rem;
    line-height: 48px;
  }
}

.heading-2 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-2 {
    font-size: 3rem;
    line-height: 56px;
  }
}
@media (max-width: 767px) {
  .heading-2 {
    font-size: 2.25rem;
    line-height: 44px;
  }
}

.heading-3 {
  font-weight: 500;
}
@media (min-width: 768px) {
  .heading-3 {
    font-size: 2.5rem;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .heading-3 {
    font-size: 2rem;
    line-height: 40px;
  }
}

.heading-4 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-4 {
    font-size: 2rem;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .heading-4 {
    font-size: 1.5rem;
    line-height: 32px;
  }
}

.heading-5 {
  font-weight: 700;
}
@media (min-width: 768px) {
  .heading-5 {
    font-size: 1.25rem;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .heading-5 {
    font-size: 1.125rem;
    line-height: 24px;
  }
}

.heading-6 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
}

.tagline {
  font-weight: 400;
}
@media (min-width: 768px) {
  .tagline {
    font-size: 1.25rem;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .tagline {
    font-size: 1.125rem;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .mobile-heading-1 {
    font-size: 2.5rem;
    line-height: 48px;
    font-weight: 700;
  }
  .mobile-heading-2 {
    font-size: 2.25rem;
    line-height: 44px;
    font-weight: 700;
  }
  .mobile-heading-3 {
    font-size: 2rem;
    line-height: 40px;
    font-weight: 700;
  }
  .mobile-heading-4 {
    font-size: 1.5rem;
    line-height: 32px;
    font-weight: 700;
  }
  .mobile-heading-5 {
    font-size: 1.125rem;
    line-height: 24px;
    font-weight: 700;
  }
}
.text-large {
  font-size: 1.25rem;
  line-height: 28px;
}

.text-medium {
  font-size: 1.125rem;
  line-height: 24px;
}

.text-regular {
  font-size: 1rem;
  line-height: 24px;
}

.text-small {
  font-size: 0.875rem;
  line-height: 20px;
}

.text-tiny {
  font-size: 0.75rem;
  line-height: 16px;
}

@media (max-width: 991px) {
  .mobile-text-large {
    font-size: 1.25rem !important;
    line-height: 28px !important;
  }
  .mobile-text-medium {
    font-size: 1.125rem !important;
    line-height: 24px !important;
  }
  .mobile-text-regular {
    font-size: 1rem !important;
    line-height: 24px !important;
  }
  .mobile-text-small {
    font-size: 0.875rem !important;
    line-height: 20px !important;
  }
  .mobile-text-tiny {
    font-size: 0.75rem !important;
    line-height: 16px !important;
  }
}
@media (min-width: 992px) {
  .desktop-text-large {
    font-size: 1.25rem !important;
    line-height: 28px !important;
  }
  .desktop-text-medium {
    font-size: 1.125rem !important;
    line-height: 24px !important;
  }
  .desktop-text-regular {
    font-size: 1rem !important;
    line-height: 24px !important;
  }
  .desktop-text-small {
    font-size: 0.875rem !important;
    line-height: 20px !important;
  }
  .desktop-text-tiny {
    font-size: 0.75rem !important;
    line-height: 16px !important;
  }
}
.bg-primary {
  background-color: #000000;
}

.bg-secondary {
  background-color: #96710F;
}

.bg-background {
  background-color: #FFFFFF;
}

.bg-footer-background {
  background-color: #0D1A0F;
}

.bg-button-primary {
  background-color: #000000;
}

.bg-button-secondary {
  background-color: #96710F;
}

.bg-text-primary {
  background-color: #000000;
}

.bg-text-secondary {
  background-color: #4A4A4A;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-neutral-lightest-hover {
  background-color: #FAFAFA;
}

.bg-neutral-lightest {
  background-color: #EEEEEE;
}

.bg-neutral-lighter {
  background-color: #CCCCCC;
}

.bg-neutral-light {
  background-color: #AAAAAA;
}

.bg-neutral {
  background-color: #666666;
}

.bg-neutral-dark {
  background-color: #444444;
}

.bg-neutral-darker {
  background-color: #222222;
}

.bg-black {
  background-color: #000000;
}

.bg-red-alert {
  background-color: #D63230;
}

.bg-green-alert {
  background-color: #337357;
}

.primary {
  color: #000000;
}

.hover\:primary:hover {
  color: #000000;
}

.secondary {
  color: #96710F;
}

.hover\:secondary:hover {
  color: #96710F;
}

.background {
  color: #FFFFFF;
}

.hover\:background:hover {
  color: #FFFFFF;
}

.footer-background {
  color: #0D1A0F;
}

.hover\:footer-background:hover {
  color: #0D1A0F;
}

.button-primary {
  color: #000000;
}

.hover\:button-primary:hover {
  color: #000000;
}

.button-secondary {
  color: #96710F;
}

.hover\:button-secondary:hover {
  color: #96710F;
}

.text-primary {
  color: #000000;
}

.hover\:text-primary:hover {
  color: #000000;
}

.text-secondary {
  color: #4A4A4A;
}

.hover\:text-secondary:hover {
  color: #4A4A4A;
}

.white {
  color: #FFFFFF;
}

.hover\:white:hover {
  color: #FFFFFF;
}

.neutral-lightest-hover {
  color: #FAFAFA;
}

.hover\:neutral-lightest-hover:hover {
  color: #FAFAFA;
}

.neutral-lightest {
  color: #EEEEEE;
}

.hover\:neutral-lightest:hover {
  color: #EEEEEE;
}

.neutral-lighter {
  color: #CCCCCC;
}

.hover\:neutral-lighter:hover {
  color: #CCCCCC;
}

.neutral-light {
  color: #AAAAAA;
}

.hover\:neutral-light:hover {
  color: #AAAAAA;
}

.neutral {
  color: #666666;
}

.hover\:neutral:hover {
  color: #666666;
}

.neutral-dark {
  color: #444444;
}

.hover\:neutral-dark:hover {
  color: #444444;
}

.neutral-darker {
  color: #222222;
}

.hover\:neutral-darker:hover {
  color: #222222;
}

.black {
  color: #000000;
}

.hover\:black:hover {
  color: #000000;
}

.red-alert {
  color: #D63230;
}

.hover\:red-alert:hover {
  color: #D63230;
}

.green-alert {
  color: #337357;
}

.hover\:green-alert:hover {
  color: #337357;
}

.border-primary {
  border-color: #000000;
}

.border-secondary {
  border-color: #96710F;
}

.border-background {
  border-color: #FFFFFF;
}

.border-footer-background {
  border-color: #0D1A0F;
}

.border-button-primary {
  border-color: #000000;
}

.border-button-secondary {
  border-color: #96710F;
}

.border-text-primary {
  border-color: #000000;
}

.border-text-secondary {
  border-color: #4A4A4A;
}

.border-white {
  border-color: #FFFFFF;
}

.border-neutral-lightest-hover {
  border-color: #FAFAFA;
}

.border-neutral-lightest {
  border-color: #EEEEEE;
}

.border-neutral-lighter {
  border-color: #CCCCCC;
}

.border-neutral-light {
  border-color: #AAAAAA;
}

.border-neutral {
  border-color: #666666;
}

.border-neutral-dark {
  border-color: #444444;
}

.border-neutral-darker {
  border-color: #222222;
}

.border-black {
  border-color: #000000;
}

.border-red-alert {
  border-color: #D63230;
}

.border-green-alert {
  border-color: #337357;
}

.btn-primary {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: black;
}

.btn-secondary {
  background-color: #96710F;
  color: #FFFFFF;
}
.btn-secondary:hover {
  background-color: rgb(103.6363636364, 78.0727272727, 10.3636363636);
}

.bg-primary-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-primary-10 {
  color: rgba(0, 0, 0, 0.1);
}

.border-primary-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.bg-primary-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-primary-20 {
  color: rgba(0, 0, 0, 0.2);
}

.border-primary-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.bg-primary-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.text-primary-30 {
  color: rgba(0, 0, 0, 0.3);
}

.border-primary-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-primary-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-primary-40 {
  color: rgba(0, 0, 0, 0.4);
}

.border-primary-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.bg-primary-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-primary-50 {
  color: rgba(0, 0, 0, 0.5);
}

.border-primary-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.bg-primary-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.text-primary-60 {
  color: rgba(0, 0, 0, 0.6);
}

.border-primary-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.bg-primary-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-primary-70 {
  color: rgba(0, 0, 0, 0.7);
}

.border-primary-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.bg-primary-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-primary-80 {
  color: rgba(0, 0, 0, 0.8);
}

.border-primary-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.bg-primary-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-primary-90 {
  color: rgba(0, 0, 0, 0.9);
}

.border-primary-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.bg-secondary-10 {
  background-color: rgba(150, 113, 15, 0.1);
}

.text-secondary-10 {
  color: rgba(150, 113, 15, 0.1);
}

.border-secondary-10 {
  border-color: rgba(150, 113, 15, 0.1);
}

.bg-secondary-20 {
  background-color: rgba(150, 113, 15, 0.2);
}

.text-secondary-20 {
  color: rgba(150, 113, 15, 0.2);
}

.border-secondary-20 {
  border-color: rgba(150, 113, 15, 0.2);
}

.bg-secondary-30 {
  background-color: rgba(150, 113, 15, 0.3);
}

.text-secondary-30 {
  color: rgba(150, 113, 15, 0.3);
}

.border-secondary-30 {
  border-color: rgba(150, 113, 15, 0.3);
}

.bg-secondary-40 {
  background-color: rgba(150, 113, 15, 0.4);
}

.text-secondary-40 {
  color: rgba(150, 113, 15, 0.4);
}

.border-secondary-40 {
  border-color: rgba(150, 113, 15, 0.4);
}

.bg-secondary-50 {
  background-color: rgba(150, 113, 15, 0.5);
}

.text-secondary-50 {
  color: rgba(150, 113, 15, 0.5);
}

.border-secondary-50 {
  border-color: rgba(150, 113, 15, 0.5);
}

.bg-secondary-60 {
  background-color: rgba(150, 113, 15, 0.6);
}

.text-secondary-60 {
  color: rgba(150, 113, 15, 0.6);
}

.border-secondary-60 {
  border-color: rgba(150, 113, 15, 0.6);
}

.bg-secondary-70 {
  background-color: rgba(150, 113, 15, 0.7);
}

.text-secondary-70 {
  color: rgba(150, 113, 15, 0.7);
}

.border-secondary-70 {
  border-color: rgba(150, 113, 15, 0.7);
}

.bg-secondary-80 {
  background-color: rgba(150, 113, 15, 0.8);
}

.text-secondary-80 {
  color: rgba(150, 113, 15, 0.8);
}

.border-secondary-80 {
  border-color: rgba(150, 113, 15, 0.8);
}

.bg-secondary-90 {
  background-color: rgba(150, 113, 15, 0.9);
}

.text-secondary-90 {
  color: rgba(150, 113, 15, 0.9);
}

.border-secondary-90 {
  border-color: rgba(150, 113, 15, 0.9);
}

.bg-background-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-background-10 {
  color: rgba(255, 255, 255, 0.1);
}

.border-background-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-background-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.text-background-20 {
  color: rgba(255, 255, 255, 0.2);
}

.border-background-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-background-30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.text-background-30 {
  color: rgba(255, 255, 255, 0.3);
}

.border-background-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-background-40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.text-background-40 {
  color: rgba(255, 255, 255, 0.4);
}

.border-background-40 {
  border-color: rgba(255, 255, 255, 0.4);
}

.bg-background-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.text-background-50 {
  color: rgba(255, 255, 255, 0.5);
}

.border-background-50 {
  border-color: rgba(255, 255, 255, 0.5);
}

.bg-background-60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.text-background-60 {
  color: rgba(255, 255, 255, 0.6);
}

.border-background-60 {
  border-color: rgba(255, 255, 255, 0.6);
}

.bg-background-70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.text-background-70 {
  color: rgba(255, 255, 255, 0.7);
}

.border-background-70 {
  border-color: rgba(255, 255, 255, 0.7);
}

.bg-background-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.text-background-80 {
  color: rgba(255, 255, 255, 0.8);
}

.border-background-80 {
  border-color: rgba(255, 255, 255, 0.8);
}

.bg-background-90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.text-background-90 {
  color: rgba(255, 255, 255, 0.9);
}

.border-background-90 {
  border-color: rgba(255, 255, 255, 0.9);
}

.bg-footer-background-10 {
  background-color: rgba(13, 26, 15, 0.1);
}

.text-footer-background-10 {
  color: rgba(13, 26, 15, 0.1);
}

.border-footer-background-10 {
  border-color: rgba(13, 26, 15, 0.1);
}

.bg-footer-background-20 {
  background-color: rgba(13, 26, 15, 0.2);
}

.text-footer-background-20 {
  color: rgba(13, 26, 15, 0.2);
}

.border-footer-background-20 {
  border-color: rgba(13, 26, 15, 0.2);
}

.bg-footer-background-30 {
  background-color: rgba(13, 26, 15, 0.3);
}

.text-footer-background-30 {
  color: rgba(13, 26, 15, 0.3);
}

.border-footer-background-30 {
  border-color: rgba(13, 26, 15, 0.3);
}

.bg-footer-background-40 {
  background-color: rgba(13, 26, 15, 0.4);
}

.text-footer-background-40 {
  color: rgba(13, 26, 15, 0.4);
}

.border-footer-background-40 {
  border-color: rgba(13, 26, 15, 0.4);
}

.bg-footer-background-50 {
  background-color: rgba(13, 26, 15, 0.5);
}

.text-footer-background-50 {
  color: rgba(13, 26, 15, 0.5);
}

.border-footer-background-50 {
  border-color: rgba(13, 26, 15, 0.5);
}

.bg-footer-background-60 {
  background-color: rgba(13, 26, 15, 0.6);
}

.text-footer-background-60 {
  color: rgba(13, 26, 15, 0.6);
}

.border-footer-background-60 {
  border-color: rgba(13, 26, 15, 0.6);
}

.bg-footer-background-70 {
  background-color: rgba(13, 26, 15, 0.7);
}

.text-footer-background-70 {
  color: rgba(13, 26, 15, 0.7);
}

.border-footer-background-70 {
  border-color: rgba(13, 26, 15, 0.7);
}

.bg-footer-background-80 {
  background-color: rgba(13, 26, 15, 0.8);
}

.text-footer-background-80 {
  color: rgba(13, 26, 15, 0.8);
}

.border-footer-background-80 {
  border-color: rgba(13, 26, 15, 0.8);
}

.bg-footer-background-90 {
  background-color: rgba(13, 26, 15, 0.9);
}

.text-footer-background-90 {
  color: rgba(13, 26, 15, 0.9);
}

.border-footer-background-90 {
  border-color: rgba(13, 26, 15, 0.9);
}

.bg-button-primary-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-button-primary-10 {
  color: rgba(0, 0, 0, 0.1);
}

.border-button-primary-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.bg-button-primary-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-button-primary-20 {
  color: rgba(0, 0, 0, 0.2);
}

.border-button-primary-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.bg-button-primary-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.text-button-primary-30 {
  color: rgba(0, 0, 0, 0.3);
}

.border-button-primary-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-button-primary-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-button-primary-40 {
  color: rgba(0, 0, 0, 0.4);
}

.border-button-primary-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.bg-button-primary-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-button-primary-50 {
  color: rgba(0, 0, 0, 0.5);
}

.border-button-primary-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.bg-button-primary-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.text-button-primary-60 {
  color: rgba(0, 0, 0, 0.6);
}

.border-button-primary-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.bg-button-primary-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-button-primary-70 {
  color: rgba(0, 0, 0, 0.7);
}

.border-button-primary-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.bg-button-primary-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-button-primary-80 {
  color: rgba(0, 0, 0, 0.8);
}

.border-button-primary-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.bg-button-primary-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-button-primary-90 {
  color: rgba(0, 0, 0, 0.9);
}

.border-button-primary-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.bg-button-secondary-10 {
  background-color: rgba(150, 113, 15, 0.1);
}

.text-button-secondary-10 {
  color: rgba(150, 113, 15, 0.1);
}

.border-button-secondary-10 {
  border-color: rgba(150, 113, 15, 0.1);
}

.bg-button-secondary-20 {
  background-color: rgba(150, 113, 15, 0.2);
}

.text-button-secondary-20 {
  color: rgba(150, 113, 15, 0.2);
}

.border-button-secondary-20 {
  border-color: rgba(150, 113, 15, 0.2);
}

.bg-button-secondary-30 {
  background-color: rgba(150, 113, 15, 0.3);
}

.text-button-secondary-30 {
  color: rgba(150, 113, 15, 0.3);
}

.border-button-secondary-30 {
  border-color: rgba(150, 113, 15, 0.3);
}

.bg-button-secondary-40 {
  background-color: rgba(150, 113, 15, 0.4);
}

.text-button-secondary-40 {
  color: rgba(150, 113, 15, 0.4);
}

.border-button-secondary-40 {
  border-color: rgba(150, 113, 15, 0.4);
}

.bg-button-secondary-50 {
  background-color: rgba(150, 113, 15, 0.5);
}

.text-button-secondary-50 {
  color: rgba(150, 113, 15, 0.5);
}

.border-button-secondary-50 {
  border-color: rgba(150, 113, 15, 0.5);
}

.bg-button-secondary-60 {
  background-color: rgba(150, 113, 15, 0.6);
}

.text-button-secondary-60 {
  color: rgba(150, 113, 15, 0.6);
}

.border-button-secondary-60 {
  border-color: rgba(150, 113, 15, 0.6);
}

.bg-button-secondary-70 {
  background-color: rgba(150, 113, 15, 0.7);
}

.text-button-secondary-70 {
  color: rgba(150, 113, 15, 0.7);
}

.border-button-secondary-70 {
  border-color: rgba(150, 113, 15, 0.7);
}

.bg-button-secondary-80 {
  background-color: rgba(150, 113, 15, 0.8);
}

.text-button-secondary-80 {
  color: rgba(150, 113, 15, 0.8);
}

.border-button-secondary-80 {
  border-color: rgba(150, 113, 15, 0.8);
}

.bg-button-secondary-90 {
  background-color: rgba(150, 113, 15, 0.9);
}

.text-button-secondary-90 {
  color: rgba(150, 113, 15, 0.9);
}

.border-button-secondary-90 {
  border-color: rgba(150, 113, 15, 0.9);
}

.bg-text-primary-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-text-primary-10 {
  color: rgba(0, 0, 0, 0.1);
}

.border-text-primary-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.bg-text-primary-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-text-primary-20 {
  color: rgba(0, 0, 0, 0.2);
}

.border-text-primary-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.bg-text-primary-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.text-text-primary-30 {
  color: rgba(0, 0, 0, 0.3);
}

.border-text-primary-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-text-primary-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-text-primary-40 {
  color: rgba(0, 0, 0, 0.4);
}

.border-text-primary-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.bg-text-primary-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-text-primary-50 {
  color: rgba(0, 0, 0, 0.5);
}

.border-text-primary-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.bg-text-primary-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.text-text-primary-60 {
  color: rgba(0, 0, 0, 0.6);
}

.border-text-primary-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.bg-text-primary-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-text-primary-70 {
  color: rgba(0, 0, 0, 0.7);
}

.border-text-primary-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.bg-text-primary-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-text-primary-80 {
  color: rgba(0, 0, 0, 0.8);
}

.border-text-primary-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.bg-text-primary-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-text-primary-90 {
  color: rgba(0, 0, 0, 0.9);
}

.border-text-primary-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.bg-text-secondary-10 {
  background-color: rgba(74, 74, 74, 0.1);
}

.text-text-secondary-10 {
  color: rgba(74, 74, 74, 0.1);
}

.border-text-secondary-10 {
  border-color: rgba(74, 74, 74, 0.1);
}

.bg-text-secondary-20 {
  background-color: rgba(74, 74, 74, 0.2);
}

.text-text-secondary-20 {
  color: rgba(74, 74, 74, 0.2);
}

.border-text-secondary-20 {
  border-color: rgba(74, 74, 74, 0.2);
}

.bg-text-secondary-30 {
  background-color: rgba(74, 74, 74, 0.3);
}

.text-text-secondary-30 {
  color: rgba(74, 74, 74, 0.3);
}

.border-text-secondary-30 {
  border-color: rgba(74, 74, 74, 0.3);
}

.bg-text-secondary-40 {
  background-color: rgba(74, 74, 74, 0.4);
}

.text-text-secondary-40 {
  color: rgba(74, 74, 74, 0.4);
}

.border-text-secondary-40 {
  border-color: rgba(74, 74, 74, 0.4);
}

.bg-text-secondary-50 {
  background-color: rgba(74, 74, 74, 0.5);
}

.text-text-secondary-50 {
  color: rgba(74, 74, 74, 0.5);
}

.border-text-secondary-50 {
  border-color: rgba(74, 74, 74, 0.5);
}

.bg-text-secondary-60 {
  background-color: rgba(74, 74, 74, 0.6);
}

.text-text-secondary-60 {
  color: rgba(74, 74, 74, 0.6);
}

.border-text-secondary-60 {
  border-color: rgba(74, 74, 74, 0.6);
}

.bg-text-secondary-70 {
  background-color: rgba(74, 74, 74, 0.7);
}

.text-text-secondary-70 {
  color: rgba(74, 74, 74, 0.7);
}

.border-text-secondary-70 {
  border-color: rgba(74, 74, 74, 0.7);
}

.bg-text-secondary-80 {
  background-color: rgba(74, 74, 74, 0.8);
}

.text-text-secondary-80 {
  color: rgba(74, 74, 74, 0.8);
}

.border-text-secondary-80 {
  border-color: rgba(74, 74, 74, 0.8);
}

.bg-text-secondary-90 {
  background-color: rgba(74, 74, 74, 0.9);
}

.text-text-secondary-90 {
  color: rgba(74, 74, 74, 0.9);
}

.border-text-secondary-90 {
  border-color: rgba(74, 74, 74, 0.9);
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-white-10 {
  color: rgba(255, 255, 255, 0.1);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.bg-white-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.text-white-20 {
  color: rgba(255, 255, 255, 0.2);
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-white-30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.text-white-30 {
  color: rgba(255, 255, 255, 0.3);
}

.border-white-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-white-40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.text-white-40 {
  color: rgba(255, 255, 255, 0.4);
}

.border-white-40 {
  border-color: rgba(255, 255, 255, 0.4);
}

.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.border-white-50 {
  border-color: rgba(255, 255, 255, 0.5);
}

.bg-white-60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.border-white-60 {
  border-color: rgba(255, 255, 255, 0.6);
}

.bg-white-70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.border-white-70 {
  border-color: rgba(255, 255, 255, 0.7);
}

.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.border-white-80 {
  border-color: rgba(255, 255, 255, 0.8);
}

.bg-white-90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.border-white-90 {
  border-color: rgba(255, 255, 255, 0.9);
}

.bg-neutral-lightest-hover-10 {
  background-color: rgba(250, 250, 250, 0.1);
}

.text-neutral-lightest-hover-10 {
  color: rgba(250, 250, 250, 0.1);
}

.border-neutral-lightest-hover-10 {
  border-color: rgba(250, 250, 250, 0.1);
}

.bg-neutral-lightest-hover-20 {
  background-color: rgba(250, 250, 250, 0.2);
}

.text-neutral-lightest-hover-20 {
  color: rgba(250, 250, 250, 0.2);
}

.border-neutral-lightest-hover-20 {
  border-color: rgba(250, 250, 250, 0.2);
}

.bg-neutral-lightest-hover-30 {
  background-color: rgba(250, 250, 250, 0.3);
}

.text-neutral-lightest-hover-30 {
  color: rgba(250, 250, 250, 0.3);
}

.border-neutral-lightest-hover-30 {
  border-color: rgba(250, 250, 250, 0.3);
}

.bg-neutral-lightest-hover-40 {
  background-color: rgba(250, 250, 250, 0.4);
}

.text-neutral-lightest-hover-40 {
  color: rgba(250, 250, 250, 0.4);
}

.border-neutral-lightest-hover-40 {
  border-color: rgba(250, 250, 250, 0.4);
}

.bg-neutral-lightest-hover-50 {
  background-color: rgba(250, 250, 250, 0.5);
}

.text-neutral-lightest-hover-50 {
  color: rgba(250, 250, 250, 0.5);
}

.border-neutral-lightest-hover-50 {
  border-color: rgba(250, 250, 250, 0.5);
}

.bg-neutral-lightest-hover-60 {
  background-color: rgba(250, 250, 250, 0.6);
}

.text-neutral-lightest-hover-60 {
  color: rgba(250, 250, 250, 0.6);
}

.border-neutral-lightest-hover-60 {
  border-color: rgba(250, 250, 250, 0.6);
}

.bg-neutral-lightest-hover-70 {
  background-color: rgba(250, 250, 250, 0.7);
}

.text-neutral-lightest-hover-70 {
  color: rgba(250, 250, 250, 0.7);
}

.border-neutral-lightest-hover-70 {
  border-color: rgba(250, 250, 250, 0.7);
}

.bg-neutral-lightest-hover-80 {
  background-color: rgba(250, 250, 250, 0.8);
}

.text-neutral-lightest-hover-80 {
  color: rgba(250, 250, 250, 0.8);
}

.border-neutral-lightest-hover-80 {
  border-color: rgba(250, 250, 250, 0.8);
}

.bg-neutral-lightest-hover-90 {
  background-color: rgba(250, 250, 250, 0.9);
}

.text-neutral-lightest-hover-90 {
  color: rgba(250, 250, 250, 0.9);
}

.border-neutral-lightest-hover-90 {
  border-color: rgba(250, 250, 250, 0.9);
}

.bg-neutral-lightest-10 {
  background-color: rgba(238, 238, 238, 0.1);
}

.text-neutral-lightest-10 {
  color: rgba(238, 238, 238, 0.1);
}

.border-neutral-lightest-10 {
  border-color: rgba(238, 238, 238, 0.1);
}

.bg-neutral-lightest-20 {
  background-color: rgba(238, 238, 238, 0.2);
}

.text-neutral-lightest-20 {
  color: rgba(238, 238, 238, 0.2);
}

.border-neutral-lightest-20 {
  border-color: rgba(238, 238, 238, 0.2);
}

.bg-neutral-lightest-30 {
  background-color: rgba(238, 238, 238, 0.3);
}

.text-neutral-lightest-30 {
  color: rgba(238, 238, 238, 0.3);
}

.border-neutral-lightest-30 {
  border-color: rgba(238, 238, 238, 0.3);
}

.bg-neutral-lightest-40 {
  background-color: rgba(238, 238, 238, 0.4);
}

.text-neutral-lightest-40 {
  color: rgba(238, 238, 238, 0.4);
}

.border-neutral-lightest-40 {
  border-color: rgba(238, 238, 238, 0.4);
}

.bg-neutral-lightest-50 {
  background-color: rgba(238, 238, 238, 0.5);
}

.text-neutral-lightest-50 {
  color: rgba(238, 238, 238, 0.5);
}

.border-neutral-lightest-50 {
  border-color: rgba(238, 238, 238, 0.5);
}

.bg-neutral-lightest-60 {
  background-color: rgba(238, 238, 238, 0.6);
}

.text-neutral-lightest-60 {
  color: rgba(238, 238, 238, 0.6);
}

.border-neutral-lightest-60 {
  border-color: rgba(238, 238, 238, 0.6);
}

.bg-neutral-lightest-70 {
  background-color: rgba(238, 238, 238, 0.7);
}

.text-neutral-lightest-70 {
  color: rgba(238, 238, 238, 0.7);
}

.border-neutral-lightest-70 {
  border-color: rgba(238, 238, 238, 0.7);
}

.bg-neutral-lightest-80 {
  background-color: rgba(238, 238, 238, 0.8);
}

.text-neutral-lightest-80 {
  color: rgba(238, 238, 238, 0.8);
}

.border-neutral-lightest-80 {
  border-color: rgba(238, 238, 238, 0.8);
}

.bg-neutral-lightest-90 {
  background-color: rgba(238, 238, 238, 0.9);
}

.text-neutral-lightest-90 {
  color: rgba(238, 238, 238, 0.9);
}

.border-neutral-lightest-90 {
  border-color: rgba(238, 238, 238, 0.9);
}

.bg-neutral-lighter-10 {
  background-color: rgba(204, 204, 204, 0.1);
}

.text-neutral-lighter-10 {
  color: rgba(204, 204, 204, 0.1);
}

.border-neutral-lighter-10 {
  border-color: rgba(204, 204, 204, 0.1);
}

.bg-neutral-lighter-20 {
  background-color: rgba(204, 204, 204, 0.2);
}

.text-neutral-lighter-20 {
  color: rgba(204, 204, 204, 0.2);
}

.border-neutral-lighter-20 {
  border-color: rgba(204, 204, 204, 0.2);
}

.bg-neutral-lighter-30 {
  background-color: rgba(204, 204, 204, 0.3);
}

.text-neutral-lighter-30 {
  color: rgba(204, 204, 204, 0.3);
}

.border-neutral-lighter-30 {
  border-color: rgba(204, 204, 204, 0.3);
}

.bg-neutral-lighter-40 {
  background-color: rgba(204, 204, 204, 0.4);
}

.text-neutral-lighter-40 {
  color: rgba(204, 204, 204, 0.4);
}

.border-neutral-lighter-40 {
  border-color: rgba(204, 204, 204, 0.4);
}

.bg-neutral-lighter-50 {
  background-color: rgba(204, 204, 204, 0.5);
}

.text-neutral-lighter-50 {
  color: rgba(204, 204, 204, 0.5);
}

.border-neutral-lighter-50 {
  border-color: rgba(204, 204, 204, 0.5);
}

.bg-neutral-lighter-60 {
  background-color: rgba(204, 204, 204, 0.6);
}

.text-neutral-lighter-60 {
  color: rgba(204, 204, 204, 0.6);
}

.border-neutral-lighter-60 {
  border-color: rgba(204, 204, 204, 0.6);
}

.bg-neutral-lighter-70 {
  background-color: rgba(204, 204, 204, 0.7);
}

.text-neutral-lighter-70 {
  color: rgba(204, 204, 204, 0.7);
}

.border-neutral-lighter-70 {
  border-color: rgba(204, 204, 204, 0.7);
}

.bg-neutral-lighter-80 {
  background-color: rgba(204, 204, 204, 0.8);
}

.text-neutral-lighter-80 {
  color: rgba(204, 204, 204, 0.8);
}

.border-neutral-lighter-80 {
  border-color: rgba(204, 204, 204, 0.8);
}

.bg-neutral-lighter-90 {
  background-color: rgba(204, 204, 204, 0.9);
}

.text-neutral-lighter-90 {
  color: rgba(204, 204, 204, 0.9);
}

.border-neutral-lighter-90 {
  border-color: rgba(204, 204, 204, 0.9);
}

.bg-neutral-light-10 {
  background-color: rgba(170, 170, 170, 0.1);
}

.text-neutral-light-10 {
  color: rgba(170, 170, 170, 0.1);
}

.border-neutral-light-10 {
  border-color: rgba(170, 170, 170, 0.1);
}

.bg-neutral-light-20 {
  background-color: rgba(170, 170, 170, 0.2);
}

.text-neutral-light-20 {
  color: rgba(170, 170, 170, 0.2);
}

.border-neutral-light-20 {
  border-color: rgba(170, 170, 170, 0.2);
}

.bg-neutral-light-30 {
  background-color: rgba(170, 170, 170, 0.3);
}

.text-neutral-light-30 {
  color: rgba(170, 170, 170, 0.3);
}

.border-neutral-light-30 {
  border-color: rgba(170, 170, 170, 0.3);
}

.bg-neutral-light-40 {
  background-color: rgba(170, 170, 170, 0.4);
}

.text-neutral-light-40 {
  color: rgba(170, 170, 170, 0.4);
}

.border-neutral-light-40 {
  border-color: rgba(170, 170, 170, 0.4);
}

.bg-neutral-light-50 {
  background-color: rgba(170, 170, 170, 0.5);
}

.text-neutral-light-50 {
  color: rgba(170, 170, 170, 0.5);
}

.border-neutral-light-50 {
  border-color: rgba(170, 170, 170, 0.5);
}

.bg-neutral-light-60 {
  background-color: rgba(170, 170, 170, 0.6);
}

.text-neutral-light-60 {
  color: rgba(170, 170, 170, 0.6);
}

.border-neutral-light-60 {
  border-color: rgba(170, 170, 170, 0.6);
}

.bg-neutral-light-70 {
  background-color: rgba(170, 170, 170, 0.7);
}

.text-neutral-light-70 {
  color: rgba(170, 170, 170, 0.7);
}

.border-neutral-light-70 {
  border-color: rgba(170, 170, 170, 0.7);
}

.bg-neutral-light-80 {
  background-color: rgba(170, 170, 170, 0.8);
}

.text-neutral-light-80 {
  color: rgba(170, 170, 170, 0.8);
}

.border-neutral-light-80 {
  border-color: rgba(170, 170, 170, 0.8);
}

.bg-neutral-light-90 {
  background-color: rgba(170, 170, 170, 0.9);
}

.text-neutral-light-90 {
  color: rgba(170, 170, 170, 0.9);
}

.border-neutral-light-90 {
  border-color: rgba(170, 170, 170, 0.9);
}

.bg-neutral-10 {
  background-color: rgba(102, 102, 102, 0.1);
}

.text-neutral-10 {
  color: rgba(102, 102, 102, 0.1);
}

.border-neutral-10 {
  border-color: rgba(102, 102, 102, 0.1);
}

.bg-neutral-20 {
  background-color: rgba(102, 102, 102, 0.2);
}

.text-neutral-20 {
  color: rgba(102, 102, 102, 0.2);
}

.border-neutral-20 {
  border-color: rgba(102, 102, 102, 0.2);
}

.bg-neutral-30 {
  background-color: rgba(102, 102, 102, 0.3);
}

.text-neutral-30 {
  color: rgba(102, 102, 102, 0.3);
}

.border-neutral-30 {
  border-color: rgba(102, 102, 102, 0.3);
}

.bg-neutral-40 {
  background-color: rgba(102, 102, 102, 0.4);
}

.text-neutral-40 {
  color: rgba(102, 102, 102, 0.4);
}

.border-neutral-40 {
  border-color: rgba(102, 102, 102, 0.4);
}

.bg-neutral-50 {
  background-color: rgba(102, 102, 102, 0.5);
}

.text-neutral-50 {
  color: rgba(102, 102, 102, 0.5);
}

.border-neutral-50 {
  border-color: rgba(102, 102, 102, 0.5);
}

.bg-neutral-60 {
  background-color: rgba(102, 102, 102, 0.6);
}

.text-neutral-60 {
  color: rgba(102, 102, 102, 0.6);
}

.border-neutral-60 {
  border-color: rgba(102, 102, 102, 0.6);
}

.bg-neutral-70 {
  background-color: rgba(102, 102, 102, 0.7);
}

.text-neutral-70 {
  color: rgba(102, 102, 102, 0.7);
}

.border-neutral-70 {
  border-color: rgba(102, 102, 102, 0.7);
}

.bg-neutral-80 {
  background-color: rgba(102, 102, 102, 0.8);
}

.text-neutral-80 {
  color: rgba(102, 102, 102, 0.8);
}

.border-neutral-80 {
  border-color: rgba(102, 102, 102, 0.8);
}

.bg-neutral-90 {
  background-color: rgba(102, 102, 102, 0.9);
}

.text-neutral-90 {
  color: rgba(102, 102, 102, 0.9);
}

.border-neutral-90 {
  border-color: rgba(102, 102, 102, 0.9);
}

.bg-neutral-dark-10 {
  background-color: rgba(68, 68, 68, 0.1);
}

.text-neutral-dark-10 {
  color: rgba(68, 68, 68, 0.1);
}

.border-neutral-dark-10 {
  border-color: rgba(68, 68, 68, 0.1);
}

.bg-neutral-dark-20 {
  background-color: rgba(68, 68, 68, 0.2);
}

.text-neutral-dark-20 {
  color: rgba(68, 68, 68, 0.2);
}

.border-neutral-dark-20 {
  border-color: rgba(68, 68, 68, 0.2);
}

.bg-neutral-dark-30 {
  background-color: rgba(68, 68, 68, 0.3);
}

.text-neutral-dark-30 {
  color: rgba(68, 68, 68, 0.3);
}

.border-neutral-dark-30 {
  border-color: rgba(68, 68, 68, 0.3);
}

.bg-neutral-dark-40 {
  background-color: rgba(68, 68, 68, 0.4);
}

.text-neutral-dark-40 {
  color: rgba(68, 68, 68, 0.4);
}

.border-neutral-dark-40 {
  border-color: rgba(68, 68, 68, 0.4);
}

.bg-neutral-dark-50 {
  background-color: rgba(68, 68, 68, 0.5);
}

.text-neutral-dark-50 {
  color: rgba(68, 68, 68, 0.5);
}

.border-neutral-dark-50 {
  border-color: rgba(68, 68, 68, 0.5);
}

.bg-neutral-dark-60 {
  background-color: rgba(68, 68, 68, 0.6);
}

.text-neutral-dark-60 {
  color: rgba(68, 68, 68, 0.6);
}

.border-neutral-dark-60 {
  border-color: rgba(68, 68, 68, 0.6);
}

.bg-neutral-dark-70 {
  background-color: rgba(68, 68, 68, 0.7);
}

.text-neutral-dark-70 {
  color: rgba(68, 68, 68, 0.7);
}

.border-neutral-dark-70 {
  border-color: rgba(68, 68, 68, 0.7);
}

.bg-neutral-dark-80 {
  background-color: rgba(68, 68, 68, 0.8);
}

.text-neutral-dark-80 {
  color: rgba(68, 68, 68, 0.8);
}

.border-neutral-dark-80 {
  border-color: rgba(68, 68, 68, 0.8);
}

.bg-neutral-dark-90 {
  background-color: rgba(68, 68, 68, 0.9);
}

.text-neutral-dark-90 {
  color: rgba(68, 68, 68, 0.9);
}

.border-neutral-dark-90 {
  border-color: rgba(68, 68, 68, 0.9);
}

.bg-neutral-darker-10 {
  background-color: rgba(34, 34, 34, 0.1);
}

.text-neutral-darker-10 {
  color: rgba(34, 34, 34, 0.1);
}

.border-neutral-darker-10 {
  border-color: rgba(34, 34, 34, 0.1);
}

.bg-neutral-darker-20 {
  background-color: rgba(34, 34, 34, 0.2);
}

.text-neutral-darker-20 {
  color: rgba(34, 34, 34, 0.2);
}

.border-neutral-darker-20 {
  border-color: rgba(34, 34, 34, 0.2);
}

.bg-neutral-darker-30 {
  background-color: rgba(34, 34, 34, 0.3);
}

.text-neutral-darker-30 {
  color: rgba(34, 34, 34, 0.3);
}

.border-neutral-darker-30 {
  border-color: rgba(34, 34, 34, 0.3);
}

.bg-neutral-darker-40 {
  background-color: rgba(34, 34, 34, 0.4);
}

.text-neutral-darker-40 {
  color: rgba(34, 34, 34, 0.4);
}

.border-neutral-darker-40 {
  border-color: rgba(34, 34, 34, 0.4);
}

.bg-neutral-darker-50 {
  background-color: rgba(34, 34, 34, 0.5);
}

.text-neutral-darker-50 {
  color: rgba(34, 34, 34, 0.5);
}

.border-neutral-darker-50 {
  border-color: rgba(34, 34, 34, 0.5);
}

.bg-neutral-darker-60 {
  background-color: rgba(34, 34, 34, 0.6);
}

.text-neutral-darker-60 {
  color: rgba(34, 34, 34, 0.6);
}

.border-neutral-darker-60 {
  border-color: rgba(34, 34, 34, 0.6);
}

.bg-neutral-darker-70 {
  background-color: rgba(34, 34, 34, 0.7);
}

.text-neutral-darker-70 {
  color: rgba(34, 34, 34, 0.7);
}

.border-neutral-darker-70 {
  border-color: rgba(34, 34, 34, 0.7);
}

.bg-neutral-darker-80 {
  background-color: rgba(34, 34, 34, 0.8);
}

.text-neutral-darker-80 {
  color: rgba(34, 34, 34, 0.8);
}

.border-neutral-darker-80 {
  border-color: rgba(34, 34, 34, 0.8);
}

.bg-neutral-darker-90 {
  background-color: rgba(34, 34, 34, 0.9);
}

.text-neutral-darker-90 {
  color: rgba(34, 34, 34, 0.9);
}

.border-neutral-darker-90 {
  border-color: rgba(34, 34, 34, 0.9);
}

.bg-black-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-black-10 {
  color: rgba(0, 0, 0, 0.1);
}

.border-black-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.bg-black-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.text-black-20 {
  color: rgba(0, 0, 0, 0.2);
}

.border-black-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.bg-black-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.text-black-30 {
  color: rgba(0, 0, 0, 0.3);
}

.border-black-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.bg-black-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.text-black-40 {
  color: rgba(0, 0, 0, 0.4);
}

.border-black-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.bg-black-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5);
}

.border-black-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.bg-black-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.text-black-60 {
  color: rgba(0, 0, 0, 0.6);
}

.border-black-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.bg-black-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.text-black-70 {
  color: rgba(0, 0, 0, 0.7);
}

.border-black-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.bg-black-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.text-black-80 {
  color: rgba(0, 0, 0, 0.8);
}

.border-black-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.bg-black-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.text-black-90 {
  color: rgba(0, 0, 0, 0.9);
}

.border-black-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.bg-red-alert-10 {
  background-color: rgba(214, 50, 48, 0.1);
}

.text-red-alert-10 {
  color: rgba(214, 50, 48, 0.1);
}

.border-red-alert-10 {
  border-color: rgba(214, 50, 48, 0.1);
}

.bg-red-alert-20 {
  background-color: rgba(214, 50, 48, 0.2);
}

.text-red-alert-20 {
  color: rgba(214, 50, 48, 0.2);
}

.border-red-alert-20 {
  border-color: rgba(214, 50, 48, 0.2);
}

.bg-red-alert-30 {
  background-color: rgba(214, 50, 48, 0.3);
}

.text-red-alert-30 {
  color: rgba(214, 50, 48, 0.3);
}

.border-red-alert-30 {
  border-color: rgba(214, 50, 48, 0.3);
}

.bg-red-alert-40 {
  background-color: rgba(214, 50, 48, 0.4);
}

.text-red-alert-40 {
  color: rgba(214, 50, 48, 0.4);
}

.border-red-alert-40 {
  border-color: rgba(214, 50, 48, 0.4);
}

.bg-red-alert-50 {
  background-color: rgba(214, 50, 48, 0.5);
}

.text-red-alert-50 {
  color: rgba(214, 50, 48, 0.5);
}

.border-red-alert-50 {
  border-color: rgba(214, 50, 48, 0.5);
}

.bg-red-alert-60 {
  background-color: rgba(214, 50, 48, 0.6);
}

.text-red-alert-60 {
  color: rgba(214, 50, 48, 0.6);
}

.border-red-alert-60 {
  border-color: rgba(214, 50, 48, 0.6);
}

.bg-red-alert-70 {
  background-color: rgba(214, 50, 48, 0.7);
}

.text-red-alert-70 {
  color: rgba(214, 50, 48, 0.7);
}

.border-red-alert-70 {
  border-color: rgba(214, 50, 48, 0.7);
}

.bg-red-alert-80 {
  background-color: rgba(214, 50, 48, 0.8);
}

.text-red-alert-80 {
  color: rgba(214, 50, 48, 0.8);
}

.border-red-alert-80 {
  border-color: rgba(214, 50, 48, 0.8);
}

.bg-red-alert-90 {
  background-color: rgba(214, 50, 48, 0.9);
}

.text-red-alert-90 {
  color: rgba(214, 50, 48, 0.9);
}

.border-red-alert-90 {
  border-color: rgba(214, 50, 48, 0.9);
}

.bg-green-alert-10 {
  background-color: rgba(51, 115, 87, 0.1);
}

.text-green-alert-10 {
  color: rgba(51, 115, 87, 0.1);
}

.border-green-alert-10 {
  border-color: rgba(51, 115, 87, 0.1);
}

.bg-green-alert-20 {
  background-color: rgba(51, 115, 87, 0.2);
}

.text-green-alert-20 {
  color: rgba(51, 115, 87, 0.2);
}

.border-green-alert-20 {
  border-color: rgba(51, 115, 87, 0.2);
}

.bg-green-alert-30 {
  background-color: rgba(51, 115, 87, 0.3);
}

.text-green-alert-30 {
  color: rgba(51, 115, 87, 0.3);
}

.border-green-alert-30 {
  border-color: rgba(51, 115, 87, 0.3);
}

.bg-green-alert-40 {
  background-color: rgba(51, 115, 87, 0.4);
}

.text-green-alert-40 {
  color: rgba(51, 115, 87, 0.4);
}

.border-green-alert-40 {
  border-color: rgba(51, 115, 87, 0.4);
}

.bg-green-alert-50 {
  background-color: rgba(51, 115, 87, 0.5);
}

.text-green-alert-50 {
  color: rgba(51, 115, 87, 0.5);
}

.border-green-alert-50 {
  border-color: rgba(51, 115, 87, 0.5);
}

.bg-green-alert-60 {
  background-color: rgba(51, 115, 87, 0.6);
}

.text-green-alert-60 {
  color: rgba(51, 115, 87, 0.6);
}

.border-green-alert-60 {
  border-color: rgba(51, 115, 87, 0.6);
}

.bg-green-alert-70 {
  background-color: rgba(51, 115, 87, 0.7);
}

.text-green-alert-70 {
  color: rgba(51, 115, 87, 0.7);
}

.border-green-alert-70 {
  border-color: rgba(51, 115, 87, 0.7);
}

.bg-green-alert-80 {
  background-color: rgba(51, 115, 87, 0.8);
}

.text-green-alert-80 {
  color: rgba(51, 115, 87, 0.8);
}

.border-green-alert-80 {
  border-color: rgba(51, 115, 87, 0.8);
}

.bg-green-alert-90 {
  background-color: rgba(51, 115, 87, 0.9);
}

.text-green-alert-90 {
  color: rgba(51, 115, 87, 0.9);
}

.border-green-alert-90 {
  border-color: rgba(51, 115, 87, 0.9);
}

.bg-gradient-primary {
  background: linear-gradient(to right, #000000, #333333);
}

.bg-gradient-secondary {
  background: linear-gradient(to right, #96710F, rgb(232.9090909091, 178.4181818182, 34.0909090909));
}

.wp-block-gallery {
  display: flex;
}

.wp-block-cover {
  overflow: hidden;
}

.wp-block-search__button {
  margin: 0;
}

.wp-block-social-links,
.wp-block-social-links.has-normal-icon-size {
  font-size: 24px;
}

.footer .site-footer__newsletter .footer-newsletter {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .site-footer__newsletter .footer-newsletter__inside {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .footer .site-footer__newsletter .footer-newsletter__inside {
    justify-content: center;
  }
}
.footer .site-footer__newsletter .footer-newsletter__left {
  width: 50%;
}
@media (max-width: 991px) {
  .footer .site-footer__newsletter .footer-newsletter__left {
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}
.footer .site-footer__newsletter .footer-newsletter__title {
  margin: 0;
}
.footer .site-footer__newsletter .footer-newsletter__description {
  margin-top: 5px;
}
@media (max-width: 991px) {
  .footer .site-footer__newsletter .footer-newsletter__description {
    text-align: center;
  }
}
.footer .site-footer__newsletter .footer-newsletter__form {
  width: 50%;
}
@media (max-width: 991px) {
  .footer .site-footer__newsletter .footer-newsletter__form {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .footer .site-footer__newsletter .footer-newsletter__input-group {
    max-width: 500px;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .footer .site-footer__newsletter .footer-newsletter__input-group {
    height: 48px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
  }
}
.footer .site-footer__newsletter .footer-newsletter__input {
  border: none;
  background: transparent;
  width: 75%;
  padding: 0 20px;
  color: #CCCCCC;
}
.footer .site-footer__newsletter .footer-newsletter__input::placeholder {
  color: #CCCCCC;
}
.footer .site-footer__newsletter .footer-newsletter__input:focus-visible, .footer .site-footer__newsletter .footer-newsletter__input:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 767px) {
  .footer .site-footer__newsletter .footer-newsletter__input {
    height: 48px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer .site-footer__newsletter .footer-newsletter__button {
  width: 25%;
  height: 100%;
  border-radius: 20px;
  border: none;
  background: #FAFAFA;
  cursor: pointer;
}
@media (max-width: 767px) {
  .footer .site-footer__newsletter .footer-newsletter__button {
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
  }
}
.footer .site-footer__newsletter .footer-newsletter__form-info-group {
  max-width: 500px;
}
.footer .site-footer__newsletter .footer-newsletter__form-info {
  display: flex;
  max-width: 500px;
}
.footer .site-footer__newsletter .newsletter-message {
  color: #D63230;
}
.footer .site-footer__console .footer-console {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .site-footer__console .footer-console__links {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer .site-footer__console .footer-console__link span {
  padding: 10px;
  border: 1px solid #CCCCCC;
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 8px;
  min-width: 200px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .footer .site-footer__console .footer-console__image img {
    width: 100%;
    height: auto;
  }
}
.footer .site-footer__menus {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}
.footer .site-footer__menus .footer-menu {
  flex: 1;
  width: 25%;
}
@media (max-width: 991px) {
  .footer .site-footer__menus .footer-menu {
    width: 100%;
    flex: 1 1 50%;
  }
}
@media (max-width: 575px) {
  .footer .site-footer__menus .footer-menu {
    width: 100%;
    flex: 1 1 100%;
  }
}
.footer .site-footer__menus .footer-menu__items {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer .site-footer__menus .footer-menu__link {
  margin: 5px 0;
  align-items: center;
  gap: 10px;
  display: flex;
}
.footer .site-footer__menus .menu-socials .footer-menu__link:before {
  content: "";
  background: #CCCCCC;
  width: 24px;
  height: 24px;
  mask-repeat: no-repeat;
}
.footer .site-footer__menus .menu-socials .instagram:before {
  mask-image: url(instagram.svg);
  -webkit-mask-image: url(instagram.svg);
}
.footer .site-footer__menus .menu-socials .tiktok:before {
  mask-image: url(tiktok.svg);
  -webkit-mask-image: url(tiktok.svg);
  width: 20px;
  height: 20px;
}
.footer .site-footer__menus .menu-socials .youtube:before {
  mask-image: url(youtube.svg);
  -webkit-mask-image: url(youtube.svg);
}
.footer .site-footer__menus .menu-socials .facebook:before {
  mask-image: url(facebook.svg);
  -webkit-mask-image: url(facebook.svg);
}
.footer .site-footer__menus .footer-locations__logo {
  height: auto;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .footer .site-footer__menus .footer-locations__logo {
    display: none;
  }
}
.footer .site-footer__menus .footer-locations__hotline-link, .footer .site-footer__menus .footer-locations__email {
  margin: 15px 0;
  display: block;
  text-decoration: underline;
  font-weight: 501;
}
.footer .site-footer__menus .footer-locations__hotline-link {
  margin-top: 30px;
}
.footer .site-footer__bottom .footer-copy {
  padding: 20px 0 40px 0;
}
.footer .site-footer__bottom .footer-copy__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .site-footer__bottom .footer-copy__right {
  width: 100%;
}
.slider {
  position: relative;
}
.slider.is-background {
  padding: 40px 0;
}
.slider.is-background .slider-header__title {
  color: #FFFFFF;
}
.slider-background, .slider-background-image {
  height: 100%;
  width: 100vw;
  max-width: 100vw;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  background-position: center;
  top: 0;
  left: 0;
  margin-left: -15px;
}
@media (min-width: 1400px) {
  .slider-background, .slider-background-image {
    margin-left: calc(-1 * max(30px, (100% - 1920px) / 2 + 15px));
    width: 100vw;
  }
}
@media (min-width: 1920px) {
  .slider-background, .slider-background-image {
    width: 100vw;
    margin-left: -30px;
  }
}
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .slider-header {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .slider-header {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .slider-header__title {
    line-height: 40px;
  }
}
.slider-header__controls {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 50%;
  justify-content: flex-end;
  margin-right: 30px;
}
@media (min-width: 1400px) {
  .slider-header__controls {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .slider-header__controls {
    margin: 0;
    width: auto;
  }
}
.slider-custom-buttons {
  display: flex;
  gap: 5px;
}
.slider-custom-buttons__button {
  width: 48px;
  height: 48px;
  background: #FAFAFA;
  border-radius: 100px;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.slider-custom-buttons__button:after {
  display: flex;
  content: "";
  background: #000000;
  width: 16px;
  height: 16px;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
}
.slider-custom-buttons__button--prev:after {
  transform: rotate(180deg);
}
.slider-custom-buttons__button.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.slider-see-all-button {
  background: #FAFAFA;
  display: flex;
  align-items: center;
  border-radius: 25px;
  color: #000000;
  max-width: 214px;
  height: 48px;
  justify-content: center;
  width: 100%;
  font-weight: 401;
}
.slider-see-all-button--desktop {
  display: none;
}
@media (min-width: 768px) {
  .slider-see-all-button--desktop {
    display: flex;
  }
}
.slider-see-all-button--mobile {
  display: flex;
  margin: 40px auto 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .slider-see-all-button--mobile {
    display: none;
  }
}
.slider.top-grails .products-slider__title {
  color: #FFFFFF;
}
.slider.top-grails .slider-custom-buttons__button,
.slider.top-grails .slider-see-all-button {
  background: #FFFFFF;
}
.slider.top-grails .slider-see-all-button {
  color: #96710F;
}
.slider.top-grails .slider-custom-buttons__button:after {
  background: #96710F;
}
.slider.collection-slider .collection-slider__controls .slider-custom-buttons__button {
  background: #000000;
}
.slider.collection-slider .collection-slider__controls .slider-custom-buttons__button:after {
  background: #FFFFFF;
}
.s-error-404 {
  margin: 80px 0;
}
.s-error-404__label p {
  margin: 40px 0;
  color: #96710F;
}
@media (max-width: 991px) {
  .s-error-404__label p {
    text-align: center;
  }
}
.s-error-404__buttons {
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 991px) {
  .s-error-404__buttons {
    justify-content: center;
  }
}
.s-error-404__buttons a.slider-see-all-button {
  max-width: 350px;
}
.s-error-404__buttons a.btn-404 {
  background: #000000;
  color: #FFFFFF;
}
.s-error-404__buttons a img {
  margin-right: 18px;
}

.news__header {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .news__header {
    margin-bottom: 40px;
  }
}
.news__header .pre-title span {
  color: #000000;
}
.news__header .category h3 {
  color: #000000;
}
.news__header .description p {
  color: #000000;
}
.news__content {
  display: inline-flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .news__content {
    margin-top: 40px;
  }
}
.news__content .sidebar {
  width: calc(25% - 25px);
}
@media (max-width: 991px) {
  .news__content .sidebar {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .news__content .sidebar:not(.single) {
    display: none;
  }
}
.news__content .sidebar .wp-block-heading {
  margin-top: 0;
  margin-bottom: 24px;
}
.news__content .sidebar ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 2px solid rgba(0, 0, 0, 0.0509803922);
  border-radius: 16px;
}
.news__content .sidebar ul li {
  padding: 20px 0;
}
.news__content .sidebar ul li a {
  color: #000000;
  font-size: 0.875rem;
  line-height: 20px;
  padding: 0 16px;
}
.news__content .sidebar ul li p {
  color: #000000;
  font-size: 0.875rem;
  line-height: 20px;
  padding: 0 16px;
  margin: 0;
}
.news__content .posts {
  width: calc(75% - 25px);
}
.news__content .posts.single {
  width: calc(100% - 25px);
}
@media (max-width: 991px) {
  .news__content .posts.single {
    width: 100%;
  }
}
.news__content .posts.single .recent-post-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 500;
}
@media (max-width: 991px) {
  .news__content .posts {
    width: 100%;
  }
}
.news__content .posts .post__image a {
  width: 100%;
}
.news__content .posts .post__image a img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .news__content .posts .post__image a img {
    height: auto;
  }
}
.news__content .posts .post__content .meta {
  display: inline-flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 24px 0 12px 0;
  align-items: center;
}
.news__content .posts .post__content .meta .left {
  display: flex;
  gap: 16px;
  align-items: center;
}
.news__content .posts .post__content .meta .left .span {
  color: #000000;
}
.news__content .posts .post__content .meta .left .category-name {
  color: #96710F;
  border: 1px solid #96710F;
  padding: 11px 8px;
  border-radius: 4px;
  line-height: 10px;
}
.news__content .posts .post__content .meta .right .span {
  color: #000000;
}
.news__content .posts .post__content .title {
  margin-bottom: 16px;
  margin-top: 0;
}
.news__content .posts .post__content .title a {
  color: #000000;
}
.news__content .posts .post__content .excerpt {
  color: #000000;
  margin-bottom: 64px;
}
.news__content .posts .other-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 32px;
  margin-bottom: 64px;
}
.news__content .posts .other-posts.single {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .news__content .posts .other-posts.single {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .news__content .posts .other-posts {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 24px;
  }
}
.news__content .posts .other-posts .post {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news__content .posts .other-posts .post__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 16px;
}
.news__content .posts .other-posts .post__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}
.news__content .posts .other-posts .post__content .meta {
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news__content .posts .other-posts .post__content .title {
  margin-bottom: 16px;
}
.news__content .posts .other-posts .post__content .title a {
  color: #000000;
}
.news__content .posts .other-posts .post__content .font-normal.heading-6 {
  color: #000000;
  margin-top: auto;
}
.news__content .posts .custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 20px 0 50px 0;
}
.news__content .posts .custom-pagination input {
  border: 1px solid #AAAAAA;
  border-radius: 2px;
  padding: 6px 10px;
  max-width: 50px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
.news__content .posts .custom-pagination input[type=number]::-webkit-outer-spin-button,
.news__content .posts .custom-pagination input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.news__content .posts .custom-pagination input[type=number] {
  -moz-appearance: textfield;
}
.news__content .posts .custom-pagination span {
  color: #000000;
  display: flex;
  align-items: center;
  line-height: 1;
}
.news__content .posts .custom-pagination span a {
  color: #000000;
  display: flex;
  align-items: center;
}
.news__content .posts .custom-pagination span.next a img {
  margin-left: 5px;
}
.news__content .posts .custom-pagination img {
  display: block;
}

.news .posts__title h2 {
  margin-top: 15px;
  margin-bottom: 5px;
}
.news .posts__content .sidebar.single {
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .news .posts__content .sidebar.single {
    display: none;
  }
}
.news .posts__content blockquote {
  border-left: 2px solid #000000;
  padding-left: 40px;
  margin: 36px 0;
}
.news .posts__content blockquote p {
  font-weight: 500;
}
.news .posts__content p {
  font-size: 1rem;
  line-height: 20px;
  font-weight: 400;
}
.news .posts__content h2 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 24px;
}
.news .posts__content .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  height: auto;
}
.news .posts__content img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  height: auto;
}
.news .posts__content .categories {
  padding: 24px 0 48px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #aaa;
  margin-bottom: 50px;
}
.news .posts__content .categories a {
  color: #96710F;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #96710F;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
}

.complaint-page {
  margin-top: 50px;
  margin-bottom: 100px;
}
.complaint-page__inside {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .complaint-page__inside {
    padding: 0 15px;
  }
}
.complaint-page__title {
  width: 100%;
  text-align: center;
}
.complaint-page__form {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.complaint-page__form fieldset {
  border: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 10px;
}
.complaint-page__form fieldset legend {
  padding: 0 10px;
  margin: 20px 0;
}
.complaint-page__form .input_wrapper {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  padding: 0 10px;
  width: calc(50% - 5px);
}
@media (max-width: 767px) {
  .complaint-page__form .input_wrapper {
    width: 100%;
  }
}
.complaint-page__form .input_wrapper.submit-button, .complaint-page__form .input_wrapper.complaint-description, .complaint-page__form .input_wrapper.order-number {
  width: 100%;
}
.complaint-page__form .input_wrapper.submit-button {
  align-items: center;
}
.complaint-page__form .input_wrapper label {
  margin-bottom: 10px;
}
.complaint-page__form .input_wrapper button[type=submit] {
  border-radius: 25px;
  max-width: 240px;
  width: 100%;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 24px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}
.complaint-page__form .input_wrapper button[type=submit]:hover {
  background-color: #666666;
  color: #fff;
}
.complaint-page__form .input_wrapper textarea {
  resize: none;
  width: 100%;
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
  min-height: 80px;
}
.complaint-page__form label {
  font-size: 0.875rem;
  line-height: 20px;
  margin-bottom: 5px;
}
.complaint-page__form input[type=text],
.complaint-page__form input[type=email],
.complaint-page__form input[type=tel],
.complaint-page__form input[type=url],
.complaint-page__form input[type=password],
.complaint-page__form input[type=search] {
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
  height: 48px;
  width: 100%;
}
.complaint-page__message {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
}
.complaint-page__message .error {
  color: red;
  margin-top: 20px;
  display: block;
}
.contactPage {
  width: 100%;
  position: relative;
  margin: 50px 0 100px 0;
}
.contactPage__header {
  margin-bottom: 50px;
}
.contactPage__header--title {
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.contactPage__header--subtitle {
  font-weight: 400;
}
.contactPage__list__item {
  display: flex;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  align-items: center;
  padding: 20px;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.contactPage__list__item__left {
  width: calc(50% - 10px);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .contactPage__list__item__left {
    width: 100%;
  }
}
.contactPage__list__item__left--title {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .contactPage__list__item__left--title {
    justify-content: center;
  }
}
.contactPage__list__item__left--line {
  height: 0.248rem;
  width: 20%;
  background-color: #000000;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .contactPage__list__item__left--line {
    display: none;
  }
}
.contactPage__list__item__right {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .contactPage__list__item__right {
    width: 100%;
  }
}
.contactPage__list__item__right--desc {
  font-weight: 400;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .contactPage__list__item__right--desc {
    text-align: center;
    margin-bottom: 40px;
  }
}
.contactPage__list__item__right__link {
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .contactPage__list__item__right__link {
    justify-content: center;
  }
}
.contactPage__list__item__right__link--line {
  height: 0.248rem;
  width: 100%;
  background-color: #000000;
  margin-left: 1rem;
  display: none;
}
@media (max-width: 767px) {
  .contactPage__list__item__right__link--line {
    display: none;
  }
}
.contactPage__list__item__right__link img {
  width: 16px;
  height: auto;
  display: none;
}
@media only screen and (max-width: 991px) {
  .contactPage__list__item__right__link img {
    display: block;
  }
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.instagram-feed {
  margin-bottom: 80px;
}
.instagram-feed .insta-swiper .insta-item a img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .instagram-feed .insta-swiper .insta-item a img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .instagram-feed .insta-swiper .insta-item a img {
    height: 250px;
  }
}

.breadcrumbs {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-top: 25px;
  }
}
.breadcrumbs--inside {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.breadcrumbs--inside span {
  color: #000000;
}
@media (max-width: 767px) {
  .breadcrumbs--inside span {
    font-size: 0.75rem;
  }
}
.breadcrumbs--inside span .current-item {
  font-weight: 501;
}
.breadcrumbs-sep:after {
  display: flex;
  content: "";
  background: #000000;
  width: 16px;
  height: 16px;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
}

.archive-product-main {
  margin: 20px 0 80px 0;
}
.archive-product-main--inside-top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.archive-product-main--inside-top .woocommerce-products-header .woocommerce-products-header__title {
  margin: 0;
}
.archive-product-main--inside-top .woocommerce-products-header .woocommerce-result-count {
  margin: 0;
}
.archive-product-main--inside-top .woocommerce-result-count {
  margin: 0;
}
.archive-product-main .archive-product--row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.archive-product-main .archive-product--row__product-list {
  width: calc(70% - 25px);
}
@media (max-width: 991px) {
  .archive-product-main .archive-product--row__product-list {
    width: 100%;
  }
}
.archive-product-main .archive-product--row__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .archive-product-main .archive-product--row__header {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .archive-product-main .archive-product--row__header .custom-woocommerce-pagination {
    display: none;
  }
}
.archive-product-main .archive-product--row__header:has(.fibofilters-applied-filters) .woocommerce-ordering,
.archive-product-main .archive-product--row__header:has(.fibofilters-applied-filters) .mobile-filters {
  width: 100%;
}
.archive-product-main .archive-product--row__footer {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  flex-wrap: wrap;
}
.archive-product-main .archive-product--row .fibofilters-show-more-button-container .fibofilters-show-more {
  border-radius: 25px;
  background: #000000;
  color: #FFFFFF;
  padding: 15px 20px;
}
.archive-product-main .mobile-filters {
  display: block;
  width: calc(50% - 10px);
}
@media (min-width: 992px) {
  .archive-product-main .mobile-filters {
    display: none;
  }
}
.archive-product-main .mobile-filters .open-filters {
  cursor: pointer;
  position: relative;
  user-select: none;
  width: 100%;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #666666;
  border-radius: 4px;
  display: inline-flex;
  font-size: inherit;
  justify-content: space-between;
  padding: 10px 15px;
  transition: border-color 0.3s;
}
.archive-product-main .mobile-filters .open-filters:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  width: 14px;
  height: 8px;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .archive-product-main .woocommerce-ordering.custom-ordering {
    width: calc(50% - 10px);
  }
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  position: relative;
  user-select: none;
}
@media (max-width: 767px) {
  .archive-product-main .woocommerce-ordering.custom-ordering .custom-select {
    width: 100%;
  }
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select-trigger {
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #666666;
  border-radius: 4px;
  display: inline-flex;
  font-size: inherit;
  justify-content: space-between;
  padding: 10px 15px;
  transition: border-color 0.3s;
  width: 100%;
}
@media (max-width: 991px) {
  .archive-product-main .woocommerce-ordering.custom-ordering .custom-select-trigger {
    padding: 10px;
    padding-right: 35px;
  }
}
@media (max-width: 991px) {
  .archive-product-main .woocommerce-ordering.custom-ordering .custom-select-trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
  }
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select-trigger:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  width: 14px;
  height: 8px;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .archive-product-main .woocommerce-ordering.custom-ordering .custom-select-trigger:after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
  }
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select .custom-options {
  background: #FFFFFF;
  border: 1px solid #666666;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1019607843);
  display: none;
  left: 0;
  list-style: none;
  margin: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  padding: 0;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  z-index: 999;
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select .custom-options .custom-option {
  padding: 10px 15px;
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select .custom-options .custom-option:hover {
  background: #EEEEEE;
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select.open .custom-select-trigger {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select.open .custom-select-trigger:after {
  transform: rotate(180deg);
}
.archive-product-main .woocommerce-ordering.custom-ordering .custom-select.open .custom-options {
  display: block;
}
.archive-product-main .custom-woocommerce-pagination {
  margin: 0;
}
@media (max-width: 767px) {
  .archive-product-main .custom-woocommerce-pagination {
    display: none;
  }
}
.archive-product-main .custom-woocommerce-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-product-main .custom-woocommerce-pagination ul li {
  margin: 0 5px;
  display: flex;
  align-items: center;
}
.archive-product-main .custom-woocommerce-pagination ul li a, .archive-product-main .custom-woocommerce-pagination ul li span {
  padding: 10px 10px;
  text-decoration: none;
  display: inline-block;
}
.archive-product-main .custom-woocommerce-pagination ul li.pagination-current span {
  padding: 10px 15px;
  border: 1px solid #4A4A4A;
  border-radius: 4px;
}
.archive-product-main .custom-woocommerce-pagination ul li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.archive-product-main .custom-woocommerce-pagination ul li.disabled span {
  display: none;
}
.archive-product-main .custom-woocommerce-pagination ul li.pagination-prev:before {
  content: "";
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  width: 14px;
  height: 8px;
  transform: rotate(90deg);
  display: block;
}
.archive-product-main .custom-woocommerce-pagination ul li.pagination-next:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
  width: 16px;
  height: 16px;
  display: block;
}
.archive-product-main .archive-description {
  margin: 80px 0 100px;
  display: block;
}
.archive-product-main .archive-description #toggleButton {
  background: none;
  border: none;
  display: flex;
  margin-left: auto;
  cursor: pointer;
}

.products {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style-type: none;
}

.content-product {
  width: calc((100% - 60px) / 3);
}
.content-product.heathen-product {
  padding: 0;
}
@media (min-width: 1800px) {
  .content-product {
    width: calc((100% - 90px) / 4);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .content-product {
    width: calc(50% - 15px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .content-product {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 767px) {
  .content-product {
    width: calc(50% - 15px);
  }
}
.content-product a {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .content-product a {
    gap: 10px;
  }
}
.content-product a .content-product__image {
  position: relative;
}
.content-product a .content-product__image .product-thumbnail-single {
  aspect-ratio: 1/1;
  position: relative;
}
.content-product a .content-product__image .product-thumbnail-single .first-image,
.content-product a .content-product__image .product-thumbnail-single .secondary-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.content-product a .content-product__image .product-thumbnail-single .secondary-image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.content-product a .content-product__image .product-thumbnail-single .first-image {
  opacity: 1;
  position: relative;
}
@media (max-width: 767px) {
  .content-product a .content-product__image.has-mobile-slider .product-thumbnail-single {
    display: none;
  }
}
.content-product a .content-product__image .product-gallery-mobile {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .content-product a .content-product__image .product-gallery-mobile {
    display: none;
  }
}
.content-product a .content-product__image .product-gallery-mobile .swiper-pagination {
  bottom: 0;
}
.content-product a .content-product__image .product-gallery-mobile .swiper-pagination .swiper-pagination-bullet-active {
  background: #000000;
}
.content-product a .content-product__image:hover .product-thumbnail-single:has(.secondary-image) .first-image {
  opacity: 0;
}
.content-product a .content-product__image:hover .product-thumbnail-single:has(.secondary-image) .secondary-image {
  opacity: 1;
}
.content-product a img {
  width: 100%;
  object-fit: contain;
  height: auto;
  aspect-ratio: 1/1;
}
.content-product a img.woocommerce-placeholder {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  height: 100%;
}
@media (max-width: 767px) {
  .content-product a img {
    object-fit: contain;
  }
}
.content-product--meta__title h2 {
  font-weight: 500;
  margin-bottom: 5px;
  min-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .content-product--meta__title {
    height: auto;
    max-height: 24px;
  }
  .content-product--meta__title h2 {
    min-height: unset;
  }
}
.content-product--meta__price {
  margin-top: 10px;
  font-weight: 500;
}
.content-product--meta__price bdi {
  color: #000000;
}
.content-product--meta__price del {
  color: #4A4A4A;
}
.content-product--meta__price del span bdi {
  color: #4A4A4A;
}
.content-product--meta__price ins {
  text-decoration: none;
  color: #000000;
}
.products-slider .content-product--meta__title h2 {
  min-height: unset;
}
.products-slider .content-product img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .products-slider .content-product img {
    object-fit: contain;
  }
}
.products-slider.is-background .content-product--meta__title h2 {
  color: #FFFFFF;
}
.products-slider.is-background .content-product--meta__category span {
  color: #FFFFFF;
}
.products-slider.is-background .content-product--meta__price {
  color: #FFFFFF;
}
.products-slider.is-background .content-product--meta__price bdi {
  color: #FFFFFF;
}
.products-slider.is-background .content-product--meta__price del {
  color: #FFFFFF;
}
.products-slider.is-background .content-product--meta__price del span bdi {
  color: #FFFFFF;
}
.products-slider.is-background .content-product--meta__price ins {
  text-decoration: none;
}
.products-slider.is-background .content-product--meta__price ins span bdi {
  color: #FFFFFF;
}
.products-slider.is-background .products-slider__product-title {
  color: #FFFFFF;
}
.products-slider.is-background .products-slider__product-price {
  color: #FFFFFF;
}
.products-slider.is-background .products-slider__product-price del {
  color: #CCCCCC;
}
.products-slider.is-background .products-slider__product-price del span bdi {
  color: #CCCCCC;
}
.products-slider.is-background .products-slider__product-price ins {
  text-decoration: none;
}
.products-slider.is-background .products-slider__product-price ins span bdi {
  color: #FFFFFF;
}
.products-slider.top-grails .content-product--meta h2 {
  color: #FFFFFF;
}
.products-slider.top-grails .content-product--meta .products-slider__product-category {
  color: #FFFFFF;
}
.products-slider.top-grails .content-product--meta__price {
  color: #FFFFFF;
}
.products-slider.top-grails .content-product--meta__price bdi,
.products-slider.top-grails .content-product--meta__price span {
  color: #FFFFFF;
}
.products-slider.top-grails .content-product--meta__price del {
  color: #FFFFFF;
}
.products-slider.top-grails .content-product--meta__price del span bdi {
  color: #FFFFFF;
}
.products-slider.top-grails .content-product--meta__price ins {
  text-decoration: none;
}
.products-slider.top-grails .content-product--meta__price ins span bdi {
  color: #FFFFFF;
}
.products-slider.has-model-image .swiper-slide .product-thumbnail-single {
  aspect-ratio: 3/4;
}
.products-slider.has-model-image .swiper-slide .product-thumbnail-single img.model-image {
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (max-width: 767px) {
  .additional-products .product-thumbnail-single,
  .single-product-slider .product-thumbnail-single,
  .products-slider .product-thumbnail-single {
    display: block !important;
  }
}

.cart--inside {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media (min-width: 992px) {
  .cart--inside {
    min-height: 600px;
  }
}
@media (max-width: 991px) {
  .cart--inside {
    padding: 0;
  }
}
.cart--inside__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cart--inside__top .cart-empty {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .cart--inside__top .cart-empty {
    margin-bottom: 20px;
  }
}
.cart--inside__top .cart-empty .remove-icon {
  width: 48px;
  height: 48px;
  background: #EEEEEE;
  display: flex;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
}
.cart--inside__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
}
.cart--inside__title h3 {
  margin: 0;
}
.cart--inside .woocommerce-cart-form {
  width: calc(70% - 25px);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cart--inside .woocommerce-cart-form {
    width: calc(65% - 25px);
  }
}
@media (max-width: 991px) {
  .cart--inside .woocommerce-cart-form {
    width: 100%;
  }
}
.cart--inside .woocommerce-cart-form .cart {
  padding: 20px;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
}
.cart--inside .woocommerce-cart-form .cart-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cart--inside .woocommerce-cart-form .cart-item {
    margin-bottom: 40px;
  }
}
.cart--inside .woocommerce-cart-form .cart-item--left {
  width: calc(25% - 15px);
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--left {
    width: calc(30% - 10px);
  }
}
.cart--inside .woocommerce-cart-form .cart-item--left .product-thumbnail img {
  height: auto;
}
.cart--inside .woocommerce-cart-form .cart-item--center {
  width: calc(35% - 10px);
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--center {
    width: calc(70% - 10px);
  }
}
.cart--inside .woocommerce-cart-form .cart-item--center .product-name .flash-sale {
  max-width: 150px;
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--center .product-name .flash-sale {
    max-width: 100px;
  }
}
.cart--inside .woocommerce-cart-form .cart-item--center__bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--center__bottom {
    display: none;
  }
}
.cart--inside .woocommerce-cart-form .cart-item .product-meta {
  margin-top: 15px;
}
.cart--inside .woocommerce-cart-form .cart-item .additional-data .variation {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cart--inside .woocommerce-cart-form .cart-item .additional-data .variation dd {
  margin: 0;
}
.cart--inside .woocommerce-cart-form .cart-item .additional-data .variation dd p {
  margin: 0;
}
.cart--inside .woocommerce-cart-form .cart-item .product-remove a {
  width: 48px;
  height: 48px;
  display: flex;
  border-radius: 100px;
  background: #EEEEEE;
  align-items: center;
  justify-content: center;
}
.cart--inside .woocommerce-cart-form .cart-item--right {
  width: calc(40% - 15px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-end;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 767px) {
  .cart--inside .woocommerce-cart-form .cart-item--right {
    display: none;
  }
}
.cart--inside .woocommerce-cart-form .cart-item .product-price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cart--inside .woocommerce-cart-form .cart-item .product-price {
    flex-direction: column;
    gap: 0;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 10px;
  }
}
.cart--inside .woocommerce-cart-form .cart-item .product-price span {
  font-size: 1.25rem;
}
.cart--inside .woocommerce-cart-form .cart-item .product-price del span {
  font-size: 1rem;
}
.cart--inside .woocommerce-cart-form .cart-item .product-promotion-value {
  display: flex;
  justify-content: flex-end;
}
.cart--inside .woocommerce-cart-form .cart-item .product-promotion-value .promotion-value {
  border: 1px solid #96710F;
  padding: 4px 8px;
  border-radius: 4px;
}
.cart--inside .woocommerce-cart-form .cart-item .product-subtotal {
  display: flex;
  justify-content: flex-end;
}
.cart--inside .woocommerce-cart-form .cart-item--bottom {
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .cart--inside .woocommerce-cart-form .cart-item--bottom {
    display: none;
  }
}
.cart--inside .woocommerce-cart-form .cart-item--bottom__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart--inside .woocommerce-cart-form .cart-item--bottom__right {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .cart--inside .woocommerce-cart-form .cart-item--bottom .product-price {
    flex-direction: column;
    gap: 0;
  }
  .cart--inside .woocommerce-cart-form .cart-item--bottom .product-price span {
    font-size: 15px;
  }
  .cart--inside .woocommerce-cart-form .cart-item--bottom .product-price span .amount {
    font-size: 15px;
  }
  .cart--inside .woocommerce-cart-form .cart-item--bottom .product-price del span {
    font-size: 14px;
  }
}
.cart--inside .woocommerce-cart-form .actions button.button {
  margin-left: auto;
  display: flex;
  margin-top: 20px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  padding: 10px;
  border-radius: 25px;
}
.cart--inside .woocommerce-cart-form .actions button.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart--inside .cart-collaterals {
  width: calc(30% - 25px);
  margin-top: 98px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cart--inside .cart-collaterals {
    width: calc(35% - 25px);
  }
}
@media (min-width: 992px) {
  .cart--inside .cart-collaterals {
    height: fit-content;
    max-height: calc(100vh - 118px);
    position: sticky;
    top: 118px;
  }
}
@media (max-width: 991px) {
  .cart--inside .cart-collaterals {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cart--inside .cart-collaterals .cart-totals {
    padding: 20px;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
  }
}
.cart--inside .cart-collaterals .cart-totals .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cart--inside .cart-collaterals .cart-totals--inside {
    padding: 20px;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
  }
}
.cart--inside .cart-collaterals .cart-totals--total {
  border-top: 1px solid #EEEEEE;
  margin-top: 15px;
  padding-top: 15px;
}
.cart--inside .cart-collaterals .cart-totals .checkout-button {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  color: #FFFFFF;
  margin-top: 30px;
  border-radius: 25px;
  font-size: 1rem;
  line-height: 24px;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-button {
  border: 1px solid #000000;
  cursor: pointer;
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FAFAFA;
  color: #000000;
  margin-top: 30px;
  border-radius: 25px;
  font-size: 1rem;
  line-height: 24px;
  transition: all 0.3s;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-button:hover {
  background: #000000;
  color: #FFFFFF;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-content p {
  margin-bottom: 10px;
  text-align: center;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-description {
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-url-container {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 10px;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-url-container .cart-share-url-input {
  width: 90%;
  padding: 10px;
  border: none;
  border-radius: 10px;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-url-container .cart-share-url-input:focus-visible, .cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-url-container .cart-share-url-input:focus {
  outline: none;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-url-container .cart-share-copy-btn {
  width: 10%;
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 10px;
  background: #000000;
  color: #FFFFFF;
  cursor: pointer;
}
.cart--inside .cart-collaterals .cart-totals .cart-share-wrapper .cart-share-expires {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
.cart--inside .cart-collaterals .cart-totals--info {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.cart--inside .cart-collaterals .cart-totals--info:before {
  content: "";
  background: #000000;
  mask-image: url(info-icon.svg);
  -webkit-mask-image: url(info-icon.svg);
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: block;
}
.cart--inside .cart-collaterals .cart-totals--info span {
  width: calc(100% - 30px);
}

.cart-empty--inside {
  justify-content: center;
  display: flex;
  margin-top: 80px;
  margin-bottom: 160px;
  flex-wrap: wrap;
}
.cart-empty--heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cart-empty--heading a {
  text-decoration: underline;
}
.cart-empty--buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 20px;
  flex-wrap: wrap;
}
.cart-empty--buttons a {
  border-radius: 25px;
  padding: 16px 18px;
  display: inline-block;
}
@media (max-width: 575px) {
  .cart-empty--buttons a {
    width: 100%;
    text-align: center;
  }
}
.cart-empty--buttons .home-redirect {
  color: #FFFFFF;
  background: #000000;
}
.cart-empty--buttons .news-redirect {
  color: #000000;
  background: #FAFAFA;
}

.sidebar.shop-page-sidebar {
  width: calc(30% - 25px);
}
@media (min-width: 992px) {
  .sidebar.shop-page-sidebar {
    position: sticky;
    top: 118px;
    height: fit-content;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991px) {
  .sidebar.shop-page-sidebar {
    width: 100%;
    transform: translateX(-100vw);
    position: fixed;
    opacity: 0;
    transition: all 0.3s ease;
    left: 0;
    height: 100%;
    height: -webkit-fill-available;
  }
}
.sidebar.shop-page-sidebar.open {
  transform: translateX(0);
  opacity: 1;
  background: #FFFFFF;
  z-index: 999;
  top: 0;
}
@media (max-width: 991px) {
  .sidebar.shop-page-sidebar .sidebar-shop {
    padding: 0 15px;
    height: 100%;
    overflow-y: scroll;
  }
}
.sidebar.shop-page-sidebar .sidebar-shop--content--title {
  margin-top: 0;
}
.sidebar.shop-page-sidebar .sidebar-shop--mobile-header {
  display: none;
}
@media (max-width: 991px) {
  .sidebar.shop-page-sidebar .sidebar-shop--mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.sidebar.shop-page-sidebar .sidebar-shop--mobile-header .close-filters-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  cursor: pointer;
  color: #000000;
}
.sidebar.shop-page-sidebar .sidebar-shop--mobile-footer {
  position: sticky;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #FFFFFF;
  padding: 10px 0;
}
.sidebar.shop-page-sidebar .sidebar-shop--mobile-footer .close-filters-btn {
  display: flex;
  width: 100%;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 25px;
  padding: 18px 24px;
  justify-content: center;
  cursor: pointer;
}

.woocommerce-order {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .woocommerce-order {
    margin: 40px 0;
  }
}
.woocommerce-order--inside {
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
  gap: 50px;
}
.woocommerce-order__title {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .woocommerce-order__title {
    order: 1;
    margin-bottom: 20px;
  }
}
.woocommerce-order--left {
  width: calc(55% - 25px);
}
@media (max-width: 991px) {
  .woocommerce-order--left {
    width: 100%;
    order: 3;
  }
}
.woocommerce-order--right {
  width: calc(45% - 25px);
}
@media (max-width: 991px) {
  .woocommerce-order--right {
    width: 100%;
    order: 2;
  }
}
.woocommerce-order .order-info span {
  margin-bottom: 10px;
}
.woocommerce-order .order-info-box {
  margin-bottom: 25px;
}
.woocommerce-order .order-info-box h5 {
  margin-top: 0;
}
.woocommerce-order .order-info-box--inside {
  border: 1px solid #EEEEEE;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  flex-direction: column;
}
.woocommerce-order .order-address {
  margin-top: 60px;
}
.woocommerce-order .order-address .shipping-address {
  margin-top: 50px;
}
.woocommerce-order .order-address .address-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce-order--sidebar__inside {
  padding: 20px;
  border: 1px solid #EEEEEE;
  border-radius: 16px;
}
.woocommerce-order--sidebar__inside .order-sidebar-summary--products .order-product-list__items .order-product-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.woocommerce-order--sidebar__inside .order-sidebar-summary--products .order-product-list__items .order-product-item__details {
  width: calc(100% - 120px);
}
@media (max-width: 767px) {
  .woocommerce-order--sidebar__inside .order-sidebar-summary--products .order-product-list__items .order-product-item__unit-price {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.woocommerce-order--sidebar__inside .order-sidebar-summary--products .order-product-list__items .order-product-item__unit-price span {
  font-size: 1rem;
}
.woocommerce-order--sidebar__inside .order-sidebar-summary--products .order-product-list__items .order-product-item__unit-price del span {
  font-size: 0.875rem;
}
.woocommerce-order--sidebar__inside .order-sidebar-summary--products .order-product-list__items .order-product-item__promotion .promotion-value {
  border: 1px solid #96710F;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .woocommerce-order--sidebar__inside .order-sidebar-summary--products .order-product-list__items .order-product-item__promotion .promotion-value {
    display: inline-flex;
    gap: 10px;
  }
}
.woocommerce-order--sidebar__inside .order-sidebar-summary--total {
  margin-top: 40px;
}
.woocommerce-order--sidebar__inside .order-sidebar-summary--total .order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.woocommerce-order--sidebar__inside .order-sidebar-summary--total .order-total-value {
  border-top: 1px solid #EEEEEE;
  margin-top: 15px;
  padding-top: 15px;
  flex-wrap: wrap;
}
.woocommerce-order--contact-us {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .woocommerce-order--contact-us {
    margin-top: 50px;
  }
}
.woocommerce-order--contact-us a:first-child {
  margin-top: 10px;
}
.woocommerce-order--contact-us .email {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.woocommerce-order--contact-us .email:before {
  content: "";
  background: #000000;
  mask-image: url(envelope.svg);
  -webkit-mask-image: url(envelope.svg);
  width: 20px;
  height: 15px;
  margin-right: 10px;
  display: flex;
}
.woocommerce-order--contact-us .phone {
  display: inline-flex;
  align-items: center;
}
.woocommerce-order--contact-us .phone:before {
  content: "";
  background: #000000;
  mask-image: url(phone.svg);
  -webkit-mask-image: url(phone.svg);
  width: 19px;
  height: 19px;
  display: flex;
  margin-right: 10px;
}

.sidebar-shop--content--fibo-filters .fibofilters-block {
  border-bottom: none;
  border-top: 1px solid #CCCCCC;
}
.sidebar-shop--content--fibo-filters .fibofilters-block__headline {
  margin-top: 10px;
}
.sidebar-shop--content--fibo-filters .fibofilters-block__headline-box-inner {
  font-size: 1rem;
  line-height: 24px;
}
.sidebar-shop--content--fibo-filters .fibofilters-block__content-inner {
  margin-top: 10px;
}
.sidebar-shop--content--fibo-filters .fibofilters-block__items-list .fibofilters-item__label {
  font-size: 0.875rem;
  line-height: 20px;
  color: #4A4A4A;
}
.sidebar-shop--content--fibo-filters .fibofilters-block__items-list .fibofilters-item__counter {
  font-size: 0.875rem;
  line-height: 20px;
  margin-left: 5px;
}
.sidebar-shop--content--fibo-filters .fibofilters-block__items-list .fibofilters-more-less {
  font-size: 0.875rem;
  line-height: 20px;
  color: #000000;
  display: inline-flex;
  margin-top: 15px;
  align-items: center;
}
.sidebar-shop--content--fibo-filters .fibofilters-block__items-list .fibofilters-more-less:before {
  content: "";
  background: #000000;
  mask-image: url(plus.svg);
  -webkit-mask-image: url(plus.svg);
  width: 24px;
  height: 24px;
  margin-right: 5px;
  display: block;
}
.sidebar-shop--content--fibo-filters .fibofilters-block__items-list .fibofilters-more-less__counter {
  margin-left: 5px;
}
.sidebar-shop--content--fibo-filters .fibofilters-block .fibofilters-range__inputs-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sidebar-shop--content--fibo-filters .fibofilters-block .fibofilters-range__inputs-wrapper input::-webkit-outer-spin-button,
.sidebar-shop--content--fibo-filters .fibofilters-block .fibofilters-range__inputs-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sidebar-shop--content--fibo-filters .fibofilters-block .fibofilters-range__inputs-wrapper input[type=number] {
  -moz-appearance: textfield;
}
.sidebar-shop--content--fibo-filters .fibofilters-block .fibofilters-range__inputs-wrapper .fibofilters-input__wrapper {
  display: inline-flex;
  align-items: center;
  width: calc(45% - 5px);
  margin: 0;
}
.sidebar-shop--content--fibo-filters .fibofilters-block .fibofilters-range__inputs-wrapper .fibofilters-input__wrapper:first-child:after {
  content: "-";
  display: block;
  margin: 0 5px;
}
.sidebar-shop--content--fibo-filters .fibofilters-block .fibofilters-input__element {
  border: 1px solid #000000;
  border-radius: 4px;
}

.fibofilters-applied-filters-container .fibofilters-applied-filter {
  border: 1px solid #666666;
  border-radius: 4px;
  box-shadow: none;
}
.fibofilters-applied-filters-container .fibofilters-applied-filter:hover {
  box-shadow: none;
}
.fibofilters-applied-filters-container .fibofilters-applied-filter span {
  font-weight: 400;
  color: #4A4A4A;
  font-size: 0.75rem;
  line-height: 16px;
}
.fibofilters-applied-filters-container .fibofilters-applied-filter span strong {
  font-weight: 400;
}
.fibofilters-applied-filters-container .fibofilters-applied-filter--clear-all span {
  display: flex;
  align-items: center;
}
.fibofilters-applied-filters-container .fibofilters-applied-filter--clear-all span:after {
  content: "";
  background: #000000;
  mask-image: url(x-icon.svg);
  -webkit-mask-image: url(x-icon.svg);
  width: 12px;
  height: 12px;
  display: block;
  margin-left: 5px;
}
.fibofilters-applied-filters-container .fibofilters-slider-histogram {
  display: none;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}

.fibofilters-applied-filters-container {
  height: auto !important;
}

.fibofilters-applied-filters-container:empty {
  display: none;
}
.fibofilters-applied-filters-container:empty:not(:has(.fibofilters-applied-filters)) {
  display: none;
}

.form-page {
  margin: 50px 0;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .form-page {
    padding: 0;
  }
}
.form-page--inside {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.form-page--right, .form-page--left {
  max-width: 400px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #EEEEEE;
  padding: 15px 25px;
}
@media (max-width: 767px) {
  .form-page--right, .form-page--left {
    max-width: 100%;
  }
}
.form-page--right h2, .form-page--left h2 {
  margin-top: 0;
}
.form-page--left .form-group {
  margin-bottom: 10px;
}
.form-page--left .form-group label {
  margin-bottom: 8px;
  display: block;
}
.form-page--left .form-group input {
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
}
.form-page--left .form-group input[type=text],
.form-page--left .form-group input[type=email],
.form-page--left .form-group input[type=password] {
  height: 48px;
  width: 100%;
}
.form-page--left .form-group .forgot-password {
  text-decoration: underline;
}
.form-page--left .form-group .login-btn {
  margin-top: 32px;
  max-width: 100%;
  background-color: #000000;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
}
.form-page--left .form-group .login-btn:after {
  content: none;
}
.form-page--left .form-check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 20px 0;
}
.form-page--left .form-check label {
  margin-bottom: 0;
}
.form-page--left .form-check a {
  text-decoration: underline;
}
.form-page--left .register-btn {
  background-color: #000000;
  border: none;
  max-width: 100%;
  color: #FFFFFF;
  cursor: pointer;
  margin-top: 25px;
}
.form-page--left .register-btn:after {
  content: none;
}
.form-page--left .login-register-button {
  position: relative;
}
.form-page--left .login-register-button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  color: #96710F;
  --d: 8px;
  box-shadow: calc(1 * var(--d)) calc(0 * var(--d)) 0 0, calc(0.707 * var(--d)) calc(0.707 * var(--d)) 0 0.25px, calc(0 * var(--d)) calc(1 * var(--d)) 0 0.5px, calc(-0.707 * var(--d)) calc(0.707 * var(--d)) 0 0.75px, calc(-1 * var(--d)) calc(0 * var(--d)) 0 1px, calc(-0.707 * var(--d)) calc(-0.707 * var(--d)) 0 1.25px, calc(0 * var(--d)) calc(-1 * var(--d)) 0 1.5px;
  animation: loader-spin 1s infinite steps(8);
  pointer-events: none;
  mask-image: none;
  background: none;
}
.form-page--right__inside h2 {
  margin-top: 0;
}
.form-page--right__inside .register-benefits {
  list-style-type: none;
  padding: 0;
  margin: 30px 0;
}
.form-page--right__inside .register-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.form-page--right__inside .register-benefits li:before {
  content: "";
  mask-image: url(check.svg);
  -webkit-mask-image: url(check.svg);
  width: 20px;
  height: 24px;
  display: flex;
  background: #000000;
  margin-right: 10px;
}
.form-page--right__inside .divider {
  margin-bottom: 20px;
}
.form-page--right__inside .divider span {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.form-page--right__inside .divider span:before, .form-page--right__inside .divider span:after {
  content: "";
  width: 25%;
  display: block;
  border: 1px solid #AAAAAA;
  height: 1px;
}
.form-page--right__inside .form-login-register-button {
  border: none;
  cursor: pointer;
  background: #FAFAFA;
  box-shadow: none;
  max-width: 100%;
}
.form-page--right__inside .form-login-register-button:after {
  content: none;
}
.form-page .error-message {
  color: #D63230;
  display: block;
  margin: 2px 0;
}

.lost-password {
  display: flex;
  justify-content: center;
}
.lost-password .form-row {
  display: flex;
  justify-content: center;
}
.lost-password .form-row-first {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lost-password .form-row-first input {
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
  height: 48px;
}
.lost-password button {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
}

.single-product-main .single-product-inside--top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  margin-bottom: 50px;
}
.single-product-main .single-product-inside--top__left {
  width: calc(50% - 10px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--top__left {
    width: 100%;
  }
}
.single-product-main .single-product-inside--top__left .single-product-gallery {
  position: relative;
}
.single-product-main .single-product-inside--top__left .single-product-gallery--inside {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.single-product-main .single-product-inside--top__left .single-product-gallery--thumbs {
  z-index: 9;
  width: 10%;
  height: auto;
}
@media (max-width: 767px) {
  .single-product-main .single-product-inside--top__left .single-product-gallery--thumbs {
    order: 2;
    width: 100%;
  }
}
.single-product-main .single-product-inside--top__left .single-product-gallery--thumbs > div {
  height: 100%;
}
.single-product-main .single-product-inside--top__left .single-product-gallery--thumbs .swiper-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .single-product-main .single-product-inside--top__left .single-product-gallery--thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.single-product-main .single-product-inside--top__left .single-product-gallery--thumbs .swiper-wrapper .swiper-slide {
  max-height: 80px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .single-product-main .single-product-inside--top__left .single-product-gallery--thumbs .swiper-wrapper .swiper-slide {
    height: auto;
    max-height: 100%;
  }
}
.single-product-main .single-product-inside--top__left .single-product-gallery--thumbs .swiper-wrapper .swiper-slide .thumb-image {
  height: auto;
  position: relative;
  max-width: 80px;
  max-height: 80px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .single-product-main .single-product-inside--top__left .single-product-gallery--thumbs .swiper-wrapper .swiper-slide .thumb-image {
    height: auto;
    width: auto;
    position: relative;
  }
}
.single-product-main .single-product-inside--top__left .single-product-gallery--thumbs .swiper-wrapper .swiper-slide .thumb-image img {
  border-radius: 4px;
  height: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .single-product-main .single-product-inside--top__left .single-product-gallery--thumbs .swiper-wrapper .swiper-slide .thumb-image img {
    height: auto;
    width: auto;
  }
}
.single-product-main .single-product-inside--top__left .single-product-gallery--full {
  width: calc(90% - 20px);
}
@media (max-width: 767px) {
  .single-product-main .single-product-inside--top__left .single-product-gallery--full {
    order: 1;
    width: 100%;
  }
}
.single-product-main .single-product-inside--top__left .single-product-gallery--full .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}
.single-product-main .single-product-inside--top__right {
  width: calc(50% - 10px);
  position: relative;
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--top__right {
    width: 100%;
  }
}
.single-product-main .single-product-inside--top__right .summary {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
  border-radius: 16px;
  padding: 25px;
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--top__right .summary {
    padding: 10px;
    box-shadow: none;
    margin-top: 20px;
  }
}
.single-product-main .single-product-inside--top__right .summary .product_title {
  margin: 20px 0;
  font-weight: 501;
}
.single-product-main .single-product-inside--top__right .summary--price {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .single-product-main .single-product-inside--top__right .summary--price .promotion-timer {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--top__right .summary--price {
    margin-bottom: 20px;
  }
}
.single-product-main .single-product-inside--top__right .summary--price .promotion-value {
  border: 1px solid #96710F;
  padding: 4px 8px;
  border-radius: 4px;
}
.single-product-main .single-product-inside--top__right .summary .stock.in-stock {
  display: none;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
.single-product-main .single-product-inside--top__right .summary .cart {
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--top__right .summary .cart {
    flex-wrap: wrap;
    display: flex;
  }
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--top__right .summary .cart .quantity {
    max-width: calc(100% - 58px);
    width: 100%;
  }
}
.single-product-main .single-product-inside--top__right .summary .cart .quantity:not(:has(.quantity--inside)) {
  display: none;
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--top__right .summary .cart .quantity--inside {
    max-width: 100%;
  }
}
.single-product-main .single-product-inside--top__right .summary .cart:not(.variations_form) {
  display: inline-flex;
  gap: 10px;
  width: 100%;
}
.single-product-main .single-product-inside--top__right .summary .cart .single_variation_wrap {
  width: 100%;
}
.single-product-main .single-product-inside--top__right .summary .cart .woocommerce-variation-add-to-cart {
  display: inline-flex;
  gap: 10px;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--top__right .summary .cart .woocommerce-variation-add-to-cart {
    flex-wrap: wrap;
  }
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-add-to-wishlist-button-block {
  margin: 0;
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
  cursor: pointer;
  background: #EEEEEE;
  border: none;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button:after {
  mask-image: url(heart.svg);
  -webkit-mask-image: url(heart.svg);
  height: 26px;
  content: "";
  background: #96710F;
  width: 26px;
  display: flex;
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button--added:after {
  mask-image: url(heart-background.svg);
  -webkit-mask-image: url(heart-background.svg);
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-add-to-wishlist-button-block .yith-wcwl-icon-svg__wrapper {
  display: none;
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-wcwl-add-button .single_add_to_wishlist {
  cursor: pointer;
  background: #EEEEEE !important;
  border: none !important;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-wcwl-add-button .single_add_to_wishlist:after {
  mask-image: url(heart.svg);
  -webkit-mask-image: url(heart.svg);
  height: 26px;
  content: "";
  background: #96710F;
  width: 26px;
  display: flex;
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-wcwl-add-button .single_add_to_wishlist--added:after {
  mask-image: url(heart-background.svg);
  -webkit-mask-image: url(heart-background.svg);
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-wcwl-add-button .separator {
  display: none;
}
.single-product-main .single-product-inside--top__right .summary .cart .yith-wcwl-add-button svg {
  display: none;
}
.single-product-main .single-product-inside--top__right .summary .cart .view-wishlist {
  display: none;
}
.single-product-main .single-product-inside--top__right .summary .cart .gift-card-price {
  width: 100%;
  margin-bottom: 20px;
  /* Firefox */
}
.single-product-main .single-product-inside--top__right .summary .cart .gift-card-price label {
  margin-bottom: 10px;
  display: block;
}
.single-product-main .single-product-inside--top__right .summary .cart .gift-card-price input {
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
  height: 48px;
  width: 100%;
}
.single-product-main .single-product-inside--top__right .summary .cart .gift-card-price input::-webkit-outer-spin-button,
.single-product-main .single-product-inside--top__right .summary .cart .gift-card-price input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product-main .single-product-inside--top__right .summary .cart .gift-card-price input[type=number] {
  -moz-appearance: textfield;
}
@media (max-width: 991px) {
  .single-product-main .single-product-inside--bottom {
    margin-top: 50px;
  }
}
.single-product-main .quick-mobile-add-to-cart {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3215686275);
  background: #fff;
  height: 80px;
  transition: all 0.3s ease;
}
.single-product-main .quick-mobile-add-to-cart--inside {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 0 15px;
  height: 100%;
  gap: 10px;
}
.single-product-main .quick-mobile-add-to-cart--button {
  cursor: pointer;
  background: #000000;
  border-radius: 25px;
  border: none;
  color: #FFFFFF;
  padding: 10px 15px;
  flex: 1;
}
.single-product-main .quick-mobile-add-to-cart--button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.single-product-main .quick-mobile-add-to-cart.sticky {
  position: fixed;
  bottom: 0;
  z-index: 9999999999;
  left: 0;
  right: 0;
}
.single-product-main .quick-mobile-add-to-cart.sticky-animation {
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.product-fit {
  margin: 30px 0 5px 0;
}
.product-fit .fit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-fit .fit-bar__text {
  max-width: 90%;
}
.product-fit .fit-bar__button button {
  border: none;
  background: none;
  cursor: pointer;
}
.product-fit button {
  cursor: pointer;
}
.product-fit .product-fit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.product-fit .product-fit-popup.is-open {
  display: flex;
}
.product-fit .product-fit-popup .popup-content {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 680px;
  border-radius: 8px;
  padding: 25px;
}
.product-fit .product-fit-popup .popup-content .popup-header {
  display: flex;
  justify-content: space-between;
}
.product-fit .product-fit-popup .popup-content .popup-header .close-btn {
  border: none;
  background: none;
}
.product-fit .product-fit-popup .popup-content .popup-button {
  display: flex;
  justify-content: center;
}
.product-fit .product-fit-popup .popup-content .popup-button button {
  border: none;
}

.modal-sizes {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  display: none;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.modal-sizes.is-open {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
}
.modal-sizes--inside {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: unset;
  max-height: 80vh;
  overflow-y: scroll;
  width: 100%;
}
@media (max-width: 767px) {
  .modal-sizes--inside {
    max-height: 90vh;
  }
}
.modal-sizes--inside__content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.modal-sizes--inside__content-header {
  text-align: center;
  text-transform: uppercase;
  padding: 5px 20px;
  position: relative;
}
.modal-sizes--inside__content-header h3 {
  font-weight: 501;
  margin: 0;
}
.modal-sizes--inside__content-header h4 {
  margin: 10px 0;
}
.modal-sizes--inside__content-header .btn-close {
  position: absolute;
  right: 20px;
  top: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-sizes--inside__content-header .btn-close:after {
  content: "";
  background: #4A4A4A;
  mask-repeat: no-repeat;
  display: block;
  mask-image: url(x-icon.svg);
  -webkit-mask-image: url(x-icon.svg);
  width: 12px;
  height: 12px;
}
.modal-sizes--inside__content-body {
  padding: 5px 0;
}
@media (max-width: 991px) {
  .modal-sizes--inside__content-body {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.modal-sizes--inside__content-body__heading {
  display: inline-flex;
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .modal-sizes--inside__content-body__heading {
    display: flex;
    width: 100%;
  }
}
.modal-sizes--inside__content-body__heading span {
  width: 25%;
  background-color: #BFA576;
  color: #FFFFFF;
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .modal-sizes--inside__content-body__heading span {
    flex: 1;
    width: auto;
  }
}
.modal-sizes--inside__content-body__content {
  display: inline-flex;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 20px;
  gap: 2%;
  flex-direction: column;
}
@media (max-width: 991px) {
  .modal-sizes--inside__content-body__content {
    display: flex;
    width: 100%;
    gap: 0;
    margin-top: 0;
    flex-direction: column;
  }
}
.modal-sizes--inside__content-body__content-row {
  flex-direction: row;
  display: flex;
  margin-bottom: 1%;
}
@media (max-width: 991px) {
  .modal-sizes--inside__content-body__content-row {
    display: flex;
    width: 100%;
    margin-bottom: 0;
  }
}
.modal-sizes--inside__content-body__content span {
  width: 23.5%;
  padding: 10px;
  border-bottom: 1px solid #000000;
  max-height: 35px;
}
@media (max-width: 991px) {
  .modal-sizes--inside__content-body__content span {
    flex: 1;
    width: auto;
  }
}
.modal-sizes--inside__content-footer {
  text-align: right;
  margin-top: 40px;
  display: block;
}
.modal-sizes--inside__content-footer button {
  border: 1px solid #000000;
  padding: 5px 10px;
  text-transform: uppercase;
  background-color: #000000;
  color: #FFFFFF;
  font-weight: 501;
  cursor: pointer;
}
@media (min-width: 992px) {
  .modal-sizes.columns-4 .modal-sizes--inside.modal-dialog {
    max-width: 50vw;
  }
}
@media (max-width: 767px) {
  .modal-sizes.columns-4 .modal-sizes--inside__content-body {
    overflow-y: scroll;
  }
}
.modal-sizes.columns-4 .modal-sizes--inside__content-body span {
  width: 25%;
  padding: 5px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .modal-sizes.columns-4 .modal-sizes--inside__content-body span {
    line-height: 1.2;
  }
}
@media (max-width: 991px) {
  .modal-sizes.columns-4 .modal-sizes--inside__content-body span {
    flex: 1;
    width: auto;
  }
}
.modal-sizes.columns-4 .modal-sizes--inside__content-body__content {
  gap: 0;
}
@media (max-width: 767px) {
  .modal-sizes.columns-4 .modal-sizes--inside__content-body__content {
    width: 100%;
    flex-wrap: nowrap;
  }
}
@media (min-width: 960px) {
  .modal-sizes.columns-6 .modal-sizes--inside.modal-dialog {
    max-width: 55vw;
  }
}
@media (max-width: 767px) {
  .modal-sizes.columns-6 .modal-sizes--inside__content-body {
    overflow-y: scroll;
  }
}
.modal-sizes.columns-6 .modal-sizes--inside__content-body span {
  width: 16%;
  padding: 5px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .modal-sizes.columns-6 .modal-sizes--inside__content-body span {
    width: auto;
    line-height: 1.2;
  }
}
@media (max-width: 991px) {
  .modal-sizes.columns-6 .modal-sizes--inside__content-body span {
    flex: 1;
    width: auto;
  }
}
@media (max-width: 767px) {
  .modal-sizes.columns-6 .modal-sizes--inside__content-body__heading {
    width: auto;
  }
}
.modal-sizes.columns-6 .modal-sizes--inside__content-body__content {
  gap: 0;
}
@media (max-width: 767px) {
  .modal-sizes.columns-6 .modal-sizes--inside__content-body__content {
    width: auto;
    flex-wrap: nowrap;
  }
}
@media (min-width: 960px) {
  .modal-sizes.columns-7 .modal-sizes--inside.modal-dialog {
    max-width: 60vw;
  }
}
@media (max-width: 767px) {
  .modal-sizes.columns-7 .modal-sizes--inside__content-body {
    overflow-y: scroll;
  }
}
.modal-sizes.columns-7 .modal-sizes--inside__content-body span {
  width: 14.25%;
  padding: 5px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .modal-sizes.columns-7 .modal-sizes--inside__content-body span {
    width: auto;
    line-height: 1.2;
  }
}
@media (max-width: 991px) {
  .modal-sizes.columns-7 .modal-sizes--inside__content-body span {
    flex: 1;
    width: auto;
  }
}
@media (max-width: 767px) {
  .modal-sizes.columns-7 .modal-sizes--inside__content-body__heading {
    width: auto;
  }
}
.modal-sizes.columns-7 .modal-sizes--inside__content-body__content {
  gap: 0;
}
@media (max-width: 767px) {
  .modal-sizes.columns-7 .modal-sizes--inside__content-body__content {
    width: auto;
    flex-wrap: nowrap;
  }
}
@media (min-width: 960px) {
  .modal-sizes.columns-8 .modal-sizes--inside.modal-dialog {
    max-width: 65vw;
  }
}
@media (max-width: 767px) {
  .modal-sizes.columns-8 .modal-sizes--inside__content-body {
    overflow-y: scroll;
  }
}
.modal-sizes.columns-8 .modal-sizes--inside__content-body span {
  width: 12%;
  padding: 5px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .modal-sizes.columns-8 .modal-sizes--inside__content-body span {
    width: auto;
    line-height: 1.2;
  }
}
@media (max-width: 991px) {
  .modal-sizes.columns-8 .modal-sizes--inside__content-body span {
    flex: 1;
    width: auto;
  }
}
@media (max-width: 767px) {
  .modal-sizes.columns-8 .modal-sizes--inside__content-body__heading {
    width: auto;
  }
}
.modal-sizes.columns-8 .modal-sizes--inside__content-body__content {
  gap: 0;
}
@media (max-width: 767px) {
  .modal-sizes.columns-8 .modal-sizes--inside__content-body__content {
    width: auto;
    flex-wrap: nowrap;
  }
}

.open-size-table {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 0;
  gap: 10px;
  cursor: pointer;
}

.variations {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-variations-overlay {
  width: 100%;
}
.custom-variations-overlay .custom-select {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.custom-variations-overlay .custom-select__trigger {
  width: 100%;
  border: 1px solid #666666;
  background: white;
  border-radius: 4px;
  height: 48px;
  padding: 0 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-variations-overlay .custom-select__trigger:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  width: 14px;
  height: 8px;
  display: block;
}
.custom-variations-overlay .custom-select__options {
  margin: 0;
  list-style-type: none;
  max-height: 550px;
  overflow-y: scroll;
  height: 100%;
  border: 1px solid #666666;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: black;
  width: 100%;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  position: absolute;
  z-index: 9999;
  background: #fff;
  top: 48px;
  display: none;
  padding: 0;
  min-height: 50px;
}
.custom-variations-overlay .custom-select__option {
  cursor: pointer;
  height: 45px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-variations-overlay .custom-select__option:hover {
  background: #EEEEEE;
}
.custom-variations-overlay .custom-select__option--selected {
  background: #EEEEEE;
}
.custom-variations-overlay .custom-select__option--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.custom-variations-overlay .custom-select__bell {
  text-decoration: underline;
  position: absolute;
  right: 20px;
  cursor: pointer;
  z-index: 99;
}
.custom-variations-overlay .custom-select--open .custom-select__trigger {
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 1px solid #FFFFFF;
}
.custom-variations-overlay .custom-select--open .custom-select__trigger:after {
  transform: rotate(180deg);
}
.custom-variations-overlay .custom-select--open .custom-select__options {
  display: block;
}

.payments-icons {
  margin-top: 20px;
}
.payments-icons--inside {
  display: inline-flex;
  width: 100%;
  gap: 15px;
  justify-content: space-between;
}
.payments-icons--inside .payment-icon {
  max-width: 45px;
  object-fit: contain;
  height: auto;
  flex: 1;
}
@media (max-width: 575px) {
  .payments-icons--inside .payment-icon {
    max-width: 35px;
    height: auto;
  }
}

.grail-control {
  margin-top: 40px;
}
.grail-control--inside {
  display: flex;
  background: #BFA576;
  align-items: center;
  border-radius: 8px;
  gap: 10px;
  padding: 10px;
}
.grail-control--img img {
  max-width: 60px;
  height: auto;
}
.grail-control--text span {
  display: block;
}

.summary-tabs {
  margin-top: 20px;
}
.summary-tabs .single-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid #EEEEEE;
  flex-wrap: wrap;
}
.summary-tabs .single-tab:last-child {
  border-bottom: none;
}
.summary-tabs .single-tab--content {
  position: relative;
  width: calc(90% - 30px);
}
@media (max-width: 991px) {
  .summary-tabs .single-tab--content {
    width: calc(90% - 30px);
  }
}
.summary-tabs .single-tab--content span {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .summary-tabs .single-tab--image {
    width: 25px;
  }
}
.summary-tabs .single-tab.toggle-tab {
  flex-wrap: wrap;
}
.summary-tabs .single-tab.toggle-tab .single-tab--content:after {
  content: "";
  background: #4A4A4A;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
  width: 16px;
  height: 16px;
  display: flex;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.summary-tabs .single-tab .tab-toggler {
  width: 100%;
}
.summary-tabs .single-tab .tab-toggler .product-availability {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .summary-tabs .single-tab .tab-toggler .product-availability {
    flex-wrap: wrap;
  }
}
.summary-tabs .single-tab .tab-toggler .product-availability p {
  margin: 0;
}
@media (max-width: 991px) {
  .summary-tabs .single-tab .tab-toggler .product-availability p {
    width: 100%;
  }
}
.summary-tabs .single-tab .tab-toggler .product-availability span {
  display: flex;
  align-items: center;
}
.summary-tabs .single-tab .tab-toggler .product-availability span:before {
  content: "";
  background: #4A4A4A;
  mask-repeat: no-repeat;
  display: block;
  margin-right: 8px;
}
.summary-tabs .single-tab .tab-toggler .product-availability span.is-available:before {
  mask-image: url(check.svg);
  -webkit-mask-image: url(check.svg);
  width: 20px;
  height: 24px;
}
.summary-tabs .single-tab .tab-toggler .product-availability span.is-not-available:before {
  mask-image: url(x-icon.svg);
  -webkit-mask-image: url(x-icon.svg);
  width: 12px;
  height: 12px;
  background: red;
}
.summary-tabs .single-tab .tab-toggler .product-realization-time {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.summary-tabs .single-tab .tab-toggler .product-realization-time p {
  margin: 0;
}
.summary-tabs .storage-tab .tab-toggler .product-stock__row--hidden {
  display: none;
}
.summary-tabs .storage-tab .tab-toggler .product-stock__row--visible {
  display: block;
}
.summary-tabs .shipping-tab.hide {
  display: none;
}

.menu-scroll-to {
  border-top: 1px solid #EEEEEE;
  margin-top: 50px;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .menu-scroll-to {
    margin: 20px 0 40px 0;
    border-top: none;
    border-bottom: 1px solid #000000;
    overflow-x: scroll;
  }
}
.menu-scroll-to--inside {
  padding: 30px 0;
  display: flex;
  gap: 20px;
}
@media (max-width: 991px) {
  .menu-scroll-to--inside {
    overflow-x: scroll;
    padding: 10px 0 20px 0;
  }
}
.menu-scroll-to--link {
  padding-bottom: 5px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .menu-scroll-to--link {
    white-space: nowrap;
  }
}
.menu-scroll-to--link.active {
  font-weight: 700;
  color: #000000;
  border-bottom: 2px solid #96710F;
}

.product-faq {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 40px 0 80px 0;
  margin-bottom: 50px;
}
.product-faq--inside {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.product-faq--title {
  text-align: center;
}
@media (max-width: 991px) {
  .product-faq--title {
    text-align: left;
  }
}
.product-faq--item {
  border-bottom: 1px solid #000000;
  /* jeśli otwarte, obróć ikonkę */
}
.product-faq--item:last-child {
  border-bottom: 0;
}
.product-faq--item-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 501;
}
@media (max-width: 767px) {
  .product-faq--item-title span {
    max-width: 320px;
  }
}
@media (max-width: 575px) {
  .product-faq--item-title span {
    max-width: 280px;
  }
}
.product-faq--item-title:after {
  content: "";
  width: 14px;
  height: 8px;
  display: block;
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  transition: transform 0.3s ease;
}
.product-faq--item.item-open .product-faq--item-title:after {
  transform: rotate(180deg);
}
.product-faq--item-content {
  transition: max-height 0.2s ease-out;
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 0;
}
.product-faq--cta {
  margin-top: 60px;
}
.product-faq--cta__title {
  text-align: center;
  margin-bottom: 10px;
}
.product-faq--cta__subtitle {
  text-align: center;
  width: 100%;
  display: block;
}
.product-faq--cta__button {
  background: #000000;
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
}
.product-faq--cta__button:after {
  content: none;
}

.single-product-slider {
  margin: 40px 0;
  padding: 40px 0;
}

.product-details {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .product-details {
    margin: 20px 0;
  }
}
@media (max-width: 991px) {
  .product-details h4 {
    margin: 30px 0;
  }
}
.product-details .product-attributes-list .product-attribute-item {
  background-color: #EEEEEE;
  padding: 16px 20px;
  display: flex;
}
.product-details .product-attributes-list .product-attribute-item:nth-child(2) {
  background-color: #FFFFFF;
}
.product-details .product-attributes-list .product-attribute-item .attribute-label {
  width: 100px;
}
.product-details .product-attributes-list .product-attribute-item .attribute-value {
  width: calc(100% - 100px);
}

.product_description {
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 24px;
}
.product_description h3,
.product_description h4 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
}
.product_description p {
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 24px;
}

.product-description .single-row {
  display: inline-flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}
@media (max-width: 767px) {
  .product-description .single-row {
    margin-bottom: 30px;
  }
}
.product-description .single-row .image {
  width: 40%;
  position: relative;
  height: 500px;
}
@media (max-width: 767px) {
  .product-description .single-row .image {
    max-height: 350px;
    width: 100%;
  }
}
.product-description .single-row .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.product-description .single-row .text {
  width: 50%;
}
@media (max-width: 767px) {
  .product-description .single-row .text {
    width: 100%;
  }
}
.product-description .single-row .text h4 {
  font-size: 2rem;
  line-height: 40px;
}
@media (max-width: 767px) {
  .product-description .single-row .text h4 {
    font-size: 1.5rem;
    line-height: 32px;
    margin: 0;
  }
}
.product-description .single-row .text p {
  font-size: 1rem;
  line-height: 24px;
  color: #4A4A4A;
}
@media (max-width: 767px) {
  .product-description .single-row .text p {
    font-size: 0.875rem;
  }
}

.added-to-cart-modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(130, 130, 130, 0.42) 0 0 no-repeat padding-box;
  visibility: hidden;
  z-index: -10;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, z-index 0s linear 0.3s;
}
.added-to-cart-modal.is-visible {
  z-index: 99999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in, visibility 0s linear;
}
.added-to-cart-modal--inside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  height: auto;
  background: #FFFFFF 0 0 no-repeat padding-box;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.0784313725);
  border-radius: 8px;
  padding: 30px;
}
@media (max-width: 991px) {
  .added-to-cart-modal--inside {
    max-width: 700px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .added-to-cart-modal--inside {
    height: 100vh;
    width: 100vh;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    overflow-y: scroll;
  }
}
.added-to-cart-modal--heading {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .added-to-cart-modal--heading {
    padding: 0 15px;
    margin: 20px 0;
  }
}
.added-to-cart-modal--heading h4 {
  font-size: 22px;
  margin: 0;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 575px) {
  .added-to-cart-modal--heading h4 {
    font-size: 17px;
  }
}
.added-to-cart-modal--heading h4:before {
  mask-image: url(check-with-circle.svg);
  -webkit-mask-image: url(check-with-circle.svg);
  content: "";
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: block;
  background: #96710F;
  margin-right: 10px;
}
.added-to-cart-modal--heading .modal-close-top {
  cursor: pointer;
}
.added-to-cart-modal--heading .modal-close-top:before {
  content: "";
  mask-image: url(close-icon.svg);
  -webkit-mask-image: url(close-icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 15px;
  height: 15px;
  background-color: #000;
  margin-right: 5px;
  display: block;
}
.added-to-cart-modal--product {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin: 15px 0;
  gap: 20px;
}
@media (max-width: 767px) {
  .added-to-cart-modal--product {
    padding: 0 15px;
  }
}
.added-to-cart-modal--product__image img {
  width: 120px;
}
@media (max-width: 575px) {
  .added-to-cart-modal--product__image img {
    max-width: 200px;
  }
}
.added-to-cart-modal--product__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.added-to-cart-modal--product__name {
  margin: 0;
}
.added-to-cart-modal--product__price {
  margin: 0;
  font-weight: 501;
}
.added-to-cart-modal--product__variable, .added-to-cart-modal--product__qty {
  font-size: 12px;
  color: #4A4A4A;
}
.added-to-cart-modal--tabs {
  display: inline-flex;
  gap: 5px;
}
@media (max-width: 767px) {
  .added-to-cart-modal--tabs {
    padding: 0 15px;
  }
}
.added-to-cart-modal--tabs .tabs-btn {
  font-size: 14px;
  font-weight: 501;
  padding: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom: 1px solid #FFFFFF;
  cursor: pointer;
}
.added-to-cart-modal--tabs .tabs-btn.current {
  border-color: #000000;
  font-weight: 501;
}
.added-to-cart-modal--tab {
  padding: 10px 15px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  display: none;
}
@media (max-width: 991px) {
  .added-to-cart-modal--tab {
    padding: 15px 0 15px 15px;
  }
}
@media (max-width: 767px) {
  .added-to-cart-modal--tab {
    padding: 15px 0 15px 15px;
  }
}
.added-to-cart-modal--tab.current-tab {
  display: block;
}
@media (max-width: 767px) {
  .added-to-cart-modal--tab .additional-products {
    max-height: 200px;
  }
}
.added-to-cart-modal--tab .additional-products__slider .content-product h2 {
  font-size: 14px;
  line-height: 1.2;
}
.added-to-cart-modal--tab .additional-products__slider .content-product .custom-product-label {
  display: none;
}
.added-to-cart-modal .added-to-cart-bottom {
  margin-top: 20px;
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .added-to-cart-modal .added-to-cart-bottom {
    padding: 0 15px;
    margin: 20px 0;
  }
}
@media (max-width: 575px) {
  .added-to-cart-modal .added-to-cart-bottom {
    flex-direction: column;
  }
}
.added-to-cart-modal .added-to-cart-bottom .modal-close-bottom {
  color: #000000;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 401;
  width: calc(50% - 10px);
  max-width: 100%;
  border-radius: 25px;
  background: #EEEEEE;
}
@media (max-width: 767px) {
  .added-to-cart-modal .added-to-cart-bottom .modal-close-bottom {
    width: 100%;
  }
}
.added-to-cart-modal .added-to-cart-bottom .modal-close-bottom:after {
  content: none;
}
.added-to-cart-modal--button {
  padding: 10px;
  background: #000000;
  color: #FFFFFF;
  font-size: 15px;
  width: calc(50% - 10px);
  max-width: 100%;
  border-radius: 25px;
}
@media (max-width: 767px) {
  .added-to-cart-modal--button {
    width: 100%;
  }
}
.added-to-cart-modal--button:hover {
  color: #FFFFFF;
}
.added-to-cart-modal--button:after {
  content: none;
}

.heathen-product {
  padding: 50px 0;
}
.heathen-product .single-product-inside--top__right {
  background: #FFFFFF;
}
.heathen-product .product-heathen-background {
  position: absolute;
  top: -110px;
  left: 50%;
  z-index: -10;
  width: 850px;
  height: 950px;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .heathen-product .product-heathen-background {
    width: 100%;
    height: 100%;
    left: 0;
    transform: none;
  }
}
@media (max-width: 991px) {
  .heathen-product .product-heathen-background {
    display: none;
    width: 100%;
    height: 100%;
  }
}
.heathen-product .product-heathen-background-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .heathen-product .product-heathen-background-image {
    background-size: contain;
    height: 700px;
  }
}
.heathen-product .product-heathen-heading img {
  max-width: 250px;
  margin-top: 20px;
  height: auto;
}
.heathen-product .grail-control--inside {
  background-color: #F2F1EB;
}
.heathen-product .grail-control--img img {
  max-width: 36px;
}
.heathen-product .grail-control--button {
  background: transparent;
  padding: 0 20px;
  border-radius: 25px;
  color: #000000;
  display: flex;
  justify-content: center;
  margin-left: auto;
  height: 48px;
  align-items: center;
  border: 1px solid #000000;
  transition: background 0.3s ease, color 0.3s ease;
}
.heathen-product .grail-control--button:hover {
  background: #000000;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .heathen-product .grail-control--button {
    margin-top: 10px;
    width: 100%;
  }
}
.heathen-product .grail-control--2 {
  margin-top: 15px;
}
.heathen-product .grail-control--2 .grail-control--inside {
  flex-wrap: wrap;
}
.heathen-product .grail-control--2 .grail-control--text {
  display: flex;
  justify-content: space-between;
  max-width: 60%;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1399px) {
  .heathen-product .grail-control--2 .grail-control--text {
    max-width: 50%;
  }
}
@media (max-width: 1199px) {
  .heathen-product .grail-control--2 .grail-control--text {
    max-width: 40%;
  }
}
@media (max-width: 991px) {
  .heathen-product .grail-control--2 .grail-control--text {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .heathen-product .grail-control--2 .grail-control--text {
    max-width: calc(100% - 50px);
  }
}
.heathen-product-info-section--inside {
  background-color: #F2F1EB;
  padding: 10px;
  border-radius: 16px;
}
.heathen-product-info-section--image {
  display: flex;
  justify-content: center;
}
.heathen-product-info-section--image img {
  width: 100%;
  height: auto;
  max-width: 1450px;
}
.heathen-product-info-section--content {
  margin-bottom: 20px;
}
.heathen-product-info-section--content img {
  max-width: 300px;
  display: block;
  margin: 10px auto;
}
.heathen-product-info-section--content p {
  font-weight: 400;
  margin-bottom: 5px;
  text-align: center;
  line-height: 1.5;
}
.heathen-product-info-section--content span {
  text-align: center;
  display: block;
}
.heathen-product-info-section--toggle-content {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .heathen-product-info-section--toggle-content {
    padding: 0 10px;
  }
}
.heathen-product-info-section--toggle-content.toggle-visible {
  max-height: 1000px;
  opacity: 1;
}
.heathen-product-info-section--show-more {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.heathen-product-info-section--show-more button {
  display: flex;
  align-items: center;
  background: #F2F1EB;
  border: 1px solid #000000;
  border-radius: 25px;
  padding: 12px 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.heathen-product-info-section--show-more button:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  width: 14px;
  height: 8px;
  margin-left: 10px;
  display: flex;
  transition: transform 0.3s ease;
}
.heathen-product-info-section--show-more button.active:after {
  transform: rotate(180deg);
}
.heathen-product--size-info {
  width: 100%;
  border: 1px solid #666666;
  background: #FFFFFF;
  border-radius: 4px;
  height: 48px;
  padding: 0 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.product-notification-availability {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(130, 130, 130, 0.42) 0 0 no-repeat padding-box;
  visibility: hidden;
  z-index: -10;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, z-index 0s linear 0.3s;
}
.product-notification-availability.is-visible {
  z-index: 99999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in, visibility 0s linear;
}
.product-notification-availability--inside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  height: auto;
  background: #FFFFFF 0 0 no-repeat padding-box;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.0784313725);
  border-radius: 8px;
  padding: 30px;
}
@media (max-width: 991px) {
  .product-notification-availability--inside {
    max-width: 700px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .product-notification-availability--inside {
    height: 100vh;
    width: 100vh;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    overflow-y: scroll;
  }
}
.product-notification-availability--heading {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .product-notification-availability--heading {
    padding: 0 15px;
    margin: 20px 0;
  }
}
.product-notification-availability--heading h4 {
  font-size: 22px;
  margin: 0;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 575px) {
  .product-notification-availability--heading h4 {
    font-size: 17px;
  }
}
.product-notification-availability--heading h4:before {
  mask-image: url(check-with-circle.svg);
  -webkit-mask-image: url(check-with-circle.svg);
  content: "";
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: block;
  background: #96710F;
  margin-right: 10px;
}
.product-notification-availability--heading .modal-close-top {
  cursor: pointer;
}
.product-notification-availability--heading .modal-close-top:before {
  content: "";
  mask-image: url(close-icon.svg);
  -webkit-mask-image: url(close-icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 15px;
  height: 15px;
  background-color: #000;
  margin-right: 5px;
  display: block;
}
.product-notification-availability--product {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin: 15px 0;
  gap: 20px;
}
@media (max-width: 767px) {
  .product-notification-availability--product {
    padding: 0 15px;
  }
}
.product-notification-availability--product__image img {
  width: 120px;
}
@media (max-width: 575px) {
  .product-notification-availability--product__image img {
    max-width: 200px;
  }
}
.product-notification-availability--product__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-notification-availability--product__name {
  margin: 0;
}
.product-notification-availability--product__price {
  margin: 0;
  font-weight: 501;
}
.product-notification-availability--product__variable, .product-notification-availability--product__qty {
  font-size: 12px;
  color: #4A4A4A;
}
.product-notification-availability--tabs {
  display: inline-flex;
  gap: 5px;
}
@media (max-width: 767px) {
  .product-notification-availability--tabs {
    padding: 0 15px;
  }
}
.product-notification-availability--tabs .tabs-btn {
  font-size: 14px;
  font-weight: 501;
  padding: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom: 1px solid #FFFFFF;
  cursor: pointer;
}
.product-notification-availability--tabs .tabs-btn.current {
  border-color: #000000;
  font-weight: 501;
}
.product-notification-availability--tab {
  padding: 10px 15px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  display: none;
}
@media (max-width: 991px) {
  .product-notification-availability--tab {
    padding: 15px 0 15px 15px;
  }
}
@media (max-width: 767px) {
  .product-notification-availability--tab {
    padding: 15px 0 15px 15px;
  }
}
.product-notification-availability--tab.current-tab {
  display: block;
}
@media (max-width: 767px) {
  .product-notification-availability--tab .additional-products {
    max-height: 200px;
  }
}
.product-notification-availability--tab .additional-products__slider .content-product h2 {
  font-size: 14px;
  line-height: 1.2;
}
.product-notification-availability--tab .additional-products__slider .content-product .custom-product-label {
  display: none;
}
.product-notification-availability .added-to-cart-bottom {
  margin-top: 20px;
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .product-notification-availability .added-to-cart-bottom {
    padding: 0 15px;
    margin: 20px 0;
  }
}
@media (max-width: 575px) {
  .product-notification-availability .added-to-cart-bottom {
    flex-direction: column;
  }
}
.product-notification-availability .added-to-cart-bottom .modal-close-bottom {
  color: #000000;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 401;
  width: calc(50% - 10px);
  max-width: 100%;
  border-radius: 25px;
  background: #EEEEEE;
}
@media (max-width: 767px) {
  .product-notification-availability .added-to-cart-bottom .modal-close-bottom {
    width: 100%;
  }
}
.product-notification-availability .added-to-cart-bottom .modal-close-bottom:after {
  content: none;
}
.product-notification-availability--button {
  padding: 10px;
  background: #000000;
  color: #FFFFFF;
  font-size: 15px;
  width: calc(50% - 10px);
  max-width: 100%;
  border-radius: 25px;
}
@media (max-width: 767px) {
  .product-notification-availability--button {
    width: 100%;
  }
}
.product-notification-availability--button:hover {
  color: #FFFFFF;
}
.product-notification-availability--button:after {
  content: none;
}

.product-availability-save-form {
  display: none;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
  transform: translate(-50%, -50%);
  min-height: 100px;
  min-width: 300px;
  position: fixed;
  z-index: -1;
}
.product-availability-save-form.is-visible {
  z-index: 9999;
  display: block;
}
.product-availability-save-form__close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  cursor: pointer;
}
.product-availability-save-form__close .icon-close {
  cursor: pointer;
}
.product-availability-save-form__close .icon-close:after {
  content: "";
  background: #000000;
  mask-image: url(close-icon.svg);
  -webkit-mask-image: url(close-icon.svg);
  width: 15px;
  height: 15px;
  display: block;
  margin-left: 5px;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #000000;
}
.product-availability-save-form__body {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.product-availability-save-form__body .form-group {
  width: 100%;
}
.product-availability-save-form__body .form-group input {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #000000;
  color: #000000;
  width: 100%;
}
.product-availability-save-form__body .form-actions {
  width: 100%;
}
.product-availability-save-form__body .form-actions button {
  border-radius: 25px;
  border: none;
  padding: 0 40px;
  min-width: 350px;
  color: #FFFFFF;
  background: #000000;
  cursor: pointer;
  width: 100%;
  height: 48px;
  margin-top: 20px;
}

#product {
  position: relative;
  margin: 0 auto;
  cursor: e-resize;
  text-align: center;
  height: 100%;
}
#product img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
  opacity: 0;
}
#product img.active {
  position: relative;
  opacity: 1;
}
#product .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px;
  border: 0.5px solid #0D1A0F;
  margin: 10px;
  bottom: 0;
  position: absolute;
  width: calc(100% - 20px);
}
@media (max-width: 1024px) {
  #product .controls {
    margin-top: 50px;
    position: relative;
  }
}
#product .controls button {
  cursor: pointer;
  background: transparent;
  border: none;
}
#product .controls .icon-360 img {
  opacity: 1;
  position: relative;
}
#product .controls .progress-container {
  width: 100%;
  height: 2px;
  background-color: #ddd;
  margin: 0 15px;
  position: relative;
}
#product .controls .progress-container .progress-bar {
  height: 100%;
  background-color: #0D1A0F;
  width: 150px;
  position: absolute;
  left: 0;
}
#product .controls #prev img,
#product .controls #next img {
  opacity: 1;
  position: relative;
}
#product .controls #next {
  margin-left: 10px;
}

.product-look--inside {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}
.product-look--inside__left {
  width: calc(50% - 10px);
}
.product-look--inside__left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .product-look--inside__left {
    width: 100%;
  }
}
.product-look--inside__right {
  width: calc(50% - 10px);
}
@media (max-width: 991px) {
  .product-look--inside__right {
    width: 100%;
  }
}
.product-look--inside__action {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
.product-look--inside__action .buy-in-set button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 4px;
  background: #000000;
  color: #FFFFFF;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.product-look--inside__action .buy-in-set button.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.product-look--items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.product-look--items .content-product {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 991px) {
  .product-look--items .content-product {
    width: calc((100% - 60px) / 4);
  }
}
@media (max-width: 767px) {
  .product-look--items .content-product {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 575px) {
  .product-look--items .content-product {
    width: calc((100% - 20px) / 2);
  }
}
.product-look--items .content-product a {
  margin-bottom: 20px;
}
.product-look--items .content-product .size-info-simple-product {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: 100%;
  border: 1px solid #666666;
  background: white;
  border-radius: 4px;
  padding: 0 20px;
  text-align: left;
  position: relative;
}

.related-products-by-colors {
  width: 100%;
  margin-bottom: 20px;
}
.related-products-by-colors__grid {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}

.related-product-item {
  width: 80px;
  height: 80px;
  position: relative;
}
.related-product-item.active {
  border: 1px solid #000000;
}
.related-product-item:hover {
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .related-product-item:hover {
    border: none;
  }
}
.related-product-item__link img {
  width: 100%;
  height: auto;
}
.related-product-item.hide {
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.quantity--inside {
  display: flex;
  background-color: #EEEEEE;
  max-width: 85px;
  width: 100%;
  height: 48px;
  align-items: center;
  border-radius: 8px;
  min-width: 85px;
}
.quantity .quantity-button {
  background: none;
  border: none;
  width: 33.3%;
  cursor: pointer;
  height: 100%;
  padding: 0;
}
.quantity .quantity-button:disabled {
  cursor: not-allowed;
}
.quantity .quantity-button svg path {
  fill: #96710F;
}
.quantity .qty {
  background: none;
  border: none;
  width: 33.3%;
  background: #EEEEEE;
  text-align: center;
  height: 100%;
  color: #96710F;
  padding: 0;
}
.quantity .qty:focus {
  outline: none;
}
.quantity .qty::-webkit-input-placeholder {
  color: #96710F;
}
.quantity .qty::-moz-placeholder {
  color: #96710F;
  opacity: 1;
}
.quantity .qty:-ms-input-placeholder {
  color: #96710F;
}
.quantity .qty::-ms-input-placeholder {
  color: #96710F;
}
.quantity .qty::placeholder {
  color: #96710F;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

.single_add_to_cart_button {
  border-radius: 256px;
  border: none;
  padding: 0 40px;
  min-width: 350px;
  color: #FFFFFF;
  background: #000000;
  cursor: pointer;
  width: calc(100% - 153px);
  height: 48px;
}
.cart .quantity:not(:has(.quantity--inside)) ~ .single_add_to_cart_button {
  width: calc(100% - 68px);
}
@media (max-width: 991px) {
  .single_add_to_cart_button {
    width: 100%;
    min-width: unset;
  }
}
.single_add_to_cart_button.disabled {
  background-color: #666666;
  cursor: not-allowed;
  opacity: 0.8;
}
.single_add_to_cart_button.loading {
  position: relative;
  cursor: not-allowed;
  opacity: 0.5;
}
.single_add_to_cart_button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  color: #96710F;
  --d: 8px;
  box-shadow: calc(1 * var(--d)) calc(0 * var(--d)) 0 0, calc(0.707 * var(--d)) calc(0.707 * var(--d)) 0 0.25px, calc(0 * var(--d)) calc(1 * var(--d)) 0 0.5px, calc(-0.707 * var(--d)) calc(0.707 * var(--d)) 0 0.75px, calc(-1 * var(--d)) calc(0 * var(--d)) 0 1px, calc(-0.707 * var(--d)) calc(-0.707 * var(--d)) 0 1.25px, calc(0 * var(--d)) calc(-1 * var(--d)) 0 1.5px;
  animation: loader-spin 1s infinite steps(8);
  pointer-events: none;
}

@keyframes loader-spin {
  100% {
    transform: translateY(-50%) rotate(1turn);
  }
}
.only-pickup {
  cursor: default;
}

.only-pickup--directions {
  background: #FFFFFF;
  color: #000000;
  background: white;
  border: 1px solid #000000;
  cursor: pointer;
}
.only-pickup--directions a {
  color: #000000;
}
@media (max-width: 767px) {
  .only-pickup--directions {
    width: 100%;
  }
}

.custom-product-label .product-label {
  color: #96710F;
  border-radius: 4px;
  border: 1px solid #96710F;
  padding: 5px 8px;
  display: inline-flex;
}
.custom-product-label .product-label.last-pieces-label {
  color: #D63230;
  border-color: #D63230;
}
.custom-product-label .product-label.bestseller-label {
  color: #1C77C3;
  border-color: #1C77C3;
}
.custom-product-label .product-label.sale-label {
  color: #337357;
  border-color: #337357;
}
@media (max-width: 767px) {
  .custom-product-label .product-label {
    font-size: 10px;
    padding: 4px;
  }
}
.custom-product-label img.product-label-image {
  position: absolute;
  width: 60px;
  height: auto;
  top: 5px;
  left: 5px;
  border-radius: 0;
  z-index: 99;
}
@media (max-width: 991px) {
  .custom-product-label img.product-label-image {
    width: 25px;
    height: 25px;
  }
}
.custom-product-label img.product-label-image.img-daily-deal {
  width: 60px;
  height: 30px;
}
.custom-product-label.under-retail-product-label .product-label {
  border-color: #000000;
  color: #000000;
  background: #FFFFFF;
}
.custom-product-label.loop-product-label .product-label {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 9;
}
.custom-product-label.loop-product-label img.product-label-image {
  position: absolute;
  width: 60px;
  height: auto;
  top: 5px;
  left: 5px;
}
@media (max-width: 991px) {
  .custom-product-label.loop-product-label img.product-label-image {
    width: 25px;
    height: 25px;
  }
}
.custom-product-label.loop-product-label img.product-label-image.img-sale {
  width: 60px;
}
@media (max-width: 767px) {
  .custom-product-label.loop-product-label img.product-label-image.img-sale {
    width: 40px;
    height: auto;
  }
}
.custom-product-label.loop-product-label img.product-label-image.img-daily-deal {
  width: 60px;
  height: 30px;
}
.custom-product-label.loop-product-label img.product-label-image.img-heathen-product {
  width: 40px;
  height: 40px;
}
@media (max-width: 991px) {
  .custom-product-label.loop-product-label img.product-label-image.img-heathen-product {
    width: 40px;
    height: 40px;
  }
}
.custom-product-label.single-product-label {
  margin: 10px 0 20px 0;
}
.custom-product-label.single-product-label:has(.img-daily-deal) {
  margin: 0;
  display: none;
}
.custom-product-label.single-product-label .product-label {
  position: relative;
  top: unset;
  left: unset;
}
.custom-product-label.single-product-label img.product-label-image {
  position: relative;
  height: 25px;
  width: 25px;
  top: unset;
  left: unset;
}
@media (max-width: 991px) {
  .custom-product-label.single-product-label img.product-label-image {
    width: 25px;
    height: 25px;
  }
}
.custom-product-label.single-product-label img.product-label-image.img-sale {
  width: 45px;
  height: 45px;
}
@media (max-width: 991px) {
  .custom-product-label.single-product-label img.product-label-image.img-sale {
    width: 40px;
    height: 40px;
  }
}
.custom-product-label.single-product-label img.product-label-image.img-daily-deal {
  position: relative;
  display: flex;
  width: 80px;
  height: auto;
  top: unset;
  left: 0;
  margin-left: auto;
}
@media (max-width: 991px) {
  .custom-product-label.single-product-label img.product-label-image.img-daily-deal {
    margin-left: 0;
  }
}
.custom-product-label.single-product-label img.product-label-image.img-heathen-product {
  width: 35px;
  height: auto;
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
}
@media (max-width: 991px) {
  .custom-product-label.single-product-label img.product-label-image.img-heathen-product {
    width: 25px;
    height: 25px;
  }
}
.custom-product-label.single-product-label.heathen-product-label {
  display: none;
}
.custom-product-label.single-product-label .percentage-display {
  top: 22px;
  left: 2px;
}
@media (max-width: 991px) {
  .custom-product-label.single-product-label .percentage-display {
    top: 22px;
    left: 5px;
  }
}
.custom-product-label .percentage-display {
  height: auto;
  left: 15px;
  position: absolute;
  top: 25px;
  z-index: 999;
  color: #fff;
  width: 40px;
  text-align: center;
}
.custom-product-label .percentage-display span {
  font-weight: 700;
}
@media (max-width: 767px) {
  .custom-product-label .percentage-display {
    top: 18px;
    font-size: 13px;
    left: 10px;
    width: 30px;
  }
}

.single-products-slider .custom-product-label {
  margin: 0;
}
.single-products-slider .custom-product-label .product-label {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 9;
}
.single-products-slider .custom-product-label img.product-label-image {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.woocommerce-notices-wrapper {
  padding: 0 30px;
  margin-top: 20px;
  width: 100%;
}

ul.woocommerce-error {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.woocommerce-error li {
  background: #fff6f8;
  border: 1px solid #D63230;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 10px 20px;
}
ul.woocommerce-error li a {
  color: #D63230;
}
ul.woocommerce-error li a strong {
  font-weight: normal;
}

.woocommerce-message {
  background: #eefff3;
  border: 1px solid #337357;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.checkout-inline-error-message {
  display: none;
}

.notifications-container {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
}
.notifications-container.notifications-top-right {
  top: 20px;
  right: 20px;
}
.notifications-container.notifications-top-left {
  top: 20px;
  left: 20px;
}
.notifications-container.notifications-bottom-right {
  bottom: 20px;
  right: 20px;
}
.notifications-container.notifications-bottom-left {
  bottom: 20px;
  left: 20px;
}
.notifications-container.notifications-top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .notifications-container {
    left: 10px !important;
    right: 10px !important;
    top: 10px;
    transform: none !important;
  }
}

.notification {
  display: flex;
  align-items: flex-start;
  min-width: 300px;
  max-width: 400px;
  margin-bottom: 10px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .notification {
    min-width: auto;
    max-width: 100%;
    margin-bottom: 8px;
    padding: 14px 16px;
  }
}
.notification--entering {
  opacity: 0;
  transform: translateX(100%);
}
.notification--visible {
  opacity: 1;
  transform: translateX(0);
}
.notification--leaving {
  opacity: 0;
  transform: translateX(100%);
}
.notification--success {
  background: #eefff3;
  border-left: 4px solid #337357;
  color: #155724;
}
.notification--success .notification__close {
  color: #155724;
}
.notification--success .notification__close:hover {
  background: rgba(21, 87, 36, 0.1);
}
.notification--error {
  background: #fff6f8;
  border-left: 4px solid #D63230;
  color: #721c24;
}
.notification--error .notification__close {
  color: #721c24;
}
.notification--error .notification__close:hover {
  background: rgba(114, 28, 36, 0.1);
}
.notification--warning {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  color: #856404;
}
.notification--warning .notification__close {
  color: #856404;
}
.notification--warning .notification__close:hover {
  background: rgba(133, 100, 4, 0.1);
}
.notification--info {
  background: #d1ecf1;
  border-left: 4px solid #17a2b8;
  color: #0c5460;
}
.notification--info .notification__close {
  color: #0c5460;
}
.notification--info .notification__close:hover {
  background: rgba(12, 84, 96, 0.1);
}

.notification__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notification__message {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .notification__message {
    font-size: 13px;
  }
}

.notification__actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.notification__action {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.notification__action--primary {
  background: #000000;
  color: white;
}
.notification__action--primary:hover {
  background: black;
}
.notification__action--secondary {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}
.notification__action--secondary:hover {
  background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .notification__action {
    padding: 4px 8px;
    font-size: 11px;
  }
}

.notification__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.notification__close:hover {
  background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .notification__close {
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .notifications-container {
    left: 5px !important;
    right: 5px !important;
    top: 5px;
  }
  .notification {
    min-width: auto;
    padding: 12px 14px;
    border-radius: 6px;
  }
  .notification__message {
    font-size: 12px;
  }
  .notification__action {
    padding: 3px 6px;
    font-size: 10px;
  }
  .notification__close {
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
}
.cart-updated {
  animation: cart-pulse 0.6s ease-in-out;
}

@keyframes cart-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
    color: #000000;
  }
}
.coupon {
  margin: 15px 0;
  border-radius: 10px;
  border: 1px solid #666666;
  padding: 10px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
@media (max-width: 991px) {
  .coupon {
    margin-bottom: 40px;
  }
}
.coupon--heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.coupon--heading__text {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 5px;
}
.coupon--heading__text:before {
  mask-image: url(coupon-icon.svg);
  -webkit-mask-image: url(coupon-icon.svg);
  content: "";
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 22px;
  height: 22px;
  display: block;
  background: #96710F;
}
.coupon--heading .toggle-icon:before {
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  content: "";
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 10px;
  height: 6px;
  display: block;
  background: #000000;
}
.coupon .coupon--toggle {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  width: 100%;
}
.coupon .coupon--toggle.open {
  max-height: 240px;
  padding: 10px 0;
}
.coupon input {
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #000;
  width: 100%;
}
@media (max-width: 992px) {
  .coupon input {
    width: 100%;
  }
}
.coupon a.button {
  margin-top: 10px;
  width: 100%;
  margin-left: 0;
  background: #000;
  color: #fff;
  border-radius: 25px;
  padding: 10px;
  transition: all 0.2s ease-in-out;
  border: none;
  display: flex;
  text-align: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .coupon a.button {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.coupon a.button:hover {
  background-color: #96710F;
  color: #fff;
}

.applied-coupons .coupon-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.applied-coupons .coupon-item--right {
  display: flex;
  gap: 5px;
  align-items: center;
}
.applied-coupons .coupon-item--right a {
  width: 15px;
  height: 15px;
  display: flex;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #000000;
  border-radius: 4px;
  background: #FFFFFF;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input[type=checkbox]:checked {
  background: #FFFFFF;
}
input[type=checkbox]::after {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 24px;
  transform: translate(-50%, -50%);
  background: #000000;
  mask-image: url(check.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(check.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
input[type=checkbox]:checked::after {
  display: block;
}

.loop-add-to-cart {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 4px;
  background: #000000;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loop-add-to-cart:hover:not(:disabled) {
  background: black;
  transform: translateY(-1px);
}
.loop-add-to-cart:disabled {
  background: #666666;
  color: #444444;
  cursor: not-allowed;
  opacity: 0.6;
}
.loop-add-to-cart.loading {
  position: relative;
  color: transparent;
}
.loop-add-to-cart.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .variation-add-to-cart .variation-custom-select__options {
    max-height: 300px;
  }
}
.variation-add-to-cart {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.variation-add-to-cart .variation-selector {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  visibility: hidden;
}
.variation-add-to-cart .variation-custom-select {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.variation-add-to-cart .variation-custom-select__trigger {
  width: 100%;
  border: 1px solid #666666;
  background: white;
  border-radius: 4px;
  height: 48px;
  padding: 0 20px;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
}
.variation-add-to-cart .variation-custom-select__trigger span {
  color: #000000;
}
.variation-add-to-cart .variation-custom-select__trigger:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  width: 14px;
  height: 8px;
  display: block;
}
.variation-add-to-cart .variation-custom-select__trigger:focus {
  outline: none;
  border-color: #000000;
}
.variation-add-to-cart .variation-custom-select__options {
  margin: 0;
  list-style-type: none;
  max-height: 550px;
  overflow-y: scroll;
  height: 100%;
  border: 1px solid #666666;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: black;
  width: 100%;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  position: absolute;
  z-index: 9999;
  background: #fff;
  top: 48px;
  display: none;
  padding: 0;
  min-height: 50px;
}
.variation-add-to-cart .variation-custom-select__option {
  cursor: pointer;
  height: 45px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.variation-add-to-cart .variation-custom-select__option:hover {
  background: #EEEEEE;
}
.variation-add-to-cart .variation-custom-select__option--selected {
  background: #EEEEEE;
  color: #000000;
  font-weight: 500;
}
.variation-add-to-cart .variation-custom-select__option--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.variation-add-to-cart .variation-custom-select[aria-expanded=true] .variation-custom-select__trigger {
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 1px solid #FFFFFF;
}
.variation-add-to-cart .variation-custom-select[aria-expanded=true] .variation-custom-select__trigger:after {
  transform: rotate(180deg);
}
.variation-add-to-cart .variation-custom-select[aria-expanded=true] .variation-custom-select__options {
  display: block;
}
.variation-add-to-cart .variation-add-to-cart-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 4px;
  background: #000000;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.variation-add-to-cart .variation-add-to-cart-btn:hover:not(:disabled) {
  background: black;
  transform: translateY(-1px);
}
.variation-add-to-cart .variation-add-to-cart-btn:disabled {
  background: #666666;
  color: #444444;
  cursor: not-allowed;
  opacity: 0.6;
}
.variation-add-to-cart .variation-add-to-cart-btn.loading {
  position: relative;
  color: transparent;
}
.variation-add-to-cart .variation-add-to-cart-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.checkout-main {
  margin-bottom: 80px;
}
.checkout-main--inside {
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
}
.checkout-main .checkout-steps {
  width: calc(60% - 30px);
}
@media (max-width: 991px) {
  .checkout-main .checkout-steps {
    width: 100%;
  }
}
.checkout-main .checkout-sidebar-summary {
  width: calc(40% - 30px);
  margin-top: 120px;
}
@media (max-width: 991px) {
  .checkout-main .checkout-sidebar-summary {
    width: 100%;
    margin-top: 40px;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.checkout-main .custom-order-comments-field {
  margin-top: 50px;
}
.checkout-main .custom-order-comments-field .custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.checkout-main .custom-order-comments-field .custom-order-comments-textarea-wrapper {
  margin-top: 20px;
}
.checkout-main .custom-order-comments-field textarea {
  resize: none;
  width: 100%;
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
  min-height: 80px;
}
.checkout-main .woocommerce-terms-and-conditions-wrapper {
  margin-top: 50px;
}
.checkout-main .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.checkout-main .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label span.woocommerce-terms-and-conditions-checkbox-text {
  font-size: 1rem;
  width: auto;
}
.checkout-main .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label span.woocommerce-terms-and-conditions-checkbox-text a {
  color: #000000;
}
.checkout-main #order_review_heading {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.checkout-main #order_review .custom-payment-title {
  margin: 40px 0 20px;
}
.checkout-main #order_review input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #000000;
  border-radius: 50%;
  background: #FFFFFF;
  position: relative;
  cursor: pointer;
  margin: 0 6px 0 0;
  transition: border-width 0.2s, border-color 0.2s;
}
.checkout-main #order_review input[type=radio]:before {
  content: "";
  display: none;
}
.checkout-main #order_review input[type=radio]:checked {
  border-width: 5px;
  border-color: #000000;
  background: #FFFFFF;
}
.checkout-main #order_review #place_order {
  display: none;
  visibility: hidden;
}

.checkout-summary {
  display: none;
}
.checkout-summary__box--address .summary-data__field {
  margin-bottom: 10px;
}
.checkout-summary__box--shipping-address .summary-data__field {
  margin-bottom: 10px;
}
.checkout-summary__box-content {
  border: 1px solid #EEEEEE;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
}
.checkout-summary__box .same-address {
  background: #EEEEEE;
}
.checkout-summary__box-data .summary-data__field {
  margin-bottom: 10px;
}
.checkout-summary__box-actions button {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.checkout-summary__box-actions button:before {
  content: "";
  background: #4A4A4A;
  mask-image: url(edit-icon.svg);
  -webkit-mask-image: url(edit-icon.svg);
  width: 19px;
  height: 19px;
  display: flex;
}
.checkout-form .woocommerce-error {
  color: #D63230;
  font-size: 0.75rem;
  margin-top: 10px;
}
.checkout-form .woocommerce-checkout .form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.checkout-form .woocommerce-checkout .form-row label {
  width: 100%;
}
.checkout-form .woocommerce-checkout .form-row span {
  width: 100%;
}
.checkout-form .woocommerce-checkout .form-row .optional {
  display: none;
}
.checkout-form .woocommerce-checkout .form-row label {
  font-size: 0.875rem;
  line-height: 20px;
  margin-bottom: 5px;
}
.checkout-form .woocommerce-checkout .form-row input[type=text],
.checkout-form .woocommerce-checkout .form-row input[type=email],
.checkout-form .woocommerce-checkout .form-row input[type=tel],
.checkout-form .woocommerce-checkout .form-row input[type=url],
.checkout-form .woocommerce-checkout .form-row input[type=password],
.checkout-form .woocommerce-checkout .form-row input[type=search] {
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
  height: 48px;
  width: 100%;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields h3 {
  margin-top: 0;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field {
  order: 1;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field .woocommerce-input-wrapper {
  display: flex;
  gap: 10px;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field .woocommerce-input-wrapper input[type=radio] + label.radio {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  background: #FFFFFF;
  color: #000000;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  width: calc(50% - 5px);
  height: 48px;
  border-radius: 4px;
  border: 1px solid #000000;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field .woocommerce-input-wrapper input[type=radio] + label.radio .required {
  display: none;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field .woocommerce-input-wrapper input[type=radio] + label.radio:hover {
  background: #000000;
  color: #FFFFFF;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field .woocommerce-input-wrapper input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field .woocommerce-input-wrapper input[type=radio]:checked + label.radio {
  background: #000000;
  color: #FFFFFF;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field .woocommerce-input-wrapper input[type=radio]:focus + label.radio {
  outline: none;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #customer_type_field > label.required_field {
  display: none;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_company_field {
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #company_name_field {
  order: 2;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_nip_field {
  order: 3;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_first_name_field {
  order: 4;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_last_name_field {
  order: 5;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_email_field {
  order: 6;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field {
  order: 7;
  width: 100%;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .custom-phone-wrapper {
  display: flex !important;
  align-items: stretch;
  width: 100%;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  position: relative;
  user-select: none;
  flex: 0 0 140px;
  min-width: 140px;
}
@media (max-width: 767px) {
  .checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select {
    max-width: 120px;
    min-width: unset;
  }
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-select-trigger {
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #666666;
  display: inline-flex;
  font-size: inherit;
  justify-content: space-between;
  padding: 0 12px;
  transition: border-color 0.3s;
  width: 100%;
  height: 48px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 991px) {
  .checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-select-trigger {
    padding: 0 8px;
  }
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-select-trigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-select-trigger:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  width: 14px;
  height: 8px;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-select-trigger:hover {
  border-color: #000000;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-select-trigger:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options {
  background: #FFFFFF;
  border: 1px solid #666666;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1019607843);
  display: none;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  max-height: 200px;
  overflow-y: auto;
  height: auto;
  flex-direction: column;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options .custom-option {
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.875rem;
  border-bottom: 1px solid #EEEEEE;
  display: block;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options .custom-option:last-child {
  border-bottom: none;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options .custom-option:hover {
  background: #EEEEEE;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options .custom-option[data-selected=true] {
  background: #000000;
  color: #FFFFFF;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options::-webkit-scrollbar {
  width: 6px;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options::-webkit-scrollbar-track {
  background: #EEEEEE;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options::-webkit-scrollbar-thumb {
  background: #666666;
  border-radius: 3px;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select .custom-options::-webkit-scrollbar-thumb:hover {
  background: #4A4A4A;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select.open .custom-select-trigger {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #000000;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select.open .custom-select-trigger:after {
  transform: rotate(180deg);
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select.open .custom-options {
  display: flex;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .phone-number-input {
  flex: 1;
  border: 1px solid #666666;
  padding: 0 12px;
  height: 48px;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
  border-radius: 0 4px 4px 0;
  width: calc(100% - 140px);
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .phone-number-input:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .phone-number-input::placeholder {
  color: #4A4A4A;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_phone_field .country-code-custom-select {
    flex: none;
  }
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field {
  order: 8;
  width: 100%;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .custom-country-wrapper {
  display: flex !important;
  width: 100%;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  position: relative;
  user-select: none;
  width: 100%;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-select-trigger {
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #666666;
  border-radius: 4px;
  display: inline-flex;
  font-size: inherit;
  justify-content: space-between;
  padding: 0 15px;
  transition: border-color 0.3s;
  width: 100%;
  height: 48px;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-select-trigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.875rem;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-select-trigger:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-down.svg);
  -webkit-mask-image: url(chevron-down.svg);
  width: 14px;
  height: 8px;
  margin-left: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-select-trigger:hover {
  border-color: #000000;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-select-trigger:focus {
  border-color: #000000;
  outline: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options {
  background: #FFFFFF;
  border: 1px solid #666666;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1019607843);
  display: none;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  max-height: 250px;
  overflow-y: auto;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options .custom-option {
  padding: 8px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.875rem;
  border-bottom: 1px solid #EEEEEE;
  display: block;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options .custom-option:last-child {
  border-bottom: none;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options .custom-option:hover {
  background: #EEEEEE;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options .custom-option[data-selected=true] {
  background: #000000;
  color: #FFFFFF;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options::-webkit-scrollbar {
  width: 6px;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options::-webkit-scrollbar-track {
  background: #EEEEEE;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options::-webkit-scrollbar-thumb {
  background: #666666;
  border-radius: 3px;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select .custom-options::-webkit-scrollbar-thumb:hover {
  background: #4A4A4A;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select.open .custom-select-trigger {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #000000;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select.open .custom-select-trigger:after {
  transform: rotate(180deg);
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_country_field .country-custom-select.open .custom-options {
  display: block;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_address_1_field {
  order: 9;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_address_2_field {
  order: 10;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_postcode_field {
  order: 11;
}
.checkout-form .woocommerce-checkout .woocommerce-billing-fields__field-wrapper #billing_city_field {
  order: 12;
}
.checkout-form .woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label-for-checkbox {
  display: flex;
  gap: 5px;
  align-items: center;
}
.checkout-form .woocommerce-checkout .woocommerce-account-fields .woocommerce-form__label-for-checkbox {
  display: flex;
  gap: 5px;
  align-items: center;
}
.checkout-form .woocommerce-checkout .woocommerce-shipping-fields {
  margin: 20px 0;
}
.checkout-form .woocommerce-checkout .woocommerce-shipping-fields #shipping_country_field {
  display: none;
  visibility: hidden;
}

.custom-shipping-section {
  margin-top: 30px;
  margin-bottom: 60px;
  position: relative;
}
.custom-shipping-section.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  z-index: 10;
  border-radius: 4px;
}
.custom-shipping-section.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid #666666;
  border-top: 2px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}
.custom-shipping-section.loading .custom-shipping-methods-wrapper {
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.custom-shipping-section .custom-shipping-title {
  margin: 0 0 20px 0;
}
.custom-shipping-section .delivery-type-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option {
  flex: 1;
  position: relative;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  background: #FFFFFF;
  color: #000000;
  transition: all 0.3s ease;
  margin: 0;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: 1.5px solid #000000;
  box-sizing: border-box;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-label:before {
  content: "";
  margin-right: 5px;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-label.delivery-type-shipping:before {
  background: #000000;
  mask-image: url(box-icon.svg);
  -webkit-mask-image: url(box-icon.svg);
  width: 21px;
  height: 20px;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-label.delivery-type-pickup:before {
  background: #000000;
  mask-image: url(pickup-icon.svg);
  -webkit-mask-image: url(pickup-icon.svg);
  width: 18px;
  height: 21px;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-label .delivery-type-text {
  display: flex;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-label:hover {
  background: #000000;
  color: #FFFFFF;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-radio:checked + .delivery-type-label, .custom-shipping-section .delivery-type-selector .delivery-type-option.selected .delivery-type-label {
  background: #000000;
  color: #FFFFFF;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option .delivery-type-radio:focus + .delivery-type-label {
  outline: none;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option:hover .delivery-type-label:before {
  background: #FFFFFF;
}
.custom-shipping-section .delivery-type-selector .delivery-type-option.selected .delivery-type-label:before {
  background: #FFFFFF;
}
.custom-shipping-section .custom-shipping-methods-wrapper {
  position: relative;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package {
  margin-bottom: 20px;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package:last-child {
  margin-bottom: 0;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-package-name {
  font-size: 0.875rem;
  margin: 0 0 15px 0;
  color: #000000;
  font-weight: 600;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-methods-group .shipping-methods-list {
  margin-bottom: 15px;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-methods-group .shipping-methods-list .shipping-method-option {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #666666;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  height: 68px;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-methods-group .shipping-methods-list .shipping-method-option:last-child {
  margin-bottom: 0;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-methods-group .shipping-methods-list .shipping-method-option:hover {
  background: #EEEEEE;
  border-color: rgba(0, 0, 0, 0.3);
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-methods-group .shipping-methods-list .shipping-method-option .shipping-method-label {
  flex: 1;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 20px;
  margin: 0;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-methods-group .shipping-methods-list .shipping-method-option .shipping-method-label .shipping-method-name {
  display: flex;
  font-weight: 500;
  justify-content: space-between;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-notice {
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-notice p {
  margin: 0;
  font-size: 0.875rem;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-notice:not(.error) {
  background: #EEEEEE;
  color: #4A4A4A;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-notice.error {
  background: rgba(214, 50, 48, 0.1);
  border: 1px solid rgba(214, 50, 48, 0.2);
  color: #D63230;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-package-details {
  margin-bottom: 15px;
}
.custom-shipping-section .custom-shipping-methods-wrapper .custom-shipping-package .shipping-package-details .woocommerce-shipping-contents {
  margin: 0;
  color: #4A4A4A;
  font-size: 0.75rem;
}
.custom-shipping-section .shipping-notice.error {
  padding: 15px;
  background: rgba(214, 50, 48, 0.1);
  border: 1px solid rgba(214, 50, 48, 0.2);
  color: #D63230;
  border-radius: 4px;
}
.custom-shipping-section .shipping-notice.error p {
  margin: 0;
  font-size: 0.875rem;
}

#amp-map-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  background: #FFFFFF;
  color: #000000;
  transition: all 0.3s ease;
  margin: 0;
  height: 48px;
  border-radius: 4px;
  border: 1.5px solid #000000;
}

address#amp-delivery-point-desc {
  align-items: center;
  padding: 12px;
  border: 1px solid #666666;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.woocommerce-checkout-payment .payment_methods {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.woocommerce-checkout-payment .payment_methods .wc_payment_method {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #666666;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  min-height: 68px;
  flex-wrap: wrap;
  width: 100%;
}
.woocommerce-checkout-payment .payment_methods .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: calc(100% - 25px);
}
.woocommerce-checkout-payment .payment_methods .wc_payment_method .payment_box {
  font-size: 0.875rem;
  line-height: 20px;
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .checkout-sidebar-summary--inside {
    padding: 20px;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1607843137);
    height: fit-content;
    position: sticky;
    top: 50px;
  }
}
.checkout-sidebar-summary--products .checkout-product-list__items .checkout-product-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.checkout-sidebar-summary--products .checkout-product-list__items .checkout-product-item__details {
  width: calc(100% - 120px);
}
.checkout-sidebar-summary--products .checkout-product-list__items .checkout-product-item__unit-price span {
  font-size: 1rem;
}
.checkout-sidebar-summary--products .checkout-product-list__items .checkout-product-item__unit-price del span {
  font-size: 0.875rem;
}
.checkout-sidebar-summary--products .checkout-product-list__items .checkout-product-item__promotion .promotion-value {
  border: 1px solid #96710F;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  display: inline-block;
}
.checkout-sidebar-summary--total {
  margin-top: 40px;
}
.checkout-sidebar-summary--total .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.checkout-sidebar-summary--total .checkout-sidebar-summary--total {
  border-top: 1px solid #EEEEEE;
  margin-top: 15px;
  padding-top: 15px;
}
.checkout-sidebar-summary--buttons .show-summary {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  color: #FFFFFF;
  margin-top: 30px;
  border-radius: 25px;
  font-size: 1rem;
  line-height: 24px;
  width: 100%;
  border: none;
  cursor: pointer;
}
.checkout-sidebar-summary--buttons .show-summary.processing {
  opacity: 0.5;
  cursor: not-allowed;
}
.my-account {
  margin-bottom: 50px;
}
.my-account--inside {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.my-account--inside__left {
  width: calc(25% - 20px);
}
@media (max-width: 991px) {
  .my-account--inside__left {
    width: 75%;
    position: fixed;
    background: #FFFFFF;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 999999;
    transform: translateX(100vw);
    visibility: hidden;
    transition: all 0.3s ease;
  }
}
.my-account--inside__left.open {
  transform: translateX(0);
  visibility: visible;
}
.my-account--inside__right {
  width: calc(75% - 20px);
}
@media (max-width: 991px) {
  .my-account--inside__right {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .my-account--navigation {
    height: 100%;
  }
  .my-account--navigation__header {
    background: #FAFAFA;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
    margin-bottom: 20px;
  }
  .my-account--navigation__header span {
    margin-bottom: 0;
    padding: 0;
  }
  .my-account--navigation__header button {
    border: none;
    background: none;
    cursor: pointer;
  }
  .my-account--navigation__header button:after {
    background: #000000;
    mask-image: url(close-icon.svg);
    -webkit-mask-image: url(close-icon.svg);
    width: 20px;
    height: 20px;
    display: flex;
    content: "";
  }
}
@media (min-width: 992px) {
  .my-account--navigation .user-name {
    margin-bottom: 30px;
    display: flex;
  }
}
@media (max-width: 991px) {
  .my-account--navigation .user-name {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .my-account--navigation .woocommerce-MyAccount-navigation {
    height: 100%;
  }
}
.my-account--navigation .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .my-account--navigation .woocommerce-MyAccount-navigation ul {
    margin-top: 40px;
    padding: 0 20px;
  }
}
.my-account--navigation .woocommerce-MyAccount-navigation ul li {
  font-size: 1rem;
  line-height: 24px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.my-account--navigation .woocommerce-MyAccount-navigation ul li a {
  color: #000000;
}
.my-account--navigation .woocommerce-MyAccount-navigation ul li:before {
  display: flex;
  content: "";
  background: #96710F;
  mask-image: url(user-icon-small.svg);
  -webkit-mask-image: url(user-icon-small.svg);
  width: 25px;
  height: 19px;
  margin-right: 5px;
  mask-repeat: no-repeat;
}
@media (max-width: 991px) {
  .my-account--navigation .woocommerce-MyAccount-navigation ul li:after {
    content: "";
    background: #000000;
    mask-image: url(chevron-right.svg);
    -webkit-mask-image: url(chevron-right.svg);
    width: 16px;
    height: 16px;
    margin-left: auto;
  }
}
.my-account--navigation .woocommerce-MyAccount-navigation ul li.is-active {
  background: #EEEEEE;
  border-radius: 25px;
}
.my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--dashboard:before {
  mask-image: url(user-icon-small.svg);
  -webkit-mask-image: url(user-icon-small.svg);
  height: 18px;
}
.my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--orders:before {
  mask-image: url(order-icon.svg);
  -webkit-mask-image: url(order-icon.svg);
  height: 20px;
}
.my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--ulubione:before {
  mask-image: url(heart.svg);
  -webkit-mask-image: url(heart.svg);
  height: 24px;
}
.my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--edit-address:before {
  height: 18px;
  mask-image: url(addresses-icon.svg);
  -webkit-mask-image: url(addresses-icon.svg);
}
.my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--edit-account:before {
  height: 20px;
  mask-image: url(settings-icon.svg);
  -webkit-mask-image: url(settings-icon.svg);
}
.my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 40px;
  background: #FAFAFA;
  border-radius: 25px;
  justify-content: center;
  height: 48px;
}
@media (max-width: 991px) {
  .my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout {
    text-align: center;
  }
}
.my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout:before {
  content: none;
}
.my-account--navigation .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout:after {
  content: none;
}
.my-account--dashboard__blocks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.my-account--dashboard__blocks--block {
  width: calc(25% - 15px);
  height: 150px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  padding: 20px;
}
@media (max-width: 1399px) {
  .my-account--dashboard__blocks--block {
    height: 180px;
  }
}
@media (max-width: 1199px) {
  .my-account--dashboard__blocks--block {
    width: calc(33% - 11px);
  }
}
@media (max-width: 767px) {
  .my-account--dashboard__blocks--block {
    width: calc(50% - 10px);
  }
}
@media (max-width: 575px) {
  .my-account--dashboard__blocks--block {
    width: 100%;
    height: 150px;
  }
}
.my-account--dashboard__blocks .block-title {
  margin-top: 0;
}
.my-account--dashboard__blocks .block-description {
  display: flex;
  align-items: center;
  height: 90px;
}
.my-account--dashboard__blocks .block-description p {
  max-width: calc(100% - 25px);
}
.my-account--dashboard__blocks .block-description:after {
  content: "";
  background: #000000;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
  width: 16px;
  height: 16px;
  margin-left: 10px;
  display: flex;
}
.my-account .last-order {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .my-account .last-order {
    margin-top: 20px;
  }
}
.my-account .last-order__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.my-account .last-order__header a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my-account .last-order__header a:after {
  display: flex;
  content: "";
  background: #000000;
  width: 16px;
  height: 16px;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
}
.my-account .last-order__footer .last-order__view-all {
  height: 48px;
  background: #FAFAFA;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}

.orders-list .single-order {
  margin-bottom: 25px;
}
.orders-list .single-order--inside {
  display: flex;
  border: 1px solid #FAFAFA;
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .orders-list .single-order--inside {
    flex-wrap: wrap;
  }
}
.orders-list .single-order__header {
  width: 50%;
}
@media (max-width: 767px) {
  .orders-list .single-order__header {
    width: 100%;
    margin-bottom: 40px;
  }
}
.orders-list .single-order__status {
  margin-bottom: 20px;
}
.orders-list .single-order__total {
  margin-top: 10px;
}
.orders-list .order-items {
  width: 50%;
}
@media (max-width: 767px) {
  .orders-list .order-items {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
  }
}
.orders-list .product-item {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .orders-list .product-item {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .orders-list .product-item__thumbnail {
    width: 30%;
  }
}
@media (max-width: 575px) {
  .orders-list .product-item__thumbnail img {
    object-fit: contain;
  }
}
@media (max-width: 575px) {
  .orders-list .product-item__details {
    width: calc(70% - 10px);
  }
}
.orders-list .product-item__price span bdi {
  font-size: 1rem;
  line-height: 20px;
}
.orders-list .product-item__price del span bdi {
  font-size: 0.875rem;
  line-height: 24px;
  color: #4A4A4A;
}
.my-addresses h1 {
  margin-top: 0;
}
.my-addresses .woocommerce-Addresses {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.my-addresses .woocommerce-Addresses .woocommerce-Address {
  border: 1px solid #EEEEEE;
  padding: 25px;
  border-radius: 8px;
  width: calc(50% - 10px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.my-addresses .woocommerce-Addresses .woocommerce-Address-title h2 {
  margin-top: 0;
}
@media (max-width: 575px) {
  .my-addresses .woocommerce-Addresses .woocommerce-Address {
    width: 100%;
  }
}
.my-addresses .woocommerce-Addresses .woocommerce-Address .address-value {
  display: flex;
  margin-bottom: 2px;
  font-style: normal;
}
.my-addresses .woocommerce-Addresses .woocommerce-Address--bottom {
  margin-top: 25px;
}

.edit-address .woocommerce-address-fields .form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.edit-address .woocommerce-address-fields .form-row label {
  width: 100%;
  font-size: 0.875rem;
  line-height: 20px;
  margin-bottom: 5px;
}
.edit-address .woocommerce-address-fields .form-row span {
  width: 100%;
}
.edit-address .woocommerce-address-fields .form-row .optional {
  display: none;
}
.edit-address .woocommerce-address-fields .form-row input[type=text],
.edit-address .woocommerce-address-fields .form-row input[type=email],
.edit-address .woocommerce-address-fields .form-row input[type=tel],
.edit-address .woocommerce-address-fields .form-row input[type=url],
.edit-address .woocommerce-address-fields .form-row input[type=password],
.edit-address .woocommerce-address-fields .form-row input[type=search] {
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
  height: 48px;
  width: 100%;
}
.edit-address .woocommerce-address-fields button[type=submit] {
  border-radius: 256px;
  max-width: 300px;
  width: 100%;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 24px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .edit-address .woocommerce-address-fields button[type=submit] {
    max-width: 100%;
  }
}

.account-details .form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.account-details .form-row label {
  width: 100%;
  font-size: 0.875rem;
  line-height: 20px;
  margin-bottom: 5px;
}
.account-details .form-row span {
  width: 100%;
}
.account-details .form-row span.password-input {
  display: flex;
  gap: 10px;
}
.account-details .form-row span.password-input button {
  background: none;
  border: none;
  cursor: pointer;
}
.account-details .form-row span.password-input button:after {
  display: block;
  content: "";
  background: #96710F;
  mask-image: url(show-password-icon.svg);
  -webkit-mask-image: url(show-password-icon.svg);
  width: 23px;
  height: 17px;
}
.account-details .form-row .optional {
  display: none;
}
.account-details .form-row input[type=text],
.account-details .form-row input[type=email],
.account-details .form-row input[type=tel],
.account-details .form-row input[type=url],
.account-details .form-row input[type=password],
.account-details .form-row input[type=search] {
  border: 1px solid #666666;
  border-radius: 4px;
  padding: 0 10px;
  height: 48px;
  width: 100%;
}
.account-details button[type=submit] {
  border-radius: 256px;
  max-width: 300px;
  width: 100%;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 24px;
  background: #000000;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .account-details button[type=submit] {
    max-width: 100%;
  }
}

.my-wishlist {
  margin-bottom: 80px;
}
.my-wishlist h2 {
  margin-top: 0;
}
.my-wishlist-header {
  margin-bottom: 40px;
}
.my-wishlist-products {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .my-wishlist-products {
    gap: 20px;
  }
}
.my-wishlist-products .product-item {
  width: 100%;
  position: relative;
  max-width: 180px;
}
@media (max-width: 1199px) {
  .my-wishlist-products .product-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .my-wishlist-products .product-item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .my-wishlist-products .product-item {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5px;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .my-wishlist-products .product-item {
    justify-content: center;
  }
}
.my-wishlist-products .product-item .remove_from_wishlist {
  position: absolute;
  right: 4px;
  top: 4px;
  z-index: 9;
}
@media (max-width: 767px) {
  .my-wishlist-products .product-item .remove_from_wishlist {
    right: 8px;
    top: 8px;
  }
}
.my-wishlist-products .product-item .remove_from_wishlist:after {
  content: "";
  background: #000000;
  mask-image: url(x-icon.svg);
  -webkit-mask-image: url(x-icon.svg);
  width: 12px;
  height: 12px;
  display: block;
  margin-left: 5px;
}
.my-wishlist-products .product-item__thumbnail {
  position: relative;
}
@media (min-width: 768px) {
  .my-wishlist-products .product-item__thumbnail {
    margin-bottom: 20px;
    border: 1px solid #EEEEEE;
  }
}
@media (max-width: 575px) {
  .my-wishlist-products .product-item__thumbnail {
    width: 30%;
  }
}
@media (min-width: 768px) {
  .my-wishlist-products .product-item__thumbnail a {
    display: flex;
    justify-content: center;
  }
}
.my-wishlist-products .product-item__thumbnail img {
  object-fit: contain;
}
@media (max-width: 575px) {
  .my-wishlist-products .product-item__details {
    width: calc(70% - 10px);
  }
}
@media (min-width: 768px) {
  .my-wishlist-products .product-item__name {
    height: 42px;
  }
}
.my-wishlist-products .product-item__name span {
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .my-wishlist-products .product-item__name span {
    font-weight: 400;
  }
}
.my-wishlist-products .product-item__price {
  margin-top: 10px;
}
.my-wishlist-products .product-item__price span {
  font-size: 1rem;
  line-height: 20px;
}
.my-wishlist-products .product-item__price span.woocommerce-Price-amount {
  margin-left: 5px;
}
@media (max-width: 991px) {
  .my-wishlist-products .product-item__price span {
    font-size: 0.875rem !important;
    line-height: 20px !important;
  }
}
.my-wishlist-products .product-item__price span bdi {
  font-size: 1rem;
  line-height: 20px;
}
@media (max-width: 991px) {
  .my-wishlist-products .product-item__price span bdi {
    font-size: 0.875rem;
    line-height: 20px;
  }
}
.my-wishlist-products .product-item__price del span bdi {
  font-size: 0.875rem;
  line-height: 24px;
  color: #4A4A4A;
}
@media (max-width: 991px) {
  .my-wishlist-products .product-item__price del span bdi {
    font-size: 0.875rem;
    line-height: 20px;
  }
}

.short-wishlist {
  margin: 50px 0;
}
.short-wishlist .remove_from_wishlist {
  display: none;
}
.short-wishlist .my-wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.short-wishlist .my-wishlist-header a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.short-wishlist .my-wishlist-header a:after {
  display: flex;
  content: "";
  background: #000000;
  width: 16px;
  height: 16px;
  mask-image: url(chevron-right.svg);
  -webkit-mask-image: url(chevron-right.svg);
}
.short-wishlist .my-wishlist__footer {
  margin-top: 20px;
}
.short-wishlist .my-wishlist__footer a {
  height: 48px;
  background: #FAFAFA;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}

.grail-hunter--info {
  position: absolute;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  z-index: 9;
  right: 5px;
  top: 5px;
  left: auto;
  transform: none;
}
@media (max-width: 575px) {
  .grail-hunter--info {
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    bottom: 50px;
    display: none;
  }
}
.grail-hunter--info__label {
  color: #FFFFFF;
  font-size: 10px;
  z-index: 9;
  display: inline;
  text-align: center;
  font-weight: 501;
}
.grail-hunter--info__countdown {
  border-radius: 4px;
  color: #000000;
  padding: 3px;
  font-weight: 501;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
.grail-hunter--info .countdown-item {
  background: #000000;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 501;
  width: 30%;
  height: auto;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product .grail-hunter--info {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  left: unset;
  transform: unset;
  bottom: unset;
  right: unset;
  top: unset;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  margin: 20px 0;
}
.single-product .grail-hunter--info img {
  max-width: 100px;
  width: 100%;
  height: auto;
}
.single-product .grail-hunter--info__countdown {
  max-width: 150px;
}

.tax-product_collection .single-product-main {
  margin-top: 20px;
}
.tax-product_collection .single-product-main .single-product-inside--top {
  gap: 80px;
}
@media (max-width: 991px) {
  .tax-product_collection .single-product-main .single-product-inside--top {
    gap: 20px;
  }
}
.tax-product_collection .single-product-main .single-product-inside--top__left {
  width: calc(50% - 40px);
}
@media (max-width: 991px) {
  .tax-product_collection .single-product-main .single-product-inside--top__left {
    width: 100%;
  }
}
.tax-product_collection .single-product-main .single-product-inside--top__right {
  width: calc(50% - 40px);
}
@media (max-width: 991px) {
  .tax-product_collection .single-product-main .single-product-inside--top__right {
    width: 100%;
  }
}
.tax-product_collection .single-product-main .single-product-inside--top__right .title {
  color: #96710F;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .tax-product_collection .single-product-main .single-product-inside--top__right .title {
    margin-top: 28px;
  }
}
.tax-product_collection .single-product-main .single-product-inside--top__right .description {
  color: #000000;
  margin-bottom: 32px;
}

.collection-products {
  width: 100%;
}
.collection-products__grid {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .collection-products__grid {
    display: flex;
  }
}
.collection-products__grid .collection-products__item {
  width: calc((100% - 60px) / 3);
  position: relative;
}
@media (max-width: 991px) {
  .collection-products__grid .collection-products__item {
    width: calc((100% - 30px) / 2);
  }
}
.collection-products__grid .collection-products__item .wishlist-button {
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0px;
}
.collection-products__grid .collection-products__item .wishlist-button .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
  background: transparent;
  border: none;
}
.collection-products__grid .collection-products__item .wishlist-button .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button svg {
  color: #96710F;
}
.collection-products__grid .collection-products__item .content-product {
  width: 100%;
}

.added-to-cart-modal .promo-active {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.added-to-cart-modal .promo-active .promo-tabs__label {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width: 767px) {
  .added-to-cart-modal .promo-active .promo-tabs__label {
    font-size: 17px;
  }
}
.added-to-cart-modal .promo-active .promo-timer {
  border-radius: 4px;
  color: #000000;
  padding: 3px;
  font-weight: 501;
  width: 150px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 3px;
}
.added-to-cart-modal .promo-active .promo-timer__min, .added-to-cart-modal .promo-active .promo-timer__sec {
  background: #000000;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 501;
  width: 30%;
  height: auto;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-promo-countdown,
.cart-promo-countdown__text,
.product-promo-timer {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.cart-promo-countdown__label,
.cart-promo-countdown__text__label,
.product-promo-timer__label {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width: 767px) {
  .cart-promo-countdown__label,
  .cart-promo-countdown__text__label,
  .product-promo-timer__label {
    font-size: 15px;
  }
}
.cart-promo-countdown__timer, .cart-promo-countdown__value,
.cart-promo-countdown__text__timer,
.cart-promo-countdown__text__value,
.product-promo-timer__timer,
.product-promo-timer__value {
  border-radius: 4px;
  color: #000000;
  padding: 3px;
  font-weight: 501;
  width: 150px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 3px;
}
@media (max-width: 767px) {
  .cart-promo-countdown__timer, .cart-promo-countdown__value,
  .cart-promo-countdown__text__timer,
  .cart-promo-countdown__text__value,
  .product-promo-timer__timer,
  .product-promo-timer__value {
    width: 130px;
  }
}
.cart-promo-countdown__timer .minutes,
.cart-promo-countdown__timer .seconds, .cart-promo-countdown__value .minutes,
.cart-promo-countdown__value .seconds,
.cart-promo-countdown__text__timer .minutes,
.cart-promo-countdown__text__timer .seconds,
.cart-promo-countdown__text__value .minutes,
.cart-promo-countdown__text__value .seconds,
.product-promo-timer__timer .minutes,
.product-promo-timer__timer .seconds,
.product-promo-timer__value .minutes,
.product-promo-timer__value .seconds {
  background: #000000;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 501;
  width: 30%;
  height: auto;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-promo-countdown {
  width: 100%;
}
.cart-promo-countdown__label {
  font-size: 20px;
  text-transform: none;
  font-weight: 500;
}

.about-us__hero {
  position: relative;
}
.about-us__hero picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-us__hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.about-us__hero--title {
  position: absolute;
  bottom: 112px;
  left: 50px;
  z-index: 2;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .about-us__hero--title {
    bottom: 64px;
  }
}
.about-us__description {
  max-width: 1240px;
  margin: 20px 0 20px 0;
}
@media (max-width: 767px) {
  .about-us__description {
    max-width: 100%;
    margin: 0;
  }
}
