*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: #EFEFEF;
  color: #201E1F;
}

.container {
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.section-el {
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-el {
    padding: 40px 0;
  }
}

.btn-primary {
  border-radius: 8px;
  background: #BAEB02;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 10px 14px;
}
.btn-primary__text {
  color: var(--Neutral-900, #1A1A1A);
  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Body-2-Line-height, 24px); /* 150% */
}
.btn-primary__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.section-title-slash {
  width: 47px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .section-title-slash {
    width: 36px;
  }
}

.h2-title {
  color: #201E1F;
  font-size: clamp(32px, 4vw, 48px);
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  text-transform: uppercase;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}

.top-bar {
  background-color: #f5f5f5;
  padding: 10px 0;
}
.top-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top-bar__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-bar__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  text-decoration: none;
  border-right: 1px solid #ccc;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.top-bar__link:last-child {
  border-right: none;
}
.top-bar__link:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
}

.main-header {
  background-color: #fff;
}
.main-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0;
}
@media (max-width: 1024px) {
  .main-header__inner {
    padding: 20px 0;
  }
}
.main-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.main-header__logo,
.main-header .custom-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
}
.main-header__logo svg,
.main-header__logo img,
.main-header .custom-logo-link svg,
.main-header .custom-logo-link img {
  display: block;
  height: 18px;
  width: auto;
}
.main-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.main-header__icon-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.main-header__icon-btn svg {
  display: block;
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.main-header__icon-btn:hover {
  opacity: 0.7;
}
.main-header__count {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background-color: #baeb02;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #1a1a1a;
  white-space: nowrap;
  pointer-events: none;
}
.main-header__burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.main-header__burger-line {
  display: block;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
}
.main-header__burger--open .main-header__burger-line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.main-header__burger--open .main-header__burger-line:nth-child(2) {
  opacity: 0;
}
.main-header__burger--open .main-header__burger-line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .main-header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1024px) {
  .main-header__brand {
    gap: 0;
  }
  .main-header__actions {
    gap: 16px;
  }
  .main-header.nav-open .main-header__actions .main-header__icon-btn {
    display: none;
  }
}

@media (max-width: 1024px) {
  .main-header__nav {
    position: fixed;
    top: var(--header-height, 59px);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .main-header__nav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.main-header__nav-head {
  display: none;
}
@media (max-width: 1024px) {
  .main-header__nav-head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 56px;
    padding: 0 16px;
    border-bottom: 1px solid #ccc;
  }
}

@media (max-width: 1024px) {
  .main-header__nav.nav-submenu-open .main-header__nav-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-header__nav-back {
  display: none;
}
@media (max-width: 1024px) {
  .main-header__nav-back {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
  }
  .main-header__nav-back svg {
    display: block;
    width: 14px;
    height: 14px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .main-header__nav-back:hover {
    opacity: 0.7;
  }
}

.main-header__nav-head-title {
  display: none;
}
@media (max-width: 1024px) {
  .main-header__nav-head-title {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #1a1a1a;
  }
}

.main-header__nav-head-spacer {
  display: none;
}
@media (max-width: 1024px) {
  .main-header__nav-head-spacer {
    display: block;
    width: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media (max-width: 1024px) {
  .main-header__nav-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    overflow: hidden;
  }
}

@media (max-width: 1024px) {
  .main-header__nav-body {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
}

.main-header__nav-sub {
  display: none;
}
@media (max-width: 1024px) {
  .main-header__nav-sub {
    display: block;
    position: absolute;
    inset: 0;
    background-color: #fff;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

@media (max-width: 1024px) {
  .main-header__nav.nav-submenu-open .main-header__nav-sub {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.main-header__nav-sub-list {
  list-style: none;
  margin: 0;
  padding: 0 16px;
}

.nav-sub__item {
  border-bottom: 1px solid #ccc;
}
.nav-sub__item--view-all {
  border-bottom: none;
  padding: 16px 0 4px;
}

.nav-sub__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1a1a1a;
  text-decoration: none;
}
.nav-sub__link .nav-dropdown__item-cat,
.nav-sub__link .nav-dropdown__item-brand {
  font-size: 14px;
}
.nav-sub__item--view-all .nav-sub__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  font-weight: 500;
  position: relative;
}
.nav-sub__item--view-all .nav-sub__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: calc(100% - 22px);
  height: 8px;
  background-image: url("../img/show-more-underline.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.main-header__nav-utility {
  display: none;
}
@media (max-width: 1024px) {
  .main-header__nav-utility {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 16px;
  }
  .main-header__nav-utility__link {
    display: block;
    padding: 20px 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
  }
  .main-header__nav-utility__link:last-child {
    border-bottom: none;
  }
  .main-header__nav-utility__link:hover {
    text-decoration: underline;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 0 16px;
  }
}

.nav__item {
  position: relative;
}
@media (min-width: 1025px) {
  .nav__item--has-dropdown:hover > .nav__link .nav__arrow svg, .nav__item--has-dropdown:focus-within > .nav__link .nav__arrow svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .nav__item--has-dropdown:hover > .nav__dropdown, .nav__item--has-dropdown:focus-within > .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .nav__item {
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  .nav__item--dropdown-open > .nav__dropdown {
    display: block;
  }
}

.nav__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: url("../img/header-item-underline.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.nav__link:hover::after {
  opacity: 1;
}
@media (max-width: 1024px) {
  .nav__link {
    font-size: 16px;
    padding: 20px 0;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    white-space: normal;
  }
  .nav__link::after {
    display: none;
  }
}

.nav__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nav__arrow svg {
  display: block;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (max-width: 1024px) {
  .nav__arrow svg {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (max-width: 1024px) {
  .nav__dropdown {
    position: static;
    display: none;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 14px;
  min-width: 180px;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .nav-dropdown {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0 0 16px 16px;
  }
}
.nav-dropdown__item:not(:last-child) {
  margin-bottom: 16px;
}
.nav-dropdown__item--view-all {
  margin-top: 24px;
  margin-bottom: 0;
}
.nav-dropdown__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.nav-dropdown__link:hover, .nav-dropdown__item--active .nav-dropdown__link {
  color: #1a1a1a;
  font-weight: 700;
}
.nav-dropdown__item--view-all .nav-dropdown__link {
  position: relative;
  color: #1a1a1a;
  font-weight: 500;
  gap: 6px;
}
.nav-dropdown__item--view-all .nav-dropdown__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: calc(100% - 22px);
  height: 8px;
  background-image: url("../img/show-more-underline.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.nav-dropdown__item-cat {
  font-size: 16px;
  font-weight: inherit;
  color: inherit;
}
.nav-dropdown__item-brand {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: inherit;
}
.nav-dropdown__view-all-text {
  color: var(--Neutral-900, #1A1A1A);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 112.5%;
}
.nav-dropdown__view-all-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.nav-dropdown__view-all-arrow svg {
  display: block;
}

.footer {
  position: relative;
  background-color: #1a1a1a;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 243px;
  margin-bottom: 60px;
}
.footer__logo-col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__logo-col .custom-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.footer__logo-col .custom-logo-link .custom-logo {
  display: block;
  height: 40px;
  width: auto;
}
.footer__logo-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.footer__logo-link svg,
.footer__logo-link img {
  display: block;
  height: 40px;
  width: auto;
}
.footer__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.footer__cols-top {
  display: contents;
}
.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer__col-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
}
.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.footer__menu li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.footer__menu li a:hover {
  color: #fff;
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.footer__schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.footer__schedule p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__contact-link:hover {
  color: #fff;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #4d4d4d;
  padding: 14px 0;
}
.footer__privacy {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #b3b3b3;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.footer__privacy:hover {
  color: #fff;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 39px;
  height: 39px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.footer__social-link svg {
  display: block;
  width: 26px;
  height: 26px;
}
.footer__social-link:hover {
  opacity: 0.75;
}
@media (max-width: 1200px) {
  .footer__main {
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .footer__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    margin-bottom: 40px;
  }
  .footer__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    width: 100%;
  }
  .footer__cols-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__col {
    gap: 20px;
  }
  .footer__col-title {
    font-size: 14px;
    line-height: 20px;
  }
  .footer__menu {
    gap: 12px;
  }
  .footer__menu li a {
    font-size: 12px;
    line-height: 18px;
  }
  .footer__contacts {
    gap: 12px;
  }
  .footer__contact-text, .footer__contact-link {
    font-size: 12px;
    line-height: 18px;
  }
  .footer__schedule p {
    font-size: 12px;
    line-height: 18px;
  }
}

.header-search {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
}
.header-search.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-search__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.header-search__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
}
.header-search__logo svg,
.header-search__logo img {
  display: block;
  height: 18px;
  width: auto;
}
.header-search__form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 660px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
  gap: 8px;
}
.header-search__input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.header-search__search-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-search__search-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}
.header-search__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  background: transparent;
  font-family: inherit;
}
.header-search__input::-webkit-input-placeholder {
  color: #999;
}
.header-search__input::-moz-placeholder {
  color: #999;
}
.header-search__input:-ms-input-placeholder {
  color: #999;
}
.header-search__input::-ms-input-placeholder {
  color: #999;
}
.header-search__input::placeholder {
  color: #999;
}
.header-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}
.header-search__clear {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #1a1a1a;
}
.header-search__clear svg {
  display: block;
  width: 20px;
  height: 20px;
}
.header-search__clear:hover {
  opacity: 0.6;
}
.header-search__cancel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  font-family: inherit;
  padding: 0;
  white-space: nowrap;
}
.header-search__cancel:hover {
  text-decoration: underline;
}
.header-search__cancel-text {
  display: block;
}
.header-search__cancel-icon {
  display: none;
}
.header-search__dropdown {
  background: #fff;
  padding: 40px 0 60px;
}
.header-search__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 83px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header-search__terms {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 222px;
}
.header-search__terms-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666;
  margin: 0 0 24px;
}
.header-search__terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.header-search__term {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
}
.header-search__term:hover {
  text-decoration: underline;
}
.header-search__results {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.header-search__no-results {
  grid-column: 1/-1;
  font-size: 16px;
  color: #666;
  margin: 0;
}
.header-search__loader {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80px;
}
.header-search__loader::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid #efefef;
  border-top-color: #b2e003;
  border-radius: 50%;
  -webkit-animation: header-search-spin 0.7s linear infinite;
          animation: header-search-spin 0.7s linear infinite;
}
@media (max-width: 1024px) {
  .header-search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 200;
  }
  .header-search__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0;
    gap: 0;
    row-gap: 40px;
  }
  .header-search__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header-search__cancel {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-search__cancel:hover {
    text-decoration: none;
    opacity: 0.6;
  }
  .header-search__cancel-text {
    display: none;
  }
  .header-search__cancel-icon {
    display: block;
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .header-search__form {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: none;
    margin: 0;
    padding: 8px 0;
    border-bottom-color: #ccc;
  }
  .header-search__dropdown {
    padding: 20px 0 40px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header-search__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .header-search__terms {
    width: 100%;
  }
  .header-search__terms-label {
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 18px;
  }
  .header-search__term {
    font-size: 16px;
    line-height: 24px;
    gap: 12px;
  }
  .header-search__terms-list {
    gap: 12px;
  }
  .header-search__results {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@-webkit-keyframes header-search-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes header-search-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  body.search-active {
    overflow: hidden;
  }
}
@-webkit-keyframes bestsellers-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes bestsellers-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.product-card {
  border: 1px solid #baeb02;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  height: 100%;
}
.product-card__media {
  position: relative;
  height: 326px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-card__img-link {
  display: block;
  height: 100%;
}
.product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.product-card__wishlist {
  position: absolute;
  top: 14px;
  right: 12px;
  z-index: 4;
}
.product-card__wishlist .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.product-card__sale-band {
  position: absolute;
  top: 286px;
  left: 0;
  right: 0;
  overflow: hidden;
  background-color: #baeb02;
  padding: 4px 0;
  z-index: 3;
}
.product-card__sale-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 10px;
  -webkit-animation: bestsellers-marquee 30s linear infinite;
          animation: bestsellers-marquee 30s linear infinite;
}
.product-card__sale-track span {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #201e1f;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.product-card__hover-elements {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}
.product-card__hover-elements svg {
  display: block;
  position: absolute;
}
.product-card__hover-elements svg:nth-of-type(1) {
  top: 10px;
  left: 30%;
}
.product-card__hover-elements svg:nth-of-type(2) {
  top: 40%;
  right: 0;
}
.product-card__media:hover .product-card__hover-overlay, .product-card__media:hover .product-card__hover-elements {
  opacity: 1;
}
.product-card__media:hover .product-card__img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.product-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.product-card__title-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #201e1f;
  text-transform: uppercase;
}
.product-card__weight {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #8e8e8e;
}
.product-card__bundle-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__bundle-desc p {
  margin: 0;
}
.product-card__pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.product-card__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.product-card__price {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #201e1f;
  text-transform: uppercase;
}
.product-card__price .woocommerce-Price-amount,
.product-card__price .woocommerce-Price-currencySymbol {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.product-card__price-old-wrap {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-card__price-old-wrap > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.product-card__price-old {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #666;
  text-transform: uppercase;
}
.product-card__price-old .woocommerce-Price-amount,
.product-card__price-old .woocommerce-Price-currencySymbol {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.product-card__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #baeb02;
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.product-card__btn:hover, .product-card__btn.added, .product-card__btn.loading {
  background-color: #baeb02;
  border-color: #baeb02;
}
.product-card__btn-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #201e1f;
}
.product-card__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-card__btn-icon svg {
  display: block;
}
.product-card .added_to_cart.wc-forward {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #baeb02;
  background-color: #baeb02;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #201e1f;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.product-card .added_to_cart.wc-forward:hover {
  background-color: transparent;
}
@media (max-width: 767px) {
  .product-card__title {
    font-size: 14px;
    line-height: 20px;
  }
  .product-card__price, .product-card__price-old {
    font-size: 14px;
    line-height: 20px;
  }
  .product-card__btn-text {
    font-size: 14px;
    line-height: 20px;
  }
  .product-card .added_to_cart.wc-forward {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 1024px) {
  .header-search__results .product-card {
    gap: 8px;
  }
  .header-search__results .product-card__media {
    height: 159px;
  }
  .header-search__results .product-card__sale-band {
    top: 132px;
  }
  .header-search__results .product-card__title {
    font-size: 12px;
    line-height: 18px;
  }
  .header-search__results .product-card__weight {
    font-size: 12px;
    line-height: 18px;
  }
  .header-search__results .product-card__price, .header-search__results .product-card__price-old {
    font-size: 12px;
    line-height: 18px;
  }
  .header-search__results .product-card__pricing {
    gap: 6px;
  }
  .header-search__results .product-card__btn {
    padding: 8px 10px;
  }
  .header-search__results .product-card__btn-text {
    font-size: 14px;
    line-height: 18px;
  }
  .header-search__results .product-card__btn-icon {
    width: 16px;
    height: 16px;
  }
  .header-search__results .product-card .added_to_cart.wc-forward {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 10px;
  }
}
.reviews__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .reviews__header {
    margin-bottom: 24px;
  }
}
.reviews__title-wrap {
  width: 52%;
}
@media (max-width: 768px) {
  .reviews__title-wrap {
    width: 100%;
  }
}
.reviews__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 42px;
  position: absolute;
  z-index: 2;
  right: 0;
  top: -80px;
}
@media (max-width: 768px) {
  .reviews__nav {
    position: initial;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 24px;
  }
}
.reviews__nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.reviews__nav-btn:hover {
  opacity: 0.7;
}
.reviews__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
@media (max-width: 768px) {
  .reviews__nav-btn {
    width: 60px;
  }
}
.reviews__slider {
  position: relative;
  overflow: visible;
}
.reviews__slide {
  height: auto;
}
.reviews__card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 20px;
  background-color: #fff;
  overflow: hidden;
}
.reviews__card-top {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.reviews__card-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .reviews__card-quote {
    width: 25px;
    height: 25px;
  }
}
.reviews__card-text {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: 150%;
  color: #201e1f;
  text-align: justify;
}
.reviews__card-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.reviews__card-star {
  width: 17px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.reviews__card-rating-num {
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  color: #000;
  text-transform: uppercase;
}
.reviews__card-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.reviews__card-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #201e1f;
}
.reviews__card-date {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: 150%;
  color: #999;
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 768px) {
  .faq__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.faq__head {
  width: 38%;
}
@media (max-width: 768px) {
  .faq__head {
    width: 100%;
  }
}

.faq-accordion {
  width: 49%;
}
@media (max-width: 768px) {
  .faq-accordion {
    width: 100%;
  }
}
.faq-accordion__item {
  border-bottom: 1px solid #b3b3b3;
}
.faq-accordion__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 54px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 600px) {
  .faq-accordion__question {
    gap: 24px;
  }
}
.faq-accordion__question-text {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  line-height: 150%;
  color: #1a1a1a;
}
.faq-accordion__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq-accordion__icon svg {
  display: block;
}
.faq-accordion__icon--plus {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.faq-accordion__icon--minus {
  display: none;
}
.faq-accordion__item--open .faq-accordion__icon--plus {
  display: none;
}
.faq-accordion__item--open .faq-accordion__icon--minus {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.faq-accordion__answer {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease, -ms-grid-rows 0.35s ease;
}
.faq-accordion__item--open > .faq-accordion__answer {
  grid-template-rows: 1fr;
}
.faq-accordion__answer-content {
  overflow: hidden;
  padding-bottom: 0;
  -webkit-transition: padding-bottom 0.35s ease;
  transition: padding-bottom 0.35s ease;
}
.faq-accordion__item--open .faq-accordion__answer-content {
  padding-bottom: 22px;
}
.faq-accordion__answer-content p {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: 150%;
  color: #333;
  margin: 0 0 12px;
}
.faq-accordion__answer-content p:last-child {
  margin-bottom: 0;
}
.faq-accordion__answer-content ul {
  list-style: disc;
}
.faq-accordion__answer-content ol {
  list-style: auto;
}
.faq-accordion__answer-content ul,
.faq-accordion__answer-content ol {
  padding-left: 20px;
  font-size: clamp(12px, 3vw, 16px);
  line-height: 150%;
  color: #333;
  margin: 0 0 12px;
}
.faq-accordion__answer-content ul:last-child,
.faq-accordion__answer-content ol:last-child {
  margin-bottom: 0;
}
.faq-accordion__answer-content li {
  margin-bottom: 6px;
}
.faq-accordion__answer-content a {
  color: #baeb02;
  text-decoration: underline;
}
.faq-accordion__answer-content a:hover {
  text-decoration: none;
}
.faq-accordion__answer-content strong {
  font-weight: 600;
}

.advantages__header {
  width: 49%;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .advantages__header {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .advantages__header {
    margin-bottom: 24px;
  }
}
.advantages__title {
  font-size: clamp(24px, 4vw, 48px);
}
.advantages__items-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .advantages__items-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .advantages__items-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.advantages__item {
  padding: 24px 16px;
  border: 2px solid var(--primary-green-500, #B2E003);
}
.advantages__item-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .advantages__item-icon {
    margin-bottom: 12px;
  }
}
.advantages__item-title {
  color: var(--Neutral-900, #1A1A1A);
  font-size: clamp(16px, 3vw, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: 155.556%;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.advantages__item-text {
  color: var(--Neutral-900, #1A1A1A);
  font-size: clamp(12px, 3vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.bestsellers__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .bestsellers__header {
    margin-bottom: 24px;
  }
}
.bestsellers__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bestsellers__nav--desktop {
  gap: 42px;
}
@media (max-width: 1024px) {
  .bestsellers__nav--desktop {
    display: none;
  }
}
.bestsellers__nav--mobile {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .bestsellers__nav--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.bestsellers__nav-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.bestsellers__nav-btn svg {
  display: block;
}
.bestsellers__nav-btn:hover {
  opacity: 0.7;
}
.bestsellers__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.bestsellers__slider {
  overflow: hidden;
}

.bestsellers__slider .swiper-slide {
  height: auto;
}

.kit__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .kit__header {
    margin-bottom: 24px;
  }
}
.kit__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit__nav--desktop {
  gap: 42px;
}
@media (max-width: 1024px) {
  .kit__nav--desktop {
    display: none;
  }
}
.kit__nav--mobile {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .kit__nav--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.kit__nav-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.kit__nav-btn svg {
  display: block;
}
.kit__nav-btn:hover {
  opacity: 0.7;
}
.kit__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.kit__slider {
  overflow: hidden;
}

.kit__slider .swiper-slide {
  height: auto;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
}
.hero__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1023px) {
  .hero__nav {
    display: none;
  }
}
.hero__slider {
  position: relative;
  width: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  overflow: hidden;
}
.hero__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(95%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 95%);
  pointer-events: none;
  z-index: 1;
}
.hero__slide-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 0;
  text-align: center;
  max-width: 290px;
}
.hero__slide-logo {
  width: 290px;
  height: auto;
  margin: 0 auto 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .hero__slide-logo {
    width: 212px;
  }
}
.hero__slide-text {
  color: #fff;
  font-size: clamp(20px, 3vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 116.667%;
}
.hero__slide-btn {
  margin-top: 32px;
}
.hero__nav-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.hero__nav-btn:hover {
  opacity: 0.7;
}
.hero__nav-btn--prev {
  left: 80px;
}
.hero__nav-btn--next {
  right: 80px;
}
.hero__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.hero__running-line {
  overflow: hidden;
  background-color: #BAEB02;
  opacity: 0.8;
  padding: 8px 0;
}
.hero__running-line-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: hero-marquee 20s linear infinite;
          animation: hero-marquee 20s linear infinite;
}
.hero__running-line-item {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  line-height: 150%;
  color: #0F1113;
  text-transform: uppercase;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 100px;
}

@-webkit-keyframes hero-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}

@keyframes hero-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}
.categories {
  background-color: #1a1a1a;
}
.categories__header {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .categories__header {
    margin-bottom: 24px;
  }
}
.categories__title {
  color: #f3f0eb;
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .categories__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.categories__item:nth-child(n+3) {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .categories__item:nth-child(n+3) {
    grid-column: span 1;
  }
}
.categories__item {
  position: relative;
  display: block;
  height: 326px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
}
.categories__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.categories__item[href]:hover::after {
  opacity: 1;
}
.categories__item[href]:hover .categories__item-arrow {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.categories__item-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(60%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}
.categories__item-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.85);
          transform: translate(-50%, -50%) scale(0.85);
  z-index: 3;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.categories__item-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f3f0eb;
  z-index: 4;
}
.categories__item-bracket {
  color: #baeb02;
}

.cart__header {
  margin-bottom: 40px;
}
.cart__title {
  color: #333;
}
.cart__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart__items {
  width: 55%;
}
.cart__items {
  position: relative;
}
.cart__table-header {
  display: grid;
  grid-template-columns: 24px 0.75fr 2fr 1fr;
  gap: 20px;
  padding: 32px 0 12px;
  border-bottom: 1px solid #b3b3b3;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin-bottom: 24px;
}
.cart__table-header-product {
  grid-column: 1/4;
}
.cart__table-header-total {
  grid-column: 4;
}
.cart__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.cart__row {
  display: grid;
  grid-template-columns: 24px 0.75fr 2fr 1fr;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.cart__row-remove {
  padding-top: 2px;
}
.cart__remove-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #201e1f;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.cart__remove-btn:hover {
  opacity: 0.6;
}
.cart__remove-btn svg {
  display: block;
}
.cart__row-thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #e6e6e6;
}
.cart__row-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}
.cart__row-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cart__row-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.cart__row-name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cart__row-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
}
.cart .variation {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 24px;
}
.cart .variation dt,
.cart .variation dd {
  display: inline;
  margin: 0;
  padding: 0;
}
.cart .variation dt::after {
  content: ": ";
}
.cart .variation dd::after {
  content: ", ";
}
.cart .variation dd:last-of-type::after {
  content: "";
}
.cart .variation dt {
  display: none;
}
.cart__row-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart__price-old {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__price-old-amount {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #666;
  white-space: nowrap;
}
.cart__price-old-amount .woocommerce-Price-amount {
  color: inherit;
}
.cart__price-old-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.cart__price-old-line svg {
  width: 100%;
  height: auto;
  display: block;
}
.cart__price-sale {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
}
.cart__price-sale .woocommerce-Price-amount {
  color: inherit;
}
.cart__price-regular {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #333;
}
.cart__price-regular .woocommerce-Price-amount {
  color: inherit;
}
.cart__qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart__qty-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #e6e6e6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.cart__qty-btn:hover:not(:disabled) {
  background: #d4d4d4;
}
.cart__qty-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.cart__qty-btn svg {
  display: block;
}
.cart__update-btn {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cart__qty-input {
  width: 24px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #333;
  padding: 0;
  -moz-appearance: textfield;
}
.cart__qty-input::-webkit-outer-spin-button, .cart__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart__qty-input:focus {
  outline: none;
}
.cart__row-total {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
}
.cart__row-total .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.cart__summary {
  width: 37%;
  background: #fff;
  padding: 20px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.cart__summary-header {
  padding: 12px 0;
  border-bottom: 1px solid #b3b3b3;
}
.cart__summary-title {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.cart__summary-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cart__summary-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 8px 0;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.cart__summary-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.cart__summary-label--shipping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart__shipping-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__shipping-info svg {
  display: block;
}
.cart__summary-value {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__summary-value--shipping {
  font-size: 12px;
  line-height: 18px;
  color: #666;
}
.cart__summary-value .woocommerce-Price-amount {
  color: inherit;
}
.cart__summary-row--coupon {
  color: #4e6204;
}
.cart__summary-row--coupon .woocommerce-Price-amount {
  color: inherit;
}
.cart__coupon-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.cart__coupon-code {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.cart__coupon-remove {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e6e6e6;
  color: #666;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.cart__coupon-remove:hover {
  background: #c0392b;
  color: #fff;
}
.cart__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.cart__promo-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #4e6204;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 4px 0;
  text-align: left;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.cart__promo-toggle:hover {
  opacity: 0.75;
}
.cart__promo-toggle svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__coupon-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .cart__coupon-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cart__coupon-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #201e1f;
  background: #fff;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.cart__coupon-input:focus {
  border-color: #201e1f;
}
.cart__coupon-input::-webkit-input-placeholder {
  color: #b3b3b3;
}
.cart__coupon-input::-moz-placeholder {
  color: #b3b3b3;
}
.cart__coupon-input:-ms-input-placeholder {
  color: #b3b3b3;
}
.cart__coupon-input::-ms-input-placeholder {
  color: #b3b3b3;
}
.cart__coupon-input::placeholder {
  color: #b3b3b3;
}
.cart__coupon-submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1.5px solid #201e1f;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: #201e1f;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.cart__coupon-submit:hover {
  background: #201e1f;
  color: #fff;
}
.cart__summary-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  border-top: 1px solid #b3b3b3;
}
.cart__summary-total-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333;
}
.cart__summary-total-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333;
}
.cart__summary-total-amount .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.cart__summary-total-bracket {
  color: #333;
}
.cart__checkout-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background: #baeb02;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cart__checkout-btn:hover {
  background: #a8d502;
}
.cart__checkout-btn svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .cart__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .cart__items, .cart__summary {
    width: 100%;
  }
  .cart__table-header {
    display: none;
  }
  .cart__rows {
    gap: 20px;
  }
  .cart__row {
    display: grid;
    grid-template-columns: minmax(96px, 139px) minmax(0, 1fr) auto;
    grid-template-areas: "thumb info   remove" "thumb qty    total";
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    row-gap: 14px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid #b3b3b3;
  }
  .cart__row-thumb {
    grid-area: thumb;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .cart__row-remove {
    grid-area: remove;
    padding-top: 0;
    justify-self: end;
  }
  .cart__row-info {
    grid-area: info;
    min-width: 0;
    gap: 12px;
  }
  .cart__row-name {
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: anywhere;
  }
  .cart__row-price {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cart__price-old-amount, .cart__price-sale, .cart__price-regular {
    font-size: 14px;
    line-height: 20px;
  }
  .cart__qty {
    grid-area: qty;
    align-self: start;
  }
  .cart__row-total {
    grid-area: total;
    justify-self: end;
    align-self: end;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
  }
  .cart__remove-btn svg {
    width: 18px;
    height: 18px;
  }
  .cart__summary {
    padding: 16px;
    gap: 16px;
  }
  .cart__summary-header {
    padding: 0 0 8px;
  }
  .cart__summary-row {
    font-size: 14px;
    line-height: 20px;
  }
  .cart__summary-value {
    width: auto;
    font-size: 14px;
    line-height: 20px;
  }
  .cart__summary-total-label, .cart__summary-total-amount {
    font-size: 20px;
    line-height: 30px;
  }
  .cart__summary-total-amount {
    font-size: 18px;
  }
}

.woocommerce-notices-wrapper {
  margin-bottom: 24px;
}
.woocommerce-notices-wrapper .woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  border-left: 4px solid #baeb02;
  background: #e8f8b0;
  font-size: 16px;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 8px;
  padding-left: 60px;
  outline: none;
}
.woocommerce-notices-wrapper .woocommerce-message a.button,
.woocommerce-notices-wrapper .woocommerce-message a.wc-forward {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: underline;
  white-space: nowrap;
}
.woocommerce-notices-wrapper ul.woocommerce-error {
  padding: 14px 20px;
  border-radius: 8px;
  border-left: 4px solid #c0392b;
  background: #fdecea;
  margin-bottom: 8px;
  list-style: none;
  padding-left: 60px;
  outline: none;
}
.woocommerce-notices-wrapper ul.woocommerce-error li {
  font-size: 16px;
  line-height: 24px;
  color: #201e1f;
  padding-left: 20px;
  position: relative;
}
.woocommerce-notices-wrapper ul.woocommerce-error li a {
  color: #201e1f;
  font-weight: 500;
  text-decoration: underline;
}
.woocommerce-notices-wrapper .woocommerce-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  border-left: 4px solid #1a73e8;
  background: #e8f0fe;
  font-size: 16px;
  line-height: 24px;
  color: #201e1f;
  margin-bottom: 8px;
  padding-left: 60px;
  outline: none;
}
.woocommerce-notices-wrapper .woocommerce-info a {
  color: #201e1f;
  font-weight: 500;
  text-decoration: underline;
}

.cart__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
}
.cart__empty-illustration {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 343px;
}
.cart__empty-basket {
  pointer-events: none;
}
.cart__empty-arrow {
  position: absolute;
}
.cart__empty-arrow svg {
  display: block;
  width: 100%;
  height: auto;
}
.cart__empty-arrow--1 {
  top: 14%;
  right: -4%;
  width: 36px;
  -webkit-transform: rotate(-158.69deg);
          transform: rotate(-158.69deg);
}
.cart__empty-arrow--2 {
  bottom: 8%;
  left: -2%;
  width: 45px;
  -webkit-transform: scaleY(-1) rotate(-46.13deg);
          transform: scaleY(-1) rotate(-46.13deg);
}
.cart__empty-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: #8e8e8e;
  text-align: center;
  max-width: 343px;
}
.cart__empty-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 343px;
  padding: 12px 24px;
  background: #baeb02;
  border-radius: 8px;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.cart__empty-btn:hover {
  background: #a8d502;
}
.cart__empty-btn-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  white-space: nowrap;
}
.cart__empty-btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart__empty-btn-icon svg {
  display: block;
}
@media (min-width: 768px) {
  .cart__empty {
    gap: 32px;
    padding: 60px 0 100px;
  }
  .cart__empty-illustration {
    max-width: 600px;
  }
  .cart__empty-text {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
  }
  .cart__empty-btn {
    width: 360px;
    max-width: 360px;
  }
}

.checkout__header {
  margin-bottom: 40px;
}
.checkout__title {
  color: #333;
}
.checkout__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.checkout__main {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.checkout__section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--Neutral-300, #B3B3B3);
  margin-bottom: 24px;
}
.checkout__section-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: var(--Primary-500, #BAEB02);
  color: var(--Primary-700, #749306);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}
.checkout__section-label {
  color: var(--Primary-700, #749306);
  font-size: 18px;
  font-weight: 600;
  line-height: 155.556%;
}
.checkout__contact-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 12px 0;
}
.checkout__contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout__field-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.checkout__label {
  color: var(--Neutral-800, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.checkout__input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  padding: 12px 24px;
  color: var(--black-white-black, #000);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.checkout__input:focus {
  border-color: #201e1f;
}
.checkout__input::-webkit-input-placeholder {
  color: #b3b3b3;
}
.checkout__input::-moz-placeholder {
  color: #b3b3b3;
}
.checkout__input:-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout__input::-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout__input::placeholder {
  color: #b3b3b3;
}
.checkout__input.woocommerce-invalid-required-field {
  border-color: #c0392b;
}
.checkout wc-order-attribution-inputs {
  display: none;
}
.checkout #wcus-billing-fields,
.checkout #wcus-shipping-fields {
  padding: 16px 0 4px;
}
.checkout #wcus-billing-fields .wc-ukr-shipping-np-fields,
.checkout #wcus-shipping-fields .wc-ukr-shipping-np-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.checkout #wcus-billing-fields h3,
.checkout #wcus-shipping-fields h3 {
  color: var(--black-white-black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 12px;
}
.checkout #wcus-billing-fields b,
.checkout #wcus-billing-fields strong,
.checkout #wcus-shipping-fields b,
.checkout #wcus-shipping-fields strong {
  font-size: 16px;
  font-weight: 600;
  color: #201e1f;
  line-height: 150%;
  display: block;
  margin: 0;
}
.checkout #wcus-billing-fields .zen-ui-select__value,
.checkout #wcus-shipping-fields .zen-ui-select__value {
  border-radius: 4px !important;
  border-color: #b3b3b3 !important;
  padding: 12px 36px 12px 24px !important;
  font-size: 16px;
  color: #201e1f;
  line-height: 150%;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  background-color: transparent;
}
.checkout #wcus-billing-fields .zen-ui-select__value:hover,
.checkout #wcus-shipping-fields .zen-ui-select__value:hover {
  background: #fff;
  border-color: #201e1f !important;
}
.checkout #wcus-billing-fields .zen-ui-select__value.disabled,
.checkout #wcus-shipping-fields .zen-ui-select__value.disabled {
  background: #f7f7f7;
  border-color: #e0e0e0 !important;
  cursor: default;
}
.checkout #wcus-billing-fields .zen-ui-select__value.disabled .zen-ui-select__value-text,
.checkout #wcus-shipping-fields .zen-ui-select__value.disabled .zen-ui-select__value-text {
  color: #b3b3b3;
}
.checkout #wcus-billing-fields .zen-ui-select__value-text,
.checkout #wcus-shipping-fields .zen-ui-select__value-text {
  color: #000;
}
.checkout #wcus-billing-fields .zen-ui-select__dropdown,
.checkout #wcus-shipping-fields .zen-ui-select__dropdown {
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.checkout #wcus-billing-fields .zen-ui-select__options,
.checkout #wcus-shipping-fields .zen-ui-select__options {
  border-color: #b3b3b3;
}
.checkout #wcus-billing-fields .zen-ui-select__search,
.checkout #wcus-shipping-fields .zen-ui-select__search {
  border-color: #b3b3b3;
}
.checkout #wcus-billing-fields .zen-ui-select__search-input,
.checkout #wcus-shipping-fields .zen-ui-select__search-input {
  border-radius: 4px !important;
  border-color: #b3b3b3 !important;
  font-size: 15px;
  font-family: inherit;
  color: #201e1f;
  padding: 8px 12px !important;
}
.checkout #wcus-billing-fields .zen-ui-select__search-input::-webkit-input-placeholder, .checkout #wcus-shipping-fields .zen-ui-select__search-input::-webkit-input-placeholder {
  color: #b3b3b3;
}
.checkout #wcus-billing-fields .zen-ui-select__search-input::-moz-placeholder, .checkout #wcus-shipping-fields .zen-ui-select__search-input::-moz-placeholder {
  color: #b3b3b3;
}
.checkout #wcus-billing-fields .zen-ui-select__search-input:-ms-input-placeholder, .checkout #wcus-shipping-fields .zen-ui-select__search-input:-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout #wcus-billing-fields .zen-ui-select__search-input::-ms-input-placeholder, .checkout #wcus-shipping-fields .zen-ui-select__search-input::-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout #wcus-billing-fields .zen-ui-select__search-input::placeholder,
.checkout #wcus-shipping-fields .zen-ui-select__search-input::placeholder {
  color: #b3b3b3;
}
.checkout #wcus-billing-fields .zen-ui-select__search-input:focus,
.checkout #wcus-shipping-fields .zen-ui-select__search-input:focus {
  border-color: #201e1f !important;
  outline: none;
}
.checkout #wcus-billing-fields .zen-ui-select__option,
.checkout #wcus-shipping-fields .zen-ui-select__option {
  font-size: 15px;
  color: #201e1f;
}
.checkout #wcus-billing-fields .zen-ui-select__option--current,
.checkout #wcus-shipping-fields .zen-ui-select__option--current {
  background: #f5ffd6;
}
.checkout #wcus-billing-fields .zen-ui-select__option:not(.zen-ui-select__option--disabled):not(.zen-ui-select__option--current):hover,
.checkout #wcus-shipping-fields .zen-ui-select__option:not(.zen-ui-select__option--disabled):not(.zen-ui-select__option--current):hover {
  background: #f5f5f5;
}
.checkout .wcus-checkout-fields {
  padding: 16px 0 4px;
}
.checkout .wcus-checkout-np-fields,
.checkout .wcus-checkout-meest-fields,
.checkout .wcus-checkout-ukrposhta-fields,
.checkout .wcus-checkout-rozetka-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.checkout .wcus-checkout-field-hidden {
  display: none;
}
.checkout .wcus-checkout-fields .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin: 0 0 14px;
  padding: 0;
  width: 100%;
}
.checkout .wcus-checkout-fields label {
  color: var(--Neutral-800, #333);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.checkout .wcus-checkout-fields label .required {
  color: #c0392b;
  border: none;
}
.checkout .wcus-checkout-fields select,
.checkout .wcus-checkout-fields input[type=text],
.checkout .wcus-checkout-fields input[type=search] {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  padding: 12px 24px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  font-family: inherit;
  background: #fff;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.checkout .wcus-checkout-fields select:focus,
.checkout .wcus-checkout-fields input[type=text]:focus,
.checkout .wcus-checkout-fields input[type=search]:focus {
  border-color: #201e1f;
}
.checkout .wcus-checkout-fields select::-webkit-input-placeholder, .checkout .wcus-checkout-fields input[type=text]::-webkit-input-placeholder, .checkout .wcus-checkout-fields input[type=search]::-webkit-input-placeholder {
  color: #b3b3b3;
}
.checkout .wcus-checkout-fields select::-moz-placeholder, .checkout .wcus-checkout-fields input[type=text]::-moz-placeholder, .checkout .wcus-checkout-fields input[type=search]::-moz-placeholder {
  color: #b3b3b3;
}
.checkout .wcus-checkout-fields select:-ms-input-placeholder, .checkout .wcus-checkout-fields input[type=text]:-ms-input-placeholder, .checkout .wcus-checkout-fields input[type=search]:-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout .wcus-checkout-fields select::-ms-input-placeholder, .checkout .wcus-checkout-fields input[type=text]::-ms-input-placeholder, .checkout .wcus-checkout-fields input[type=search]::-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout .wcus-checkout-fields select::placeholder,
.checkout .wcus-checkout-fields input[type=text]::placeholder,
.checkout .wcus-checkout-fields input[type=search]::placeholder {
  color: #b3b3b3;
}
.checkout .wcus-checkout-fields .select2-container {
  width: 100% !important;
}
.checkout .wcus-checkout-fields .select2-container--default .select2-selection--single {
  height: auto;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  background: #fff;
  padding: 12px 24px;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.checkout .wcus-checkout-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 150%;
  font-size: 16px;
  color: #201e1f;
}
.checkout .wcus-checkout-fields .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #b3b3b3;
}
.checkout .wcus-checkout-fields .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 12px;
}
.checkout .wcus-checkout-fields .select2-container--default.select2-container--open .select2-selection--single,
.checkout .wcus-checkout-fields .select2-container--default .select2-selection--single:focus {
  border-color: #201e1f;
}
.checkout .wcus-checkout-fields .select2-container--default.select2-container--disabled .select2-selection--single {
  background: #f7f7f7;
  border-color: #e0e0e0;
  cursor: default;
}
.checkout__shipping-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.checkout__shipping-none {
  font-size: 16px;
  color: #666;
}
.checkout__shipping-option {
  border: 1.5px solid #b3b3b3;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.checkout__shipping-option--active {
  border-color: #201e1f;
}
.checkout__shipping-option-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}
.checkout__shipping-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.checkout__shipping-radio {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  accent-color: #201e1f;
  cursor: pointer;
}
.checkout__shipping-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #201e1f;
}
.checkout__shipping-cost {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.checkout__shipping-fields {
  border-top: 1px solid #e6e6e6;
  padding: 20px 20px;
}
.checkout__payment #payment {
  background: none;
  padding: 0;
  border-radius: 0;
}
.checkout__payment .wc_payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.checkout__payment .wc_payment_method {
  border: 1.5px solid #b3b3b3;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.checkout__payment .wc_payment_method > input[type=radio]:checked + label, .checkout__payment .wc_payment_method:has(input[type=radio]:checked) {
  border-color: #201e1f;
}
.checkout__payment .wc_payment_method > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #201e1f;
}
.checkout__payment .wc_payment_method > label img {
  height: 24px;
  width: auto;
  display: block;
}
.checkout__payment .wc_payment_method > input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkout__payment .wc_payment_method > label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid #b3b3b3;
  -webkit-transition: border-color 0.2s ease, background 0.2s ease;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.checkout__payment .wc_payment_method > input[type=radio]:checked + label::before {
  border-color: #201e1f;
  background: radial-gradient(circle, #201e1f 5px, transparent 5px);
}
.checkout__payment .payment_box {
  border-top: 1px solid #e6e6e6;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
.checkout__payment .payment_box p {
  margin: 0;
}
.checkout__payment .place-order {
  display: none;
}
.checkout__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.checkout__comment-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #4e6204;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
  text-align: left;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.checkout__comment-toggle:hover {
  opacity: 0.75;
}
.checkout__comment-toggle svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.checkout__textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #201e1f;
  background: #fff;
  outline: none;
  resize: vertical;
  font-family: inherit;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.checkout__textarea:focus {
  border-color: #201e1f;
}
.checkout__textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}
.checkout__textarea::-moz-placeholder {
  color: #b3b3b3;
}
.checkout__textarea:-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout__textarea::-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout__textarea::placeholder {
  color: #b3b3b3;
}
.checkout__privacy {
  font-size: 16px;
  line-height: 150%;
  color: #666;
  padding: 12px 0;
  border-top: 1px solid var(--Neutral-300, #B3B3B3);
}
.checkout__privacy a {
  color: #333;
  text-decoration: underline;
}
.checkout__privacy a:hover {
  color: #201e1f;
}
.checkout__summary {
  width: 37%;
  background: #fff;
  padding: 20px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.checkout__summary-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #b3b3b3;
}
.checkout__summary-count {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
}
.checkout__edit-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #4e6204;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.checkout__edit-link:hover {
  opacity: 0.75;
}
.checkout__edit-link svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.checkout__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.checkout__item {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 12px 0;
}
.checkout__item-thumb {
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  background: #e6e6e6;
}
.checkout__item-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}
.checkout__item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.checkout__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  min-width: 0;
  line-height: 20px;
}
.checkout__item-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #333;
  text-transform: uppercase;
  margin: 0;
}
.checkout__item-qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
  margin: 0;
}
.checkout__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
}
.checkout__price-current {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
}
.checkout__price-current .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
}
.checkout__price-old {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #666;
  text-decoration: line-through;
  white-space: nowrap;
}
.checkout__price-old .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
}
.checkout__totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.checkout__total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 4px 0;
}
.checkout__total-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.checkout__shipping-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.checkout__shipping-info svg {
  display: block;
}
.checkout__total-value {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
  text-align: right;
  white-space: nowrap;
  width: 80px;
}
.checkout__total-value--shipping {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #666;
  white-space: normal;
  text-align: right;
}
.checkout__total-value .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
}
.checkout__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.checkout__promo-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #4e6204;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 4px;
  text-align: left;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.checkout__promo-toggle:hover {
  opacity: 0.75;
}
.checkout__promo-toggle svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.checkout__coupon-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.checkout__coupon-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  padding: 10px 14px;
  font-size: 15px;
  color: #201e1f;
  background: #fff;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  font-family: inherit;
}
.checkout__coupon-input:focus {
  border-color: #201e1f;
}
.checkout__coupon-input::-webkit-input-placeholder {
  color: #b3b3b3;
}
.checkout__coupon-input::-moz-placeholder {
  color: #b3b3b3;
}
.checkout__coupon-input:-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout__coupon-input::-ms-input-placeholder {
  color: #b3b3b3;
}
.checkout__coupon-input::placeholder {
  color: #b3b3b3;
}
.checkout__coupon-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1.5px solid #201e1f;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #201e1f;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}
.checkout__coupon-btn:hover {
  background: #201e1f;
  color: #fff;
}
.checkout__grand-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #b3b3b3;
}
.checkout__grand-label {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333;
}
.checkout__grand-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333;
}
.checkout__grand-amount .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.checkout__grand-bracket {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #baeb02;
}
.checkout__grand-bracket svg {
  display: block;
  height: 26px;
  width: auto;
}
.checkout__submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #baeb02;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, opacity 0.2s ease;
  transition: background 0.2s ease, opacity 0.2s ease;
  font-family: inherit;
}
.checkout__submit-btn:hover {
  background: #a8d502;
}
.checkout__submit-btn:disabled, .checkout__submit-btn.loading {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}
.checkout__submit-btn svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  .checkout__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .checkout__main, .checkout__summary {
    width: 100%;
  }
  .checkout__main {
    gap: 32px;
  }
  .checkout__contact-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .checkout__contact-grid {
    gap: 16px;
    padding: 8px 0;
  }
  .checkout__section-num {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .checkout__section-label {
    font-size: 16px;
  }
  .checkout__section-header {
    margin-bottom: 16px;
  }
  .checkout__input {
    padding: 12px 16px;
  }
  .checkout__shipping-option-header {
    padding: 14px 16px;
    gap: 12px;
  }
  .checkout__shipping-name {
    font-size: 14px;
    line-height: 20px;
  }
  .checkout__shipping-cost {
    font-size: 14px;
    line-height: 20px;
  }
  .checkout__shipping-fields {
    padding: 16px;
  }
  .checkout .wcus-checkout-fields select,
  .checkout .wcus-checkout-fields input[type=text],
  .checkout .wcus-checkout-fields input[type=search],
  .checkout .wcus-checkout-fields .select2-container--default .select2-selection--single {
    padding: 12px 16px;
  }
  .checkout__summary {
    padding: 16px;
    gap: 16px;
  }
  .checkout__summary-header {
    padding: 0 0 12px;
  }
  .checkout__item {
    grid-template-columns: 64px 1fr auto;
    gap: 10px;
  }
  .checkout__item-thumb {
    width: 64px;
    height: 64px;
  }
  .checkout__total-row {
    gap: 12px;
  }
  .checkout__total-label, .checkout__total-value {
    font-size: 14px;
    line-height: 20px;
  }
  .checkout__grand-label {
    font-size: 18px;
    line-height: 28px;
  }
  .checkout__grand-amount {
    font-size: 18px;
    line-height: 28px;
  }
  .checkout__grand-bracket svg {
    height: 22px;
  }
  .checkout__coupon-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.zen-ui-select__dropdown-container {
  -webkit-transform: translateY(-32px);
          transform: translateY(-32px);
}

.select2-container--default .select2-dropdown {
  border-color: #b3b3b3;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-radius: 4px;
  border: 1px solid #b3b3b3;
  padding: 8px 12px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #201e1f;
}
.select2-container--default .select2-results__option {
  font-size: 15px;
  color: #201e1f;
  padding: 8px 12px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #f5ffd6;
  color: #201e1f;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background: #f5f5f5;
}

.myaccount {
  position: relative;
  overflow: visible;
}
.myaccount__header {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.myaccount__title {
  color: #333;
}
.myaccount__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 295px 1fr;
  gap: 0 100px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.myaccount__sidebar {
  min-width: 0;
}
.myaccount .myaccount__nav {
  width: 100%;
  float: none;
}
.myaccount__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.myaccount__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: #e6e6e6;
  text-decoration: none;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.myaccount__nav-link:hover {
  background-color: #d9d9d9;
}
.myaccount__nav-item.is-active .myaccount__nav-link {
  background-color: #daf96c;
  color: #1a1a1a;
  font-weight: 500;
}
.myaccount__nav-item.is-active .myaccount__nav-link:hover {
  background-color: #daf96c;
}
.myaccount__nav-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.myaccount__nav-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}
.myaccount__nav-label {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
}
.myaccount__nav-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.myaccount__nav-arrow svg {
  display: block;
  width: 24px;
  height: 24px;
}
.myaccount .myaccount__content {
  width: 100%;
}
.myaccount .myaccount__content .woocommerce-notices-wrapper {
  margin-bottom: 0;
}
.myaccount .myaccount__content .woocommerce-error,
.myaccount .myaccount__content .woocommerce-message,
.myaccount .myaccount__content .woocommerce-info {
  margin: 0 0 16px;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  list-style: none;
}
.myaccount .myaccount__content .woocommerce-error li,
.myaccount .myaccount__content .woocommerce-message li,
.myaccount .myaccount__content .woocommerce-info li {
  margin: 0;
  padding: 0;
}
.myaccount .myaccount__content .woocommerce-error {
  background-color: #fff5f5;
  border: 1px solid #fc8181;
  color: #c0392b;
}
.myaccount .myaccount__content .woocommerce-message {
  background-color: #f0fff4;
  border: 1px solid #68d391;
  color: #276749;
}
.myaccount .myaccount__content .woocommerce-info {
  background-color: #ebf8ff;
  border: 1px solid #63b3ed;
  color: #2b6cb0;
}
.myaccount__dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.myaccount__welcome, .myaccount__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
}
.myaccount__welcome a, .myaccount__description a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.myaccount__back-btn {
  display: none;
}
@media (max-width: 767px) {
  .myaccount__layout {
    display: block;
  }
  .myaccount__sidebar {
    display: block;
  }
  .myaccount__content {
    display: none;
  }
  .myaccount__layout.has-opened-tab .myaccount__sidebar {
    display: none;
  }
  .myaccount__layout.has-opened-tab .myaccount__content {
    display: block;
  }
  .myaccount__nav-list {
    gap: 12px;
  }
  .myaccount__nav-link {
    padding: 16px 20px;
    gap: 16px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
  }
  .myaccount__nav-item.is-active .myaccount__nav-link {
    background-color: #baeb02;
    color: #1a1a1a;
    font-weight: 600;
  }
  .myaccount__nav-icon {
    width: 24px;
    height: 24px;
  }
  .myaccount__nav-icon svg {
    width: 24px;
    height: 24px;
  }
  .myaccount__nav-arrow {
    margin-left: auto;
  }
  .myaccount__back-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin-bottom: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #baeb02;
  }
  .myaccount__back-btn svg {
    display: block;
    width: 24px;
    height: 24px;
  }
  .myaccount__back-btn:hover {
    opacity: 0.75;
  }
  .myaccount__welcome, .myaccount__description {
    font-size: 14px;
    line-height: 20px;
  }
  .myaccount__welcome {
    margin-bottom: 4px;
  }
}

.orders-history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.orders-history__topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-height: 48px;
}
.orders-history__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #749306;
  text-transform: uppercase;
}
.orders-history__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #b3b3b3 transparent;
}
.orders-history__table-scroll::-webkit-scrollbar {
  height: 6px;
}
.orders-history__table-scroll::-webkit-scrollbar-thumb {
  background: #b3b3b3;
  border-radius: 3px;
}
.orders-history__table {
  background-color: #fff;
  border-radius: 4px;
  min-width: 800px;
}
.orders-history__head-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 35px;
  padding: 16px 40px;
  border-bottom: 1px solid #b3b3b3;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
}
.orders-history__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 35px;
  padding: 12px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.orders-history__cell {
  font-size: 16px;
  line-height: 24px;
}
.orders-history__cell--order-number {
  font-weight: 500;
}
.orders-history__cell--order-date, .orders-history__cell--order-total {
  font-weight: 400;
  color: #4d4d4d;
}
.orders-history__cell--order-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.orders-history__order-link {
  font-weight: 500;
  color: #749306;
  text-decoration: none;
}
.orders-history__order-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.orders-history__action-link {
  display: inline-block;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #4e6204;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
}
.orders-history__action-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.orders-history__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.orders-history__pagination-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #b3b3b3;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #1a1a1a;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.orders-history__pagination-btn:hover {
  background-color: #e6e6e6;
}

.order-status-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1a1a1a;
  width: 100%;
}
.order-status-badge--new {
  background-color: #e7fb9d;
}
.order-status-badge--processing {
  background-color: #ffeecc;
}
.order-status-badge--completed {
  background-color: #e6e6e6;
}
.order-status-badge--cancelled {
  background-color: #ffcccd;
}
.order-status-badge__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
}
.order-status-badge__icon svg {
  display: block;
  width: 12px;
  height: 12px;
}

.orders-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.orders-empty__image {
  display: block;
  width: 600px;
  height: auto;
}
.orders-empty__text {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #8e8e8e;
  text-transform: uppercase;
  text-align: center;
}
.orders-empty__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 360px;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #baeb02;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.orders-empty__cta:hover {
  background-color: #a8d400;
}
.orders-empty__cta svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.order-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.order-details__title {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #749306;
  text-transform: uppercase;
  margin: 0;
}
.order-details__table {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.order-details__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 35px;
  padding: 16px 40px;
  border-bottom: 1px solid #b3b3b3;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
}
.order-details__head-cell--total {
  text-align: right;
}
.order-details__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 35px;
  padding: 12px 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-bottom: 1px solid #f5f5f5;
}
.order-details__item:last-child {
  border-bottom: none;
}
.order-details__item-name {
  font-size: 16px;
  line-height: 24px;
  color: #1a1a1a;
}
.order-details__item-name a {
  color: #749306;
  text-decoration: none;
}
.order-details__item-name a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.order-details__item-name .product-quantity {
  color: #4d4d4d;
  font-weight: 400;
}
.order-details__item-total {
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;
  white-space: nowrap;
  text-align: right;
}
.order-details__item-note {
  padding: 0 40px 12px;
  font-size: 14px;
  line-height: 22px;
  color: #4d4d4d;
}
.order-details__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  padding: 12px 40px;
  border-top: 1px solid #b3b3b3;
}
.order-details__action-btn {
  display: inline-block;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #4e6204;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}
.order-details__action-btn:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.order-details__totals {
  border-top: 1px solid #b3b3b3;
  padding: 8px 40px;
}
.order-details__total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid #f5f5f5;
}
.order-details__total-row:last-child {
  border-bottom: none;
}
.order-details__total-row--grand-total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid #b3b3b3;
  border-bottom: none;
}
.order-details__total-row--grand-total .order-details__total-label,
.order-details__total-row--grand-total .order-details__total-value {
  font-weight: 600;
  color: #1a1a1a;
}
.order-details__total-row--note {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.order-details__total-label {
  color: #4d4d4d;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.order-details__total-value {
  color: #1a1a1a;
  text-align: right;
}
.order-details__total-value strong {
  font-weight: 600;
}

.customer-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.customer-details__title {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #749306;
  text-transform: uppercase;
  margin: 0;
}
.customer-details__card {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.customer-details__card--with-shipping {
  grid-template-columns: 1fr 1fr;
}
.customer-details__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.customer-details__column-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #8e8e8e;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.customer-details__address {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.customer-details__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
}
.customer-details__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
  font-size: 16px;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
}
.customer-details__contact-label {
  font-size: 14px;
  color: #8e8e8e;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.orders-history__row[hidden] {
  display: none;
}
.orders-history__no-results {
  padding: 24px 40px;
  font-size: 16px;
  line-height: 24px;
  color: #8e8e8e;
  text-align: center;
}
.orders-history__no-results[hidden] {
  display: none;
}

.orders-filter__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.orders-filter__search-wrap {
  position: relative;
  width: 240px;
}
.orders-filter__search {
  display: block;
  width: 100%;
  padding: 12px 40px 12px 24px;
  border: 1px solid #666;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.orders-filter__search::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.orders-filter__search::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.orders-filter__search:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.orders-filter__search::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.orders-filter__search::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.orders-filter__search:focus {
  border-color: #1a1a1a;
}
.orders-filter__search::-webkit-search-cancel-button, .orders-filter__search::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}
.orders-filter__search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14px;
  height: 14px;
  opacity: 0.3;
  pointer-events: none;
}
.orders-filter__search-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}
.orders-filter__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 1px solid #666;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: #1a1a1a;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.orders-filter__toggle:hover {
  background-color: #e6e6e6;
}
.orders-filter__toggle--active {
  border-color: #749306;
  background-color: #e7fb9d;
  color: #4e6204;
}
.orders-filter__toggle svg {
  display: block;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.orders-filter__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.orders-filter__panel[hidden] {
  display: none;
}
.orders-filter__statuses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.orders-filter__status-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 14px;
  border-radius: 8px;
  border: 1px solid #b3b3b3;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #4d4d4d;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.orders-filter__status-btn:hover {
  background-color: #e6e6e6;
  border-color: #999;
}
.orders-filter__status-btn--active {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.orders-filter__status-btn--active:hover {
  background-color: #333;
  border-color: #333;
}

@media (max-width: 767px) {
  .orders-history__topbar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: auto;
  }
  .orders-history__no-results {
    padding: 20px 16px;
  }
  .orders-filter__controls {
    width: 100%;
  }
  .orders-filter__search-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    width: auto;
  }
  .orders-filter__search {
    padding: 10px 36px 10px 16px;
  }
  .orders-filter__search-icon {
    right: 10px;
  }
  .orders-filter__toggle {
    width: 44px;
    height: 44px;
  }
  .order-view {
    gap: 16px;
  }
  .order-details__head, .order-details__item, .order-details__item-note, .order-details__actions, .order-details__totals {
    padding-left: 16px;
    padding-right: 16px;
  }
  .order-details__head, .order-details__item {
    gap: 0 16px;
  }
  .order-details__head-cell, .order-details__item-name, .order-details__item-total {
    font-size: 14px;
    line-height: 20px;
  }
  .order-details__actions {
    gap: 12px;
  }
  .customer-details__card {
    padding: 16px;
    gap: 16px;
  }
  .customer-details__card--with-shipping {
    grid-template-columns: 1fr;
  }
  .customer-details__name, .customer-details__contact {
    font-size: 14px;
    line-height: 20px;
  }
  .order-view__summary {
    font-size: 14px;
    line-height: 20px;
  }
  .order-view__note {
    padding: 14px 16px;
  }
}
.order-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.order-view__summary {
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;
  margin: 0;
}
.order-view__summary .order-number,
.order-view__summary .order-date,
.order-view__summary .order-status {
  background: none;
  font-style: normal;
  font-weight: 500;
  color: #1a1a1a;
}
.order-view__updates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.order-view__updates-title {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #1a1a1a;
  margin: 0;
  text-transform: uppercase;
}
.order-view__notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.order-view__note {
  background-color: #fff;
  border-radius: 4px;
  padding: 16px 20px;
}
.order-view__note-meta {
  font-size: 12px;
  color: #8e8e8e;
  margin: 0 0 8px;
}
.order-view__note-body {
  font-size: 14px;
  line-height: 22px;
  color: #4d4d4d;
}
.order-view__note-body p:last-child {
  margin-bottom: 0;
}

.addresses-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.address-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.address-section__topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-height: 48px;
}
.address-section__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #749306;
  text-transform: uppercase;
}
.address-section__edit-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #4e6204;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.address-section__edit-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.address-section__edit-link svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.address-section__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.address-section__empty {
  font-size: 16px;
  line-height: 24px;
  color: #8e8e8e;
  margin: 0;
  padding: 8px 0;
}

.address-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.address-view__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.address-view__field {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 12px 0;
}
.address-view__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
}
.address-view__input {
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  word-break: break-word;
}
.address-view__row--street {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.address-view__field--street {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.address-view__group {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.address-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.address-form__topbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 48px;
}
.address-form__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #749306;
  text-transform: uppercase;
}
.address-form__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.address-form .woocommerce-error,
.address-form .woocommerce-message,
.address-form .woocommerce-info {
  margin: 12px 0 4px;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  list-style: none;
}
.address-form .woocommerce-error li,
.address-form .woocommerce-message li,
.address-form .woocommerce-info li {
  margin: 0;
  padding: 0;
}
.address-form .woocommerce-error {
  background-color: #fff5f5;
  border: 1px solid #fc8181;
  color: #c0392b;
}
.address-form .woocommerce-message {
  background-color: #f0fff4;
  border: 1px solid #68d391;
  color: #276749;
}
.address-form .woocommerce-info {
  background-color: #ebf8ff;
  border: 1px solid #63b3ed;
  color: #2b6cb0;
}
.address-form__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.address-form__field-wrapper .form-row-wide {
  grid-column: 1/-1;
}
.address-form__field-wrapper .form-row-first {
  grid-column: 1;
}
.address-form__field-wrapper .form-row-last {
  grid-column: 2;
}
.address-form__field-wrapper .form-row-clearfix {
  display: none;
}
.address-form__field-wrapper .address-form__street-row {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.address-form__field-wrapper .address-form__street-row > .form-row {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.address-form__field-wrapper .address-form__group {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.address-form__field-wrapper .address-form__group > .form-row {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.address-form__field-wrapper .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  margin: 0;
  float: none;
  clear: both;
}
.address-form__field-wrapper .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.address-form__field-wrapper .form-row label {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
  margin: 0;
  cursor: default;
}
.address-form__field-wrapper .form-row label abbr.required,
.address-form__field-wrapper .form-row label .required {
  color: #c0392b;
  font-size: inherit;
  text-decoration: none;
  border: none;
  margin-left: 2px;
  cursor: default;
}
.address-form__field-wrapper .form-row label .optional {
  font-weight: 400;
  font-size: 13px;
  color: #8e8e8e;
  margin-left: 4px;
}
.address-form__field-wrapper .form-row input[type=text],
.address-form__field-wrapper .form-row input[type=email],
.address-form__field-wrapper .form-row input[type=tel],
.address-form__field-wrapper .form-row input[type=number],
.address-form__field-wrapper .form-row input[type=password] {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 24px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.address-form__field-wrapper .form-row input[type=text]::-webkit-input-placeholder, .address-form__field-wrapper .form-row input[type=email]::-webkit-input-placeholder, .address-form__field-wrapper .form-row input[type=tel]::-webkit-input-placeholder, .address-form__field-wrapper .form-row input[type=number]::-webkit-input-placeholder, .address-form__field-wrapper .form-row input[type=password]::-webkit-input-placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row input[type=text]::-moz-placeholder, .address-form__field-wrapper .form-row input[type=email]::-moz-placeholder, .address-form__field-wrapper .form-row input[type=tel]::-moz-placeholder, .address-form__field-wrapper .form-row input[type=number]::-moz-placeholder, .address-form__field-wrapper .form-row input[type=password]::-moz-placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row input[type=text]:-ms-input-placeholder, .address-form__field-wrapper .form-row input[type=email]:-ms-input-placeholder, .address-form__field-wrapper .form-row input[type=tel]:-ms-input-placeholder, .address-form__field-wrapper .form-row input[type=number]:-ms-input-placeholder, .address-form__field-wrapper .form-row input[type=password]:-ms-input-placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row input[type=text]::-ms-input-placeholder, .address-form__field-wrapper .form-row input[type=email]::-ms-input-placeholder, .address-form__field-wrapper .form-row input[type=tel]::-ms-input-placeholder, .address-form__field-wrapper .form-row input[type=number]::-ms-input-placeholder, .address-form__field-wrapper .form-row input[type=password]::-ms-input-placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row input[type=text]::placeholder,
.address-form__field-wrapper .form-row input[type=email]::placeholder,
.address-form__field-wrapper .form-row input[type=tel]::placeholder,
.address-form__field-wrapper .form-row input[type=number]::placeholder,
.address-form__field-wrapper .form-row input[type=password]::placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row input[type=text]:focus,
.address-form__field-wrapper .form-row input[type=email]:focus,
.address-form__field-wrapper .form-row input[type=tel]:focus,
.address-form__field-wrapper .form-row input[type=number]:focus,
.address-form__field-wrapper .form-row input[type=password]:focus {
  border-color: #201e1f;
}
.address-form__field-wrapper .form-row input[type=text]:disabled,
.address-form__field-wrapper .form-row input[type=email]:disabled,
.address-form__field-wrapper .form-row input[type=tel]:disabled,
.address-form__field-wrapper .form-row input[type=number]:disabled,
.address-form__field-wrapper .form-row input[type=password]:disabled {
  background-color: #f7f7f7;
  border-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}
.address-form__field-wrapper .form-row textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 24px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  background-color: transparent;
  outline: none;
  resize: vertical;
  min-height: 80px;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.address-form__field-wrapper .form-row textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row textarea::-moz-placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row textarea:-ms-input-placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row textarea::-ms-input-placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row textarea::placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row textarea:focus {
  border-color: #201e1f;
}
.address-form__field-wrapper .form-row textarea:disabled {
  background-color: #f7f7f7;
  border-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  resize: none;
}
.address-form__field-wrapper .form-row select {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 40px 12px 24px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.address-form__field-wrapper .form-row select:focus {
  border-color: #201e1f;
}
.address-form__field-wrapper .form-row select:disabled {
  background-color: #f7f7f7;
  border-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}
.address-form__field-wrapper .form-row .select2-container {
  width: 100% !important;
  display: block;
}
.address-form__field-wrapper .form-row .select2-container .select2-selection--single {
  height: 48px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.address-form__field-wrapper .form-row .select2-container .select2-selection--single .select2-selection__rendered {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 0 40px 0 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.address-form__field-wrapper .form-row .select2-container .select2-selection--single .select2-selection__placeholder {
  color: #b3b3b3;
}
.address-form__field-wrapper .form-row .select2-container .select2-selection--single .select2-selection__arrow {
  width: 40px;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
}
.address-form__field-wrapper .form-row .select2-container .select2-selection--single .select2-selection__arrow b {
  border: none;
  width: 12px;
  height: 12px;
  margin: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.address-form__field-wrapper .form-row .select2-container.select2-container--focus .select2-selection--single {
  border-color: #201e1f;
  outline: none;
}
.address-form__field-wrapper .form-row .select2-container.select2-container--open .select2-selection--single {
  border-color: #201e1f;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.address-form__field-wrapper .form-row .select2-container.select2-container--disabled .select2-selection--single {
  background-color: #f7f7f7;
  border-color: #e0e0e0;
  cursor: not-allowed;
}
.address-form__field-wrapper .form-row .select2-container.select2-container--disabled .select2-selection--single .select2-selection__rendered {
  color: #999;
}
.address-form__field-wrapper .form-row.woocommerce-validated input[type=text],
.address-form__field-wrapper .form-row.woocommerce-validated input[type=email],
.address-form__field-wrapper .form-row.woocommerce-validated input[type=tel],
.address-form__field-wrapper .form-row.woocommerce-validated input[type=number],
.address-form__field-wrapper .form-row.woocommerce-validated input[type=password],
.address-form__field-wrapper .form-row.woocommerce-validated textarea,
.address-form__field-wrapper .form-row.woocommerce-validated select {
  border-color: #b3b3b3;
}
.address-form__field-wrapper .form-row.woocommerce-validated .select2-container .select2-selection--single {
  border-color: #b3b3b3;
}
.address-form__field-wrapper .form-row.woocommerce-invalid input[type=text],
.address-form__field-wrapper .form-row.woocommerce-invalid input[type=email],
.address-form__field-wrapper .form-row.woocommerce-invalid input[type=tel],
.address-form__field-wrapper .form-row.woocommerce-invalid input[type=number],
.address-form__field-wrapper .form-row.woocommerce-invalid input[type=password],
.address-form__field-wrapper .form-row.woocommerce-invalid textarea,
.address-form__field-wrapper .form-row.woocommerce-invalid select {
  border-color: #c0392b;
}
.address-form__field-wrapper .form-row.woocommerce-invalid .select2-container .select2-selection--single {
  border-color: #c0392b;
}
.address-form__field-wrapper .form-row span.description.woocommerce-error {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  font-size: 13px;
  line-height: 18px;
  color: #c0392b;
  margin-top: 0;
  -webkit-transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
}
.address-form__field-wrapper .form-row.woocommerce-invalid span.description.woocommerce-error,
.address-form__field-wrapper .form-row span.description.woocommerce-error[aria-hidden=false] {
  max-height: 40px;
  opacity: 1;
  margin-top: 4px;
}
.address-form__footer {
  padding: 20px 0 0;
}
.address-form__cancel {
  display: none;
}
.address-form__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 32px;
  border-radius: 8px;
  background-color: #baeb02;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.address-form__submit:hover {
  background-color: #a8d502;
}
.address-form__submit:disabled, .address-form__submit.loading {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 767px) {
  .address-section__title {
    font-size: 18px;
    line-height: 28px;
    color: #1a1a1a;
  }
  .address-section__edit-link {
    font-size: 14px;
    line-height: 20px;
  }
  .address-view__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .address-view__field, .address-view__group {
    width: 100%;
  }
  .address-form__card {
    padding: 8px 16px 24px;
  }
  .address-form__field-wrapper {
    grid-template-columns: 1fr;
  }
  .address-form__field-wrapper .form-row-wide,
  .address-form__field-wrapper .form-row-first,
  .address-form__field-wrapper .form-row-last {
    grid-column: 1;
  }
  .address-form__street-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .address-form__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding-top: 12px;
  }
  .address-form__cancel {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    min-width: 0;
    height: 48px;
    padding: 12px 24px;
    border: 1px solid #333;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .address-form__cancel:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }
  .address-form__submit {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    min-width: 0;
    width: auto;
  }
}
.select2-container--default .select2-dropdown {
  border: 1px solid #201e1f;
  border-top: none;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  font-family: inherit;
}
.select2-container--default .select2-search--dropdown {
  padding: 8px 12px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 12px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a1a;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-input-placeholder {
  color: #b3b3b3;
}
.select2-container--default .select2-search--dropdown .select2-search__field::-moz-placeholder {
  color: #b3b3b3;
}
.select2-container--default .select2-search--dropdown .select2-search__field:-ms-input-placeholder {
  color: #b3b3b3;
}
.select2-container--default .select2-search--dropdown .select2-search__field::-ms-input-placeholder {
  color: #b3b3b3;
}
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
  color: #b3b3b3;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #201e1f;
}
.select2-container--default .select2-results__options {
  max-height: 240px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 22px;
  color: #1a1a1a;
  cursor: pointer;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.select2-container--default .select2-results__option--highlighted {
  background-color: #f5ffd6;
  color: #1a1a1a;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #e7fb9d;
  color: #4e6204;
  font-weight: 500;
}
.select2-container--default .select2-results__option--disabled {
  color: #999;
  cursor: default;
  background-color: transparent;
}

.profile-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.profile-form__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: none;
}
.profile-form__password-section {
  gap: 8px;
}
.profile-form__section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-height: 48px;
}
.profile-form__section-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #749306;
  text-transform: uppercase;
}
.profile-form__section-title--legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 48px;
  float: none;
}
.profile-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.profile-form__grid > .form-row:not(.profile-form__field) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 12px 0;
  float: none;
}
.profile-form__grid > .form-row:not(.profile-form__field).form-row-first {
  grid-column: 1;
}
.profile-form__grid > .form-row:not(.profile-form__field).form-row-last {
  grid-column: 2;
}
.profile-form__grid > .form-row:not(.profile-form__field).form-row-wide {
  grid-column: 1/-1;
}
.profile-form__grid > .form-row:not(.profile-form__field) label {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
  margin: 0;
}
.profile-form__grid > .form-row:not(.profile-form__field) label .required {
  color: #c0392b;
  border: none;
  text-decoration: none;
}
.profile-form__grid > .form-row:not(.profile-form__field) input,
.profile-form__grid > .form-row:not(.profile-form__field) select,
.profile-form__grid > .form-row:not(.profile-form__field) textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 24px;
  border: 1px solid #666;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.profile-form__grid > .form-row:not(.profile-form__field) input::-webkit-input-placeholder, .profile-form__grid > .form-row:not(.profile-form__field) select::-webkit-input-placeholder, .profile-form__grid > .form-row:not(.profile-form__field) textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__grid > .form-row:not(.profile-form__field) input::-moz-placeholder, .profile-form__grid > .form-row:not(.profile-form__field) select::-moz-placeholder, .profile-form__grid > .form-row:not(.profile-form__field) textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__grid > .form-row:not(.profile-form__field) input:-ms-input-placeholder, .profile-form__grid > .form-row:not(.profile-form__field) select:-ms-input-placeholder, .profile-form__grid > .form-row:not(.profile-form__field) textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__grid > .form-row:not(.profile-form__field) input::-ms-input-placeholder, .profile-form__grid > .form-row:not(.profile-form__field) select::-ms-input-placeholder, .profile-form__grid > .form-row:not(.profile-form__field) textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__grid > .form-row:not(.profile-form__field) input::placeholder,
.profile-form__grid > .form-row:not(.profile-form__field) select::placeholder,
.profile-form__grid > .form-row:not(.profile-form__field) textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__grid > .form-row:not(.profile-form__field) input:focus,
.profile-form__grid > .form-row:not(.profile-form__field) select:focus,
.profile-form__grid > .form-row:not(.profile-form__field) textarea:focus {
  border-color: #1a1a1a;
}
.profile-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 12px 0;
  float: none;
}
.profile-form__field.form-row-first {
  grid-column: 1;
}
.profile-form__field.form-row-last {
  grid-column: 2;
}
.profile-form__field.form-row-wide {
  grid-column: 1/-1;
}
.profile-form__field label {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
  margin: 0;
}
.profile-form__field label .required {
  color: #c0392b;
  border: none;
  text-decoration: none;
}
.profile-form__grid--narrow .profile-form__field {
  grid-column: 1;
}
.profile-form__hint {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666;
}
.profile-form__hint em {
  font-style: normal;
}
.profile-form__input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 24px;
  border: 1px solid #666;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.profile-form__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.profile-form__input:focus {
  border-color: #1a1a1a;
}
.profile-form__input--password {
  padding-right: 52px;
}
.profile-form__password-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.profile-form__password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.profile-form__password-toggle:hover {
  color: #1a1a1a;
}
.profile-form__password-toggle svg {
  display: block;
  width: 20px;
  height: 20px;
}
.profile-form__password-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.profile-form__password-icon[hidden] {
  display: none;
}
.profile-form__footer {
  margin: 0;
  padding: 12px 0 0;
}
.profile-form__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 160px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background-color: #baeb02;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.profile-form__submit:hover {
  background-color: #a8d502;
}

@media (max-width: 767px) {
  .profile-form {
    gap: 24px;
  }
  .profile-form__section-title {
    font-size: 18px;
    line-height: 28px;
    color: #1a1a1a;
  }
  .profile-form__grid, .profile-form__grid--narrow {
    grid-template-columns: 1fr;
  }
  .profile-form__field.form-row-first, .profile-form__field.form-row-last, .profile-form__field.form-row-wide {
    grid-column: 1;
  }
  .profile-form__hint {
    font-size: 12px;
    line-height: 18px;
  }
  .profile-form__submit {
    width: 100%;
  }
}
.product-gallery {
  position: relative;
}
.product-gallery__sale-flash {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: #b2e003;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 8px;
  text-transform: uppercase;
  pointer-events: none;
}
.product-gallery__main {
  overflow: hidden;
  margin-bottom: 10px;
}
.product-gallery__img-link {
  display: block;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.product-gallery__img {
  display: block;
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 767px) {
  .product-gallery__img {
    height: 280px;
  }
}
.product-gallery__single-link {
  display: block;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.product-gallery__single-img {
  display: block;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 767px) {
  .product-gallery__single-img {
    height: 280px;
  }
}
.product-gallery__placeholder-img {
  display: block;
  width: 100%;
  height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .product-gallery__placeholder-img {
    height: 280px;
  }
}
.product-gallery__thumbs {
  overflow: hidden;
}
.product-gallery__thumbs .swiper-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.product-gallery__thumb {
  width: 80px !important;
  height: 80px;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease, border-color 0.2s ease;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-gallery__thumb.swiper-slide-thumb-active {
  opacity: 1;
  border-color: #b2e003;
}
.product-gallery__thumb:hover {
  opacity: 0.85;
}
.product-gallery__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product-single__hero {
  background: #efefef;
  padding: 40px 0 80px;
}
.product-single__breadcrumbs {
  margin-bottom: 40px;
}
.product-single__breadcrumbs .yoast-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #8e8e8e;
}
.product-single__breadcrumbs .yoast-breadcrumb a {
  color: #8e8e8e;
  text-decoration: none;
  padding: 0 14px;
}
.product-single__breadcrumbs .yoast-breadcrumb a:first-child {
  padding-left: 0;
}
.product-single__breadcrumbs .yoast-breadcrumb a:hover {
  color: #1a1a1a;
}
.product-single__breadcrumbs .yoast-breadcrumb > span > span.sep {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8e8e8e;
  font-size: 12px;
  line-height: 1;
  padding: 0;
}
.product-single__breadcrumbs .yoast-breadcrumb span[aria-current=page],
.product-single__breadcrumbs .yoast-breadcrumb .breadcrumb_last {
  color: #201e1f;
  font-weight: 400;
  padding: 0 14px;
}
@media (max-width: 767px) {
  .product-single__breadcrumbs {
    margin-bottom: 20px;
  }
  .product-single__breadcrumbs .yoast-breadcrumb {
    font-size: 12px;
    line-height: 18px;
  }
}
.product-single__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-single__media {
  width: 49%;
  position: relative;
}
.product-single__media .woocommerce-product-gallery {
  margin: 0;
}
.product-single__media .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-single__media .woocommerce-product-gallery .flex-control-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
}
.product-single__media .woocommerce-product-gallery .flex-control-thumbs li img {
  display: block;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.product-single__media .woocommerce-product-gallery .flex-control-thumbs li img:hover, .product-single__media .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  border-color: #b2e003;
}
.product-single__media .onsale {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #b2e003;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 8px;
  z-index: 2;
  text-transform: uppercase;
}
.product-single__summary {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.product-single__title {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #1a1a1a;
  text-transform: uppercase;
}
.product-single__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-single__price .woocommerce-Price-amount {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #1a1a1a;
  text-transform: uppercase;
}
.product-single__price .woocommerce-Price-amount bdi {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.product-single__price .woocommerce-Price-currencySymbol {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.product-single__price ins {
  text-decoration: none;
}
.product-single__price del {
  text-decoration: none;
}
.product-single__price del .woocommerce-Price-amount {
  color: #8e8e8e;
  text-decoration: line-through;
  text-decoration-color: #8e8e8e;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .product-single__price .woocommerce-Price-amount {
    font-size: 24px;
    line-height: 28px;
  }
}
.product-single__form-wrap .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 12px;
}
.product-single__form-wrap .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.product-single__form-wrap .qty-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  background: #E6E6E6;
}
.product-single__form-wrap .qty-btn svg {
  display: block;
}
.product-single__form-wrap .qty {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
  height: 34px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #333;
  font-family: inherit;
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
}
.product-single__form-wrap .qty::-webkit-outer-spin-button, .product-single__form-wrap .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}
.product-single__form-wrap .single_add_to_cart_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  background-color: #b2e003;
  border: 1px solid #b2e003;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.product-single__form-wrap .single_add_to_cart_button:hover:not(.disabled) {
  background-color: #9fc900;
  border-color: #9fc900;
}
.product-single__form-wrap .single_add_to_cart_button.disabled, .product-single__form-wrap .single_add_to_cart_button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-single__form-wrap .single_add_to_cart_button.added {
  display: none;
}
.product-single__form-wrap .added_to_cart.wc-forward {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  background-color: #b2e003;
  border: 1px solid #b2e003;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.product-single__form-wrap .added_to_cart.wc-forward:hover {
  background-color: transparent;
}
.product-single__wishlist {
  margin-bottom: 36px;
}
.product-single__wishlist .yith-add-to-wishlist-button-block {
  width: 100%;
  margin: 0;
}
.product-single__wishlist .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
  border: 1px solid var(--primary-green-500, #B2E003);
  width: 100%;
  margin: 0;
  padding: 10px 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.product-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 24px;
  margin-bottom: 36px;
}
.product-single__meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.product-single__meta-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #8e8e8e;
}
.product-single__meta-value {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #1a1a1a;
}
.product-single__stock--in {
  color: #3a8a3a;
}
.product-single__stock--out {
  color: #c0392b;
}
.product-single__attrs {
  margin-top: 8px;
}
.product-single__attrs-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #1a1a1a;
  text-transform: uppercase;
}
.product-single__attrs-list {
  margin: 0;
  padding: 0;
}
.product-single__attrs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #ccc;
}
.product-single__attrs-key {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666;
  margin: 0;
}
.product-single__attrs-val {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0;
  text-align: right;
}
@media (max-width: 767px) {
  .product-single__hero {
    padding: 20px 0 40px;
  }
  .product-single__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .product-single__media {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: none;
    width: 100%;
  }
  .product-single__summary {
    width: 100%;
  }
  .product-single__title {
    font-size: 24px;
    line-height: 28px;
  }
  .product-single__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .product-single__meta-label, .product-single__meta-value {
    font-size: 12px;
    line-height: 18px;
  }
  .product-single__attrs-title {
    font-size: 16px;
    line-height: 24px;
  }
  .product-single__attrs-key, .product-single__attrs-val {
    font-size: 12px;
    line-height: 18px;
  }
}

.related-products {
  background: #efefef;
}
.related-products__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .related-products__header {
    margin-bottom: 24px;
  }
}
.related-products__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.related-products__nav--desktop {
  gap: 42px;
}
@media (max-width: 1024px) {
  .related-products__nav--desktop {
    display: none;
  }
}
.related-products__nav--mobile {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .related-products__nav--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.related-products__nav-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.related-products__nav-btn svg {
  display: block;
}
.related-products__nav-btn:hover {
  opacity: 0.7;
}
.related-products__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.related-products__slider {
  overflow: hidden;
}

.related-products__slider .swiper-slide {
  height: auto;
}

.auth-container {
  position: relative;
}
.auth-container__screen {
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.auth-container__screen--register {
  display: none;
}
.auth-container--show-register .auth-container__screen--login {
  display: none;
}
.auth-container--show-register .auth-container__screen--register {
  display: block;
}

.login-page {
  background: #efefef;
  padding: 40px 0 80px;
}
.login-page__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
  color: #1a1a1a;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .login-page__title {
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    margin-bottom: 16px;
  }
}
.login-page__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-page__note,
.login-page .auth-form__note {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
  padding: 8px 0;
}

.auth-form {
  width: 100%;
  max-width: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.auth-form .woocommerce-error,
.auth-form .woocommerce-message,
.auth-form .woocommerce-info {
  width: 100%;
}
.auth-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 12px 0;
}
.auth-form__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #333;
}
.auth-form__input-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.auth-form__input {
  width: 100%;
  height: 48px;
  padding: 12px 24px;
  border: 1px solid #666;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
  font-family: inherit;
  outline: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  padding-right: 48px;
}
.auth-form__input::-webkit-input-placeholder {
  color: #000;
  opacity: 0.3;
}
.auth-form__input::-moz-placeholder {
  color: #000;
  opacity: 0.3;
}
.auth-form__input:-ms-input-placeholder {
  color: #000;
  opacity: 0.3;
}
.auth-form__input::-ms-input-placeholder {
  color: #000;
  opacity: 0.3;
}
.auth-form__input::placeholder {
  color: #000;
  opacity: 0.3;
}
.auth-form__input:focus {
  border-color: #1a1a1a;
}
.auth-form__eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.auth-form__eye-btn:hover {
  color: #1a1a1a;
}
.auth-form__eye-icon {
  display: block;
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.auth-form__eye-icon[hidden] {
  display: none !important;
}
.auth-form__forgot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 4px;
}
.auth-form__forgot-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #5a7200;
  text-decoration: none;
  padding: 4px;
}
.auth-form__forgot-link:hover {
  text-decoration: underline;
}
.auth-form__remember {
  padding: 10px 0;
}
.auth-form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.auth-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.auth-form__checkbox-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.auth-form__checkbox-custom::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: 2px solid transparent;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg) translateY(-1px);
          transform: rotate(45deg) translateY(-1px);
  -webkit-transition: border-color 0.15s ease;
  transition: border-color 0.15s ease;
}
.auth-form__checkbox:checked + .auth-form__checkbox-custom {
  background: #b2e003;
  border-color: #b2e003;
}
.auth-form__checkbox:checked + .auth-form__checkbox-custom::after {
  border-color: #1a1a1a;
}
.auth-form__checkbox:focus-visible + .auth-form__checkbox-custom {
  outline: 2px solid #b2e003;
  outline-offset: 2px;
}
.auth-form__checkbox-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1a1a1a;
}
.auth-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 48px;
  padding: 12px 24px;
  background-color: #b2e003;
  border: none;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}
.auth-form__submit:hover {
  background-color: #9fc900;
}
.auth-form__register-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 48px;
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid #b2e003;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  margin-top: 10px;
  opacity: 0.8;
  text-align: center;
}
.auth-form__register-btn:hover {
  background-color: rgba(178, 224, 3, 0.1);
  opacity: 1;
}
@media (max-width: 767px) {
  .auth-form {
    max-width: none;
  }
  .auth-form__group {
    padding: 8px 0;
  }
  .auth-form__submit, .auth-form__register-btn {
    margin-top: 8px;
  }
}/*# sourceMappingURL=main.css.map */