@charset "UTF-8";

/**
 * ==========================================================================
 * *										1. Variables
 * ==========================================================================
 */

:root {
  --body-bg: #fef5f3;
  --color-primary: #646a5c;
  --color-accent: #679063;
  --color-secondary: #fef5f3;
  --color-light: #fff;
  --font-main: Noto Sans Hebrew, Noto Sans;
  --border-radius--sm: 22px;
  --border-radius--md: 32px;
  --border-radius--lg: 55px;
  --border-radius--full: 250px;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
form,
dl,
dt,
dd,
bdi,
ins,
del {
  margin: 0;
}

dl,
ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

fieldset,
button,
input,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

button {
  background: none;
}

/**
 * =========================================================================================
 * --																 layout
 * =========================================================================================
 */

html {
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-main);
  color: var(--color-primary);
  background-color: var(--body-bg);
  font-size: 16px;
  line-height: 1.2;
  font-stretch: normal;
}

body p {
  line-height: 120%;
}

body.lock {
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease 0s;
  position: relative;
}

.main {
  flex: 1 1 auto;
  overflow-x: hidden;
  position: relative;
}

.main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #D9B8B1 100%) 0% 0% no-repeat padding-box;
  opacity: 0.22;
  pointer-events: none;
}

.container {
  max-width: 1740px;
  padding: 0 50px;
  margin: 0 auto;
  width: 100%;
}

.container .container {
  padding: 0;
}

section {
  margin-bottom: 74px;
}

button.is-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

button.is-loading::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA1MCA1MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIyNSIgY3k9IjI1IiByPSIyMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMykiIHN0cm9rZS13aWR0aD0iNCI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjUiIGN5PSIyNSIgcj0iMjAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSI0IiBzdHJva2UtZGFzaGFycmF5PSIzMCAxMDAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiBkdXI9IjFzIiB2YWx1ZXM9IjAgMjUgMjU7MzYwIDI1IDI1Ij48L2FuaW1hdGVUcmFuc2Zvcm0+PC9jaXJjbGU+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 2px;
}

/**
 * =========================================================================================
 * --																 tags
 * =========================================================================================
 */

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

textarea,
input {
  background: var(--color-light);
  text-align: right;
  padding-inline: 16px;
  border-radius: var(--border-radius--full);
  width: 100%;
  font-size: 16px;
  color: var(--color-primary);
}

textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  opacity: 0.8;
}

textarea::-moz-placeholder, input::-moz-placeholder {
  opacity: 0.8;
}

textarea::placeholder,
input::placeholder {
  opacity: 0.8;
}

textarea:focus,
input:focus {
  outline: none;
}

input {
  height: 40px;
}

/**
 * =========================================================================================
 * --																 classes
 * =========================================================================================
 */

.sc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.sc-head--col {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.sc-title {
  font-size: 60px;
  line-height: 66px;
  color: var(--color-accent);
}

.sc-text {
  font-size: 18px;
  line-height: 32px;
}

.logo {
  display: block;
}

.logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.bgi {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-cover {
  overflow: hidden;
}

.img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.effect-zoom {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.effect-zoom:hover .effect-zoom__img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.effect-zoom__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all 1.3s ease 0s;
  will-change: transform;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.effect-zoom__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.effect-zoom--v2:hover .effect-zoom__img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.effect-zoom--v2 .effect-zoom__img {
  transition: all 0.8s ease 0s;
}

#breadcrumbs > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

#breadcrumbs > span .breadcrumb_last {
  font-weight: 800;
}

.woocommerce-pagination {
  margin-top: 24px;
}

.woocommerce-pagination ul.page-numbers {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 24px;
  color: #679063;
  border: none !important;
}

.woocommerce-pagination ul.page-numbers li {
  border: none !important;
  overflow: visible !important;
}

.woocommerce-pagination ul.page-numbers a.page-numbers,
.woocommerce-pagination ul.page-numbers span.page-numbers {
  transition: all 0.4s ease 0s;
  will-change: scale;
  background: none !important;
  opacity: 1 !important;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(100, 106, 92, 0.1215686275);
}

.woocommerce-pagination ul.page-numbers a.page-numbers:not(.current):hover,
.woocommerce-pagination ul.page-numbers span.page-numbers:not(.current):hover {
  border: 1px solid #fff;
  background-color: #fff !important;
}

.woocommerce-pagination ul.page-numbers a.page-numbers.current,
.woocommerce-pagination ul.page-numbers span.page-numbers.current {
  color: var(--color-accent);
  border: 1px solid #fff;
  background-color: #fff !important;
}

.woocommerce-pagination ul.page-numbers .page-numbers.prev,
.woocommerce-pagination ul.page-numbers .page-numbers.next {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  cursor: pointer;
  background: #fff url("../img/icons/angle-l.svg") center/24px no-repeat !important;
  position: relative;
  top: 2px;
  transition: all 0.4s ease 0s;
  will-change: scale;
  font-size: 0 !important;
  rotate: 0deg;
  border-radius: 50%;
}

.woocommerce-pagination ul.page-numbers .page-numbers.prev:hover,
.woocommerce-pagination ul.page-numbers .page-numbers.next:hover {
  scale: 1 !important;
  -webkit-transform: translateX(-10%) !important;
          transform: translateX(-10%) !important;
}

.woocommerce-pagination ul.page-numbers .page-numbers.prev {
  rotate: 1800deg;
}

/**
 * =========================================================================================
 * --																 swiper custom styles
 * =========================================================================================
 */

.swiper {
  padding-bottom: 12px;
}

.swiper-body {
  position: relative;
  justify-content: center;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin: 0;
  color: inherit;
  flex: 0 0 20px;
  width: 20px;
  height: 40px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
  width: 100%;
  height: 100%;
  background: url("../img/icons/angle-r.png") center/contain no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.swiper-pagination {
  position: static;
  align-self: center;
  width: auto !important;
  font-size: 0 !important;
}

.swiper-pagination-bullet {
  background-color: transparent;
  margin: 0 8px;
  opacity: 1;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 2px solid #d9b8b1;
}

.swiper-pagination-bullet-active {
  background-color: #d9b8b1;
}

.swiper-pagination--dark .swiper-pagination-bullet {
  border: 2px solid var(--color-primary);
}

.swiper-pagination--dark .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.swiper-fix {
  min-width: 0;
  width: 100%;
}

.swiper-controls {
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
  position: absolute;
  top: auto !important;
  bottom: calc(50% - 64px);
}

.swiper-controls .swiper-button-prev {
  right: -50px !important;
  left: auto;
}

.swiper-controls .swiper-button-next {
  left: -50px !important;
  right: auto;
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Close button style */
}

.video-popup.active {
  visibility: visible;
  opacity: 1;
}

.video-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.video-popup__content {
  position: relative;
  max-width: 80vw;
  /* Максимальна ширина відео */
  aspect-ratio: 4/7;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-popup__body {
  width: 100%;
  height: 100%;
}

.video-popup__close {
  position: absolute;
  top: -70px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
}

.bg-dark-layer {
  position: relative;
}

.bg-dark-layer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #2C2B2A;
  opacity: 0.5;
}

.bg-dark-layer > * {
  position: relative;
  z-index: 2;
}

/**
 * =========================================================================================
 * --																 auth
 * =========================================================================================
 */

.auth {
  border-radius: 22px;
  overflow: hidden;
  color: var(--color-primary);
}

.auth__header {
  box-shadow: 0px 9px 9px rgba(231, 235, 231, 0.5019607843);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-size: 52px;
  line-height: 1;
  height: 112px;
}

.auth__body {
  display: flex;
  padding-inline: 28px;
  position: relative;
}

.auth__body::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -140px;
  width: 100%;
  aspect-ratio: 890/270;
  background: url("../img/bg/footer-bg.png") center 100%/contain no-repeat;
  pointer-events: none;
}

.auth__col {
  flex: 0 0 50%;
  padding: 46px 32px;
  position: relative;
  z-index: 2;
}

.auth__col--full {
  width: 100%;
  margin: 0 auto;
  max-width: 490px;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.auth__col-title {
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.auth__msg {
  font-size: 14px;
  margin-top: -8px;
}

.auth__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth__form input {
  background-color: var(--color-secondary);
  height: 42px;
  font-size: 18px;
  border-radius: var(--border-radius--full);
}

.auth__form input::-webkit-input-placeholder {
  color: #D9B8B1;
}

.auth__form input::-moz-placeholder {
  color: #D9B8B1;
}

.auth__form input::placeholder {
  color: #D9B8B1;
}

.auth__form .is-label-checkbox {
  margin-top: 12px;
}

.auth__form input[type=submit],
.auth__form .btn {
  height: 56px;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 8px;
}

.auth__password-field {
  position: relative;
}

.auth__password-field .show-password-input {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.auth__forget-pass {
  text-align: center;
  display: flex;
  justify-content: center;
  text-decoration: underline;
  font-size: 21px;
  font-weight: 500;
  margin-top: 22px;
}

.auth__divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 24px;
  font-size: 18px;
  font-weight: 800;
  width: 100%;
  gap: 22px;
}

.auth__divider::before,
.auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  height: 1px;
  background-color: var(--color-primary);
}

.auth__google {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  display: flex;
  color: #398EFF;
  background-color: #fff;
  border-radius: var(--border-radius--full);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  gap: 12px;
  padding: 0 24px;
  font-weight: 500;
  font-size: 21px;
}

.auth__google::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("../img/icons/google.svg") center/contain no-repeat;
}

.auth__footer {
  background-color: var(--color-secondary);
  min-height: 176px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.auth__toggler {
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-accent);
}

.auth__toggler b {
  font-weight: 800;
}

.auth__toggler button {
  text-decoration: underline;
  color: var(--color-accent);
  font-size: 1em;
  font-weight: 400;
}

.auth__sms {
  gap: 18px;
  font-size: 18px;
}

.auth__sms .auth__col-title {
  margin-bottom: 0;
  font-size: 28px;
}

.auth__sms .btn {
  width: 100%;
  margin-top: 18px;
}

.auth__resend-sms,
.auth__timer {
  text-align: center;
  color: var(--color-accent);
}

.auth__resend-sms a,
.auth__timer a {
  text-decoration: underline;
}

.textme-phone-login-container h3 {
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 36px;
}

.textme-phone-login-container .textme-phone-login-instruction {
  font-size: 18px;
  margin-bottom: 12px;
}

.textme-phone-login-container label {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 2px;
}

.textme-phone-login-container input {
  margin-bottom: 10px;
}

.textme-phone-login-container .textme-login-format-examples {
  font-size: 14px;
  margin-bottom: 18px;
}

.textme-phone-login-container .textme-login-input-hint {
  font-size: 14px;
}

.textme-phone-login-container .textme-login-security-note {
  display: none;
}

.textme-phone-login-container .textme-login-btn {
  width: 100%;
  height: 54px;
  border-radius: var(--border-radius--full);
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--color-light);
  font-size: 24px;
  letter-spacing: 2.4px;
  cursor: pointer;
  margin-bottom: 0;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  margin-top: 0;
}

.textme-phone-login-container .textme-login-btn:hover {
  background-color: var(--color-primary);
}

#textme-phone-otp-form {
  margin-top: 32px;
}

#textme-phone-otp-form .textme-login-otp-info {
  font-size: 18px;
  margin-bottom: 12px;
}

#textme-phone-otp-form .textme-login-form-group {
  margin-bottom: 20px;
}

#textme-phone-otp-form .textme-login-form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#popup-auth .is-login {
  display: block;
}

#popup-auth .is-reg {
  display: none;
}

#popup-auth.show-register .is-login {
  display: none;
}

#popup-auth.show-register .is-reg {
  display: block;
}

.tabs__nav {
  display: flex;
}

.tabs__nav-item {
  white-space: nowrap;
  transition: all 0.3s ease 0s;
}

.tabs__block {
  display: none;
}

.tabs__block.open {
  display: block;
}

.quick-view-content {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}

.quick-view-content .product-card__quick-view {
  display: none !important;
}

.single-product-tabs {
  margin-top: 80px;
  padding: 40px 32px;
}

.tabs__nav {
  border-bottom: 1px solid #D9B8B1;
  margin-bottom: 25px;
  display: flex;
  gap: 120px;
}

.tabs__nav-item {
  cursor: pointer;
  padding-bottom: 9px;
  margin-bottom: -1px;
  color: #D9B8B1;
  font-size: 22px;
}

.tabs__nav-item.active {
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.tabs__mobile-toggler {
  display: none;
}

.tabs__body p {
  font-size: 18px;
}

.recommends-recipes {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.recommends-recipes::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.recommends-recipes::-webkit-scrollbar-track {
  background-color: var(--color-light);
  border-radius: 5px;
  border: none;
  box-shadow: none;
}

.recommends-recipes::-webkit-scrollbar-thumb {
  background-color: #D9B8B1;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}

.recommends-recipes .recipe-card {
  min-width: 200px;
  flex: 0 0 calc(33% - 6px);
}

.recommends-products {
  background-color: var(--color-secondary);
  padding: 32px 36px 20px;
}

.recommends-products--wrap {
  gap: 16px;
  display: flex;
  overflow-x: auto;
  max-width: 100%;
  padding: 16px 10px 16px;
  margin-inline: -10px;
}

.recommends-products--wrap::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.recommends-products--wrap::-webkit-scrollbar-track {
  background-color: var(--color-light);
  border-radius: 5px;
  border: none;
  box-shadow: none;
}

.recommends-products--wrap::-webkit-scrollbar-thumb {
  background-color: #D9B8B1;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}

.recommends-products--wrap .product-card {
  min-width: 200px;
  flex: 1;
}

.cart-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  width: 100vw;
  height: 100svh;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

.cart-sidebar.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.cart-sidebar__overlay {
  background-color: #000;
  opacity: 0;
  position: absolute;
  z-index: 1;
  inset: 0;
  transition: all 0.4s ease 0s;
}

.open .cart-sidebar__overlay {
  opacity: 0.5;
}

.cart-sidebar__content {
  background-color: orange;
  width: 630px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #E7EBE7;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: all 0.4s ease 0s;
}

.open .cart-sidebar__content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.cart-sidebar__close {
  position: absolute;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: url("../img/icons/close.svg") center/contain no-repeat;
  cursor: pointer;
  z-index: 3;
  top: 30px;
  left: 655px;
}

.cart-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background-color: #FEF5F3;
  gap: 24px;
  font-size: 22px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 2;
}

.cart-sidebar__title {
  font-size: 42px;
  line-height: 60px;
}

.cart-sidebar__clear {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: inherit;
  font-weight: 300;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.cart-sidebar__clear:hover {
  scale: 1.05;
}

.cart-sidebar__clear::before {
  content: "";
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  display: block;
  position: relative;
  top: 2px;
  background: url("../img/icons/trash.svg") center/contain no-repeat;
}

.cart-sidebar__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cart-sidebar__body::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.cart-sidebar__body::-webkit-scrollbar-track {
  background-color: var(--color-light);
  border-radius: 5px;
  border: none;
  box-shadow: none;
}

.cart-sidebar__body::-webkit-scrollbar-thumb {
  background-color: #D9B8B1;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}

.cart-sidebar__shipping-cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background-color: var(--color-light);
  box-shadow: 7px 7px 7px rgba(221, 216, 207, 0.3764705882);
  border-radius: 22px;
  margin-bottom: 34px;
  min-height: 48px;
  padding: 4px 18px;
  color: var(--color-accent);
  font-size: 26px;
}

.cart-sidebar__shipping-cost b {
  font-size: 20px;
  font-weight: 800;
}

.cart-sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-sidebar__footer {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background-color: var(--color-accent);
  color: var(--color-light);
  position: relative;
}

.cart-sidebar__footer::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  height: 250px;
  pointer-events: none;
  background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #E7EBE7 100%) 0% 0% no-repeat padding-box;
}

.cart-sidebar__total {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 400;
}

.cart-sidebar__total b {
  font-weight: 700;
  margin-right: 20px;
  margin-left: 4px;
  display: flex;
}

.cart-sidebar__total sup {
  font-size: 0.6em;
  margin-left: 2px;
  margin-top: 1px;
}

.cart-sidebar__btn-checkout {
  background-color: #fff;
  margin-right: 40px;
  flex: 1 1 auto;
  color: #679063;
  height: 45px;
  border-radius: var(--border-radius--full);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  font-weight: 500;
}

.cart-sidebar__btn-checkout:hover {
  background-color: var(--color-secondary);
}

.cart-item {
  background-color: var(--color-light);
  width: 100%;
  min-height: 146px;
  box-shadow: 7px 7px 7px rgba(221, 216, 207, 0.3764705882);
  border-radius: 22px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  gap: 24px;
  position: relative;
}

.cart-item__img {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  align-self: center;
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart-item__body {
  display: flex;
  flex-direction: column;
}

.cart-item__title {
  min-height: 2lh;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 6px;
}

.cart-item__unit-price {
  font-size: 18px;
  font-weight: 300;
}

.cart-item__price-wrap {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.cart-item__price {
  display: flex;
  font-weight: 800;
  font-size: 28px;
  color: var(--color-accent);
}

.cart-item__price sup {
  font-size: 0.6em;
  margin-left: 2px;
  margin-top: 1px;
  font-weight: 800;
}

.cart-item__price sub {
  font-size: 0.5em;
  margin-top: auto;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}

.cart-item__price ins {
  text-decoration: none;
}

.cart-item__price del {
  font-weight: 300;
  margin-left: 6px;
}

.cart-item__controls {
  display: flex;
  height: 36px;
  padding: 4px;
  border-radius: var(--border-radius--full);
  background-color: var(--color-accent);
}

.cart-item__variation-toggle {
  background-color: #7EA77A;
  border-radius: 100px;
  padding: 3px;
  display: flex;
  align-items: center;
}

.cart-item__variation-toggle button {
  background: #7EA77A;
  border-radius: 100px;
  min-width: 45px;
  padding-inline: 6px;
  color: var(--color-light);
  line-height: 28px;
  cursor: pointer;
}

.cart-item__variation-toggle button.active {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1607843137);
  background-color: var(--color-light);
  color: #646A5C;
}

.cart-item .quantity {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 100%;
  max-width: 200px;
  overflow: hidden;
  flex: 0 0 100px;
  margin-inline: 10px;
}

.cart-item .quantity input {
  cursor: pointer;
  text-align: center;
  -moz-appearance: textfield;
  width: 33%;
  height: 100%;
  flex: 1 1 auto;
  padding: 0;
  transition: all 0.2s ease 0s;
  font-size: 22px;
  border-radius: 28px;
  color: #fff;
  background-color: transparent;
}

.cart-item .quantity input::-webkit-inner-spin-button,
.cart-item .quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item .quantity input[type=number] {
  font-weight: 800;
  font-size: 28px;
}

.cart-item .quantity input[type=button] {
  font-weight: 700;
}

.cart-item .quantity input[type=button]:last-child {
  position: relative;
  top: 2px;
}

.cart-item__remove {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-color: #CED5CE;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.cart-item__remove:hover {
  background-color: var(--color-primary);
}

#wa {
  position: relative;
  z-index: 50;
}

.main .woocommerce .woocommerce-result-count {
  margin-bottom: 0;
  font-size: 20px;
}

.main .wpfMainWrapper {
  margin-top: 28px;
}

.main .wpfFilterWrapper {
  margin: 0 0 40px;
  padding: 0 !important;
  padding-left: 25px !important;
}

.main .wpfFilterVerScroll {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  margin-top: 16px;
}

.main .wpfFilterVerScroll::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.main .wpfFilterVerScroll::-webkit-scrollbar-track {
  background-color: var(--color-light);
  border-radius: 5px;
  border: none;
  box-shadow: none;
}

.main .wpfFilterVerScroll::-webkit-scrollbar-thumb {
  background-color: #D9B8B1;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}

.main .wpfFilterWrapper .wfpTitle {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .wpfFilterWrapper .wfpTitle::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("../img/icons/angle-up.svg") center/contain no-repeat;
  rotate: 180deg;
  margin-right: auto;
  display: block;
  transition: all 0.4s ease 0s;
}

.main .wpfFilterWrapper .wfpTitle:has(+ .fa-plus)::after {
  rotate: 0deg;
}

.main .wpfFilterWrapper .wpfLiLabel {
  display: flex;
  align-items: center;
  gap: 14px;
  vertical-align: inherit;
  padding-right: 0;
}

.main .wpfFilterWrapper .wpfCheckbox {
  line-height: 0 !important;
}

.main .wpfFilterWrapper .wpfCheckbox label {
  width: 18px !important;
  height: 18px !important;
}

.main .wpfFilterWrapper .wpfCheckbox label::before {
  background-color: transparent !important;
  border: 1px solid var(--color-accent) !important;
}

.main [data-radio="0"] .wpfCheckbox input[type=checkbox]:checked + label::before {
  background: url("../img/icons/check-green.svg") center/95% no-repeat !important;
}

.main [data-radio="1"] .wpfCheckbox input[type=checkbox]:checked + label::before {
  background: url("../img/icons/circle2.svg") center/50% no-repeat !important;
}

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion__item {
  position: relative;
  min-height: 70px;
}

.accordion__item.open .accordion__trigger::after {
  rotate: 0deg;
}

.accordion__item.open .accordion__panel {
  opacity: 1;
  transition: height 0.3s ease, opacity 0.4s ease 0.1s;
}

.accordion__trigger {
  cursor: pointer;
  background: none;
  padding-top: 28px;
  padding-bottom: 16px;
  padding-right: 60px;
  font-size: 32px;
  text-align: right;
  font-weight: 400;
  width: 100%;
  color: var(--color-accent);
}

.accordion__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  top: 26px;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  transition: all 0.4s ease 0s;
  border-radius: 50%;
  background: #fff url("../img/icons/plus-green.svg") center/24px no-repeat;
}

.accordion__trigger::after {
  rotate: 135deg;
}

.accordion__panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.4s ease 0s;
  padding-left: 90px;
  will-change: height, opacity;
}

.accordion__text,
.accordion__content {
  padding-block: 20px;
  color: var(--color-primary);
  font-size: 18px;
}

form span.wpcf7-not-valid-tip {
  right: 16px;
  font-size: 9pt;
  position: static;
  text-align: right;
  display: block;
  margin-top: 2px;
}

.page-id-57043 #article h2,
.page-id-40104 #article h2 {
  font-size: 32px;
  margin: 80px 0 20px;
}

.page-id-57043 #article h3,
.page-id-40104 #article h3 {
  font-size: 28px;
  margin: 48px 0 18px;
}

.page-id-57043 #article p,
.page-id-40104 #article p {
  font-size: 18px;
  margin: 1em 0;
}

.page-id-57043 #article a,
.page-id-40104 #article a {
  text-decoration: underline;
}

.page-id-57043 #article blockquote,
.page-id-40104 #article blockquote {
  margin: 80px 0;
  background: var(--color-secondary);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 24px;
  border-radius: 16px;
}

.page-id-57043 #article blockquote::before,
.page-id-40104 #article blockquote::before {
  content: "";
  width: 24px;
  flex: 0 0 24px;
  height: 24px;
  background: url("../img/icons/quotes.svg") 0 0/contain no-repeat;
  margin-bottom: 16px;
}

.page-id-57043 #article blockquote *,
.page-id-40104 #article blockquote * {
  margin: 0 !important;
}

.page-id-57043 #article blockquote .person,
.page-id-40104 #article blockquote .person {
  font-size: 14px;
  font-style: normal;
}

.page-id-57043 #article blockquote .person__name,
.page-id-40104 #article blockquote .person__name {
  font-size: 16px;
}

.page-id-57043 #article blockquote .person__details,
.page-id-40104 #article blockquote .person__details {
  font-size: 12px;
}

.page-id-57043 #article ul,
.page-id-57043 #article ol,
.page-id-40104 #article ul,
.page-id-40104 #article ol {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}

.page-id-57043 #article ul li,
.page-id-40104 #article ul li {
  padding-right: 16px;
  position: relative;
}

.page-id-57043 #article ul li::after,
.page-id-40104 #article ul li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  display: block;
}

.page-id-57043 #article ol,
.page-id-40104 #article ol {
  counter-reset: custom-list;
  list-style: none;
}

.page-id-57043 #article ol li,
.page-id-40104 #article ol li {
  padding-right: 25px;
  position: relative;
  counter-increment: custom-list;
}

.page-id-57043 #article ol li::after,
.page-id-40104 #article ol li::after {
  content: counter(custom-list);
  position: absolute;
  right: 0;
  top: 1px;
}

.page-id-57043 #article img,
.page-id-40104 #article img {
  margin: 48px 0;
  width: 100%;
  border-radius: 12px;
}

.page-id-57043 .breadcrumbs,
.page-id-40104 .breadcrumbs {
  padding-top: 32px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s ease 0s;
  border: 1px solid transparent;
  line-height: 1em;
  border-radius: var(--border-radius--full);
  min-width: 170px;
  height: 40px;
  padding: 0 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
}

.btn--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-light);
}

.btn--primary:hover,
.btn--primary:focus {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.btn--accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
}

.btn--accent:hover,
.btn--accent:focus {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.btn--white {
  background-color: var(--color-light);
  color: var(--color-accent);
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: var(--color-light);
}

.btn--outline-white {
  background-color: transparent;
  border: 1px solid var(--color-light);
  color: var(--color-light);
}

.btn--outline-white:hover,
.btn--outline-white:focus {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.btn--arrow {
  justify-content: center;
  gap: 8px;
  color: var(--color-accent);
  height: auto;
  font-weight: 500;
}

.btn--arrow::after {
  content: "";
  background: url("../img/icons/angle-left.svg") center/contain no-repeat;
  transition: all 0.3s ease 0s;
  position: relative;
  top: 1px;
  width: 12px;
  height: 20px;
}

.btn--arrow:hover::after,
.btn--arrow:focus::after {
  -webkit-animation: arrow-swipe 0.6s ease-in-out;
          animation: arrow-swipe 0.6s ease-in-out;
}

@-webkit-keyframes arrow-swipe {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  45% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }

  70% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes arrow-swipe {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  45% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }

  70% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.wpfFilterButtons {
  display: flex;
  gap: 8px;
}

.wpfFilterButtons .wpfButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s ease 0s;
  border: 1px solid transparent;
  line-height: 1em;
  border-radius: var(--border-radius--full) !important;
  height: 40px;
  padding: 0 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  margin: 0 !important;
  flex: 1;
}

.wpfFilterButtons .wpfButton.wpfFilterButton {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
}

.wpfFilterButtons .wpfButton.wpfFilterButton:hover,
.wpfFilterButtons .wpfButton.wpfFilterButton:focus {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.wpfFilterButtons .wpfButton.wpfClearButton {
  background-color: transparent;
  border: 1px solid var(--color-accent) !important;
  color: var(--color-accent);
}

.wpfFilterButtons .wpfButton.wpfClearButton:hover,
.wpfFilterButtons .wpfButton.wpfClearButton:focus {
  background-color: var(--color-light);
  color: var(--color-accent);
}

.product-card {
  background-color: #fff;
  box-shadow: 7px 7px 7px rgba(221, 216, 207, 0.3764705882);
  border-radius: var(--border-radius--sm);
  padding: 20px 20px 32px;
  display: block;
  position: relative;
}

.product-card.is-single {
  display: flex;
  gap: 48px;
  box-shadow: none;
  padding: 32px 32px 0;
}

.is-single .product-card__header {
  width: 340px;
  height: 340px;
  flex: 0 0 340px;
  max-width: 50%;
  align-items: flex-start;
}

.product-card__badges {
  position: absolute;
  top: 20px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.is-single .product-card__badges {
  right: 0;
  left: auto;
  top: 50px;
  align-items: flex-start;
}

.product-card__stock-status {
  background-color: var(--color-primary);
  color: var(--color-light);
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 14px 4px 9px;
  border-top-right-radius: var(--border-radius--full);
  border-bottom-right-radius: var(--border-radius--full);
  text-align: left;
  font-size: 16px;
  line-height: 18px;
  display: inline-flex;
  background-color: #BABABA;
}

.product-card__badge {
  background-color: var(--color-primary);
  color: var(--color-light);
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 14px 4px 9px;
  border-top-right-radius: var(--border-radius--full);
  border-bottom-right-radius: var(--border-radius--full);
  text-align: left;
  font-size: 16px;
  line-height: 18px;
  display: inline-flex;
}

.product-card__badge--local {
  background-color: #398EFF;
}

.product-card__badge--sale {
  background-color: #F83D61;
}

.is-single .product-card__badge {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: var(--border-radius--full);
  border-bottom-left-radius: var(--border-radius--full);
  font-size: 21px;
  line-height: 38px;
  padding-block: 0;
  padding-right: 12px;
  padding-left: 24px;
}

.product-card__favorite-wrap {
  display: flex;
  color: #D9B8B1;
  font-size: 18px;
  align-items: center;
  gap: 8px;
}

.product-card__favorite-wrap .product-card__favorite {
  position: static;
}

.product-card__quick-view {
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background-color: var(--color-accent);
  transition: all 0.2s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 120px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.product-card:hover .product-card__quick-view {
  opacity: 1;
  pointer-events: all;
}

.product-card__quick-view:hover {
  background-color: var(--color-primary);
}

.product-card__quick-view:hover::after {
  scale: 1.1;
}

.product-card__quick-view::after {
  content: "";
  width: 50%;
  height: 50%;
  background: url("../img/icons/eye.svg") center/contain no-repeat;
  display: block;
  transition: all 0.3s ease 0s;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.is-single .product-card__body {
  align-items: flex-start;
  text-align: right;
}

.product-card__image-wrapper {
  width: 148px;
  height: 148px;
  flex: 0 0 148px;
  margin-bottom: 16px;
}

.is-single .product-card__image-wrapper {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  margin-bottom: 0;
}

.product-card__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.product-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 26px;
  line-height: 1.1;
  color: var(--color-primary);
}

.is-single .product-card__title {
  font-size: 52px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.product-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.is-single .product-card__price-row {
  justify-content: flex-start;
  text-align: right;
}

.product-card .price {
  margin-top: auto;
  font-weight: 800;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 6px;
}

.product-card .price * {
  text-decoration: none;
  font-size: 20px;
}

.product-card .price ins bdi {
  font-size: 20px;
  font-weight: 800;
  color: #679063;
}

.product-card .price del {
  color: #D9B8B1;
}

.product-card .price del bdi {
  font-size: 20px;
  font-weight: 300;
  text-decoration: line-through;
  color: #D9B8B1;
}

.is-single .product-card .price del bdi {
  font-size: 36px !important;
}

.product-card .price bdi {
  direction: rtl;
  display: block;
  color: #679063;
}

.product-card .price .woocommerce-Price-currencySymbol {
  font-size: 1em;
  margin-left: -0.1em;
}

.product-card__unit {
  font-weight: 300;
}

.is-single .product-card__unit {
  font-size: 32px;
  margin-inline: 8px;
}

.product-card__unit em {
  font-style: normal;
  margin-inline: 4px;
}

.product-card__weight {
  font-weight: 300;
  font-size: 18px;
}

.is-single .product-card__weight {
  font-size: 22px;
  margin-bottom: 22px;
}

.product-card__unit-price {
  font-weight: 300;
  font-size: 14px;
}

.is-single .product-card__unit-price {
  font-size: 18px;
  margin-bottom: 32px;
}

.product-card__variation-toggle {
  border-radius: 100px;
  padding: 3px;
  background-color: #7EA77A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card__variation-toggle:empty {
  display: none;
}

.product-card__variation-toggle button {
  background: #7EA77A;
  border-radius: 100px;
  line-height: 28px;
  line-height: 28px;
  min-width: 45px;
  padding-inline: 6px;
  color: var(--color-light);
  line-height: 20px;
}

.popup .product-card__variation-toggle button {
  line-height: 28px;
}

.product-card__variation-toggle button.active {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1607843137);
  background-color: var(--color-light);
  color: #646A5C;
}

.product-card form.cart {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 12px 24px;
  margin-bottom: 28px;
}

.product-card form.cart::before,
.product-card form.cart::after {
  display: none;
}

.product-card .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease 0s;
  border: 1px solid;
  border-radius: 0;
  line-height: 1em;
  height: 56px;
  flex: 0 0 200px;
  padding: 0 16px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 26px;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
  border-radius: var(--border-radius--full);
  max-width: 200px;
}

.product-card .single_add_to_cart_button:hover,
.product-card .single_add_to_cart_button:focus {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.product-card .quantity {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 56px;
  border: 1px solid #000;
  border-color: var(--color-accent);
  color: var(--color-light);
  border-radius: var(--border-radius--full);
  max-width: 200px;
  overflow: hidden;
}

.product-card .quantity input {
  cursor: pointer;
  text-align: center;
  -moz-appearance: textfield;
  width: 33%;
  height: 100%;
  flex: 1 1 auto;
  padding: 0;
  transition: all 0.2s ease 0s;
  font-size: 22px;
  border-radius: 28px;
}

.product-card .quantity input::-webkit-inner-spin-button,
.product-card .quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-card .quantity input[type=button]:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

.product-card .added_to_cart {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 200px;
  background-color: #e7ebe7;
  border-radius: var(--border-radius--sm);
  margin-top: 12px;
  display: none;
}

.heart-mask {
  width: 32px;
  aspect-ratio: 32/28;
  background-color: #e7ebe7;
  overflow: hidden;
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.666 27.696'%3E%3Cpath d='M30.773,5.447a8.316,8.316,0,0,0-11.786,0l-1.606,1.61-1.606-1.61A8.346,8.346,0,0,0,3.99,17.265L5.6,18.876,17.381,30.694,29.167,18.876l1.606-1.61a8.372,8.372,0,0,0,0-11.819Z' transform='translate(-1.549 -2.998)' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.666 27.696'%3E%3Cpath d='M30.773,5.447a8.316,8.316,0,0,0-11.786,0l-1.606,1.61-1.606-1.61A8.346,8.346,0,0,0,3.99,17.265L5.6,18.876,17.381,30.694,29.167,18.876l1.606-1.61a8.372,8.372,0,0,0,0-11.819Z' transform='translate(-1.549 -2.998)' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.heart-mask:hover {
  -webkit-transform: scale(1.1) translate3d(0, 0, 0);
          transform: scale(1.1) translate3d(0, 0, 0);
}

.heart-mask.active .heart-mask__filling {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.heart-mask__filling {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff4b4b;
  -webkit-transform: translate3d(0, 101%, 0);
          transform: translate3d(0, 101%, 0);
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.is-single .price {
  gap: 15px;
}

.is-single bdi {
  font-size: 36px !important;
}

.is-single .quantity {
  flex: 1 1 auto;
}

/**
 * =========================================================================================
 * --																 Single fix
 * =========================================================================================
 */

body.single-product main {
  background-color: #fff;
  padding-top: 165px;
}

body.single-product .breadcrumbs__wrap {
  margin-bottom: 28px;
}

body.single-product .single-product-gallery__thumbs {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 52px;
  height: 100%;
}

body.single-product .single-product-gallery__thumbs .swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 6px;
  border: 2px solid transparent;
  opacity: 0.5;
}

body.single-product .single-product-gallery__thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

body.single-product .single-product-gallery__thumbs .swiper-slide img {
  border-radius: 8px;
}

body.single-product .single-product-gallery {
  position: static;
}

body.single-product .recommends-recipes {
  gap: 12px;
}

body.single-product .recommends-recipes .recipe-card {
  min-width: auto;
  flex: 0 0 calc(20% - 10px);
}

section.single-product {
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

section.single-product .product-card {
  padding: 0;
  position: relative;
  padding-top: 90px;
  gap: 100px;
  border-radius: 0;
}

section.single-product .product-card__header {
  position: relative;
  height: auto;
  width: auto;
  flex: 0 0 500px;
  padding-inline: 50px;
}

section.single-product .product-card__header:not(:has(.single-product-gallery__thumbs)) {
  padding-bottom: 0;
}

section.single-product .single-product-gallery {
  width: 400px;
  height: 400px;
  flex: 0 0 400px;
}

section.single-product .product-card__body {
  flex: 1 1 auto;
}

section.single-product .product-card__title {
  font-size: 80px;
  margin-bottom: 5px;
}

section.single-product .product-card__weight {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 28px;
  color: #646A5C;
}

section.single-product .product-card__price-row {
  margin-bottom: 8px;
}

section.single-product .product-card .price {
  gap: 12px;
  color: var(--color-accent);
}

section.single-product .product-card .price .woocommerce-Price-currencySymbol {
  font-size: 1em;
  margin-left: 0;
  margin-right: -0.15em;
}

section.single-product .product-card .price * {
  font-size: 28px;
  font: 2800px;
  color: var(--color-accent);
  font-weight: 900;
}

section.single-product .product-card .price del * {
  color: #E0B6B0;
  text-decoration: line-through;
  font-size: 24px;
  font-weight: 300;
}

section.single-product .product-card__unit {
  font-size: 24px;
  margin-inline: 8px;
  font-weight: 400;
}

section.single-product .product-card__unit-price {
  font-size: 14px;
  margin-bottom: 0px;
}

section.single-product form.cart {
  margin-top: 36px;
}

section.single-product .product-card__favorite-wrap {
  font-size: 16px;
  gap: 12px;
}

section.single-product .product-card__variation-toggle button {
  padding-inline: 22px;
  line-height: 36px;
  font-size: 16px;
}

section.single-product .single-product-tabs {
  margin-top: 40px;
}

section.single-product .product-card__badges {
  right: 0;
  left: auto;
  top: 0px;
  align-items: flex-start;
  z-index: 2;
  flex-direction: row;
  gap: 12px;
}

section.single-product .product-card__stock-status,
section.single-product .product-card__badge {
  border-radius: var(--border-radius--full);
  font-size: 16px;
  line-height: 1em;
  padding: 0 24px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.single-product .product-card__stock-status {
  margin-right: -50px;
  position: absolute;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  z-index: 2;
}

section.single-product .tabs__nav-item {
  padding-bottom: 14px;
  font-size: 24px;
  font-weight: 500;
}

section.single-product + .products-carousel {
  background-color: #FFF5F3;
  margin-bottom: 0;
  padding-block: 100px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  position: relative;
}

.is-out-of-stock {
  padding-top: 50px !important;
}

.is-out-of-stock .product-card__header {
  padding-bottom: 0 !important;
}

.is-out-of-stock .single-product-gallery {
  pointer-events: none;
  opacity: 0.5;
}

.is-out-of-stock .is-sold-out {
  pointer-events: none;
  background-color: #EFEFEF !important;
  border: 1px solid #EFEFEF !important;
}

.popup .recommends-recipes {
  padding-bottom: 0;
  overflow-y: hidden;
}

.main {
  padding-top: 126px;
}

.header {
  background-color: #fff;
  box-shadow: 7px 7px 7px rgba(103, 144, 99, 0.1215686275);
  position: fixed;
  z-index: 100;
  width: 100%;
  right: 0;
  top: 0;
}

.header__container {
  height: 126px;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 18px;
  display: flex;
  gap: 50px;
}

.header__logo.logo {
  height: 100%;
  width: auto;
  flex: 0 0 100px;
}

.header__logo.logo img {
  height: 100%;
  width: auto;
}

.header__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.header__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__search {
  flex: 0 1 320px;
  min-width: 120px;
}

.header__search form {
  display: flex;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.header__search form::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: url("../img/icons/search-white.svg") center/24px no-repeat;
  pointer-events: none;
  z-index: 2;
}

.header__search input {
  height: 40px;
  border-radius: 0;
  padding-inline: 26px;
  font-size: 18px;
  background-color: #FEF5F3;
}

.header__search input[type=submit] {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  font-size: 0;
  background-color: var(--color-accent);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease 0s;
}

.header__search input[type=submit]:hover {
  background-color: var(--color-accent);
}

.header__pages {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.header__pages a {
  font-size: 17px;
}

.header__pages a:hover {
  color: var(--color-accent);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  white-space: nowrap;
}

.header__favorite {
  color: #a6756b;
  background-color: #FEF5F3;
}

.header__repeat {
  color: var(--color-accent);
  background-color: #E7EBE7;
}

.header__user {
  color: var(--color-light);
  background-color: var(--color-accent);
}

.header__user img {
  transition: all 0.3s ease 0s;
}

.header__user:hover {
  color: #679063;
}

.header__user:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(54%) sepia(16%) saturate(850%) hue-rotate(75deg) brightness(92%) contrast(88%);
          filter: brightness(0) saturate(100%) invert(54%) sepia(16%) saturate(850%) hue-rotate(75deg) brightness(92%) contrast(88%);
}

.header__bottom-row {
  padding-left: 10px;
}

.header__mobile {
  display: none;
}

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

.menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.menu__item {
  font-weight: 500;
  line-height: 24px;
  font-size: 22px;
}

.menu__link {
  white-space: nowrap;
}

.menu__link:hover {
  color: var(--color-accent);
}

.menu__item--has-children {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.menu__item--has-children::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 450px;
  height: 1px;
  opacity: 0;
}

.menu__item--has-children.open::before {
  height: 40px;
  transition: all 0s ease 0s;
}

.menu__item--has-children::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url("../img/icons/chevron-down.svg") center/contain no-repeat;
  transition: all 0.4s ease 0s;
  display: block;
}

.menu__item--has-children.open::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  z-index: 2;
}

.menu__panel {
  transition: all 0.3s ease 0s;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  box-shadow: 5px 5px 5px rgba(192, 199, 209, 0.4941176471);
  border-radius: 0px 0px 22px 22px;
  position: absolute;
  bottom: -22px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.menu__item--has-children.open .menu__panel {
  opacity: 1;
  pointer-events: auto;
}

.menu__panel-wrap {
  display: flex;
  justify-content: space-between;
  padding: 24px;
  gap: 32px;
}

.menu__sub-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  flex: 0 0 250px;
}

.menu__sub-item {
  flex: 0 0 100%;
}

.menu__sub-link {
  font-size: 21px;
  white-space: nowrap;
  line-height: 1.2;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  font-weight: 400;
}

.menu__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 0 0 260px;
  width: 260px;
  height: 400px;
  padding: 16px;
  text-align: center;
  border-radius: var(--border-radius--sm);
  overflow: hidden;
}

.menu__banner::after {
  opacity: 0.3;
}

.menu__banner:hover img {
  scale: 1.1;
}

.menu__banner:hover h3 {
  scale: 1.06;
}

.menu__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
}

.menu__banner h3 {
  font-size: 42px;
  color: var(--color-light);
  line-height: 1.1;
  transition: all 0.5s ease 0s;
  -webkit-transform-origin: center 100%;
          transform-origin: center 100%;
}

.ui-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--border-radius--full);
  height: 40px;
  padding-inline: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.ui-chip:hover {
  background-color: var(--color-light);
  border-color: var(--color-accent);
}

.ui-chip img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.cart-trigger {
  display: flex;
  align-items: center;
  gap: 17px;
  background-color: var(--color-primary);
  color: var(--color-light);
  height: 40px;
  position: relative;
  border-radius: var(--border-radius--full);
  padding-inline: 16px;
  min-width: 230px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  direction: rtl;
}

.cart-trigger:hover {
  background-color: var(--color-accent);
}

.cart-trigger__count {
  position: relative;
}

.cart-trigger__count img {
  width: 30px;
}

.cart-trigger__count span {
  position: absolute;
  background-color: #fff;
  color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -2px;
  right: -9px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  line-height: 0.9;
}

.cart-trigger__total {
  font-size: 18px;
  direction: rtl;
}

.cart-trigger bdi {
  direction: rtl;
}

.mobile-search {
  background-color: #fff;
  padding: 62px 16px 12px;
  box-shadow: 0px 15px 31.1px 0px rgba(0, 0, 0, 0.0588235294);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.3s ease 0s;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  border-radius: 0px 0px 22px 22px;
  display: none;
}

.mobile-search.open {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  -webkit-transform: translateY(calc(100% - 50px));
          transform: translateY(calc(100% - 50px));
}

.header__mobile {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background-color: var(--color-light);
  padding: 6px 20px;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0px 0px 22px 22px;
  display: none;
}

.header__mobile-row {
  flex: 0 0 calc(50% - 60px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__mobile-row.is-left {
  display: flex;
  justify-content: flex-end;
}

.header__mob-btn-search {
  cursor: pointer;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.header__mobile-logo {
  height: 76px;
  width: 120px;
  flex: 0 0 120px;
}

.header__mobile-logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0px;
  height: 100svh;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  transition: -webkit-transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
  width: 100vw;
  font-size: 18px;
  gap: 24px;
  padding-left: 44px;
}

.mobile-menu.open {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

.mobile-menu__overlay {
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 1;
  opacity: 0;
  transition: all 0s ease 0s;
}

.mobile-menu.open .mobile-menu__overlay {
  transition: all 0.4s ease 0.3s;
  opacity: 0.5;
}

.mobile-menu__wrapper {
  width: calc(100% - 44px);
  max-width: 400px;
  width: 100%;
  background-color: #FEF5F3;
  position: relative;
  z-index: 2;
  box-shadow: 8px 8px 8px rgba(112, 121, 126, 0.3647058824);
  border-radius: 22px 0px 0px 22px;
  overflow: hidden;
  height: 100%;
}

.mobile-menu__content {
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 20px;
  background-color: #FEF5F3;
  z-index: 3;
}

.mobile-menu__user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  color: #679063;
}

.mobile-menu__user-img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.mobile-menu__user-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-menu__footer {
  display: flex;
  padding: 10px;
  align-items: flex-end;
  gap: 16px;
  margin-top: auto;
}

.mobile-menu__pages {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.mobile-menu__pages li a {
  padding-block: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: #D9B8B1;
}

.mobile-menu__pages li a img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.mobile-menu__banner {
  flex: 0 0 170px;
  width: 170px;
  height: 100%;
  border-radius: 0px 0px 0px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #D9B8B1;
}

.mobile-menu__banner img {
  width: 100%;
  height: auto;
}

.ajax-results.woocommerce {
  position: absolute;
  background-color: #fff;
  z-index: 101;
  border-radius: 24px;
  box-shadow: 0px 4px 12.4px 0px rgba(100, 106, 92, 0.0784313725);
}

.ajax-results.woocommerce .all-results {
  padding: 16px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.ajax-results.woocommerce .all-results a {
  text-decoration: underline;
  font-size: 16px;
}

.ajax-results.woocommerce .scroll-wrapper {
  overflow-y: auto;
  max-height: 500px;
}

.ajax-results.woocommerce .scroll-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.ajax-results.woocommerce .scroll-wrapper::-webkit-scrollbar-track {
  background-color: var(--color-light);
  border-radius: 5px;
  border: none;
  box-shadow: none;
}

.ajax-results.woocommerce .scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: #D9B8B1;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}

.ajax-results.woocommerce .scroll-wrapper ul {
  padding: 10px;
}

.ajax-results.woocommerce .scroll-wrapper ul:empty {
  display: none;
}

.search-result-card {
  min-height: 104px;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
  border-radius: 0;
  padding: 0;
}

.search-result-card__top {
  width: 100%;
  display: grid;
  grid-template-areas: "img title" "img price";
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: start;
  gap: 5px 22px;
  padding: 12px;
}

.search-result-card__top .cart-item__img {
  grid-area: img;
  width: 80px;
  height: 80px;
}

.search-result-card__top .cart-item__body {
  grid-area: title;
  align-self: end;
}

.search-result-card__top .cart-item__body h3 {
  font-size: 18px;
  color: var(--color-accent);
  min-height: auto;
  margin-bottom: 0;
}

.search-result-card__top .product-card__price-row {
  grid-area: price;
  align-self: start;
}

.search-result-card__top .cart-item__price {
  font-size: 14px;
}

.footer {
  position: relative;
  z-index: 2;
}

.footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 1350/500;
  width: 66%;
  background: url("../img/bg/footer-bg.png") 0 0/contain no-repeat;
  pointer-events: none;
}

.footer__logo {
  width: 170px;
  height: 170px;
  flex: 0 0 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-top: -30px;
  background-color: var(--color-secondary);
}

.footer__logo img {
  max-width: 120px;
}

.footer__main-body {
  padding: 60px 0 170px;
  display: flex;
  gap: 160px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 56px;
  justify-content: flex-start;
  flex: 0 0 400px;
}

.footer__title {
  font-size: 28px;
  margin-bottom: 16px;
}

.footer__contacts-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  width: 100%;
}

.footer__contacts-links li {
  flex: 0 0 calc(50% - 24px);
}

.footer__contacts-links li a {
  font-size: 21px;
  font-weight: 500;
}

.footer__feedback {
  width: 100%;
  padding-inline: 20px;
}

.footer__feedback > p {
  margin-bottom: 16px;
  letter-spacing: 1.6px;
  color: #646A5C;
}

.footer__form {
  display: flex;
  position: relative;
  width: 100%;
}

.footer__form::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: url("../img/icons/send.svg") center/28px no-repeat;
  pointer-events: none;
  z-index: 2;
}

.footer__form span.wpcf7-form-control-wrap {
  flex: 0 0 calc(100% - 40px);
  display: block;
}

.footer__form input {
  height: 40px;
  padding-inline: 26px;
  font-size: 18px;
  border-radius: 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.footer__form input[type=submit] {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  font-size: 0;
  background-color: #D9B8B1;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease 0s;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.footer__form input[type=submit]:hover {
  background-color: var(--color-accent);
}

.footer__form .wpcf7-not-valid-tip {
  margin-top: 10px;
}

.footer__form .wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 0 !important;
  border: none !important;
  text-align: right !important;
}

.footer__form .wpcf7-spinner {
  background-color: var(--color-accent);
  left: 40px;
  top: 7px;
}

.footer__menu {
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 64px;
}

.footer__menu-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__menu-list li {
  font-size: 18px;
}

.footer__menu-list li:first-child {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
}

.footer__menu-list li:hover {
  color: var(--color-accent);
}

.footer__bottom {
  background-color: #D9B8B1;
  color: var(--color-light);
  font-weight: 300;
  padding: 23px 0;
}

.footer__bottom-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__methods {
  max-width: 280px;
  height: 34px;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials li {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  transition: all 0.3s ease 0s;
}

.socials li:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: var(--color-accent);
}

.socials a {
  transition: all 0.4s ease 0s;
  display: block;
  will-change: transform;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials a img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.tapbar {
  position: fixed;
  z-index: 99;
  bottom: 0;
  right: 0;
  width: 100%;
  display: none;
}

.tapbar__list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-block: 15px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px -6px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #C0C7D1;
  border-radius: 22px 22px 0px 0px;
}

.tapbar__list li img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.tapbar__list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
}

.popup {
  position: fixed;
  z-index: 200;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
}

.popup.open {
  visibility: visible;
}

.popup.open .popup__overlay {
  opacity: 0.5;
}

.popup.open .popup__content {
  opacity: 1;
}

.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease 0s;
}

.popup__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease 0s;
  background-color: #000;
}

.popup__content {
  position: relative;
  transition: all 0.4s ease 0s;
  opacity: 0;
  background-color: #fff;
  max-width: 890px;
  margin: 48px;
  width: 100%;
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 8px 8px 8px rgba(112, 121, 126, 0.3647058824);
}

.popup__btn-close {
  position: absolute;
  right: -36px;
  background: none;
  width: 32px;
  aspect-ratio: 1;
  z-index: 201;
  cursor: pointer;
}

/**
 * =========================================================================================
 * --																 Checkbox 
 * =========================================================================================
 */

.update_totals_on_change > td label,
.contacts-form label,
.is-label-checkbox,
.wpfLiLabel,
.form-row.place-order > .form-row,
.woocommerce-form__label-for-checkbox {
  display: flex !important;
  position: relative;
  align-items: center;
  cursor: pointer;
}

.update_totals_on_change > td label > input,
.contacts-form label > input,
.is-label-checkbox > input,
.wpfCheckbox > input,
.form-row.place-order > .form-row > input,
.woocommerce-form__label-for-checkbox > input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.update_totals_on_change > td label > span,
.contacts-form label > span,
.is-label-checkbox > span,
.wpfLiLabel,
.form-row.place-order > .form-row > label,
.woocommerce-form__label-for-checkbox > span {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  padding-right: 34px;
}

.update_totals_on_change > td label > span::before,
.contacts-form label > span::before,
.is-label-checkbox > span::before,
.wpfCheckbox > label::before,
.form-row.place-order > .form-row > label::before,
.woocommerce-form__label-for-checkbox > span::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  position: absolute;
  top: 1px;
  right: 0;
}

.update_totals_on_change > td label > span::after,
.contacts-form label > span::after,
.is-label-checkbox > span::after,
.wpfCheckbox > label::after,
.form-row.place-order > .form-row > label::after,
.woocommerce-form__label-for-checkbox > span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  top: 1px;
  right: 0;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.7087 8.33334L10.5472 15.625L7.29199 12.3106' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 82%;
  scale: 0;
  z-index: 2;
}

.update_totals_on_change > td label > input:checked + span::after,
.contacts-form label > input:checked + span::after,
.is-label-checkbox > input:checked + span::after,
.wpfLiLabel:has(.selected) .wpfCheckbox > label::after,
.form-row.place-order > .form-row > input:checked + label::after,
.woocommerce-form__label-for-checkbox > input:checked + span::after {
  scale: 1;
}

.update_totals_on_change > td label > input:checked + span::before,
.contacts-form label > input:checked + span::before,
.is-label-checkbox > input:checked + span::before,
.form-row.place-order > .form-row > input:checked + label::before,
.woocommerce-form__label-for-checkbox > input:checked + span::before {
  background-color: var(--color-accent);
}

#shipping_method li input[type=radio],
.shipping__list_item input[type=radio],
.wc_payment_method input[type=radio],
.radio_choose_delivery_pickup input[type=radio],
.delivery-option input[type=radio],
.woocommerce-input-wrapper input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  z-index: -10;
}

#shipping_method li input[type=radio]:checked + label::after,
.shipping__list_item input[type=radio]:checked + label::after,
.wc_payment_method input[type=radio]:checked + label::after,
.radio_choose_delivery_pickup input[type=radio]:checked + label::after,
.delivery-option input[type=radio]:checked + label::after,
.woocommerce-input-wrapper input[type=radio]:checked + label::after {
  scale: 1;
}

#shipping_method li label,
.shipping__list_item label,
.wc_payment_method label,
.radio_choose_delivery_pickup label,
.delivery-option label,
.woocommerce-input-wrapper label {
  display: flex !important;
  position: relative;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

#shipping_method li label:last-child,
.shipping__list_item label:last-child,
.wc_payment_method label:last-child,
.radio_choose_delivery_pickup label:last-child,
.delivery-option label:last-child,
.woocommerce-input-wrapper label:last-child {
  margin-bottom: 0;
}

#shipping_method li label::before,
.shipping__list_item label::before,
.wc_payment_method label::before,
.radio_choose_delivery_pickup label::before,
.delivery-option label::before,
.woocommerce-input-wrapper label::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  transition: all 0.3s ease;
  background: #fff;
}

#shipping_method li label::after,
.shipping__list_item label::after,
.wc_payment_method label::after,
.radio_choose_delivery_pickup label::after,
.delivery-option label::after,
.woocommerce-input-wrapper label::after {
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  z-index: 2;
  top: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 6px;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background-color: var(--color-accent);
  border-radius: 50%;
  scale: 0;
}

/**
 * =========================================================================================
 * --																 My account
 * =========================================================================================
 */

.ant-table-container table,
.woocommerce-giftcards .woocommerce-MyAccount-content table {
  width: 100%;
  border-spacing: 1px 0px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1000px;
  background-color: #FEF5F3;
  padding: 4px;
}

.ant-table-container table tr th,
.woocommerce-giftcards .woocommerce-MyAccount-content table tr th {
  background-color: #E7EBE7;
}

.ant-table-container table tr th:first-child,
.woocommerce-giftcards .woocommerce-MyAccount-content table tr th:first-child {
  border-top-right-radius: 12px;
}

.ant-table-container table tr th:last-child,
.woocommerce-giftcards .woocommerce-MyAccount-content table tr th:last-child {
  border-top-left-radius: 12px;
}

.ant-table-container table tr th,
.woocommerce-giftcards .woocommerce-MyAccount-content table tr th,
.ant-table-container table tr td,
.woocommerce-giftcards .woocommerce-MyAccount-content table tr td {
  padding: 8px;
  font-weight: 400;
  text-align: center;
}

.ant-table-container table tr:last-child td,
.woocommerce-giftcards .woocommerce-MyAccount-content table tr:last-child td {
  border: 1px solid #E7EBE7;
}

.ant-table-container table tr:last-child td:first-child,
.woocommerce-giftcards .woocommerce-MyAccount-content table tr:last-child td:first-child {
  border-bottom-right-radius: 12px;
}

.ant-table-container table tr:last-child td:last-child,
.woocommerce-giftcards .woocommerce-MyAccount-content table tr:last-child td:last-child {
  border-bottom-left-radius: 12px;
}

body.logged-in.woocommerce-account .breadcrumbs {
  margin-top: 32px;
  margin-bottom: 32px;
}

body.logged-in.woocommerce-account h1 {
  display: none;
}

body.logged-in.woocommerce-account .woocommerce {
  display: flex;
}

body.logged-in.woocommerce-account .account-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 36px;
  margin-bottom: 26px;
  color: var(--color-accent);
}

body.logged-in.woocommerce-account .account-user-info__img-wrap {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
  flex: 0 0 270px;
  padding-left: 42px;
  width: auto;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  gap: 10px;
  direction: rtl;
  display: flex;
  transition: all 0.3s ease 0s;
  position: relative;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 2;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a::after {
  display: none;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: #7EA77A;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  font-weight: 800;
  color: #7EA77A;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation:has(+ .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation) {
  flex: 1 1 auto;
  padding-left: 0;
  max-width: 500px;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation {
  display: block;
  flex: 1 1 auto;
  padding-left: 0;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation ul {
  display: flex;
  gap: 14px;
  flex-direction: row;
  flex-wrap: wrap;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation ul li {
  flex: 0 0 146px;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation ul li a {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  justify-content: flex-start;
  align-items: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 7px 7px 7px rgba(221, 216, 207, 0.3764705882);
  border-radius: 22px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  width: 146px;
  height: 146px;
  flex: 0 0 146px;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation ul li a::before,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation ul li a::after {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation ul li a::after {
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

body.logged-in.woocommerce-account .article:has(.woocommerce-MyAccount-content .woocommerce-MyAccount-navigation) {
  margin-bottom: 0 !important;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content:has(.woocommerce-MyAccount-navigation) {
  padding: 70px 0;
  box-shadow: none;
  background-color: transparent;
  margin-top: 0;
  padding-bottom: 300px;
  position: relative;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content:has(.woocommerce-MyAccount-navigation)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 380px;
  height: 245px;
  background: url("../img/bg/acc-bg.svg") 100% 0/cover no-repeat;
  z-index: -1;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
  margin: 0;
  background-color: #fff;
  box-shadow: 7px 7px 22px rgba(217, 184, 177, 0.2431372549);
  padding: 40px;
  border-radius: var(--border-radius--sm);
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > p {
  max-width: 512px;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content > p a {
  text-decoration: underline;
}

.woocommerce-MyAccount-navigation-link--edit-account a::before {
  background-image: url("../img/icons/acc-user.png");
}

.woocommerce-MyAccount-navigation-link--edit-account a::after {
  background-image: url("../img/icons/acc-user-bg.png");
}

.woocommerce-MyAccount-navigation-link--orders a::before {
  background-image: url("../img/icons/acc-repeat.png");
}

.woocommerce-MyAccount-navigation-link--orders a::after {
  background-image: url("../img/icons/acc-repeat-bg.png");
}

.woocommerce-MyAccount-navigation-link--giftcards a::before {
  background-image: url("../img/icons/acc-gift-card.png");
}

.woocommerce-MyAccount-navigation-link--giftcards a::after {
  background-image: url("../img/icons/acc-gift-card-bg.png");
}

.woocommerce-MyAccount-navigation-link--customer-logout a::before {
  background-image: url("../img/icons/acc-door-open.png");
}

.woocommerce-MyAccount-navigation-link--customer-logout a::after {
  background-image: url("../img/icons/acc-door-open-bg.png");
}

/**
 * =========================================================================================
 * --																 ORDERS
 * =========================================================================================
 */

.mm-orders__title {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.mm-orders__list {
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mm-orders__row {
  display: flex;
  border-radius: 20px;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background-color: #FEF5F3;
}

.mm-orders__cell {
  font-size: 18px;
  color: #D9B8B1;
  padding-inline: 10px;
  padding-block: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.mm-orders__cell--order {
  background-color: #D9B8B1;
  color: #fff;
  font-weight: 800;
  flex: 0 0 200px;
}

.mm-orders__cell--actions {
  display: flex;
  padding-inline: 0px;
}

.mm-orders__cell--actions a {
  color: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-inline: 18px;
  margin: 0 !important;
}

.mm-orders__cell--actions a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
}

.mm-orders__cell--actions a:first-child {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-right: 6px;
  background-color: #E7EBE7;
  color: var(--color-accent);
}

.mm-orders__cell--actions a:first-child::before {
  background: url("../img/icons/repeat.png") center/contain no-repeat;
}

.mm-orders__cell--actions a:last-child {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-left: 6px;
  background-color: var(--color-accent);
}

.mm-orders__cell--actions a:last-child::before {
  background: url("../img/icons/order.png") center/contain no-repeat;
}

section.woocommerce-order-details {
  margin-bottom: 12px;
}

section.woocommerce-order-details h2 {
  margin-bottom: 20px;
}

.woocommerce-table--order-details {
  border: 1px solid var(--color-accent);
  display: block;
  padding: 16px;
  border-radius: var(--border-radius--sm);
  text-align: right;
}

.woocommerce-table--order-details thead {
  display: flex;
  padding-bottom: 10px;
}

.woocommerce-table--order-details tbody tr {
  display: flex;
  flex-direction: column;
}

.woocommerce-table--order-details thead tr,
.woocommerce-table--order-details tbody tr,
.woocommerce-table--order-details .wc-item-meta li,
.woocommerce-table--order-details tfoot tr {
  display: flex;
}

.woocommerce-table--order-details thead tr th:first-child,
.woocommerce-table--order-details tbody tr td a,
.woocommerce-table--order-details .wc-item-meta li strong,
.woocommerce-table--order-details tfoot tr th {
  flex: 0 0 160px;
}

.woocommerce-table--order-details tbody tr td > a {
  font-weight: 700;
}

.woocommerce-table--order-details .wc-item-meta li {
  margin-bottom: 6px;
}

.woocommerce-table--order-details tfoot {
  display: block;
  padding-top: 10px;
  text-align: right;
}

.wc-social-login-profile h2 {
  margin-bottom: 10px;
}

.wc-social-login-profile p a {
  text-decoration: underline;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
.woocommerce-EditAccountForm {
  display: flex;
  flex-direction: column;
  max-width: 660px;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row,
.woocommerce-EditAccountForm .form-row {
  width: 100% !important;
  margin: 0 0 12px !important;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row label,
.woocommerce-EditAccountForm .form-row label {
  font-size: 14px;
  color: #A1A1A1;
  line-height: 1 !important;
  padding-bottom: 5px !important;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row input,
.woocommerce-EditAccountForm .form-row input {
  height: 48px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  padding: 0 !important;
  padding-right: 16px !important;
  border: none !important;
  outline: none !important;
  color: #D9B8B1 !important;
  background-color: #FEF5F3;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row.form-row-first,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row.form-row-last,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row.form-row-first,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row.form-row-last,
.woocommerce-EditAccountForm .form-row.form-row-first,
.woocommerce-EditAccountForm .form-row.form-row-last,
.woocommerce-EditAccountForm .form-row.form-row-first,
.woocommerce-EditAccountForm .form-row.form-row-last {
  width: 100% !important;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row:has(#account_display_name_description),
.woocommerce-EditAccountForm .form-row:has(#account_display_name_description) {
  margin-bottom: 32px !important;
  position: relative;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row #account_display_name_description,
.woocommerce-EditAccountForm .form-row #account_display_name_description {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  font-size: 12px;
  padding-top: 4px;
  color: #A1A1A1;
  line-height: 1 !important;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper fieldset legend,
.woocommerce-EditAccountForm fieldset legend {
  font-size: 18px !important;
  margin: 0 !important;
  padding: 14px 0 12px !important;
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper button,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper [type=submit],
.woocommerce-EditAccountForm button,
.woocommerce-EditAccountForm [type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s ease 0s;
  border: 1px solid transparent;
  line-height: 1em;
  border-radius: var(--border-radius--full) !important;
  height: 56px;
  padding: 0 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  margin: 10px 0 0 !important;
  flex: 1;
  width: 100%;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
}

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper button:hover,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper button:focus,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper [type=submit]:hover,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper [type=submit]:focus,
.woocommerce-EditAccountForm button:hover,
.woocommerce-EditAccountForm button:focus,
.woocommerce-EditAccountForm [type=submit]:hover,
.woocommerce-EditAccountForm [type=submit]:focus {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.woocommerce-giftcards .woocommerce-MyAccount-content {
  flex-wrap: wrap;
  flex-direction: row !important;
  gap: 0 25px !important;
  align-items: center !important;
}

.woocommerce-giftcards .woocommerce-MyAccount-content h2:nth-child(2) {
  font-size: 36px;
  background-color: #fff;
  width: auto;
  color: var(--color-accent);
  margin: 0;
  position: relative;
}

.woocommerce-giftcards .woocommerce-MyAccount-content h2:nth-child(2)::after {
  content: ":";
}

.woocommerce-giftcards .woocommerce-MyAccount-content h2,
.woocommerce-giftcards .woocommerce-MyAccount-content h4 {
  color: var(--color-primary);
  font-size: 24px;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 16px;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-balance-amount {
  margin: 0;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-Price-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-accent);
  flex: 1 1 auto;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-weight: 400;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-Price-amount bdi {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}

.woocommerce-giftcards .woocommerce-MyAccount-content form {
  flex: 0 0 100%;
  margin-top: 32px;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-form {
  display: flex;
  border: 1px solid #CED5CE;
  border-radius: 50px;
  height: 52px;
  background-color: #FEF5F3;
  overflow: hidden;
  max-width: 600px;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-form input,
.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-form button {
  font-size: 18px;
  padding-inline: 22px;
  height: 100%;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-form input {
  background-color: transparent;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-form button {
  background-color: #CED5CE;
  color: var(--color-accent);
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  cursor: pointer;
}

.woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-form button:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

.show-password-input {
  border-radius: 0;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 50%;
  justify-content: flex-end;
  top: -13px !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  width: auto !important;
  background-color: transparent !important;
  left: 20px !important;
  right: auto !important;
}

.show-password-input::before {
  content: "";
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.0625 12.3481C1.97916 12.1236 1.97916 11.8766 2.06251 11.6521C2.87421 9.68397 4.25202 8.00116 6.02128 6.81701C7.79053 5.63287 9.87155 5.00073 12.0005 5.00073C14.1295 5.00073 16.2105 5.63287 17.9797 6.81701C19.749 8.00116 21.1268 9.68397 21.9385 11.6521C22.0218 11.8766 22.0218 12.1236 21.9385 12.3481C21.1268 14.3163 19.749 15.9991 17.9797 17.1832C16.2105 18.3674 14.1295 18.9995 12.0005 18.9995C9.87155 18.9995 7.79053 18.3674 6.02128 17.1832C4.25202 15.9991 2.87421 14.3163 2.06251 12.3481Z" stroke="%23D9B8B1" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" stroke="%23D9B8B1" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/><path d="M20 5L4 19" stroke="%23D9B8B1" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

.show-password-input.display-password::before {
  content: "";
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.06251 12.3481C1.97916 12.1236 1.97916 11.8766 2.06251 11.6521C2.87421 9.68397 4.25202 8.00116 6.02128 6.81701C7.79053 5.63287 9.87155 5.00073 12.0005 5.00073C14.1295 5.00073 16.2105 5.63287 17.9797 6.81701C19.749 8.00116 21.1268 9.68397 21.9385 11.6521C22.0218 11.8766 22.0218 12.1236 21.9385 12.3481C21.1268 14.3163 19.749 15.9991 17.9797 17.1832C16.2105 18.3674 14.1295 18.9995 12.0005 18.9995C9.87155 18.9995 7.79053 18.3674 6.02128 17.1832C4.25202 15.9991 2.87421 14.3163 2.06251 12.3481Z" stroke="%23D9B8B1" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" stroke="%23D9B8B1" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

.password-input input {
  letter-spacing: 2px !important;
}

body.woocommerce-payment-methods .woocommerce-MyAccount-content > a {
  text-decoration: underline;
}

#acfw-store-credits-my-account a {
  text-decoration: underline;
  display: inline-block;
  margin-top: 4px;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  margin-top: 24px;
  margin-bottom: 32px;
}

/**
 * =========================================================================================
 * --																 HOME
 * =========================================================================================
 */

.hero {
  margin-bottom: 30px;
}

.hero__slide {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1920/410;
  -webkit-mask: url("../img/bg/main-hero-mask.png") center/cover no-repeat;
          mask: url("../img/bg/main-hero-mask.png") center/cover no-repeat;
  padding: 5.2083333333vw 0;
}

.hero__slide .container {
  position: relative;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero__text {
  font-size: 1.1458333333vw;
}

.hero__title {
  line-height: 0.9em;
  font-weight: 400;
  color: var(--color-accent);
  font-size: 4.1666666667vw;
}

.hero__btn.btn {
  margin-top: 1.25vw;
  height: 2.0833333333vw;
  min-width: 8.8541666667vw;
  font-size: 0.8333333333vw;
}

.hero__pagination {
  position: absolute;
  z-index: 3;
  justify-content: center;
  display: flex;
  bottom: 4.6875vw !important;
}

.hero__nav-swiper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  width: 100%;
}

.hero__nav-swiper .container {
  width: 100%;
}

.hero__nav-swiper-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.hero__btn-next,
.hero__btn-prev {
  pointer-events: all;
  -webkit-filter: invert(1) brightness(100);
          filter: invert(1) brightness(100);
}

.hero__btn-next {
  left: 0;
  right: auto;
}

.hero__btn-prev {
  left: auto;
  right: 0;
}

.products .sc-head {
  margin-bottom: 36px;
}

.products__slider {
  padding-right: 10px;
  margin-right: -10px;
  width: calc(100% + 10px);
}

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

.products__slider .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.products__slider .product-card__body {
  flex: 1 1 auto;
}

.products__slider .product-card__unit-price {
  margin-top: auto;
}

.products__body {
  position: relative;
}

.category-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 400/245;
  border-radius: var(--border-radius--lg);
  overflow: hidden;
}

.category-card:hover::after {
  opacity: 0.22;
}

.category-card:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.category-card img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
}

.category-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #2C2B2A;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.category-card span {
  color: var(--color-light);
  font-size: 42px;
  text-shadow: 5px 5px 9px rgba(51, 51, 51, 0.2431372549);
  position: relative;
  z-index: 3;
}

.banner {
  margin-bottom: 140px;
}

.banner__wrap {
  min-height: 280px;
  background: url("../img/bg/bg-banner.png") center/cover no-repeat;
  border-radius: var(--border-radius--lg);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 55px 24px;
  overflow: hidden;
  gap: 10px;
}

.banner__text {
  font-size: 22px;
}

.banner__title {
  font-size: 80px;
  line-height: 0.9em;
}

.banner__btn {
  margin-top: 10px;
}

.our-story {
  background: url("../img/bg/history.png") center 0/cover no-repeat;
  -webkit-mask: url("../img/bg/history.png") center 0/cover no-repeat;
          mask: url("../img/bg/history.png") center 0/cover no-repeat;
  color: var(--color-light);
  margin-bottom: 0;
}

.our-story__wrap {
  padding: 160px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.our-story__title {
  font-size: 60px;
}

.our-story__text {
  width: 100%;
  max-width: 745px;
  font-size: 22px;
  line-height: 32px;
}

.our-story__icon {
  max-width: 160px;
  width: 100%;
  margin: 2m;
  max-width: 124px;
}

.our-story__btn {
  margin-top: 16px;
}

.recipes .swiper-controls .swiper-button-prev,
.recipes .swiper-controls .swiper-button-next {
  bottom: 50%;
}

.recipe-card {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: end;
  aspect-ratio: 32/39;
  border-radius: var(--border-radius--lg);
  overflow: hidden;
  padding: 30px;
}

.recipe-card::after {
  background: transparent linear-gradient(166deg, #FFFFFF 0%, #646A5C 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.35;
}

.recipe-card img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
}

.recipe-card::before,
.recipe-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(166deg, transparent 0%, #2C2B2A 100%);
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease 0s;
}

.recipe-card::before {
  background: #2C2B2A;
  opacity: 0.3;
}

.recipe-card span {
  color: var(--color-light);
  font-size: 42px;
  line-height: 1.1;
  text-shadow: 5px 5px 9px rgba(51, 51, 51, 0.2431372549);
  position: relative;
  z-index: 3;
  transition: all 0.5s ease 0s;
  -webkit-transform-origin: 100%;
          transform-origin: 100%;
}

/**
 * =========================================================================================
 * --																 ABOUT US
 * =========================================================================================
 */

.about-us {
  margin-bottom: 0;
  color: var(--color-light);
  padding-block: 100px;
  position: relative;
}

.about-us--1 {
  background: url("../img/bg/about-1.png") center 100%/cover no-repeat;
  aspect-ratio: 1920/680;
}

.about-us--1::after {
  -webkit-mask: url("../img/bg/about-1.png") center 100%/cover no-repeat;
          mask: url("../img/bg/about-1.png") center 100%/cover no-repeat;
  background: transparent linear-gradient(248deg, #89A1BB 0%, rgba(128, 128, 128, 0) 100%) 0% 0% no-repeat padding-box;
}

.about-us--2 {
  color: var(--color-primary);
  padding: 40px 0 80px;
}

.about-us--2 .about-us__wrap {
  align-items: center;
}

.about-us--3 {
  background: url("../img/bg/about-2.png") center 0/cover no-repeat;
  padding-block: 170px;
  aspect-ratio: 1920/590;
}

.about-us--3 .about-us__wrap {
  margin-top: 6%;
}

.about-us--4 {
  background: url("../img/bg/about-3.png") center 0/cover no-repeat;
  padding-top: 180px;
  margin-top: -3.5%;
  aspect-ratio: 1920/540;
  position: relative;
  z-index: 2;
}

.about-us--4::after {
  background: transparent linear-gradient(262deg, rgba(255, 255, 255, 0) 0%, #7EA77A 45%, #567C52 100%) 0% 0% no-repeat padding-box;
  box-shadow: -8px -8px 6px rgba(0, 0, 0, 0.1607843137);
  mix-blend-mode: multiply;
  -webkit-mask: url("../img/bg/about-3.png") center 0/cover no-repeat;
          mask: url("../img/bg/about-3.png") center 0/cover no-repeat;
}

.about-us::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-us__wrap {
  display: flex;
  gap: 120px;
  position: relative;
  z-index: 2;
}

.about-us__title {
  color: #FEF5F3;
  flex: 1 1 auto;
  font-size: min(10.4166666667vw, 200px);
  text-align: center;
  line-height: 1;
  margin-top: -4%;
  opacity: 0.2;
}

.about-us__text {
  flex: 0 0 calc(50% - 60px);
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 630px;
  font-size: min(1.0416666667vw, 22px);
}

.about-us__text--left {
  margin-right: auto;
}

.about-us__img {
  flex: 1 1 auto;
  aspect-ratio: 1.3/1;
}

.about-us__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/**
 * =========================================================================================
 * --																 RECIPES
 * =========================================================================================
 */

.recipes-hero {
  background: url("../img/bg/recipes-bg.png") center 100%/cover no-repeat;
  margin-bottom: 100px;
}

.recipes-hero__wrap {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FEF5F3;
}

.recipes-hero__wrap h1 {
  font-size: 80px;
}

.recipes-hero__wrap p {
  text-align: center;
  font-size: 20px;
  max-width: 560px;
}

.is-products-archive .recipes-hero__wrap {
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--color-primary);
}

.recipes-products-content.is-products-archive {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: flex-start;
  flex: 1 1 auto;
}

.recipes-grid {
  background-color: #FEF5F3;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 80px;
}

.recipes-grid__wrap {
  display: flex;
  position: relative;
  z-index: 2;
}

.recipes-grid__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1 1 auto;
}

.recipes-grid__list .recipe-card {
  flex: 0 0 calc(25% - 9px);
}

.recipes-grid__list .recipe-card span {
  font-size: 2.2916666667vw;
}

.recipes-grid__list--products {
  gap: 16px;
}

.recipes-grid__list--products .product-card {
  flex: 0 0 calc(20% - 13px);
}

.recipes-filter {
  flex: 0 0 370px;
  padding-left: 50px;
}

.recipes-filter__btn-open {
  display: flex;
  align-items: center;
  font-size: 21px;
  gap: 10px;
  cursor: pointer;
}

.recipes-filter__btn-open img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.recipes-filter__content {
  display: flex;
  flex-direction: column;
}

.recipes-filter__overlay {
  background-color: #000;
  opacity: 0;
  position: absolute;
  z-index: 1;
  inset: 0;
  transition: all 0.4s ease 0s;
  display: none;
}

.open .recipes-filter__overlay {
  opacity: 0.5;
}

.recipes-filter__title {
  font-size: 36px;
  line-height: 52px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.recipes-filter__btn-close {
  position: absolute;
  top: 28px;
  left: 30px;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.recipes-filter__btn-close svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.recipes-filter__btn-clear {
  text-decoration: underline;
  margin-bottom: 16px;
  text-align: right;
  display: inline-flex;
  color: #D9B8B1;
  cursor: pointer;
  order: 1;
  margin-top: 32px;
}

.recipes-search-head {
  margin-top: 50px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.recipes-search-head .woocommerce-breadcrumb {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  font-size: 14px;
}

.recipes-search-head .woocommerce-breadcrumb a {
  text-decoration: underline;
}

.recipes-search-head .recipes-search-title {
  font-size: 80px;
  line-height: 1em;
}

.main:has(.recipes-filter__wrap.open) {
  z-index: 200;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.recipe-post {
  margin-top: 28px;
}

.recipe-post__wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.recipe-post .go-to-prev-page {
  display: none;
  position: relative;
  gap: 8px;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 60px 0 12px;
}

.recipe-post .go-to-prev-page::before {
  content: "";
  width: 16px;
  height: 32px;
  rotate: 180deg;
  background-color: var(--color-accent);
  -webkit-mask: url("../img/icons/angle-left.svg") center/contain no-repeat;
          mask: url("../img/icons/angle-left.svg") center/contain no-repeat;
}

.recipe-post__video {
  flex: 0 0 530px;
  aspect-ratio: 53/94;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recipe-post__video:hover::after {
  opacity: 0.6;
  scale: 1.1;
}

.recipe-post__video:hover .recipe-post__btn-video::after {
  scale: 1.4;
}

.recipe-post__video > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
}

.recipe-post__video::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: calc(100% - 42px);
  height: calc(100% - 42px);
  background: #828D98 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  border-radius: 44px;
  opacity: 0.5;
  transition: all 0.4s ease 0s;
  z-index: 2;
}

.recipe-post__btn-video {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.recipe-post__btn-video::after {
  content: "";
  z-index: 3;
  border: 3px solid #fff;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease 0s;
  background: url("../img/icons/play.svg") center/32px no-repeat;
}

.recipe-post__main {
  flex: 1 1 auto;
  border-radius: 40px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--color-light);
}

.recipe-post__title {
  font-size: 60px;
  line-height: 66px;
  color: var(--color-accent);
  line-height: 1;
}

.recipe-post__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #D9B8B1;
  border-bottom: 1px solid #D9B8B1;
  padding-block: 18px;
}

.recipe-post__body {
  display: flex;
  gap: 66px;
  margin-bottom: 36px;
}

.recipe-post__instructions {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.recipe-post__instructions ul {
  list-style: none;
  counter-reset: list-counter;
  border-top: 1px solid #EDDDD9;
}

.recipe-post__instructions li {
  counter-increment: list-counter;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  padding-right: 40px;
  position: relative;
  border-bottom: 1px solid #EDDDD9;
}

.recipe-post__instructions li::before {
  content: counter(list-counter) "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #E7EBE7;
  font-size: 42px;
  line-height: 1;
}

.recipe-post__ingredients {
  flex: 0 0 380px;
}

.recipe-post__add-all-ingredients {
  margin-top: 30px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  height: 52px;
  border-radius: var(--border-radius--full);
  background-color: var(--color-accent);
  font-size: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 24px;
  color: var(--color-light);
  transition: all 0.3s ease 0s;
}

.recipe-post__add-all-ingredients:hover {
  background-color: var(--color-primary);
}

.recipe-post__add-all-ingredients::before {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  content: "";
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="3" stroke-linecap="round"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}

.share ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

.share a {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--brand-color);
  transition: all 0.3s ease 0s;
  background-color: #FEF5F3;
}

.share a:hover {
  background-color: var(--brand-color);
}

.share a:hover::after {
  background-color: var(--color-light);
}

.share a::after {
  content: "";
  -webkit-mask-size: 20px;
  mask-size: 20px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--brand-color);
  position: relative;
  transition: all 0.2s ease 0s;
}

.share__print::after {
  -webkit-mask-image: url("../img/icons/print.svg");
          mask-image: url("../img/icons/print.svg");
}

.share__mail::after {
  -webkit-mask-image: url("../img/icons/at-sign.svg");
          mask-image: url("../img/icons/at-sign.svg");
}

.share__watsapp::after {
  -webkit-mask-image: url("../img/icons/whatsapp.svg");
          mask-image: url("../img/icons/whatsapp.svg");
}

.share__instagram::after {
  -webkit-mask-image: url("../img/icons/instagram.svg");
          mask-image: url("../img/icons/instagram.svg");
}

.share__tiktok::after {
  -webkit-mask-image: url("../img/icons/tiktok.svg");
          mask-image: url("../img/icons/tiktok.svg");
}

.share__facebook::after {
  -webkit-mask-image: url("../img/icons/facebook.svg");
          mask-image: url("../img/icons/facebook.svg");
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author__photo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background-color: var(--color-secondary);
}

.author__info {
  font-size: 18px;
  line-height: 24px;
  color: #D9B8B1;
  font-weight: 500;
}

.author__inst {
  color: var(--color-primary);
  display: flex;
  gap: 5px;
  align-items: center;
  position: relative;
  text-decoration: underline;
  font-weight: 400;
}

.author__inst::after {
  content: " ";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("../img/icons/instagram.svg") center/contain no-repeat;
  position: relative;
  top: 2px;
  -webkit-filter: brightness(0) saturate(100%) invert(44%) sepia(12%) saturate(450%) hue-rotate(52deg) brightness(95%) contrast(88%);
          filter: brightness(0) saturate(100%) invert(44%) sepia(12%) saturate(450%) hue-rotate(52deg) brightness(95%) contrast(88%);
}

.recipe-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recipe-detail img {
  height: 48px;
  width: auto;
  display: block;
}

.recipe-detail__info {
  font-size: 18px;
  line-height: 26px;
  color: #D9B8B1;
}

.recipe-detail__info b {
  font-weight: 800;
  color: var(--color-primary);
}

.title-h2 {
  color: var(--color-accent);
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 24px;
}

.ingredients {
  border-top: 1px solid #EDDDD9;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.ingredients td {
  padding-block: 4px;
  border: none;
  padding-inline: 0;
  border-bottom: 1px solid #EDDDD9;
  font-size: 18px;
}

.ingredients td:first-child {
  min-width: 40px;
  padding-left: 5px;
}

.ingredients td:nth-child(2) {
  min-width: 80px;
  padding-left: 5px;
}

.business-hero {
  background: url("../img/bg/simple.jpg") center 0/cover no-repeat;
}

.business-hero__wrap {
  max-width: 1360px;
  margin: 0 auto;
  min-height: 270px;
  display: flex;
  align-items: center;
  padding-block: 70px;
}

.business-hero__wrap h1 {
  font-size: 80px;
  color: var(--color-light);
  text-shadow: 9px 9px 9px rgba(86, 124, 82, 0.3529411765);
  padding-left: 50%;
  width: 100%;
}

.business-contacts__wrap {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.business-contacts__text {
  max-width: 640px;
  flex: 1 1 auto;
  color: var(--color-accent);
  font-size: 20px;
  line-height: 28px;
}

.business-contacts__form-wrap {
  margin-top: -250px;
  flex: 0 0 566px;
}

.contacts-form {
  background: #FFFFFF;
  box-shadow: 7px 7px 22px rgba(217, 184, 177, 0.2431372549);
  border-radius: 40px;
  padding: 48px;
}

.contacts-form__title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 36px;
  line-height: 40px;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-weight: 600;
}

.contacts-form__title img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.contacts-form__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.contacts-form__form .wpcf7-spinner {
  bottom: 15px;
  left: 15px;
}

.contacts-form__form .wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 0 !important;
  color: var(--color-accent) !important;
  font-size: 22px !important;
  /* text-align: right; */
  border: none !important;
}

.contacts-form__row input,
.contacts-form__row textarea {
  width: 100%;
  height: 40px;
  border: 1px solid #EDDDD9;
  font-size: 18px;
  padding-inline: 14px;
  border-radius: var(--border-radius--full);
}

.contacts-form__row input::-webkit-input-placeholder, .contacts-form__row textarea::-webkit-input-placeholder {
  color: #D9B8B1;
}

.contacts-form__row input::-moz-placeholder, .contacts-form__row textarea::-moz-placeholder {
  color: #D9B8B1;
}

.contacts-form__row input::placeholder,
.contacts-form__row textarea::placeholder {
  color: #D9B8B1;
}

.contacts-form__row.is-double {
  display: flex;
  gap: 10px;
}

.contacts-form__row.is-double input {
  width: calc(50% - 5px);
}

.contacts-form textarea {
  resize: none;
  height: 95px;
  border-radius: 20px;
  padding-block: 8px;
}

.faq-info .contacts-form textarea {
  height: 180px;
}

.contacts-form label {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  margin-block: 5px;
}

.contacts-form label input[type=checkbox] {
  height: 16px;
  width: 16px;
  accent-color: #D9B8B1 !important;
}

.contacts-form label span {
  text-align: right;
}

.contacts-form .is-label-checkbox {
  margin-top: 14px;
  margin-bottom: 8px;
}

.contacts-form input[type=submit] {
  height: 56px;
  font-size: 24px;
  font-weight: 500;
}

.support {
  margin-bottom: 0;
  background-color: #fdc7b9;
}

.support__wrap {
  display: flex;
  gap: 64px;
  background: url("../img/bg/support-bg.png") 470px 100%/auto 460px no-repeat;
  padding: 52px 0 300px;
}

.support__contacts {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.support__title {
  font-size: 80px;
  line-height: 86px;
}

.support__text {
  margin-bottom: 32px;
  font-size: 48px;
  line-height: 56px;
}

.support__form-wrap {
  flex: 0 0 540px;
}

.support__form-wrap .contacts-form__title {
  color: #D9B8B1;
}

.contacts {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--color-light);
  max-width: 815px;
}

.contacts a {
  display: flex;
  flex-direction: column;
}

.contacts a img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  -webkit-filter: brightness(0%) invert(1);
          filter: brightness(0%) invert(1);
  margin-bottom: 18px;
}

.contacts a p {
  font-size: 36px;
}

.contacts a span {
  text-decoration: underline;
  font-size: 21px;
}

.delivery-hero {
  background: url("../img/bg/simple.jpg") center 0/cover no-repeat;
  margin-bottom: 70px;
}

.delivery-hero__wrap {
  max-width: 1360px;
  margin: 0 auto;
  min-height: 270px;
  display: flex;
  align-items: center;
  padding-block: 70px;
}

.delivery-hero__wrap h1 {
  font-size: 80px;
  color: var(--color-light);
  text-align: center;
}

.delivery {
  margin-bottom: 190px;
}

.delivery__wrap {
  display: flex;
  display: grid;
  gap: 0 56px;
  grid-template-columns: 1fr 50%;
  grid-template-areas: "info-1 map" "info-2 map";
}

.delivery__info-1 {
  grid-area: info-1;
}

.delivery__info-2 {
  grid-area: info-2;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 680px;
}

.delivery__title {
  display: flex;
  align-items: center;
  font-size: 48px;
  gap: 25px;
  color: var(--color-accent);
  margin-bottom: 28px;
}

.delivery__title img {
  height: 48px !important;
  width: auto;
}

.delivery__text {
  margin-bottom: 32px;
}

.delivery__form {
  display: flex;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  max-width: 412px;
}

.delivery__form::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: url("../img/icons/angle-left.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: 2;
  -webkit-filter: brightness(0%) invert(1);
          filter: brightness(0%) invert(1);
}

.delivery__form input {
  height: 40px;
  border-radius: 0;
  padding-inline: 26px;
  font-size: 18px;
}

.delivery__form input[type=submit] {
  flex: 0 0 100px;
  width: 100px;
  background-color: #D9B8B1;
  color: #fff;
  cursor: pointer;
  padding-inline: 16px;
  padding-bottom: 2px;
  transition: all 0.3s ease 0s;
}

.delivery__form input[type=submit]:hover {
  background-color: var(--color-accent);
}

.delivery__list {
  margin-top: 40px;
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 22px;
  gap: 24px;
  height: 100%;
}

.delivery__list::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.delivery__list::-webkit-scrollbar-track {
  background-color: var(--color-light);
  border-radius: 5px;
  border: none;
  box-shadow: none;
}

.delivery__list::-webkit-scrollbar-thumb {
  background-color: #D9B8B1;
  border-radius: 10px;
  border: none;
  box-shadow: none;
}

.delivery__list li {
  display: flex;
  gap: 32px;
}

.delivery__list li strong {
  font-weight: 800;
  flex: 0 0 154px;
  position: relative;
}

.delivery__list li strong::after {
  content: "|";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.delivery__list li span {
  font-weight: 300;
}

.delivery__map {
  grid-area: map;
  border-radius: 44px;
  overflow: hidden;
}

.delivery__map-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**
 * =========================================================================================
 * --																 CHECKOUT
 * =========================================================================================
 */

/**
 * =========================================================================================
 * --																 Order page
 * =========================================================================================
 */

.order-info {
  background-color: #fff;
  width: 100%;
  max-width: 560px;
  margin: 120px auto 226px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 64px;
  border-radius: 22px;
}

.order-info__icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 50%;
  background: rgba(103, 144, 99, 0.1215686275) url("../img/icons/check-green.svg") center/34px no-repeat;
  border: 1px solid var(--color-accent);
  margin: 0 auto 24px;
}

.order-info__title {
  font-size: 70px;
  line-height: 100%;
  width: 100%;
  margin-bottom: 5px;
}

.order-info__subtitle {
  font-size: 18px;
  margin-bottom: 36px;
}

.order-info__summary-title {
  margin-bottom: 36px;
  font-size: 28px;
}

.order-info__table {
  width: 100%;
  margin-bottom: 36px;
}

.order-info__table tr {
  display: flex;
  justify-content: space-between;
}

.order-info__table tr td {
  padding: 6px 0;
  font-size: 18px;
}

.order-info__table tr td:first-child {
  text-align: right;
  font-weight: 500;
}

.order-info__table tr td:last-child {
  text-align: left;
}

.order-info__table tfoot tr {
  border-top: 1px solid rgba(100, 106, 92, 0.1215686275);
  padding-top: 12px;
  margin-top: 6px;
}

.order-info__table tfoot tr td:first-child {
  font-weight: 800;
}

.order-info__table tfoot tr td:last-child {
  font-weight: 800;
  color: var(--color-accent);
}

.order-info__btn {
  align-self: center;
  height: 56px;
  min-width: 230px;
}

.products-not-found {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products-not-found svg {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  margin-bottom: 20px;
}

.products-not-found h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.products-not-found p {
  font-size: 14px;
}

.woocommerce-lost-password .breadcrumbs {
  margin-top: 32px;
  margin-bottom: 32px;
}

.woocommerce-lost-password .article {
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  padding: 64px;
  margin-inline: auto;
  border-radius: 22px;
}

.woocommerce-lost-password .article .container {
  margin: 0;
  padding: 0;
}

.woocommerce-lost-password .article h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 18px;
}

.woocommerce-lost-password .article form.lost_reset_password {
  font-size: 18px;
  display: flex;
  flex-direction: column;
}

.woocommerce-lost-password .article .form-row {
  width: 100% !important;
  margin-top: 18px !important;
}

.woocommerce-lost-password .article .form-row label {
  margin-bottom: 8px;
}

.woocommerce-lost-password .article .form-row input[type=text],
.woocommerce-lost-password .article .form-row input[type=password] {
  background-color: var(--color-secondary);
  height: 42px;
  font-size: 18px;
  border-radius: var(--border-radius--full);
}

.woocommerce-lost-password .article .form-row input[type=text]::-webkit-input-placeholder, .woocommerce-lost-password .article .form-row input[type=password]::-webkit-input-placeholder {
  color: #D9B8B1;
}

.woocommerce-lost-password .article .form-row input[type=text]::-moz-placeholder, .woocommerce-lost-password .article .form-row input[type=password]::-moz-placeholder {
  color: #D9B8B1;
}

.woocommerce-lost-password .article .form-row input[type=text]::placeholder,
.woocommerce-lost-password .article .form-row input[type=password]::placeholder {
  color: #D9B8B1;
}

.woocommerce-lost-password .article .form-row button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s ease 0s;
  border: 1px solid transparent;
  line-height: 1em;
  border-radius: var(--border-radius--full) !important;
  height: 40px;
  padding: 0 24px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 24px;
  height: 56px;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
  width: 100%;
}

.woocommerce-lost-password .article .form-row button[type=submit]:hover,
.woocommerce-lost-password .article .form-row button[type=submit]:focus {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.woocommerce-lost-password .article .form-row .show-password-input {
  top: 10px !important;
}

.woocommerce-message {
  border: none !important;
  outline: none !important;
}

/**
 * =========================================================================================
 * --																 Page Gift Card
 * =========================================================================================
 */

.sc-gift-card {
  background: #dfe4e7 url("../img/bg/gift-card-bg.jpg") 100% 0/cover no-repeat;
  margin-bottom: 0;
  padding: 50px 0 100px;
}

.sc-gift-card__head {
  margin-bottom: 40px;
  color: var(--color-accent);
  max-width: 640px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-gift-card__head h1 {
  font-size: 80px;
  line-height: 100%;
  color: var(--color-light);
  text-shadow: 9px 9px 9px rgba(206, 213, 206, 0.6745098039);
}

.sc-gift-card__head h2 {
  font-size: 48px;
  line-height: 1.1;
}

.sc-gift-card__head a {
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s ease 0s;
}

.sc-gift-card__head a:hover {
  color: #F83D61;
}

.sc-gift-card__head b {
  font-weight: 800;
}

.sc-gift-card__body {
  background-color: #fff;
  box-shadow: 7px 7px 22px rgba(217, 184, 177, 0.2431372549);
  border-radius: 40px;
  opacity: 0.9;
  max-width: 640px;
  width: 100%;
  min-height: 440px;
  padding: 36px 44px;
}

.gc-unified-form__title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #D9B8B1;
}

.gc-unified-form__amounts {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.gc-unified-form__amounts label {
  position: relative;
  flex: 1;
  border: 1px solid #D9B8B1;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  overflow: hidden;
  cursor: pointer;
}

.gc-unified-form__amounts label span {
  font-size: 26px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.gc-unified-form__amounts label input {
  position: absolute;
  overflow: hidden;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.gc-unified-form__amounts label input:checked + span {
  background-color: #D9B8B1;
  color: var(--color-light);
}

.gc-unified-form__fields {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-unified-form__fields input,
.gc-unified-form__fields textarea {
  border: 1px solid #FEF5F3;
  font-size: 18px;
  border-radius: 20px;
  background-color: #FEF5F3;
  padding-inline: 16px;
}

.gc-unified-form__fields input::-webkit-input-placeholder, .gc-unified-form__fields textarea::-webkit-input-placeholder {
  color: #D9B8B1;
}

.gc-unified-form__fields input::-moz-placeholder, .gc-unified-form__fields textarea::-moz-placeholder {
  color: #D9B8B1;
}

.gc-unified-form__fields input::placeholder,
.gc-unified-form__fields textarea::placeholder {
  color: #D9B8B1;
}

.gc-unified-form__fields textarea {
  padding-block: 12px;
  min-height: calc(3lh + 24px);
  field-sizing: content;
  resize: none;
}

.gc-unified-form__submit {
  height: 52px;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s ease 0s;
  line-height: 1em;
  border-radius: var(--border-radius--full) !important;
  padding: 0 24px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  margin: 0 !important;
}

.gc-unified-form__submit:hover,
.gc-unified-form__submit:focus {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

/**
 * =========================================================================================
 * --																 FAQ
 * =========================================================================================
 */

.faq-hero {
  background: url("../img/bg/faq-bg.png") center 100%/cover no-repeat;
  margin-bottom: 80px;
}

.faq-hero__wrap {
  max-width: 1420px;
  margin: 0 auto;
  min-height: 300px;
  display: flex;
  padding-block: 80px;
}

.faq-hero__wrap h1 {
  font-size: 80px;
  color: var(--color-light);
  text-shadow: 9px 9px 9px rgba(86, 124, 82, 0.3529411765);
  padding-left: 50%;
  width: 100%;
  line-height: 1;
}

.faq-info {
  margin-bottom: 100px;
}

.faq-info__wrap {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}

.faq-info__text {
  max-width: 640px;
  flex: 1 1 auto;
  color: var(--color-accent);
  font-size: 20px;
  line-height: 28px;
}

.faq-info__form-wrap {
  margin-top: -195px;
  flex: 0 0 540px;
}

.faq-info__accordion {
  max-width: 690px;
}

.page-template-page-faq-php .woocommerce-pagination ul.page-numbers {
  justify-content: start;
  margin-top: 90px;
}

.b2b {
  margin-bottom: 240px;
}

.b2b--2 .b2b__col > p,
.b2b--2 .b2b__col > h2 {
  max-width: 510px;
}

.b2b--3 .b2b__images img {
  width: auto;
}

.b2b__wrap {
  max-width: 1370px;
  margin: 0 auto;
}

.b2b h2 {
  font-size: 80px;
  line-height: 1em;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.b2b p {
  font-size: 18px;
}

.b2b__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b2b__benefits {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}

.b2b__benefits-short {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}

.b2b__benefits-short .b2b__item {
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px 12px;
}

.b2b__benefits-short .b2b__item * {
  margin-bottom: 0;
}

.b2b__benefits-short .b2b__item p {
  flex: 0 0 100%;
}

.b2b__item {
  flex: 1;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 40px 32px;
}

.b2b__item img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  margin-bottom: 24px;
  margin-top: 9px;
}

.b2b__item strong {
  font-size: min(4.6875vw, 90px);
  color: var(--color-accent);
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 8px;
}

.b2b__row {
  display: flex;
}

.b2b__col {
  flex: 0 0 50%;
}

.b2b__btn {
  margin-top: 44px;
  height: 56px;
  min-width: 230px;
  font-size: 24px;
  font-weight: 400;
}

.b2b__images {
  flex: 1 1 auto;
}

.b2b__images img {
  width: 100%;
}

.wishlist-grid__wrap {
  padding: 20px 32px 32px;
  background: #fff;
  border-radius: 32px;
  margin-top: 42px;
}

.wishlist-grid__title {
  font-size: 48px;
}

.wishlist-grid .wishlist-products {
  width: 100%;
}

.woocommerce-cart .ss-coupon {
  background-color: var(--color-light);
  width: 100%;
  min-height: 146px;
  box-shadow: 7px 7px 7px rgba(221, 216, 207, 0.3764705882);
  border-radius: 22px;
  padding: 24px;
}

.woocommerce-cart .shop_table {
  text-align: right;
}

.woocommerce-cart .update_totals_on_change > td label > span {
  gap: 4px;
  align-items: flex-start;
}

.woocommerce-cart #wc_gc_cart_code {
  max-width: none !important;
}

.woocommerce-cart .cart-sidebar__header {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.woocommerce-cart .breadcrumbs {
  margin-bottom: 36px;
}

@media (min-width: 769px) {
  .recipe-card:hover::after {
    opacity: 0.5;
  }

  .recipe-card:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .recipe-card:hover span {
    scale: 1.1;
  }

  .wishlist-grid .product-card {
    box-shadow: 7px 7px 7px rgba(221, 216, 207, 0.3764705882), -1px -1px 7px rgba(221, 216, 207, 0.3764705882);
  }
}

@media (min-width: 999px) {
  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child a {
    text-decoration: underline;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation .account-user-info {
    display: none;
  }

  .about-us--1 .about-us__wrap {
    flex-direction: row-reverse;
    align-items: flex-start;
  }

  .recipes-filter__btn-open {
    display: none;
  }

  .recipes-filter__btn-close {
    display: none;
  }

  .b2b--2 .b2b__col {
    padding-left: 32px;
  }
}

@media (min-width: 1200px) {
  .menu__sub-list.is-two-columns {
    gap: 0 24px;
    flex: 0 0 548px;
  }

  .menu__sub-list.is-two-columns .menu__sub-item {
    flex: 0 0 calc(50% - 12px);
  }

  .menu__sub-link:hover {
    font-weight: 700;
  }

  .b2b--3 .b2b__btn {
    margin-top: 140px;
  }

  .b2b--3 .b2b__images {
    padding-right: 150px;
  }
}

@media (min-width: 2200px) {
  .recipes-hero__wrap {
    min-height: 400px;
  }
}

@media (max-width: 1800px) {
  .swiper-controls .swiper-button-prev {
    right: -36px !important;
  }

  .swiper-controls .swiper-button-next {
    left: -36px !important;
  }
}

@media (max-width: 1600px) {
  body.single-product .recommends-recipes .recipe-card {
    flex: 0 0 calc(25% - 10px);
  }

  .cart-trigger {
    min-width: 135px;
  }

  .cart-trigger__text {
    display: none;
  }

  .recipe-post__video {
    flex: 0 0 450px;
  }

  .recipe-post__ingredients {
    flex: 0 0 250px;
  }
}

@media (max-width: 1500px) {
  .header__container {
    gap: 24px;
  }

  .menu__item {
    font-size: 18px;
  }

  .footer__main-body {
    flex-wrap: wrap;
    padding-block: 90px;
    gap: 80px;
  }

  .footer__bottom-body {
    flex-wrap: wrap;
    gap: 16px 0;
  }

  .footer__rights {
    flex: 0 0 100%;
    text-align: center;
  }

  .recipes-grid__list .recipe-card {
    flex: 0 0 calc(33.3% - 8px);
  }

  .recipes-grid__list--products .product-card {
    flex: 0 0 calc(25% - 12px);
  }
}

@media (max-width: 1420px) {
  .footer::after {
    top: 250px;
    left: 30px;
    width: 55%;
  }
}

@media (max-width: 1400px) {
  .ui-chip span {
    display: none;
  }

  .mm-orders__list {
    gap: 44px;
  }

  .mm-orders__row {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 15px;
  }

  .mm-orders__cell {
    justify-content: flex-start;
    padding: 5px 20px;
  }

  .mm-orders__cell--order {
    flex: 0 0 100% !important;
    height: 64px;
    margin-bottom: 15px;
  }

  .mm-orders__cell--actions {
    flex: 0 0 100% !important;
    gap: 20px;
    margin-top: 15px;
    padding-inline: 20px;
  }

  .mm-orders__cell--actions a {
    height: 44px;
    border-radius: var(--border-radius--full) !important;
    flex: 0 0 calc(50% - 10px);
  }

  .recipe-post__main {
    padding: 36px;
  }

  .recipe-post__top {
    flex-wrap: wrap;
    gap: 30px;
  }

  .recipe-post__top .recipe-detail,
  .recipe-post__top .author {
    flex: 0 0 calc(50% - 15px);
  }

  .recipe-post__body {
    flex-direction: column-reverse;
    gap: 44px;
  }
}

@media (max-width: 1300px) {
  .recipes-grid__list--products .product-card {
    flex: 0 0 calc(33.3% - 11px);
  }
}

@media (max-width: 1200px) {
  .textme-phone-login-container .textme-login-btn {
    font-size: 18px;
    height: 50px;
  }

  .recommends-recipes .recipe-card span {
    font-size: 32px !important;
  }

  .page-id-57043 .breadcrumbs,
  .page-id-40104 .breadcrumbs {
    padding-top: 56px;
  }

  body.single-product main {
    padding-top: 120px;
  }

  section.single-product .product-card {
    gap: 0;
  }

  section.single-product .product-card__header {
    max-width: none;
  }

  .main {
    padding-top: 44px;
  }

  .header {
    background-color: transparent;
  }

  .header__container {
    height: 88px;
    padding: 0;
  }

  .header__logo.logo {
    display: none;
  }

  .header__main {
    display: none;
  }

  .header__search {
    flex: 0 0 100%;
  }

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

  .menu__list {
    flex-direction: column;
    height: auto;
    gap: 4px;
  }

  .menu__item {
    width: 100%;
    align-items: flex-start;
    background-color: #E7EBE7;
    font-size: 32px;
    line-height: 36px;
    padding: 0 16px 0px;
    position: relative;
    min-height: 60px;
  }

  .menu__link {
    color: #646A5C;
    min-height: 60px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    white-space: initial;
    position: relative;
    z-index: 2;
  }

  .menu__link::before {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    width: 10px;
    height: 60px;
    background-color: #CED5CE;
    z-index: 1;
    transition: none;
  }

  .menu__item.open .menu__link::before {
    background-color: var(--color-primary);
  }

  .menu__item.open .menu__link {
    color: var(--color-light);
  }

  .menu__item--has-children {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0;
  }

  .menu__item--has-children::before {
    height: 60px;
    width: 100%;
    bottom: auto;
    top: 0;
    background-color: var(--color-accent);
    opacity: 0;
    z-index: 1;
  }

  .menu__item--has-children.open {
    background-color: var(--color-secondary);
  }

  .menu__item--has-children.open::before {
    height: 60px;
    transition: all 0.3s ease 0s;
    opacity: 1;
  }

  .menu__item--has-children::after {
    position: absolute;
    left: 20px;
    top: 20px;
    transition: none;
  }

  .menu__item--has-children.open::after {
    -webkit-filter: invert(1) brightness(100);
            filter: invert(1) brightness(100);
  }

  .menu__panel {
    position: static;
    padding: 0;
    border: none;
    box-shadow: none;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    border-radius: 0;
    width: 100%;
    background-color: transparent;
    height: 0;
  }

  .menu__panel-wrap {
    padding: 0;
    gap: 0;
    flex-direction: column;
  }

  .menu__sub-list {
    flex: 0 0 100%;
    flex-direction: column;
    gap: 22px;
    padding: 18px 16px 16px;
    flex: 1 1 auto;
  }

  .menu__sub-item {
    flex: 1 1 auto;
    font-size: 16px;
  }

  .menu__sub-link {
    font-size: 22px;
    padding: 0;
  }

  .menu__banner {
    width: 100%;
    min-height: 172px;
    height: auto;
    flex: 1 1 auto;
    margin-top: 24px;
    margin-bottom: 18px;
    padding: 12px;
    border-bottom-left-radius: 0;
    justify-content: flex-end;
  }

  .menu__banner .btn {
    align-self: flex-end;
    border-bottom-left-radius: 0;
    color: var(--color-accent);
  }

  .mobile-search {
    display: flex;
  }

  .header__mobile {
    display: flex;
  }

  .ajax-results.woocommerce {
    right: 0;
  }

  .footer__bottom-links {
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }

  body.logged-in.woocommerce-account .breadcrumbs {
    margin-top: 74px;
  }

  .about-us__wrap {
    gap: 60px;
  }

  .recipes-filter {
    flex: 0 0 280px;
  }

  .recipes-search-head {
    margin-top: 66px;
  }

  .business-contacts__form-wrap {
    flex: 0 0 420px;
  }

  .support__wrap {
    flex-direction: column;
    background: none;
  }

  .support__form-wrap {
    flex: 0 0 420px;
  }

  .woocommerce-lost-password .breadcrumbs {
    margin-top: 74px;
  }

  .sc-gift-card {
    padding: 150px 0 100px;
    background-position: 60% 0;
  }

  .faq-info__form-wrap {
    flex: 0 0 420px;
  }
}

@media (max-width: 998px) {
  .auth__header {
    font-size: 42px;
  }

  .auth__col {
    padding: 40px 16px;
  }

  .auth__form input[type=submit],
  .auth__form .btn {
    height: 50px;
  }

  .auth__footer {
    min-height: 120px;
  }

  .recommends-recipes .recipe-card {
    aspect-ratio: 225/290;
  }

  .main .wpfMainWrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .wpfFilterButtons {
    margin-top: auto;
  }

  .product-card.is-single {
    gap: 32px;
  }

  .is-single .product-card__header {
    max-width: 40%;
  }

  body.single-product .single-product-gallery__thumbs .swiper-slide {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }

  body.single-product .recommends-recipes .recipe-card {
    flex: 0 0 calc(33% - 8px);
  }

  section.single-product .product-card {
    padding: 0;
    flex-direction: column;
  }

  section.single-product .product-card__header {
    flex: 1 1 auto;
    margin-bottom: 36px;
  }

  section.single-product .single-product-gallery {
    margin: 0 auto;
  }

  section.single-product .product-card .single_add_to_cart_button {
    height: 56px;
    max-width: 210px;
  }

  section.single-product .product-card__badges {
    top: 28px;
    position: static;
  }

  section.single-product .product-card__stock-status {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  .is-out-of-stock {
    padding-top: 0px !important;
  }

  .footer::after {
    rotate: -90deg;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0;
    top: 20px;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    width: 100%;
  }

  .footer__menu {
    flex-wrap: wrap;
    gap: 48px;
  }

  .footer__menu-col {
    flex: 0 0 calc(50% - 32px);
  }

  .footer__bottom {
    padding: 40px 0 120px;
  }

  .footer__bottom-body {
    flex-direction: column;
    text-align: center;
    padding-inline: 20px;
  }

  .popup__btn-close {
    right: 0;
    top: -40px;
  }

  body.logged-in.woocommerce-account #article {
    margin-bottom: 90px;
  }

  body.logged-in.woocommerce-account .woocommerce {
    flex-direction: column;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
    display: none;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-content:has(.woocommerce-MyAccount-navigation) {
    padding: 0 0 300px;
  }

  .mm-orders__cell {
    flex: 0 0 50%;
  }

  .category-card {
    border-radius: var(--border-radius--md);
  }

  .category-card span {
    font-size: 34px;
  }

  .banner__title {
    font-size: 64px;
  }

  .about-us {
    padding: 90px 0;
  }

  .about-us--1 {
    background: url("../img/bg/about-1-mob.png") center 100%/cover no-repeat;
    aspect-ratio: initial;
    min-height: 800px;
  }

  .about-us--1 .about-us__wrap {
    gap: 24px;
  }

  .about-us--2 {
    padding: 48px 0;
  }

  .about-us--2 .about-us__wrap {
    flex-direction: column-reverse;
    gap: 42px;
  }

  .about-us--3 {
    background: url("../img/bg/about-2-mob.png") center 0/cover no-repeat;
    aspect-ratio: initial;
    min-height: 400px;
  }

  .about-us--3::after {
    mix-blend-mode: multiply;
    background: transparent linear-gradient(49deg, rgba(255, 255, 255, 0) 0%, #567C52 100%) 0% 0% no-repeat padding-box;
    -webkit-mask: url("../img/bg/about-2-mob.png") center 0/cover no-repeat;
            mask: url("../img/bg/about-2-mob.png") center 0/cover no-repeat;
  }

  .about-us--4 {
    background: url("../img/bg/about-3-mob.png") center 0/cover no-repeat;
    aspect-ratio: initial;
    min-height: 400px;
    margin-top: -9.5%;
    text-align: center;
  }

  .about-us--4::after {
    background: transparent linear-gradient(258deg, rgba(255, 255, 255, 0) 0%, #7EA77A 45%, #567C52 100%) 0% 0% no-repeat padding-box;
    -webkit-mask: url("../img/bg/about-3-mob.png") center 0/cover no-repeat;
            mask: url("../img/bg/about-3-mob.png") center 0/cover no-repeat;
  }

  .about-us__wrap {
    flex-direction: column;
  }

  .about-us__title {
    font-size: 72px;
    opacity: 1;
    text-align: right;
    margin-top: 0;
  }

  .about-us__text {
    font-size: min(4.2857142857vw, 18px);
    flex: 0 0 calc(50% - 30px);
  }

  .about-us__text {
    max-width: none;
  }

  .about-us__img {
    width: 100%;
    aspect-ratio: initial;
  }

  .recipes-grid__wrap {
    flex-direction: column;
    gap: 36px;
  }

  .recipes-grid__list .recipe-card span {
    font-size: 3.6072144289vw;
  }

  .recipes-filter {
    flex: 1 1 auto;
  }

  .recipes-filter__wrap {
    width: 100vw;
    right: -120%;
    z-index: 200;
    position: fixed;
    top: 0;
    height: 100svh;
  }

  .recipes-filter__wrap.open {
    right: 0;
  }

  .recipes-filter__content {
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--color-secondary);
    padding: 20px 16px;
    overflow-y: auto;
    border-radius: 22px 0px 0 22px;
    position: relative;
    z-index: 2;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: all 0.4s ease 0s;
  }

  .open .recipes-filter__content {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  .recipes-filter__overlay {
    display: block;
  }

  .recipes-filter__title {
    position: relative;
    position: relative;
  }

  .recipes-filter__title::before {
    content: "";
    position: absolute;
    left: -16px;
    top: -20px;
    width: calc(100% + 32px);
    height: calc(100% + 40px);
    pointer-events: none;
    background-color: #E7EBE7;
    z-index: -1;
  }

  .recipe-post__wrap {
    flex-direction: column;
    background-color: #fff;
    box-shadow: 7px 7px 22px rgba(217, 184, 177, 0.2431372549);
    border-radius: 40px;
    padding: 30px 20px 85px;
  }

  .recipe-post .go-to-prev-page {
    display: flex;
  }

  .recipe-post #breadcrumbs {
    display: none;
  }

  .recipe-post__video {
    aspect-ratio: initial;
    height: 740px;
    width: 100%;
    flex: 1 1 auto;
    margin-bottom: 40px;
  }

  .recipe-post__video::after {
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }

  .recipe-post__main {
    padding: 0;
    box-shadow: none;
    background: none;
    border-radius: 0;
    gap: 55px;
  }

  .recipe-post__title {
    order: -1;
    text-align: center;
    max-width: 300px;
    margin: 0 auto 4px;
  }

  .recipe-post__top {
    gap: 48px 30px;
  }

  .recipe-post__add-all-ingredients {
    width: 100%;
    justify-content: center;
  }

  .recipe-post__share {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .business-hero {
    margin-bottom: 0;
  }

  .business-hero__wrap h1 {
    font-size: 72px;
    padding-left: 0;
    text-align: center;
  }

  .business-contacts__wrap {
    flex-direction: column;
    padding: 32px 0;
    gap: 44px;
  }

  .business-contacts__text {
    font-size: 16px;
    line-height: 22px;
  }

  .business-contacts__form-wrap {
    width: 100%;
    flex: 1 1 auto;
    margin-top: 0;
  }

  .support__form-wrap {
    flex: 1 1 auto;
  }

  .delivery-hero {
    margin-bottom: 32px;
  }

  .delivery-hero__wrap h1 {
    font-size: 72px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }

  .delivery__wrap {
    grid-template-areas: "info-1" "map" "info-2";
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .delivery__info-2 {
    height: auto;
  }

  .delivery__list {
    overflow-y: visible;
  }

  .faq-hero {
    margin-bottom: 0;
  }

  .faq-hero__wrap h1 {
    font-size: 72px;
    padding-left: 0;
    text-align: center;
  }

  .faq-info__wrap {
    flex-direction: column;
    padding: 32px 0;
    gap: 44px;
  }

  .faq-info__text {
    font-size: 16px;
    line-height: 22px;
  }

  .faq-info__form-wrap {
    width: 100%;
    flex: 1 1 auto;
    margin-top: 0;
  }

  .b2b {
    margin-bottom: 120px;
  }

  .b2b--3 .b2b__images {
    display: none;
  }

  .b2b__benefits {
    flex-wrap: wrap;
  }

  .b2b__item {
    flex: 0 0 calc(50% - 10px);
  }

  .b2b__row {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .b2b__images {
    width: 100%;
  }
}

@media (max-width: 850px) {
  .hero__slide {
    padding: 17.7083333333vw 0 0;
    margin-top: 40px;
    aspect-ratio: 480/350;
    -webkit-mask: url("../img/bg/hero-mob.png") center/cover no-repeat;
            mask: url("../img/bg/hero-mob.png") center/cover no-repeat;
  }

  .hero__content {
    max-width: 68.75vw;
    margin: 0 auto;
  }

  .hero__text {
    font-size: 3.3333333333vw;
  }

  .hero__title {
    font-size: 9.5833333333vw;
  }

  .hero__btn.btn {
    margin-top: 3.3333333333vw;
    height: 5.8333333333vw;
    font-size: 2.7083333333vw;
    min-width: 23.3333333333vw;
  }

  .hero__pagination {
    bottom: 16.6666666667vw !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    margin-bottom: 65px;
  }

  section:has(.sc-head .btn) {
    position: relative;
    padding-bottom: 60px;
  }

  textarea,
  input {
    height: 50px;
    border-radius: 6px;
  }

  .sc-head {
    margin-bottom: 20px;
    text-align: center;
    flex-direction: column;
  }

  .sc-head--col {
    align-items: center;
  }

  .sc-head .btn {
    position: absolute;
    width: calc(100% - 32px);
    margin: 0 auto;
    max-width: 400px;
    bottom: 0;
    right: 16px;
    left: 16px;
    height: 25px;
  }

  .sc-title {
    font-size: 44px;
    line-height: 48px;
    text-align: center;
  }

  .sc-text {
    font-size: 14px;
    line-height: 20px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    flex: 0 0 12px;
    width: 12px;
    height: 24px;
  }

  .swiper-controls {
    margin-top: 10px;
    justify-content: space-between;
  }

  .swiper-controls .swiper-button-prev,
  .swiper-controls .swiper-button-next {
    position: static;
  }

  .video-popup__content {
    max-width: 98vw;
  }

  .video-popup__close {
    font-size: 40px;
  }

  .auth__header {
    font-size: 32px;
    height: 90px;
    justify-content: flex-start;
    padding-left: 40px;
  }

  .auth__body::after {
    display: none;
  }

  .auth__body {
    flex-direction: column;
    padding: 32px 28px;
    gap: 40px;
  }

  .auth__col {
    flex: 1 1 auto;
    padding: 0;
  }

  .auth__col-title {
    margin-bottom: 24px;
  }

  .auth__form input[type=submit],
  .auth__form .btn {
    font-size: 20px;
  }

  .auth__google {
    height: 50px;
  }

  .auth__footer {
    min-height: 90px;
  }

  .auth__toggler {
    font-size: 18px;
  }

  .textme-phone-login-container .textme-login-btn {
    font-size: 22px;
  }

  .single-product-tabs {
    margin-top: 10px;
  }

  .tabs__nav {
    display: none;
  }

  .tabs__mobile-toggler {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 24px;
    color: #D9B8B1;
    font-size: 22px;
  }

  .tabs__mobile-toggler:not(:first-child) {
    border-top: 1px solid rgba(51, 51, 51, 0.5019607843);
  }

  .tabs__mobile-toggler.active {
    color: var(--color-accent);
  }

  .tabs__mobile-toggler.active::after {
    rotate: 90deg;
  }

  .tabs__mobile-toggler::after {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    rotate: -90deg;
    transition: all 0.2s ease 0s;
    background: url("../img/icons/angle-left.svg") center 0/contain no-repeat;
  }

  .tabs__body p {
    font-size: 16px;
  }

  .tabs__block {
    padding-bottom: 24px;
  }

  .recommends-products {
    padding-inline: 0px;
  }

  .recommends-products .sc-title {
    font-size: 40px;
    text-align: right;
    padding-inline: 30px;
  }

  .recommends-products--wrap {
    padding: 16px 30px 16px;
    margin-inline: 0px;
  }

  .cart-sidebar__content {
    width: calc(100% - 44px);
  }

  .cart-sidebar__close {
    left: auto;
    right: 8px;
    top: 10px;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  .cart-sidebar__header {
    padding: 16px 16px;
    font-size: 16px;
    gap: 16px;
  }

  .cart-sidebar__title {
    font-size: 42px;
    line-height: 1;
  }

  .cart-sidebar__body {
    padding: 16px;
  }

  .cart-sidebar__footer {
    flex-direction: column;
    gap: 12px;
    padding: 16px 16px 24px;
    height: auto;
  }

  .cart-sidebar__total {
    width: 100%;
    font-size: 26px;
  }

  .cart-sidebar__total b {
    margin-right: auto;
  }

  .cart-sidebar__btn-checkout {
    flex: 0 0 45px;
    width: 100%;
    margin-right: 0;
  }

  .accordion__item {
    min-height: auto;
  }

  .accordion__trigger {
    font-size: 20px;
  }

  .accordion__trigger::after {
    top: 18px;
  }

  .accordion__panel {
    padding-left: 60px;
  }

  .accordion__text,
  .accordion__content {
    padding-block: 16px;
  }

  .page-id-57043 #article h2,
  .page-id-40104 #article h2 {
    margin: 48px 0 px;
    font-size: 24px;
  }

  .page-id-57043 #article h3,
  .page-id-40104 #article h3 {
    margin: 24px 0 18px;
    font-size: 21px;
  }

  .page-id-57043 #article p,
  .page-id-40104 #article p {
    font-size: 16px;
  }

  .page-id-57043 #article blockquote,
  .page-id-40104 #article blockquote {
    margin: 48px 0;
    padding: 32px 16px;
    font-size: 14px;
  }

  .page-id-57043 #article ul,
  .page-id-57043 #article ol,
  .page-id-40104 #article ul,
  .page-id-40104 #article ol {
    font-size: 16px;
  }

  .product-card.is-single {
    flex-direction: column;
    padding: 30px;
  }

  .is-single .product-card__header {
    align-items: center;
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
    width: 285px;
    height: auto;
    aspect-ratio: 1;
  }

  .is-single .product-card__badges {
    top: 30px;
  }

  .is-single .product-card__title {
    font-size: 42px;
  }

  .product-card form.cart {
    margin-bottom: 24px;
    gap: 12px;
  }

  .product-card .single_add_to_cart_button {
    flex: 1 1 auto;
    height: 64px;
    max-width: none;
  }

  body.single-product .single-product-gallery__thumbs {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 52px;
  }

  body.single-product .recommends-recipes .recipe-card {
    flex: 0 0 calc(50% - 6px);
  }

  section.single-product .product-card__header {
    aspect-ratio: initial;
    padding: 0 0 60px;
  }

  section.single-product .product-card__title {
    font-size: 42px;
  }

  section.single-product .product-card__stock-status {
    margin-right: 0;
  }

  section.single-product .single-product-tabs {
    padding: 0;
  }

  .cart-trigger {
    min-width: 64px;
    background-color: var(--color-accent);
  }

  .footer::after {
    width: 750px;
  }

  .footer__logo {
    margin: -50px auto 0;
  }

  .footer__logo img {
    max-width: 110px;
  }

  .footer__main-body {
    gap: 70px;
    padding-block: 60px;
  }

  .footer__contacts-links {
    margin-bottom: 70px;
  }

  .footer__menu {
    display: none;
  }

  .tapbar {
    display: block;
  }

  .popup.open .popup__body {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  .popup__body {
    padding: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  #popup-auth .popup__content {
    max-width: 520px;
  }

  .popup__content {
    width: calc(100vw - 40px);
    margin: 20px;
  }

  .popup__btn-close {
    left: 12px;
    right: auto;
    top: 32px;
    -webkit-filter: brightness(0) saturate(100%) invert(44%) sepia(12%) saturate(450%) hue-rotate(52deg) brightness(95%) contrast(88%);
            filter: brightness(0) saturate(100%) invert(44%) sepia(12%) saturate(450%) hue-rotate(52deg) brightness(95%) contrast(88%);
    opacity: 0.5;
  }

  #popup-product .popup__btn-close {
    top: 30px;
    left: 20px;
  }

  .popup__btn-close img {
    width: 100%;
  }

  body.logged-in.woocommerce-account .account-user-info {
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    gap: 8px;
    margin-bottom: 18px;
  }

  body.logged-in.woocommerce-account .account-user-info__img-wrap {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    box-shadow: 6px 6px 6px rgba(206, 213, 206, 0.3294117647);
    border: 6px solid #fff;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-MyAccount-navigation ul {
    max-width: 420px;
    margin: 0 auto;
    justify-content: center;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-content:has(.woocommerce-MyAccount-navigation)::after {
    width: 330px;
    height: 245px;
    right: -15px;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px;
  }

  .mm-orders__title {
    margin-bottom: 24px;
  }

  .products .sc-head {
    margin-bottom: 24px;
  }

  .category-card {
    border-radius: var(--border-radius--sm);
    aspect-ratio: 222/144;
  }

  .category-card span {
    font-size: 28px;
  }

  .banner {
    margin-bottom: 80px;
  }

  .banner__wrap {
    min-height: 230px;
  }

  .banner__text {
    font-size: 16px;
  }

  .banner__title {
    font-size: min(7.5vw, 56px);
  }

  .our-story {
    background: url("../img/bg/history-mob.png") center 0/cover no-repeat;
    -webkit-mask: url("../img/bg/history-mob.png") center 0/cover no-repeat;
            mask: url("../img/bg/history-mob.png") center 0/cover no-repeat;
  }

  .our-story__wrap {
    max-width: 340px;
    margin: 0 auto;
    gap: 32px;
    min-height: 940px;
  }

  .our-story__title {
    font-size: 40px;
  }

  .our-story__text {
    font-size: 18px;
  }

  .our-story__btn {
    min-width: 220px;
  }

  .recipe-card {
    aspect-ratio: 225/375;
    border-radius: var(--border-radius--md);
    padding: 20px;
  }

  .recipe-card span {
    font-size: 9.1666666667vw;
  }

  .about-us--1::after {
    background: transparent linear-gradient(180deg, #7294C1 0%, rgba(114, 148, 193, 0) 100%) 0% 0% no-repeat padding-box;
    -webkit-mask: url("../img/bg/about-1-mob.png") center 100%/cover no-repeat;
            mask: url("../img/bg/about-1-mob.png") center 100%/cover no-repeat;
  }

  .about-us__text {
    font-size: 16px;
    flex: 0 0 100%;
  }

  .recipes-hero {
    margin-bottom: 32px;
    background: url("../img/bg/recipes-bg-mob.png") center 100%/cover no-repeat;
  }

  .recipes-hero__wrap {
    min-height: 300px;
  }

  .recipes-hero__wrap h1 {
    text-shadow: 9px 9px 9px rgba(0, 0, 0, 0.1607843137);
    font-size: 60px;
  }

  .recipes-grid__list .recipe-card {
    flex: 0 0 calc(50% - 6px);
    aspect-ratio: 32/39;
  }

  .recipes-grid__list .recipe-card span {
    font-size: 5.9895833333vw;
  }

  .recipes-grid__list--products .product-card {
    flex: 0 0 calc(50% - 8px);
  }

  .recipes-search-head {
    gap: 24px;
  }

  .recipes-search-head .recipes-search-title {
    font-size: 42px;
  }

  .business-hero__wrap {
    min-height: 190px;
    padding: 70px 0 40px;
  }

  .contacts-form {
    padding: 30px 10px 10px;
  }

  .contacts-form.support__form-wrap {
    padding: 30px 20px 20px;
  }

  .contacts-form label {
    margin-block: 12px;
  }

  .support {
    padding-top: 40px;
  }

  .support__wrap {
    padding: 40px 0 60px;
    text-align: center;
    gap: 0;
  }

  .support__contacts {
    background: url("../img/bg/support-bg.png") center 100%/auto 230px no-repeat;
    padding-bottom: 260px;
  }

  .support__text {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 30px;
  }

  .contacts {
    flex-direction: column;
  }

  .contacts a {
    border: 1px solid var(--color-light);
    flex-direction: row;
    align-items: center;
    height: 44px;
    border-radius: var(--border-radius--full);
    gap: 12px;
    padding-inline: 12px;
  }

  .contacts a img {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    margin-bottom: 0;
  }

  .contacts a p {
    font-size: 30px;
    position: relative;
    top: -1px;
  }

  .contacts a span {
    font-size: 24px;
    margin-right: auto;
    text-decoration: none;
  }

  .delivery-hero__wrap {
    min-height: 190px;
    padding: 70px 0 40px;
  }

  .delivery {
    margin-bottom: 120px;
  }

  .delivery__title {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-bottom: 0;
  }

  .delivery__text {
    text-align: center;
    max-width: 240px;
    margin: 0 auto 26px;
  }

  .delivery__form {
    margin: 0 auto;
  }

  .delivery__list {
    margin-top: 24px;
    font-size: 16px;
  }

  .delivery__list li {
    gap: 15px;
  }

  .delivery__list li strong {
    font-weight: 500;
    flex: 0 0 140px;
  }

  .delivery__list li strong::after {
    font-weight: 400;
  }

  .sc-gift-card {
    background: #dfe4e7 url("../img/bg/gift-card-bg-mob.jpg") 100% 0/contain no-repeat;
  }

  .sc-gift-card__head {
    margin-bottom: 32px;
    justify-content: center;
    text-align: center;
    max-width: 380px;
    margin-inline: auto;
    padding-inline: 20px;
  }

  .sc-gift-card__head h2 {
    font-size: 28px;
  }

  .sc-gift-card__head b {
    font-size: 20px;
  }

  .sc-gift-card__body {
    padding: 32px 20px;
  }

  .faq-hero__wrap {
    min-height: 240px;
    padding: 70px 16px 40px;
    align-items: center;
  }

  .faq-info {
    margin-bottom: 60px;
  }

  .page-template-page-faq-php .woocommerce-pagination ul.page-numbers {
    margin-top: 48px;
  }

  .b2b--2 .b2b__col > p,
  .b2b--2 .b2b__col > h2 {
    max-width: none;
  }

  .b2b h2 {
    font-size: 48px;
  }

  .b2b p {
    font-size: 16px;
  }

  .b2b__item {
    padding: 32px;
  }

  .b2b__item strong {
    font-size: 36px;
  }

  .wishlist-grid__wrap {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 60px;
  }

  .wishlist-grid__title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .cart-sidebar__title {
    font-size: 30px;
  }

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

  .cart-item__body {
    flex: 0 0 calc(100% - 96px - 24px);
  }

  .cart-item__price-wrap {
    flex-direction: row-reverse;
    flex: 0 0 100%;
    gap: 12px;
  }

  .cart-item .quantity {
    width: 100%;
    max-width: none;
  }

  .product-card .price ins bdi {
    font-size: 14px;
  }

  .product-card .price del bdi {
    font-size: 14px;
  }

  .product-card .quantity {
    width: 100%;
    max-width: none;
  }

  section.single-product .single-product-gallery {
    width: 100%;
    flex: 1 1 auto;
    height: auto;
    aspect-ratio: 1;
  }

  section.single-product .product-card .quantity {
    max-width: 160px;
  }

  .cart-trigger {
    padding-right: 24px;
  }

  .cart-trigger__total {
    display: none;
  }

  .footer::after {
    width: 870px;
  }

  .footer__contacts {
    flex: 0 0 100%;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .footer__contacts-links li {
    flex: 0 0 100%;
  }

  .mm-orders__cell--actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .mm-orders__cell--actions a {
    flex: 0 0 100%;
    width: 100%;
  }

  .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
  .woocommerce-EditAccountForm {
    max-width: none;
  }

  .woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-form input,
  .woocommerce-giftcards .woocommerce-MyAccount-content .woocommerce-MyAccount-Giftcards-form button {
    font-size: 15px;
    padding-inline: 12px;
  }

  .recipes-grid__list .recipe-card {
    aspect-ratio: 42/26;
    flex: 0 0 100%;
  }

  .recipes-grid__list .recipe-card span {
    font-size: 8.75vw;
  }

  .recipe-post__top .recipe-detail,
  .recipe-post__top .author {
    flex: 1 1 auto;
  }

  .order-info {
    margin: 80px 16px;
    max-width: none;
    width: calc(100% - 32px);
    padding: 32px;
  }

  .order-info__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }

  .order-info__title {
    font-size: 42px;
  }

  .order-info__subtitle {
    font-size: 16px;
  }

  .order-info__summary-title {
    font-size: 24px;
  }

  .order-info__table {
    margin-bottom: 24px;
  }

  .order-info__table tr td {
    font-size: 16px;
  }

  .order-info__btn {
    width: 100%;
    height: 48px;
  }

  .woocommerce-lost-password {
    padding-inline: 16px;
  }

  .woocommerce-lost-password .article {
    padding: 32px;
  }

  .gc-unified-form__amounts label span {
    font-size: 21px;
  }

  .b2b--3 .b2b__images {
    display: block;
    display: flex;
    justify-content: center;
    padding: 30px 0;
  }

  .b2b__btn {
    width: 100%;
  }

  .woocommerce-cart .shop_table {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .auth__header {
    font-size: 28px;
  }

  .ant-table-container table tr th,
  .woocommerce-giftcards .woocommerce-MyAccount-content table tr th,
  .ant-table-container table tr td,
  .woocommerce-giftcards .woocommerce-MyAccount-content table tr td {
    font-size: 14px;
  }

  .recipes-hero__wrap {
    min-height: 240px;
  }
}

@media (max-width: 450px) {
  .product-card {
    padding: 16px;
    overflow: hidden;
  }

  .product-card__badges {
    top: 12px;
  }

  .product-card__stock-status {
    font-size: 14px;
    padding-block: 2px;
  }

  .product-card__badge {
    font-size: 14px;
    padding-block: 2px;
  }

  .product-card__quick-view {
    right: 12px;
    top: 100px;
  }

  .product-card__image-wrapper {
    width: 110px;
    height: 110px;
    flex: 0 0 110px;
    margin-bottom: 6%;
  }

  .product-card__title {
    font-size: 20px;
  }

  .product-card__weight {
    font-size: 16px;
  }

  .heart-mask {
    width: 28px;
    right: 10px;
    top: 12px;
  }
}

@media (max-width: 420px) {
  .cart-sidebar__title {
    font-size: 22px;
  }

  .cart-sidebar__shipping-cost {
    font-size: 20px;
  }

  .cart-sidebar__shipping-cost b {
    font-size: 18px;
  }

  .cart-sidebar__total {
    font-size: 20px;
  }

  .cart-item__price-wrap {
    align-items: flex-start;
  }

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

  .recipe-post__video {
    height: 540px;
  }

  .recipe-post__add-all-ingredients {
    font-size: 20px;
  }

  .business-hero__wrap h1 {
    font-size: 52px;
  }

  .contacts-form__title {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 28px;
  }

  .contacts-form__title img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .contacts-form__row input,
  .contacts-form__row textarea {
    font-size: 16px;
  }

  .contacts-form label {
    font-size: 12px;
  }

  .contacts-form input[type=submit] {
    font-size: 20px;
    height: 50px;
  }

  .delivery-hero__wrap h1 {
    font-size: 52px;
  }

  .faq-hero__wrap h1 {
    font-size: 52px;
  }
}

@media (pointer: coarse) and (hover: none) {
  .product-card__quick-view {
    opacity: 1 !important;
    pointer-events: all !important;
  }
}