@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@font-face {
  font-family: "iconFont";
  src: url("../fonts/iconFont.eot");
  src: url("../fonts/iconFont.eot") format("embedded-opentype"), url("../fonts/iconFont.ttf") format("truetype"), url("../fonts/iconFont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/GilroyW05-Regular.woff2") format("woff2"), url("../fonts/GilroyW05-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/GilroyW05-SemiBold.woff2") format("woff2"), url("../fonts/GilroyW05-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
:root {
  --basecolor:#AD96FF;
  --basecolor-dark:#65559F;
  --textcolor:#000000;
  --textcolor-purple:#6C63FF;
  --border-color:#C3C3C3;
  --gray-bg: #c5c3c1;
  --gray-bg-light: #F6F1E7;
  --gray-light:#D0D8E0;
  --gray:#8C959F;
  --red:#EB2F2F;
  --red-light:#FFBACE;
  --font: "Assistant",sans-serif;
  --font-title: "Heebo",sans-serif;
  --time:.3s;
  --drop-shadow: 0px 4.82px 4.82px 0px rgba(0, 0, 0, 0.25);
}

.key-features_card-face_title:before {
  content: "";
  display: block;
  position: absolute;
}

.key-features_card-face_title:before {
  display: block;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.products-section .products-row .product .product-qty-counter .qty-btn, .products-section .products-row .product .btn-add-to-cart, .btn, .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  transition: all var(--time);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1;
}

body {
  font-family: var(--font), serif;
  color: var(--textcolor);
  line-height: 1;
  font-size: 16px;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
}
body.mobile {
  -webkit-text-size-adjust: none;
}
body.mobile input {
  -webkit-appearance: none;
}

body, html {
  min-width: 300px;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

a {
  text-decoration: none;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
  box-sizing: border-box;
}

:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.cf:before, .cf:after {
  content: ".";
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.cf:after {
  clear: both;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 25px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: var(--basecolor);
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.15s 0.4s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(135deg);
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.1s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-270deg);
  transform: translate3d(0, -16px, 0) rotate(-270deg);
  transition-delay: 0.1s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.15s 0.4s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.1s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.1s;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

html, body {
  direction: rtl;
}

.wrap, .wp-block-woocommerce-cart, .wc-block-checkout.wc-block-checkout {
  width: 100%;
  max-width: clamp(680px, 73.125vw, 1600px);
  margin: 0 auto;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .wrap, .wp-block-woocommerce-cart, .wc-block-checkout.wc-block-checkout {
    max-width: calc(100% - 30px);
  }
}
.btn, .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button {
  color: var(--textcolor);
  background-color: var(--basecolor);
  border-radius: 13px;
  font-weight: 600;
}
.btn img, .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button img {
  width: 24px;
}
.btn:hover, .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button:hover {
  background-color: #8563ff;
}

@media only screen and (max-width: 768px) {
  .btn.btn {
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 400;
    min-height: 30px;
    border-radius: 6px;
  }
  .btn.btn img {
    width: 20px;
  }
}
@font-face {
  font-family: "iconFont";
  src: url("public/assets/fonts/iconFont.eot");
  src: url("public/assets/fonts/iconFont.eot?#iefix") format("eot"), url("public/assets/fonts/iconFont.woff2") format("woff2"), url("public/assets/fonts/iconFont.woff") format("woff"), url("public/assets/fonts/iconFont.ttf") format("truetype"), url("public/assets/fonts/iconFont.svg#iconFont") format("svg");
}
[class^=icon-]:before,
[class*=" icon-"]:before, .icon-font:before {
  display: inline-block;
  vertical-align: middle;
  font-family: "iconFont";
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
}

.icon-align-left:before {
  content: "\e001";
}

.top-banner {
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: center;
  background-color: var(--basecolor);
}
.top-banner .txt {
  position: relative;
  display: inline-flex;
  line-height: 100%;
  letter-spacing: 8px;
  align-items: center;
}
.top-banner .txt:before, .top-banner .txt:after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAyMCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuNTExMzIgMC4xODc2NjRDOS41OTI2MyAtMC4wNjI1OTUzIDkuOTQ2NjggLTAuMDYyNTk0NiAxMC4wMjggMC4xODc2NjVMMTIuMTQ4MSA2LjcxMjY2QzEyLjE4NDUgNi44MjQ1OCAxMi4yODg4IDYuOTAwMzYgMTIuNDA2NCA2LjkwMDM2SDE5LjI2NzJDMTkuNTMwNCA2LjkwMDM2IDE5LjYzOTggNy4yMzcwOCAxOS40MjY5IDcuMzkxNzVMMTMuODc2NCAxMS40MjQ0QzEzLjc4MTIgMTEuNDkzNiAxMy43NDE0IDExLjYxNjIgMTMuNzc3NyAxMS43MjgxTDE1Ljg5NzggMTguMjUzMUMxNS45NzkxIDE4LjUwMzQgMTUuNjkyNyAxOC43MTE1IDE1LjQ3OTggMTguNTU2OEw5LjkyOTMyIDE0LjUyNDFDOS44MzQxMiAxNC40NTUgOS43MDUyIDE0LjQ1NSA5LjYxIDE0LjUyNDFMNC4wNTk1IDE4LjU1NjhDMy44NDY2MiAxOC43MTE1IDMuNTYwMTggMTguNTAzNCAzLjY0MTUgMTguMjUzMUw1Ljc2MTYgMTEuNzI4MUM1Ljc5Nzk2IDExLjYxNjIgNS43NTgxMyAxMS40OTM2IDUuNjYyOTIgMTEuNDI0NEwwLjExMjQyNiA3LjM5MTc1Qy0wLjEwMDQ1NyA3LjIzNzA4IDAuMDA4OTUwOTUgNi45MDAzNiAwLjI3MjA4OSA2LjkwMDM2SDcuMTMyODhDNy4yNTA1NiA2LjkwMDM2IDcuMzU0ODUgNi44MjQ1OCA3LjM5MTIyIDYuNzEyNjZMOS41MTEzMiAwLjE4NzY2NFoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.header {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo img {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .top-banner.top-banner {
    padding: 8px 16px;
  }
  .top-banner.top-banner .txt {
    font-size: 14px;
    letter-spacing: 3px;
    gap: 20px;
  }
  .header {
    display: none;
  }
}
.footer {
  background-color: var(--basecolor-dark);
  color: #fff;
}
.footer-logo {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-links ul {
  display: flex;
  align-items: center;
}
.footer-links ul a {
  color: inherit;
}
.footer-links ul a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .footer.footer {
    padding: 36px 16px 20px;
  }
  .footer.footer .footer-logo {
    width: 94px;
  }
  .footer.footer .footer-logo:not(:last-child) {
    margin-bottom: 26px;
  }
  .footer.footer .footer-info {
    flex-flow: column;
    gap: 20px;
  }
  .footer.footer .copyright {
    font-size: 14px;
  }
  .footer.footer .footer-links {
    width: 100%;
  }
  .footer.footer .footer-links ul {
    text-align: center;
    justify-content: center;
    gap: 30px;
  }
  .footer.footer .footer-links ul a {
    font-size: 14px;
  }
}
.width-21, .top-banner .txt:before, .top-banner .txt:after {
  width: clamp(10px, 1.09375vw, 26px);
}

.height-21, .top-banner .txt:before, .top-banner .txt:after {
  height: clamp(10px, 1.09375vw, 26px);
}

.width-24, .products-section .products-row .product .product-qty-counter .qty-btn, .products-section .products-row .product .btn-add-to-cart img {
  width: clamp(18px, 1.25vw, 36px);
}

.height-24 {
  height: clamp(18px, 1.25vw, 36px);
}

.width-32, .contacts-location_item img {
  width: clamp(12.8px, 1.66vw, 50px);
}

.height-32 {
  height: clamp(12.8px, 1.66vw, 50px);
}

.width-60 {
  width: clamp(30px, 3.125vw, 80px);
}

.height-60 {
  height: clamp(30px, 3.125vw, 80px);
}

.width-80, .floating-cart-button {
  width: clamp(40px, 4.1667vw, 100px);
}

.height-80, .floating-cart-button {
  height: clamp(40px, 4.1667vw, 100px);
}

.width-114, .features-icon, .footer-logo {
  width: clamp(57px, 5.9375vw, 130px);
}

.height-114 {
  height: clamp(57px, 5.9375vw, 130px);
}

.width-335, .header .logo {
  width: clamp(167.5px, 17.4479vw, 350px);
}

.height-335 {
  height: clamp(167.5px, 17.4479vw, 350px);
}

.min-height-60, .btn, .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button {
  min-height: clamp(30px, 3.125vw, 66px);
}

.px-20, .products-section .products-row .product-card__category-badge, .key-features_card-face.card-face--back {
  padding-left: clamp(10px, 1.0417vw, 26px);
  padding-right: clamp(10px, 1.0417vw, 26px);
}

.px-28, .products-section .products-row .product {
  padding-left: clamp(14px, 1.4583vw, 32px);
  padding-right: clamp(14px, 1.4583vw, 32px);
}

.px-32, .products-section .products-row .product .product-add-to-cart, .btn, .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button {
  padding-left: clamp(16px, 1.6667vw, 40px);
  padding-right: clamp(16px, 1.6667vw, 40px);
}

.px-80, .wp-block-woocommerce-cart, .wc-block-checkout.wc-block-checkout, .contacts, .key-features, .features, .top-banner, .footer {
  padding-left: clamp(40px, 4.1667vw, 100px);
  padding-right: clamp(40px, 4.1667vw, 100px);
}

.px-132, .header {
  padding-left: clamp(66px, 6.875vw, 152px);
  padding-right: clamp(66px, 6.875vw, 152px);
}

.px-220, .contacts-inner {
  padding-left: clamp(80px, 11.45vw, 345px);
  padding-right: clamp(80px, 11.45vw, 345px);
}

.py-12, .products-section .products-row .product .product-add-to-cart, .btn, .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button {
  padding-top: clamp(6px, 0.625vw, 16px);
  padding-bottom: clamp(6px, 0.625vw, 16px);
}

.py-22 {
  padding-top: clamp(11px, 1.1458vw, 30px);
  padding-bottom: clamp(11px, 1.1458vw, 30px);
}

.py-30, .key-features_card-face.card-face--back {
  padding-top: clamp(15px, 1.5625vw, 42px);
  padding-bottom: clamp(15px, 1.5625vw, 42px);
}

.py-45, .contacts-header, .features {
  padding-top: clamp(22.5px, 2.34375vw, 58px);
  padding-bottom: clamp(22.5px, 2.34375vw, 58px);
}

.py-50, .contacts-location {
  padding-top: clamp(25px, 2.6042vw, 65px);
  padding-bottom: clamp(25px, 2.6042vw, 65px);
}

.py-80, .wp-block-woocommerce-cart, .wc-block-checkout.wc-block-checkout {
  padding-top: clamp(40px, 4.1667vw, 100px);
  padding-bottom: clamp(40px, 4.1667vw, 100px);
}

.pt-12, .products-section .products-row .product {
  padding-top: clamp(6px, 0.625vw, 18px);
}

.pb-12 {
  padding-bottom: clamp(6px, 0.625vw, 18px);
}

.pt-45, .footer {
  padding-top: clamp(22.5px, 2.34375vw, 58px);
}

.pb-45 {
  padding-bottom: clamp(22.5px, 2.34375vw, 58px);
}

.pt-70 {
  padding-top: clamp(28px, 3.645vw, 110px);
}

.pb-70, .footer {
  padding-bottom: clamp(28px, 3.645vw, 110px);
}

.mb-11, .products-section .products-row .product .woocommerce-loop-product__title, .contacts-location_item img, .key-features_card-face.card-face--back img {
  margin-bottom: clamp(5.5px, 0.5729vw, 11px);
}

.mt-11 {
  margin-top: clamp(5.5px, 0.5729vw, 11px);
}

.mb-16 {
  margin-bottom: clamp(8px, 0.8333vw, 24px);
}

.mt-16, .products-section .products-row .product .product-add-to-cart {
  margin-top: clamp(8px, 0.8333vw, 24px);
}

.mb-22, .products-section .products-row .product img, .contacts-header .title:not(:last-child), .key-features_card-face_title.small, .key-features_card-face.card-face--back p:not(:last-child), .key-features_card-face.card-face--front img {
  margin-bottom: clamp(11px, 1.1458vw, 30px);
}

.mt-22, .wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
  margin-top: clamp(11px, 1.1458vw, 30px);
}

.mb-26, .wc-block-cart.wc-block-cart .wp-block-woocommerce-cart-order-summary-block, .contacts-header p:not(:last-child) {
  margin-bottom: clamp(13px, 1.3542vw, 32px);
}

.mt-26 {
  margin-top: clamp(13px, 1.3542vw, 32px);
}

.mb-40, .wc-block-components-form.wc-block-components-form .wc-block-components-checkout-step {
  margin-bottom: clamp(20px, 2.0833vw, 55px);
}

.mt-40 {
  margin-top: clamp(20px, 2.0833vw, 55px);
}

.mb-50, .contacts, .gallery {
  margin-bottom: clamp(25px, 2.6042vw, 65px);
}

.mt-50 {
  margin-top: clamp(25px, 2.6042vw, 65px);
}

.mb-72, .footer-logo:not(:last-child) {
  margin-bottom: clamp(28px, 3.75vw, 112px);
}

.mt-72 {
  margin-top: clamp(28px, 3.75vw, 112px);
}

.mb-108, .products-section:not(:last-child), .key-features {
  margin-bottom: clamp(54px, 5.625vw, 128px);
}

.mt-108 {
  margin-top: clamp(54px, 5.625vw, 128px);
}

.mx-60 {
  margin-left: clamp(30px, 3.125vw, 75px);
  margin-right: clamp(30px, 3.125vw, 75px);
}

.gap-18, .products-section .products-row .product .btn-add-to-cart {
  gap: clamp(14px, 0.9375vw, 28px);
}

.gap-20, .features-inner {
  gap: clamp(10px, 1.0417vw, 30px);
}

.gap-24 {
  gap: clamp(18px, 1.25vw, 36px);
}

.gap-40 {
  gap: clamp(20px, 2.0833vw, 55px);
}

.gap-50, .wc-block-components-sidebar-layout, .products-section .products-row .products, .key-features, .features, .top-banner .txt, .footer-info, .footer-links ul {
  gap: clamp(25px, 2.6042vw, 65px);
}

.font-size-16 {
  font-size: clamp(12px, 0.8333vw, 24px);
}

.font-size-18, .wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-metadata, .wc-block-cart.wc-block-cart .wc-block-cart__totals-title,
.wc-block-cart-items__header.wc-block-cart-items__header th, .wp-block-woocommerce-cart, .wc-block-checkout.wc-block-checkout, .products-section .products-row .product-card__category-badge, .contacts-location_item .title, .key-features_card-face.card-face--back p {
  font-size: clamp(14px, 0.9375vw, 28px);
}

.font-size-22, .products-section .products-row .product .btn-add-to-cart, .products-section .products-row .product .price .woocommerce-Price-currencySymbol, .products-section .products-row .product .woocommerce-loop-product__title, .contacts-header p, .footer .copyright, .footer-links ul a {
  font-size: clamp(16px, 1.1458vw, 32px);
}

.font-size-24, .wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector__input, .btn, .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button {
  font-size: clamp(18px, 1.25vw, 36px);
}

.font-size-26, .wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__prices, .wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-name, .products-section .products-row .product .product-qty-counter .qty-value, .products-section .products-row .product .price, .key-features_card-face_title.small, .features-text {
  font-size: clamp(20px, 1.3542vw, 38px);
}

.font-size-28 {
  font-size: clamp(21px, 1.4583vw, 42px);
}

.font-size-32, .top-banner .txt {
  font-size: clamp(24px, 1.6667vw, 45px);
}

.font-size-34, .key-features_card-face_title:not(.small) {
  font-size: clamp(26px, 1.7708vw, 48px);
}

.font-size-36, .contacts-header .title {
  font-size: clamp(27px, 1.875vw, 52px);
}

.format-text {
  font-family: var(--font);
  color: var(--textcolor);
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(20px, 2.0833vw, 40px) clamp(16px, 2.0833vw, 40px);
}
.format-text > *:first-child {
  margin-top: 0;
}
.format-text > *:last-child {
  margin-bottom: 0;
}
.format-text h1,
.format-text h2,
.format-text h3,
.format-text h4,
.format-text h5,
.format-text h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--textcolor);
  line-height: 1.25;
  margin-top: clamp(20px, 3.125vw, 48px);
  margin-bottom: clamp(12px, 1.6667vw, 24px);
}
.format-text h1 {
  font-size: clamp(28px, 2.5vw, 40px);
}
.format-text h2 {
  font-size: clamp(24px, 2vw, 34px);
}
.format-text h3 {
  font-size: clamp(20px, 1.7vw, 28px);
}
.format-text h4 {
  font-size: clamp(18px, 1.5vw, 24px);
}
.format-text h5 {
  font-size: clamp(16px, 1.3vw, 20px);
}
.format-text h6 {
  font-size: clamp(14px, 1.1vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.format-text p {
  margin: 0 0 clamp(12px, 1.25vw, 20px);
}
.format-text a {
  color: var(--textcolor-purple);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color var(--time), text-decoration-color var(--time), background-color var(--time);
}
.format-text a:hover, .format-text a:focus {
  color: var(--basecolor-dark);
  text-decoration-color: transparent;
  background: rgba(173, 150, 255, 0.08);
}
.format-text a:active {
  color: var(--basecolor);
}
.format-text strong,
.format-text b {
  font-weight: 700;
  color: var(--basecolor-dark);
}
.format-text em,
.format-text i {
  font-style: italic;
}
.format-text ul,
.format-text ol {
  margin: 0 0 clamp(16px, 1.6667vw, 24px);
  padding-left: clamp(20px, 2.0833vw, 30px);
}
.format-text li {
  margin-bottom: clamp(4px, 0.625vw, 10px);
}
.format-text li:last-child {
  margin-bottom: 0;
}
.format-text ul {
  list-style: disc;
}
.format-text ul ul {
  list-style: circle;
  margin-top: 4px;
}
.format-text ol {
  list-style: decimal;
}
.format-text ol ol {
  list-style: lower-alpha;
  margin-top: 4px;
}
.format-text blockquote {
  margin: clamp(20px, 2.5vw, 36px) 0;
  padding: clamp(12px, 1.6667vw, 20px) clamp(16px, 2.0833vw, 28px);
  border-left: 4px solid var(--basecolor);
  background: rgba(173, 150, 255, 0.06);
  border-radius: 8px;
  font-style: italic;
  color: var(--basecolor-dark);
}
.format-text blockquote p {
  margin-bottom: 0;
}
.format-text blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
  font-style: normal;
  color: var(--gray);
}
.format-text hr {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: clamp(24px, 3.125vw, 40px) 0;
}
.format-text img {
  max-width: 100%;
  height: auto;
  display: block;
}
.format-text figure {
  margin: clamp(16px, 2.0833vw, 32px) 0;
  text-align: center;
}
.format-text figure img {
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--drop-shadow);
}
.format-text figure figcaption {
  margin-top: 8px;
  font-size: 0.9em;
  color: var(--gray);
}
.format-text .alignwide,
.format-text .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.format-text .alignwide img,
.format-text .alignfull img {
  width: 100%;
}
.format-text .alignleft {
  float: left;
  margin: 0 clamp(16px, 2.0833vw, 24px) clamp(12px, 1.25vw, 20px) 0;
}
.format-text .alignright {
  float: right;
  margin: 0 0 clamp(12px, 1.25vw, 20px) clamp(16px, 2.0833vw, 24px);
}
.format-text .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.format-text table {
  width: 100%;
  border-collapse: collapse;
  margin: clamp(16px, 2.0833vw, 32px) 0;
  font-size: 0.95em;
}
.format-text th,
.format-text td {
  padding: clamp(8px, 0.8333vw, 14px) clamp(10px, 1.0417vw, 16px);
  border: 1px solid var(--gray-light);
  text-align: left;
}
.format-text th {
  background: var(--gray-bg-light);
  font-weight: 600;
  color: var(--textcolor);
}
.format-text tr:nth-child(even) td {
  background: rgba(208, 216, 224, 0.2);
}
.format-text code {
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.9em;
  background: rgba(208, 216, 224, 0.5);
  padding: 2px 4px;
  border-radius: 4px;
}
.format-text pre {
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.9em;
  background: #0f172a;
  color: #f9fafb;
  padding: clamp(12px, 1.6667vw, 20px);
  border-radius: 10px;
  overflow-x: auto;
  margin: clamp(16px, 2.0833vw, 32px) 0;
}
.format-text pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}
.format-text .wp-block-list {
  margin-bottom: clamp(16px, 1.6667vw, 24px);
}
.format-text .wp-block-button {
  margin: clamp(16px, 2.0833vw, 28px) 0;
}
.format-text .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 0.9375vw, 14px) clamp(20px, 1.875vw, 32px);
  border-radius: 999px;
  border: none;
  background: var(--basecolor);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-title);
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--time), transform var(--time), box-shadow var(--time);
  box-shadow: var(--drop-shadow);
}
.format-text .wp-block-button .wp-block-button__link:hover, .format-text .wp-block-button .wp-block-button__link:focus {
  background: var(--basecolor-dark);
  transform: translateY(-1px);
}
.format-text .wp-block-button .wp-block-button__link:active {
  transform: translateY(0);
  box-shadow: none;
}
.format-text .is-style-note {
  padding: clamp(10px, 1.25vw, 16px) clamp(14px, 1.6667vw, 24px);
  border-radius: 10px;
  background: rgba(108, 99, 255, 0.06);
  border: 1px solid rgba(108, 99, 255, 0.4);
  color: var(--basecolor-dark);
  font-size: 0.95em;
}
@media (max-width: 600px) {
  .format-text {
    max-width: 100%;
    padding: 20px 16px;
  }
  .format-text .alignleft,
.format-text .alignright {
    float: none;
    margin: 0 auto clamp(12px, 1.25vw, 20px);
    text-align: center;
  }
  .format-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.hero-image picture, .hero-image img {
  display: block;
  width: 100%;
}
.hero .logo-mobile {
  display: none;
}

@media only screen and (max-width: 649px) {
  .hero {
    position: relative;
  }
  .hero .logo-mobile {
    display: block;
    position: absolute;
    width: 100%;
    top: 40px;
    left: 0;
  }
  .hero .logo-mobile img {
    display: block;
    width: 73vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-content {
  background: rgba(255, 255, 255, 0.7);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(-193px, -9.9vw, -90px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px 30px 0 0;
  position: relative;
}
.features-card, .features-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-icon img {
  display: block;
  width: 100%;
}
.features-text {
  flex: 1;
  font-weight: 600;
  text-align: center;
}

.key-features {
  perspective: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.key-features_card {
  position: relative;
  text-align: center;
}
.key-features_card-inner {
  width: 100%;
  height: clamp(248px, 25.8333vw, 775px);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-radius: 12px;
  box-shadow: var(--drop-shadow);
}
.key-features_card:hover .key-features_card-inner {
  transform: rotateY(180deg);
}
.key-features_card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-bg-light);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.key-features_card-face .center {
  width: 100%;
}
.key-features_card-face img {
  display: block;
  margin: auto;
}
.key-features_card-face.card-face--front img {
  width: clamp(97.5px, 10.15625vw, 195px);
}
.key-features_card-face.card-face--back {
  transform: rotateY(180deg);
  display: block;
}
.key-features_card-face.card-face--back img {
  width: clamp(51px, 5.3125vw, 102px);
}
.key-features_card-face.card-face--back p {
  line-height: 1.3;
}
.key-features_card-face_title {
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.key-features_card-face_title:before {
  top: 100%;
}
.key-features_card-face_title.small {
  font-family: var(--font-title);
}

.gallery {
  gap: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.contacts-inner {
  background-color: var(--gray-bg-light);
  border-radius: 24px;
  text-align: center;
}
.contacts-header:not(:last-child) {
  border-bottom: 1px solid #C3C3C3;
}
.contacts-header .title {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.33;
}
.contacts-header p {
  line-height: 1.27;
}
.contacts-header .btn {
  gap: 8px;
}
.contacts-location {
  display: flex;
  justify-content: space-around;
}
.contacts-location_item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.products-section .products-row .products {
  display: flex;
  justify-content: center;
}
.products-section .products-row .product {
  box-shadow: var(--drop-shadow);
  background-color: #fff;
  border: 1px solid var(--gray-bg-light);
  border-radius: 12px;
  position: relative;
  margin: 0 !important;
  text-align: center;
}
.products-section .products-row .product-card__category-badge {
  position: absolute;
  top: 0;
  right: clamp(6px, 0.625vw, 18px);
  background-color: var(--red-light);
  color: var(--red);
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  min-height: clamp(12.8px, 1.66vw, 50px);
}
.products-section .products-row .product img {
  display: block;
  width: 100%;
}
.products-section .products-row .product .woocommerce-loop-product__title {
  font-weight: 600;
}
.products-section .products-row .product .price {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--textcolor-purple);
}
.products-section .products-row .product .price bdi {
  display: inline-flex;
  flex-flow: row-reverse;
  align-items: flex-end;
}
.products-section .products-row .product .product-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ebebeb;
  min-height: clamp(37px, 3.8542vw, 74px);
  margin-left: clamp(-32px, -1.4583vw, -14px);
  margin-right: clamp(-32px, -1.4583vw, -14px);
}
.products-section .products-row .product .btn-add-to-cart {
  align-items: center;
  background-color: #fff;
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--font);
}
.products-section .products-row .product .btn-add-to-cart img {
  display: block;
  margin: 0;
}
.products-section .products-row .product .product-qty-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
}
.products-section .products-row .product .product-qty-counter .qty-value {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}
.products-section .products-row .product .product-qty-counter .qty-btn {
  background-color: #fff;
  padding: 0;
}
.products-section .products-row .product .product-qty-counter .qty-btn img {
  margin: 0;
  display: block;
  width: 100%;
}

.floating-cart-button {
  position: fixed;
  inset-inline-start: clamp(16px, 1.6667vw, 40px);
  bottom: clamp(16px, 1.6667vw, 40px);
  border-radius: 50%;
  border: 1px solid var(--basecolor);
  box-shadow: var(--drop-shadow);
  display: none;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  background: var(--basecolor);
  z-index: 9999;
  transition: all 0.3s;
}
.floating-cart-button.is-visible {
  display: inline-flex;
}
.floating-cart-button:hover {
  background-color: #8563ff;
}
.floating-cart-button__inner {
  width: 45%;
  position: relative;
}
.floating-cart-button__inner img {
  display: block;
  width: 100%;
}
.floating-cart-button__count {
  position: absolute;
  font-weight: 600;
  font-size: clamp(10px, 0.9375vw, 28px);
  background-color: #fff;
  border-radius: 50%;
  width: clamp(12px, 1.09375vw, 26px);
  height: clamp(12px, 1.09375vw, 26px);
  text-align: center;
  top: 0;
  right: clamp(-12px, -0.425vw, -6px);
}

.mobile-sticky-cart {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  padding: 20px 20px 10px;
  transform: translateY(100%);
  transition: transform 0.25s ease-out;
}
.mobile-sticky-cart.is-visible {
  transform: translateY(0);
}
.mobile-sticky-cart__bar {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 5px 12px 5px 9px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--basecolor); /* фиолетовый из макета, подстрой */
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.mobile-sticky-cart__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.mobile-sticky-cart__icon img {
  width: 24px;
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.2s ease-out;
}
.mobile-sticky-cart__label {
  margin-inline-end: auto;
}
.mobile-sticky-cart__badge {
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-inline-end: 8px;
}
.mobile-sticky-cart__shipping-note {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: #0C0C0C;
  font-weight: 400;
}
.mobile-sticky-cart__mini {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
  padding: 0 8px;
}
.mobile-sticky-cart__mini .woocommerce-mini-cart__total, .mobile-sticky-cart__mini .woocommerce-mini-cart__buttons, .mobile-sticky-cart__mini .remove_from_cart_button {
  display: none;
}
.mobile-sticky-cart__mini .woocommerce-mini-cart__empty-message {
  text-align: center;
  font-size: 13px;
}
.mobile-sticky-cart__mini .woocommerce-mini-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
}
.mobile-sticky-cart__mini .woocommerce-mini-cart-item img {
  width: 55px;
  object-fit: contain;
  border-radius: 8px;
}
.mobile-sticky-cart__mini .woocommerce-mini-cart-item .quantity {
  margin-inline-start: auto;
}
.mobile-sticky-cart.is-open .mobile-sticky-cart__icon img {
  transform: rotate(180deg);
}
.mobile-sticky-cart.is-open .mobile-sticky-cart__mini {
  max-height: 400px;
}

@media (min-width: 769px) {
  .mobile-sticky-cart {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .key-features {
    perspective: none;
    padding: 0 20px;
  }
  .key-features_card-inner {
    transform: none !important;
    height: auto;
    border-radius: 10px;
  }
  .key-features_card-face.card-face--front {
    display: none;
  }
  .key-features_card-face.card-face--back {
    position: relative;
    transform: none;
    padding: 20px;
    height: auto;
  }
  .key-features_card-face.card-face--back img {
    width: 120px;
    margin-bottom: 11px;
  }
  .key-features_card-face.card-face--back p {
    font-size: 14px;
  }
  .key-features_card-face.card-face--back p:not(:last-child) {
    margin-bottom: 16px;
  }
  .key-features_card-face_title.small {
    font-size: 22px;
    margin-bottom: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .features {
    padding: 35px 32px 40px;
    gap: 16px;
    margin-top: -120px;
    border-radius: 25px 25px 0 0;
  }
  .features-inner {
    flex-flow: column;
    gap: 11px;
  }
  .features-icon {
    width: 60px;
  }
  .features-text {
    font-size: 16px;
  }
  .key-features {
    display: block;
    margin-bottom: 40px;
  }
  .key-features_card:not(:last-child) {
    margin-bottom: 40px;
  }
  .gallery {
    margin-bottom: 40px;
    display: block;
    padding: 0 16px;
  }
  .gallery .slick-slide {
    margin: 0 4px;
    height: auto;
  }
  .gallery img {
    border-radius: 14px;
  }
  .gallery .slick-dots {
    margin-top: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
  }
  .gallery .slick-dots li {
    display: block;
  }
  .gallery .slick-dots li button {
    background-color: #D0D8E0;
    border-radius: 50%;
    font-size: 0;
    border: none;
    width: 6px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    display: block;
  }
  .gallery .slick-dots li.slick-active button {
    width: 7px;
    height: 7px;
    background-color: #8C959F;
  }
  .contacts {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .contacts-inner {
    padding: 20px 16px 33px;
  }
  .contacts-header {
    padding: 0px 0 20px;
  }
  .contacts-header:not(:last-child) {
    border-bottom: none;
  }
  .contacts-header .title {
    font-size: 22px;
  }
  .contacts-header .title:not(:last-child) {
    margin-bottom: 11px;
  }
  .contacts-header p {
    font-size: 14px;
  }
  .contacts-header p:not(:last-child) {
    margin-bottom: 23px;
  }
  .contacts-header .btn {
    padding-left: 30px;
    padding-right: 30px;
  }
  .contacts-location {
    padding: 12px 0 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .contacts-location_item img {
    width: 32px;
    margin-bottom: 8px;
  }
  .contacts-location_item .title {
    font-size: 14px;
  }
  .products-section {
    padding: 0 20px;
  }
  .products-section:not(:last-child) {
    margin-bottom: 40px;
  }
  .products-section .products-row .products {
    flex-flow: column;
    gap: 40px;
  }
  .products-section .products-row .product {
    border-radius: 10px;
    padding: 10px 24px 0;
  }
  .products-section .products-row .product-card__category-badge {
    right: -1px;
    top: -1px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 16px;
    min-height: 28px;
    padding: 0 14px;
  }
  .products-section .products-row .product img {
    margin-bottom: 20px;
  }
  .products-section .products-row .product .woocommerce-loop-product__title {
    font-size: 18px;
    margin-bottom: 11px;
  }
  .products-section .products-row .product .price {
    font-size: 22px;
  }
  .products-section .products-row .product .price .woocommerce-Price-currencySymbol {
    font-size: 18px;
  }
  .products-section .products-row .product .product-add-to-cart {
    margin-top: 16px;
    padding: 12px 30px;
    min-height: 62px;
    margin-left: -30px;
    margin-right: -30px;
  }
  .products-section .products-row .product .btn-add-to-cart {
    font-size: 18px;
    gap: 14px;
  }
  .products-section .products-row .product .btn-add-to-cart img {
    width: 20px;
  }
  .products-section .products-row .product .product-qty-counter .qty-value {
    font-size: 22px;
  }
  .products-section .products-row .product .product-qty-counter .qty-btn {
    width: 27px;
  }
  .floating-cart-button {
    display: none !important;
  }
}
.wc-block-components-sidebar-layout {
  padding: 0 !important;
}

.wc-block-components-sidebar {
  flex: 1;
  padding: 0 !important;
}

.wc-block-cart.wc-block-cart .wc-block-cart__main {
  padding: 0;
}

.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__header th {
  padding-left: 0;
  padding-right: 0;
  text-align: right;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__header-total, .wc-block-cart-items.wc-block-cart-items .wc-block-cart-item__total {
  display: none;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image {
  padding-left: clamp(12.8px, 1.66vw, 50px);
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image a {
  pointer-events: none;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
  max-width: unset;
  width: clamp(140px, 13.02vw, 400px);
  border-radius: 12px;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
  flex: 1;
  padding-top: clamp(22.5px, 2.34375vw, 58px);
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  color: var(--red);
  font-size: clamp(8px, 0.8333vw, 24px);
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  margin-bottom: 0;
  align-items: center;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector:after {
  border: none !important;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector__input {
  border: none !important;
  outline: none !important;
  font-family: var(--font);
  font-weight: 600;
  box-shadow: unset !important;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector__button {
  font-size: 0;
  min-width: clamp(18px, 1.25vw, 36px);
  height: clamp(18px, 1.25vw, 36px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  box-shadow: unset !important;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector__button--minus {
  background-image: url(../img/minus.svg);
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector__button--plus {
  background-image: url(../img/plus.svg);
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-metadata {
  width: 100%;
  text-align: right;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-name {
  pointer-events: none;
  color: var(--textcolor);
  font-weight: 600;
  width: 50%;
  margin-bottom: 0;
}
.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__prices {
  width: 50%;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--textcolor-purple);
}

.wc-block-components-totals-item__description {
  margin-top: 8px;
}

.wc-block-components-form.wc-block-components-form .wc-block-components-checkout-step {
  direction: ltr;
}
.wc-block-components-form.wc-block-components-form .wc-block-components-text-input input, .wc-block-components-form.wc-block-components-form .wc-block-components-text-input .wc-blocks-components-select__select, .wc-block-components-form.wc-block-components-form .wc-blocks-components-select input, .wc-block-components-form.wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__select {
  border-color: var(--border-color) !important;
}
.wc-block-components-form.wc-block-components-form .wc-block-checkout__terms {
  text-align: center;
}

.wc-block-checkout__actions {
  direction: ltr;
}

.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block {
  border-color: var(--border-color) !important;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
  padding: 16px;
  margin: 0;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  margin: 0;
  font-size: clamp(14px, 0.9375vw, 28px);
  text-transform: uppercase;
  font-weight: 700;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-cart-items-block {
  padding: 16px;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary {
  padding-left: 0;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item {
  align-items: center;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image {
  margin-top: 0;
  padding-bottom: 0;
  width: 60px;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image > img {
  max-width: 60px;
  width: 60px;
  border-radius: 8px;
  display: block;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image .wc-block-components-order-summary-item__quantity {
  border-color: var(--textcolor-purple);
  font-weight: 600;
  min-height: 24px;
  min-width: 24px;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description {
  padding: 0 16px;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description .wc-block-components-product-name {
  font-weight: 600;
  font-size: clamp(8px, 0.8333vw, 24px);
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description .wc-block-components-order-summary-item__individual-prices,
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
  display: none;
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__total-price {
  color: var(--textcolor-purple);
  margin-right: auto;
  margin-left: unset;
  font-weight: 600;
  font-size: clamp(8px, 0.8333vw, 24px);
}
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-totals-block, .wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper {
  border-color: var(--border-color) !important;
}

@media only screen and (max-width: 1081px) {
  .wc-block-components-sidebar-layout.wc-block-components-sidebar-layout {
    flex-flow: column;
    gap: 20px;
  }
  .wc-block-components-sidebar-layout.wc-block-components-sidebar-layout .wc-block-components-main, .wc-block-components-sidebar-layout.wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: 100%;
    margin-bottom: 0;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row {
    display: flex;
    align-items: center;
    border-top: 1px solid hsla(0deg, 0%, 7%, 0.11);
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image, .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
    margin: 0;
    border: none;
    padding-right: 0;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {
    padding: 0;
    margin-top: 0 !important;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__remove-link {
    font-size: 12px !important;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image {
    padding-left: 16px;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
    width: 120px;
  }
  .wc-block-components-button.wc-block-components-button.wc-block-components-button.wc-block-components-button {
    min-height: 45px;
  }
  .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper {
    display: none;
  }
  .wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description .wc-block-components-product-name {
    font-size: 14px;
  }
  .wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__total-price {
    font-size: 14px;
  }
  .wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-cart-items-block .wc-block-components-totals-wrapper,
.wp-block-woocommerce-checkout-order-summary-block.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
    padding-left: 0;
    padding-right: 0;
  }
  .wc-block-checkout.wc-block-checkout {
    padding: 40px 0px;
  }
  .wc-block-checkout__terms.wc-block-checkout__terms--with-separator.wc-block-checkout__terms--with-separator {
    padding: 24px;
    margin-bottom: 0;
  }
}
.wc-block-components-notice-banner {
  direction: ltr;
}

@media only screen and (max-width: 660px) {
  .wp-block-woocommerce-cart {
    padding: 40px 20px;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items {
    margin-bottom: 0;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row {
    align-items: flex-start;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap {
    display: block;
    text-align: right;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-metadata {
    display: none;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-name, .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__prices {
    font-size: 16px;
    width: 100%;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
    display: block;
    text-align: right;
    margin-top: 16px !important;
  }
  .wc-block-cart-items.wc-block-cart-items.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
    width: 80px;
  }
  .wc-block-checkout__actions.wc-block-checkout__actions {
    padding-top: 0;
  }
  .wc-block-checkout__actions.wc-block-checkout__actions .wc-block-components-button.wc-block-components-button {
    width: 100%;
  }
}