@charset "UTF-8";
/**
 * Mixin do responsywności oparty na mobile-first.
 * Użycie: @include respond-to(tablet) { ... }
 * 
 * @param {String} $breakpoint - Nazwa breakpointu (mobile-sm, mobile, tablet, desktop, desktop-lg, desktop-xl)
 */
/**
 * Bazowe rozmiary fontów z fluid typography (clamp) dla responsywności
 * Dostosowane do designu lesnezycie
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #6C6C6C;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #242424;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
}

h2 {
  font-size: clamp(28px, 4.5vw, 48px);
}
h2.h2-small {
  font-size: clamp(18px, 2.5vw, 24px);
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
}

p {
  margin-bottom: 1rem;
}

.accent-font {
  font-family: "Raleway", serif;
  font-weight: 500;
  font-style: italic;
}

a {
  color: #242424;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: black;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/**
 * Komponenty przycisków zgodne z designem lesnezycie
 * Wykorzystuje BEM: .button, .button--primary, .button--outline, .button--icon-right
 */
.button, .product-single-custom .single_add_to_cart_button {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  padding: 10px 24px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
}
.button--primary, .woocommerce-message .button, .woocommerce-message .product-single-custom .single_add_to_cart_button, .product-single-custom .woocommerce-message .single_add_to_cart_button, .product-single .single_add_to_cart_button {
  background-color: #A9C2A3;
  color: #FFFFFF;
  border-color: #A9C2A3;
}
.button--primary:hover, .woocommerce-message .button:hover, .woocommerce-message .product-single-custom .single_add_to_cart_button:hover, .product-single-custom .woocommerce-message .single_add_to_cart_button:hover, .product-single .single_add_to_cart_button:hover {
  transform: scale(1.05);
}
.button--outline, .woocommerce-notice .button, .woocommerce-notice .product-single-custom .single_add_to_cart_button, .product-single-custom .woocommerce-notice .single_add_to_cart_button, .woocommerce-error .button, .woocommerce-error .product-single-custom .single_add_to_cart_button, .product-single-custom .woocommerce-error .single_add_to_cart_button, .woocommerce-info .button, .woocommerce-info .product-single-custom .single_add_to_cart_button, .product-single-custom .woocommerce-info .single_add_to_cart_button {
  background-color: #FFFFFF;
  color: #6C6C6C;
  border: 1px solid #A8A8A8;
}
.button--outline:hover, .woocommerce-notice .button:hover, .woocommerce-notice .product-single-custom .single_add_to_cart_button:hover, .product-single-custom .woocommerce-notice .single_add_to_cart_button:hover, .woocommerce-error .button:hover, .woocommerce-error .product-single-custom .single_add_to_cart_button:hover, .product-single-custom .woocommerce-error .single_add_to_cart_button:hover, .woocommerce-info .button:hover, .woocommerce-info .product-single-custom .single_add_to_cart_button:hover, .product-single-custom .woocommerce-info .single_add_to_cart_button:hover {
  background-color: #242424;
  color: #FFFFFF;
  border-color: #242424;
}
.button--underline, .product-single-custom .single_add_to_cart_button, .newsletter-section .wpcf7 .wpcf7-submit {
  padding: 8px 0;
  background-color: transparent;
  color: #242424;
  border: 0;
  border-bottom: 1px solid #3B4F3C;
  transition: all 0.3s ease;
}
.button--underline:hover, .product-single-custom .single_add_to_cart_button:hover, .newsletter-section .wpcf7 .wpcf7-submit:hover {
  transform: scale(1.05);
}

/**
 * Główny kontener strony i flexbox utilities
 * 
 * Kontener główny o maksymalnej szerokości 1260px
 * z responsywnymi paddingami dla różnych szerokości ekranu
 */
.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

*:focus-visible {
  outline: none;
}

/* Globalne nadpisanie wysokości Swipera - dodaj na końcu głównego CSS */
.swiper,
.swiper-wrapper,
.swiper-container,
.swiper-initialized,
.swiper-horizontal,
[class*=swiper-] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* Dodatkowe zabezpieczenie dla konkretnych klas */
.hero-slider__slider,
.featured-products__slider,
.swiper-backface-hidden {
  height: auto !important;
}

/* Usunięcie podkreśleń z cen */
.woocommerce-Price-amount.amount {
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: "Raleway", serif;
}

.featured-products {
  position: relative;
  box-shadow: 0 -1px 0 0 #A8A8A8;
  overflow: hidden;
}
.featured-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #FFFFFF;
  z-index: -1;
}
.featured-products__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .featured-products__container {
    padding: 0 24px;
  }
}
@media (min-width: 1366px) {
  .featured-products__container {
    padding: 0 32px;
  }
}
.featured-products__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1366px) {
  .featured-products__wrapper {
    flex-direction: row;
  }
}
.featured-products__text-box {
  display: flex;
  flex-direction: column;
  padding: 44px 16px;
  width: 100%;
  border-bottom: 1px solid #A8A8A8;
}
@media (min-width: 1366px) {
  .featured-products__text-box {
    width: 25%;
    padding: 44px 32px;
    border-bottom: none;
    border-right: 1px solid #A8A8A8;
    flex-shrink: 0;
  }
}
.featured-products__heading {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .featured-products__heading {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
@media (min-width: 1366px) {
  .featured-products__heading {
    margin-bottom: 24px;
  }
}
.featured-products__description {
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .featured-products__description {
    margin-bottom: auto;
  }
}
.featured-products__description p {
  margin-bottom: 1em;
}
.featured-products__description p:last-child {
  margin-bottom: 0;
}
.featured-products__navigation {
  display: flex;
  gap: 16px;
  margin-top: auto;
}
.featured-products__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #A8A8A8;
  background-color: #FFFFFF;
  color: #242424;
  cursor: pointer;
  transition: all 0.3s ease;
}
.featured-products__nav-btn:hover {
  background-color: #242424;
  border-color: #242424;
  color: #FFFFFF;
}
.featured-products__nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.featured-products__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.featured-products__nav-btn.swiper-button-disabled:hover {
  background-color: #FFFFFF;
  border-color: #A8A8A8;
  color: #242424;
}
.featured-products__slider {
  width: 100%;
  overflow: hidden;
  flex-grow: 1;
}
@media (min-width: 1366px) {
  .featured-products__slider {
    display: flex;
  }
}
.featured-products .featured-products-card a:focus-visible,
.featured-products .featured-products-card button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.featured-products .featured-products-card,
.featured-products .featured-products-swiper-slide,
.featured-products .swiper-slide.featured-products-swiper-slide {
  min-height: 500px !important;
}

.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible,
.swiper-pagination-bullet:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.highlighted-products {
  position: relative;
  overflow: hidden;
}
.highlighted-products__container {
  max-width: 1600px;
  margin: 0 auto;
}
.highlighted-products__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1366px) {
  .highlighted-products__wrapper {
    flex-direction: row;
  }
}
.highlighted-products__text-box {
  display: flex;
  flex-direction: column;
  padding: 44px 16px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #A8A8A8;
}
@media (min-width: 1366px) {
  .highlighted-products__text-box {
    width: 25%;
    padding: 44px 32px;
    box-sizing: unset;
    border-bottom: none;
    border-right: 1px solid #A8A8A8;
  }
  .highlighted-products__text-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background-color: inherit;
    z-index: -1;
  }
}
.highlighted-products__heading {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .highlighted-products__heading {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
@media (min-width: 1366px) {
  .highlighted-products__heading {
    margin-bottom: 24px;
  }
}
.highlighted-products__heading a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.highlighted-products__description {
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .highlighted-products__description {
    margin-bottom: auto;
  }
}
.highlighted-products__description p {
  margin-bottom: 1em;
}
.highlighted-products__description p:last-child {
  margin-bottom: 0;
}
.highlighted-products__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.highlighted-products__navigation {
  display: flex;
  gap: 16px;
  margin-top: auto;
}
.highlighted-products__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #A8A8A8;
  background-color: #FFFFFF;
  color: #242424;
  cursor: pointer;
  transition: all 0.3s ease;
}
.highlighted-products__nav-btn:hover {
  background-color: #242424;
  border-color: #242424;
  color: #FFFFFF;
}
.highlighted-products__nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.highlighted-products__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.highlighted-products__nav-btn.swiper-button-disabled:hover {
  background-color: #FFFFFF;
  border-color: #A8A8A8;
  color: #242424;
}
.highlighted-products__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1366px) {
  .highlighted-products__slider {
    width: 75%;
    display: flex;
  }
  .highlighted-products__slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    width: 100vw;
    background-color: inherit;
    z-index: -1;
  }
}
.highlighted-products .highlighted-products-card {
  border-left: none;
}
.highlighted-products .highlighted-products-card a:focus-visible,
.highlighted-products .highlighted-products-card button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.highlighted-products .highlighted-products-card,
.highlighted-products .highlighted-products-swiper-slide,
.highlighted-products .swiper-slide.highlighted-products-swiper-slide {
  min-height: 500px !important;
}

.highlighted-products .swiper-pagination-bullet:focus-visible,
.highlighted-products .swiper-button-next:focus-visible,
.highlighted-products .swiper-button-prev:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.selected-products {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 #A8A8A8;
}
.selected-products__container {
  max-width: 1600px;
  margin: 0 auto;
}
.selected-products__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1366px) {
  .selected-products__wrapper {
    flex-direction: row;
  }
}
.selected-products__text-box {
  display: flex;
  flex-direction: column;
  padding: 44px 16px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #A8A8A8;
}
@media (min-width: 1366px) {
  .selected-products__text-box {
    width: 25%;
    padding: 44px 32px;
    box-sizing: unset;
    border-bottom: none;
  }
  .selected-products__text-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #A8A8A8;
    z-index: 1;
  }
  .selected-products__text-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background-color: #FFFFFF;
    z-index: -1;
  }
}
.selected-products__heading {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .selected-products__heading {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
@media (min-width: 1366px) {
  .selected-products__heading {
    margin-bottom: 24px;
  }
}
.selected-products__heading a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.selected-products__description {
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .selected-products__description {
    margin-bottom: auto;
  }
}
.selected-products__description p {
  margin-bottom: 1em;
}
.selected-products__description p:last-child {
  margin-bottom: 0;
}
.selected-products__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.selected-products__navigation {
  display: flex;
  gap: 16px;
  margin-top: auto;
}
.selected-products__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #A8A8A8;
  background-color: #FFFFFF;
  color: #242424;
  cursor: pointer;
  transition: all 0.3s ease;
}
.selected-products__nav-btn:hover {
  background-color: #242424;
  border-color: #242424;
  color: #FFFFFF;
}
.selected-products__nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.selected-products__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.selected-products__nav-btn.swiper-button-disabled:hover {
  background-color: #FFFFFF;
  border-color: #A8A8A8;
  color: #242424;
}
.selected-products__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #FFFFFF;
}
@media (min-width: 1366px) {
  .selected-products__slider {
    width: 75%;
    display: flex;
  }
  .selected-products__slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    width: 100vw;
    background-color: #FFFFFF;
    z-index: -1;
  }
}
.selected-products .selected-products-card {
  border-left: none;
}
.selected-products .selected-products-card a:focus-visible,
.selected-products .selected-products-card button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.selected-products .selected-products-card,
.selected-products .selected-products-swiper-slide,
.selected-products .swiper-slide.selected-products-swiper-slide {
  min-height: 500px !important;
}

.selected-products .swiper-pagination-bullet:focus-visible,
.selected-products .swiper-button-next:focus-visible,
.selected-products .swiper-button-prev:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.text-image-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px #A8A8A8;
  background-color: #F7F6F2;
}
.text-image-section::before {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/text-image-section-image2-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  top: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background-position: top right;
  pointer-events: none;
}
@media (min-width: 768px) {
  .text-image-section::before {
    background-image: url("../../assets/img/text-image-section-image2.svg");
    width: 30%;
  }
}
@media (min-width: 1024px) {
  .text-image-section::before {
    width: 25%;
  }
}
.text-image-section__container {
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .text-image-section__container {
    flex-direction: row;
    min-height: 600px;
  }
}
.text-image-section__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .text-image-section__image-wrapper {
    width: 50%;
    aspect-ratio: auto;
    height: auto;
    display: flex;
    margin-left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 24px);
  }
}
@media (min-width: 768px) and (min-width: 1366px) {
  .text-image-section__image-wrapper {
    margin-left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 32px);
  }
}
.text-image-section__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.text-image-section__text-wrapper {
  width: 100%;
  padding: 44px 16px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  height: auto;
  background-color: #F7F6F2;
}
@media (min-width: 768px) {
  .text-image-section__text-wrapper {
    width: 50%;
    padding: 44px 32px;
    border-left: 1px solid #A8A8A8;
  }
  .text-image-section__text-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    width: 100vw;
    background-color: #F7F6F2;
    z-index: -2;
  }
}
@media (min-width: 1024px) {
  .text-image-section__text-wrapper {
    padding: 44px 60px;
  }
}
@media (min-width: 1366px) {
  .text-image-section__text-wrapper {
    padding: 44px 100px;
  }
}
.text-image-section__content {
  position: relative;
  z-index: 1;
}
.text-image-section__title {
  font-family: "Raleway", serif;
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .text-image-section__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.text-image-section__title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.text-image-section__bottom-wrapper {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .text-image-section__bottom-wrapper {
    margin-top: auto;
  }
}
.text-image-section__description {
  color: #6C6C6C;
  font-size: 16px;
  max-width: 425px;
}
.text-image-section__description p:last-child {
  margin-bottom: 0;
}
.text-image-section__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.text-image-section__button {
  align-self: flex-start;
}
.text-image-section__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.inspirations {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #F7F6F2;
}
.inspirations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
  display: none;
}
@media (min-width: 1366px) {
  .inspirations::before {
    display: inline;
  }
}
.inspirations::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
.inspirations__container {
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .inspirations__container {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-areas: "content images";
  }
}
.inspirations__container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  right: 60%;
  background-color: #F7F6F2;
  z-index: -1;
}
@media (min-width: 768px) {
  .inspirations__container::before {
    display: block;
  }
}
.inspirations__mobile-image {
  width: 100%;
  position: relative;
  display: block;
}
.inspirations__mobile-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
.inspirations__mobile-image .swiper-slide {
  height: auto;
}
@media (min-width: 768px) {
  .inspirations__mobile-image {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}
.inspirations__content {
  width: 100%;
  padding: 44px 16px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  height: 100%;
  background-color: #F7F6F2;
}
.inspirations__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
@media (min-width: 768px) {
  .inspirations__content::before {
    top: 0;
    left: auto;
    right: 0;
    width: 1px;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .inspirations__content {
    grid-area: content;
    padding: 44px 32px;
    border-left: none !important;
    box-shadow: none !important;
  }
}
.inspirations__content::after {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/inspirations-image-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 70%;
  background-position: right bottom;
}
@media (min-width: 768px) {
  .inspirations__content::after {
    background-image: url("../../assets/img/inspirations-image.svg");
    left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
    right: auto;
    bottom: 25%;
    width: 60%;
    height: 80%;
    background-position: left bottom;
  }
}
@media (min-width: 1366px) {
  .inspirations__content::after {
    left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
  }
}
.inspirations__title {
  font-family: "Raleway", serif;
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .inspirations__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.inspirations__title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.inspirations__description {
  color: #6C6C6C;
  font-size: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  max-width: 375px;
}
@media (min-width: 768px) {
  .inspirations__description {
    margin-top: auto;
    margin-bottom: 0;
  }
}
.inspirations__description p:last-child {
  margin-bottom: 0;
}
.inspirations__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.inspirations__nav {
  display: flex;
  gap: 16px;
  margin-top: auto;
  z-index: 1;
  position: relative;
}
@media (min-width: 768px) {
  .inspirations__nav {
    display: none;
  }
}
.inspirations__nav button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px #A8A8A8;
  background-color: transparent;
  color: #242424;
  transition: all 0.3s ease;
}
.inspirations__nav button:hover {
  background-color: #242424;
  box-shadow: 0 0 0 1px #242424;
  color: #FFFFFF;
}
.inspirations__nav button:hover img {
  filter: brightness(0) invert(1);
}
.inspirations__nav button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.inspirations__nav button img {
  width: 24px;
  height: 24px;
}
.inspirations__images-grid {
  display: none;
}
@media (min-width: 768px) {
  .inspirations__images-grid {
    grid-area: images;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 0;
    height: 100%;
    position: relative;
    margin-right: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
    width: calc(100% + max(0px, (100vw - 1600px) / 2) + 24px);
  }
}
@media (min-width: 1366px) {
  .inspirations__images-grid {
    margin-right: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
    width: calc(100% + max(0px, (100vw - 1600px) / 2) + 32px);
  }
}
.inspirations__image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
.inspirations__image-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
  z-index: 2;
  position: relative;
}
.inspirations__image-link:nth-child(1)::before, .inspirations__image-link:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
.inspirations__image-link:nth-child(1)::after, .inspirations__image-link:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #A8A8A8;
  z-index: 1;
}
.inspirations__image-link:nth-child(3)::before, .inspirations__image-link:nth-child(4)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
.inspirations__image-link:nth-child(2)::after, .inspirations__image-link:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #A8A8A8;
  z-index: 1;
}
.inspirations__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.inspirations__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
@media (min-width: 1366px) {
  .inspirations__image {
    max-height: 600px;
  }
}
.inspirations__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.inspirations__image-link:hover .inspirations__image-overlay {
  opacity: 1;
}
.inspirations__image-arrow img {
  width: 100px;
  height: 100px;
}

.desktop-hidden,
.inspirations__mobile-image.desktop-hidden {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

.inspirations .swiper-pagination-bullet:focus-visible,
.inspirations .swiper-button-next:focus-visible,
.inspirations .swiper-button-prev:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.our-values {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 0 #A8A8A8, 0 -1px 0 0 #A8A8A8;
  background-color: #F7F6F2;
}
.our-values__container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.our-values__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1024px) {
  .our-values__wrapper {
    flex-direction: row;
  }
}
.our-values__image-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .our-values__image-box {
    height: 920px;
    flex-shrink: 0;
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 24px);
    margin-left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
  }
  .our-values__image-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #A8A8A8;
    z-index: 1;
  }
}
@media (min-width: 1366px) {
  .our-values__image-box {
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 32px);
    margin-left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
  }
}
.our-values__image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.our-values__content-box {
  width: 100%;
  padding: 44px 16px;
  background-color: #F7F6F2;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  background-image: url("../img/our-values-image-mobile.svg");
  background-repeat: no-repeat;
  background-position: right bottom 100px;
  background-size: 120px auto;
}
.our-values__content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  box-shadow: 0 1px 0 0 #A8A8A8;
  z-index: 1;
}
@media (min-width: 1024px) {
  .our-values__content-box::before {
    box-shadow: none;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background-image: url("../img/our-values-image.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    right: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
    bottom: 170px;
    width: 200px;
    height: 300px;
    z-index: 0;
    pointer-events: none;
  }
}
@media (min-width: 1366px) {
  .our-values__content-box::before {
    right: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
  }
}
@media (min-width: 1024px) {
  .our-values__content-box {
    width: 50%;
    height: 920px;
    padding: 100px 64px;
    flex-shrink: 0;
    background-image: none;
  }
  .our-values__content-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    background-color: #F7F6F2;
    z-index: -1;
  }
}
.our-values__main-title {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 64px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .our-values__main-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
@media (min-width: 1024px) {
  .our-values__main-title {
    margin-bottom: 0;
  }
}
.our-values__main-title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.our-values__descriptions {
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .our-values__descriptions {
    margin-top: auto;
  }
}
.our-values__description-block {
  display: flex;
  flex-direction: column;
}
.our-values__description-title {
  font-size: 20px;
  font-weight: 500;
  color: #6C6C6C;
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}
.our-values__description-title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.our-values__description-text {
  font-size: 16px;
  color: #6C6C6C;
  line-height: 1.5;
}
.our-values__description-text p {
  margin-bottom: 1em;
}
.our-values__description-text p:last-child {
  margin-bottom: 0;
}
.our-values__description-text a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.sideboxes-section {
  position: relative;
  overflow: hidden;
}
.sideboxes-section__box-divider {
  display: none;
}
@media (min-width: 1024px) {
  .sideboxes-section__box-divider {
    display: block;
    position: absolute;
    top: 500px;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: #A8A8A8;
    z-index: 2;
  }
}
.sideboxes-section__first-box-bg {
  display: none;
}
@media (min-width: 1024px) {
  .sideboxes-section__first-box-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 500px;
    z-index: 0;
  }
}
.sideboxes-section__second-box-bg {
  display: none;
}
@media (min-width: 1024px) {
  .sideboxes-section__second-box-bg {
    display: block;
    position: absolute;
    top: 500px;
    left: 0;
    width: 50%;
    height: 500px;
    background-color: #F7F6F2;
    z-index: 0;
  }
}
.sideboxes-section__container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.sideboxes-section__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1024px) {
  .sideboxes-section__wrapper {
    flex-direction: row;
  }
}
.sideboxes-section__image-mobile {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: block;
  position: relative;
}
.sideboxes-section__image-mobile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  box-shadow: 0 1px 0 0 #A8A8A8;
  z-index: 1;
}
@media (min-width: 1024px) {
  .sideboxes-section__image-mobile {
    display: none;
  }
}
.sideboxes-section__image-mobile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sideboxes-section__image-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .sideboxes-section__image-desktop {
    display: block;
    height: 1000px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 24px);
    margin-right: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
  }
  .sideboxes-section__image-desktop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #A8A8A8;
    z-index: 1;
  }
}
@media (min-width: 1366px) {
  .sideboxes-section__image-desktop {
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 32px);
    margin-right: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
  }
}
.sideboxes-section__image-desktop img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sideboxes-section__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .sideboxes-section__content {
    width: 50%;
    flex-shrink: 0;
  }
}
.sideboxes-section__box {
  display: flex;
  flex-direction: column;
  padding: 44px 32px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .sideboxes-section__box {
    height: 500px;
    overflow: hidden;
  }
}
.sideboxes-section__box--first {
  background-color: #F7F6F2;
  border-bottom: 1px solid #A8A8A8;
}
@media (min-width: 1024px) {
  .sideboxes-section__box--first {
    background-color: transparent;
    border-bottom: none;
  }
}
.sideboxes-section__box--second {
  background-color: #FFFFFF;
}
.sideboxes-section__box--second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  box-shadow: 0 1px 0 0 #A8A8A8;
  z-index: 1;
}
@media (min-width: 1024px) {
  .sideboxes-section__box--second::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .sideboxes-section__box--second {
    background-color: transparent;
  }
}
.sideboxes-section__title {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 36px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .sideboxes-section__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
@media (min-width: 1024px) {
  .sideboxes-section__title {
    margin-bottom: 64px;
  }
}
.sideboxes-section__title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.sideboxes-section__bottom-content {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .sideboxes-section__bottom-content {
    margin-top: auto;
  }
}
.sideboxes-section__description {
  margin-bottom: 36px;
  max-width: 350px;
}
.sideboxes-section__description p {
  margin-bottom: 1em;
}
.sideboxes-section__description p:last-child {
  margin-bottom: 0;
}
.sideboxes-section__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.sideboxes-section .button--underline, .sideboxes-section .product-single-custom .single_add_to_cart_button, .product-single-custom .sideboxes-section .single_add_to_cart_button, .sideboxes-section .newsletter-section .wpcf7 .wpcf7-submit, .newsletter-section .wpcf7 .sideboxes-section .wpcf7-submit {
  align-self: flex-start;
  display: inline-block;
  width: auto;
}
.sideboxes-section .button--underline:focus-visible, .sideboxes-section .product-single-custom .single_add_to_cart_button:focus-visible, .product-single-custom .sideboxes-section .single_add_to_cart_button:focus-visible, .sideboxes-section .newsletter-section .wpcf7 .wpcf7-submit:focus-visible, .newsletter-section .wpcf7 .sideboxes-section .wpcf7-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.opinions {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url("../img/opinions-leaf-mobile.svg");
  background-repeat: no-repeat;
  background-position: right -150px bottom -25px;
  background-size: auto;
}
@media (min-width: 1024px) {
  .opinions {
    display: flex;
    align-items: center;
    background-image: none;
  }
}
.opinions::before {
  content: "";
  position: absolute;
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .opinions::before {
    display: block;
    background-image: url("../img/opinions-leaf.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right top;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    z-index: 0;
  }
}
.opinions__container {
  position: relative;
  overflow: hidden;
  padding: 44px 0;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .opinions__container {
    padding: 150px 0;
  }
}
.opinions__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1024px) {
  .opinions__wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.opinions__nav-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 0 1px #A8A8A8;
  background-color: transparent;
  color: #242424;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .opinions__nav-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
}
.opinions__nav-btn:hover {
  background-color: #242424;
  border-color: #242424;
  color: #FFFFFF;
}
.opinions__nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.opinions__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.opinions__nav-btn.swiper-button-disabled:hover {
  background-color: transparent;
  box-shadow: 0 0 0 1px #A8A8A8;
  color: #242424;
}
@media (min-width: 1024px) {
  .opinions__prev {
    left: 32px;
  }
}
@media (min-width: 1024px) {
  .opinions__next {
    right: 32px;
  }
}
.opinions__slider {
  width: 100%;
  overflow: visible;
}
@media (min-width: 1024px) {
  .opinions__slider {
    max-width: 100%;
  }
}
.opinions .opinions-swiper {
  height: auto;
  overflow: visible;
}
.opinions .opinions-swiper-wrapper {
  margin: 0;
}
.opinions .opinions-swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.opinions__slide {
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .opinions__slide {
    padding: 0 64px;
  }
}
.opinions__stars {
  margin-bottom: 32px;
}
.opinions__stars img {
  max-width: 100%;
  height: auto;
}
.opinions__content {
  margin-bottom: 32px;
  max-width: 800px;
  width: 100%;
}
.opinions__title {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 32px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .opinions__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.opinions__title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.opinions__description {
  font-size: 16px;
  color: #6C6C6C;
  line-height: 1.5;
}
.opinions__description p {
  margin-bottom: 1em;
}
.opinions__description p:last-child {
  margin-bottom: 0;
}
.opinions__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.opinions__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .opinions__author {
    margin-bottom: 0;
  }
}
.opinions__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.opinions__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.opinions__author-name {
  font-size: 16px;
  color: #6C6C6C;
  font-weight: 400;
}
.opinions__mobile-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .opinions__mobile-navigation {
    display: none;
  }
}
.opinions__mobile-navigation .opinions__nav-btn {
  display: flex;
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 0 1px #A8A8A8;
  background-color: transparent;
  color: #242424;
}
.opinions__mobile-navigation .opinions__nav-btn:hover {
  background-color: transparent;
  color: #3B4F3C;
}
.opinions__mobile-navigation .opinions__nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.opinions__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 1024px) {
  .opinions__background::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    width: 100vw;
    background-color: #FFFFFF;
  }
  .opinions__background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 100vw;
    background-color: #FFFFFF;
  }
}

.opinions .swiper-pagination-bullet:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.trusted-by {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 1px 0 #A8A8A8, 0 -1px 0 #A8A8A8;
}
.trusted-by__container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.trusted-by__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .trusted-by__wrapper {
    flex-direction: row;
  }
}
.trusted-by__title-box {
  background-color: #F7F6F2;
  padding: 44px 32px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .trusted-by__title-box {
    width: 520px;
    flex-shrink: 0;
    height: 200px;
  }
  .trusted-by__title-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background-color: #F7F6F2;
    z-index: -1;
  }
}
.trusted-by__title {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .trusted-by__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.trusted-by__title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.trusted-by__logos-box {
  background-color: #FFFFFF;
  padding: 44px 32px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.trusted-by__logos-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
@media (min-width: 1024px) {
  .trusted-by__logos-box::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .trusted-by__logos-box {
    flex-grow: 1;
    border-left: 1px solid #A8A8A8;
    border-top: 1px solid #A8A8A8;
    height: 200px;
    display: flex;
    align-items: center;
  }
  .trusted-by__logos-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    width: 100vw;
    background-color: #FFFFFF;
    z-index: -1;
  }
}
.trusted-by__logos {
  width: 100%;
}
.trusted-by__logos .swiper-wrapper {
  justify-content: space-around;
}
@media (min-width: 1024px) {
  .trusted-by__logos .swiper-wrapper {
    display: flex;
    align-items: center;
    transform: none !important;
    transition: none !important;
    gap: 5%;
  }
}
@media (min-width: 1366px) {
  .trusted-by__logos .swiper-wrapper {
    justify-content: space-around;
  }
}
.trusted-by__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.trusted-by__logo img {
  width: clamp(120px, 15vw, 180px);
  max-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .trusted-by__logo img {
    width: 160px;
    max-height: 140px;
  }
}
.trusted-by__logo a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.trusted-by__logo.swiper-slide {
  width: auto;
  height: auto;
  margin: 0 !important;
}
@media (min-width: 1024px) {
  .trusted-by__logo.swiper-slide {
    width: 42%;
    flex-shrink: 1;
    min-width: 120px;
  }
}
@media (min-width: 1366px) {
  .trusted-by__logo.swiper-slide {
    width: 28%;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .trusted-by__logo--third {
    display: none !important;
  }
}
.trusted-by .trusted-by-swiper {
  overflow: hidden;
}
.trusted-by .trusted-by-swiper-wrapper {
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}
.trusted-by .trusted-by-swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trusted-by .swiper-pagination-bullet:focus-visible,
.trusted-by .swiper-button-next:focus-visible,
.trusted-by .swiper-button-prev:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.site-footer {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 -1px 0 0 #A8A8A8, 0 1px 0 0 #A8A8A8;
}

.footer {
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .footer {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.footer__box {
  padding: 44px 16px;
  position: relative;
}
@media (min-width: 1024px) {
  .footer__box {
    padding: 44px 32px;
  }
}
.footer__box:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  box-shadow: 0 1px 0 0 #A8A8A8;
  z-index: 1;
}
@media (min-width: 1024px) {
  .footer__box:not(:first-child)::before {
    display: none;
  }
}
.footer__box--primary {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .footer__box--primary {
    width: 33%;
    margin-right: 0;
    box-shadow: 0 1px 0 0 #A8A8A8;
  }
}
.footer__box--menu {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .footer__box--menu {
    flex: 1;
    box-shadow: 0 1px 0 0 #A8A8A8, -1px 0 0 0 #A8A8A8;
  }
}
.footer__box--contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1024px) {
  .footer__box--contact {
    flex: 1;
    box-shadow: 0 1px 0 0 #A8A8A8, -1px 0 0 0 #A8A8A8;
  }
}
.footer__logo {
  max-width: 150px;
}
.footer__logo-img {
  width: 100%;
  height: auto;
}
.footer__logo a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.footer__newsletter {
  margin-top: 32px;
}
.footer__newsletter .wpcf7 {
  width: 100%;
}
.footer__newsletter .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.footer__newsletter .wpcf7 .wpcf7-form p {
  margin: 0;
  padding: 0;
}
.footer__newsletter .wpcf7 br {
  display: none;
}
.footer__newsletter .wpcf7 .form-field {
  margin-bottom: 16px;
  position: relative;
}
.footer__newsletter .wpcf7 .form-field:last-of-type {
  margin-bottom: 0;
}
.footer__newsletter .wpcf7 .form-label {
  display: block;
  font-size: 16px;
  color: #242424;
  margin-bottom: 8px;
  margin-top: 0;
}
.footer__newsletter .wpcf7 label {
  margin: 0;
  padding: 0;
}
.footer__newsletter .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin: 0;
  padding: 0;
}
.footer__newsletter .wpcf7 .wpcf7-form-control-wrap input[type=text],
.footer__newsletter .wpcf7 .wpcf7-form-control-wrap input[type=email] {
  width: 100%;
  height: 40px;
  border: none;
  box-shadow: 0 1px 0 0 #A8A8A8;
  background-color: transparent;
  padding: 0;
  font-size: 16px;
  color: #242424;
  margin-top: 0;
  transition: box-shadow 0.3s ease;
}
.footer__newsletter .wpcf7 .wpcf7-form-control-wrap input[type=text]::-moz-placeholder, .footer__newsletter .wpcf7 .wpcf7-form-control-wrap input[type=email]::-moz-placeholder {
  color: #A8A8A8;
}
.footer__newsletter .wpcf7 .wpcf7-form-control-wrap input[type=text]::placeholder,
.footer__newsletter .wpcf7 .wpcf7-form-control-wrap input[type=email]::placeholder {
  color: #A8A8A8;
}
.footer__newsletter .wpcf7 .wpcf7-form-control-wrap input[type=text]:focus,
.footer__newsletter .wpcf7 .wpcf7-form-control-wrap input[type=email]:focus {
  outline: none;
  box-shadow: 0 1px 0 0 #3B4F3C;
}
.footer__newsletter .wpcf7 .form-consent {
  margin-top: 16px;
  margin-bottom: 16px;
}
.footer__newsletter .wpcf7 .consent-text {
  font-size: 14px;
  color: #6C6C6C;
  display: block;
}
.footer__newsletter .wpcf7 .consent-text .wpcf7-acceptance {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.footer__newsletter .wpcf7 .consent-text input[type=checkbox] {
  margin-right: 4px;
}
.footer__newsletter .wpcf7 .consent-text a {
  color: #6C6C6C;
  text-decoration: underline;
}
.footer__newsletter .wpcf7 .consent-text a:hover {
  color: #3B4F3C;
}
.footer__newsletter .wpcf7 .form-submit {
  margin-top: 0;
}
.footer__newsletter .wpcf7 .wpcf7-submit {
  background: none;
  border: none;
  box-shadow: 0 1px 0 0 #3B4F3C;
  color: #242424;
  padding: 8px 0;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer__newsletter .wpcf7 .wpcf7-submit:hover {
  color: #3B4F3C;
}
.footer__newsletter .wpcf7 .wpcf7-response-output {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 12px;
  box-shadow: 0 0 0 1px #A8A8A8;
  font-size: 14px;
}
.footer__newsletter .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  box-shadow: 0 0 0 1px #f7e700;
}
.footer__newsletter .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  box-shadow: 0 0 0 1px #3B4F3C;
}
.footer__newsletter .wpcf7 .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  margin-top: 4px;
}
.footer__newsletter .wpcf7 span.wpcf7-form-control-wrap {
  margin-top: 0;
}
.footer__description {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #6C6C6C;
}
@media (min-width: 1024px) {
  .footer__description {
    margin-top: 100px;
  }
}
.footer__description p {
  margin-bottom: 16px;
}
.footer__description p:last-child {
  margin-bottom: 0;
}
.footer__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.footer__info {
  margin-top: 24px;
}
.footer__info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer__info-item:last-child {
  margin-bottom: 0;
}
.footer__info-icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C6C6C;
}
.footer__info-text {
  font-size: 16px;
  color: #6C6C6C;
}
.footer__menu-title {
  font-size: 14px;
  font-weight: 500;
  color: #242424;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu li {
  margin-bottom: 12px;
}
.footer__menu li:last-child {
  margin-bottom: 0;
}
.footer__menu a {
  font-size: 16px;
  color: #6C6C6C;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__menu a:hover {
  color: #3B4F3C;
}
.footer__menu a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.footer__contact-info {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #6C6C6C;
}
.footer__contact-info p {
  margin-bottom: 16px;
}
.footer__contact-info p:last-child {
  margin-bottom: 0;
}
.footer__contact-info a {
  color: #6C6C6C;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-info a:hover {
  color: #3B4F3C;
}
.footer__contact-info a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.footer__social {
  margin-top: auto;
  display: flex;
  align-items: center;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .footer__social {
    margin-top: auto;
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #6C6C6C;
  transition: color 0.3s ease;
}
.footer__social-link:last-child {
  margin-right: 0;
}
.footer__social-link:hover {
  color: #3B4F3C;
}
.footer__social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.topbar {
  background-color: #9E8476;
  color: #FFFFFF;
  position: relative;
  z-index: 100;
  width: 100%;
}
.topbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .topbar__content {
    padding: 8px 32px;
  }
}
.topbar__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .topbar__text {
    font-size: 16px;
  }
}
.topbar__close {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  transition: opacity 0.3s ease;
  z-index: 101;
  position: relative;
}
.topbar__close:hover {
  opacity: 0.8;
}
.topbar__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.topbar__close-icon {
  display: block;
  font-size: 24px;
  line-height: 1;
}
.topbar.hidden {
  display: none;
}
.topbar.topbar-init {
  display: none;
}

.site-header {
  background-color: #FFFFFF;
  position: relative;
  width: 100%;
  box-shadow: 0 1px 0 0 #A8A8A8, 0 -1px 0 0 #A8A8A8;
  z-index: 100;
}
.site-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-header__wrapper {
    padding: 16px 32px;
  }
}
.site-header .container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.site-header__logo {
  display: flex;
  align-items: center;
}
.site-header__logo img {
  max-height: 48px;
  width: auto;
}
@media (min-width: 768px) {
  .site-header__logo img {
    max-height: 64px;
  }
}
.site-header__logo .site-title {
  margin-bottom: 0;
  font-size: 18px;
}
.site-header__logo .site-title a {
  color: #242424;
  text-decoration: none;
}
.site-header__logo .site-title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.site-header__nav-group {
  display: none;
  align-items: center;
}
@media (min-width: 1024px) {
  .site-header__nav-group {
    display: flex;
  }
}
.site-header__navigation {
  display: block;
}
.site-header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu li {
  margin: 0 12px;
}
@media (min-width: 1366px) {
  .site-header__menu li {
    margin: 0 24px;
  }
}
.site-header__menu li:first-child {
  margin-left: 0;
}
.site-header__menu li:last-child {
  margin-right: 0;
}
.site-header__menu a {
  color: #242424;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 4px 0;
}
.site-header__menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #3B4F3C;
  transition: width 0.3s ease;
}
.site-header__menu a:hover:after, .site-header__menu a:focus:after {
  width: 100%;
}
.site-header__menu a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.site-header__menu .current-menu-item a:after,
.site-header__menu .current_page_item a:after,
.site-header__menu .current-page-parent a:after {
  width: 100%;
}
.site-header__icons {
  display: flex;
  align-items: center;
  margin-left: 64px;
}
.site-header__icons > * {
  margin-left: 24px;
}
@media (min-width: 1024px) {
  .site-header__icons > * {
    margin-left: 32px;
  }
}
.site-header__icons > *:first-child {
  margin-left: 0;
}
.site-header__mobile-actions {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .site-header__mobile-actions {
    display: none;
  }
}
.site-header__mobile-actions .site-header__search-toggle-mobile {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
.site-header__mobile-actions .site-header__search-toggle-mobile img {
  width: 24px;
  height: 24px;
  display: block;
}
.site-header__mobile-actions .site-header__search-toggle-mobile:hover {
  opacity: 0.7;
}
.site-header__mobile-actions .site-header__search-toggle-mobile:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.site-header__search-toggle, .site-header__cart, .site-header__account {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.site-header__search-toggle img, .site-header__cart img, .site-header__account img {
  width: 24px;
  height: 24px;
  display: block;
}
.site-header__search-toggle:hover, .site-header__cart:hover, .site-header__account:hover {
  opacity: 0.7;
}
.site-header__search-toggle:focus-visible, .site-header__cart:focus-visible, .site-header__account:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.site-header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
  /* Animacja */
}
@media (min-width: 1024px) {
  .site-header__menu-toggle {
    display: none;
  }
}
.site-header__menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #242424;
  transition: all 0.3s ease;
  transform-origin: center;
}
.site-header__menu-toggle:hover span {
  background-color: #3B4F3C;
}
.site-header__menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.site-header__menu-toggle.animated span:nth-child(1) {
  animation: toggle-top-bar 0.5s ease forwards;
}
.site-header__menu-toggle.animated span:nth-child(2) {
  animation: toggle-middle-bar 0.5s ease forwards;
}
.site-header__menu-toggle.animated span:nth-child(3) {
  animation: toggle-bottom-bar 0.5s ease forwards;
}
.site-header__menu-close {
  position: fixed;
  top: 64px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .site-header__menu-close {
    right: 64px;
  }
}
.site-header__menu-close:before, .site-header__menu-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #242424;
  transition: all 0.3s ease;
}
.site-header__menu-close:before {
  transform: translateY(-50%) rotate(45deg);
}
.site-header__menu-close:after {
  transform: translateY(-50%) rotate(-45deg);
}
.site-header__menu-close:hover {
  transform: scale(1.1);
}
.site-header__menu-close:hover:before, .site-header__menu-close:hover:after {
  background-color: #3B4F3C;
}
.site-header__menu-close:hover:before {
  transform: translateY(-50%) rotate(225deg);
}
.site-header__menu-close:hover:after {
  transform: translateY(-50%) rotate(135deg);
}
.site-header__menu-close.animated:before {
  animation: x-spin-1 0.5s ease forwards;
}
.site-header__menu-close.animated:after {
  animation: x-spin-2 0.5s ease forwards;
}
.site-header__menu-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.site-header__cart {
  position: relative;
}
.site-header__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #A9C2A3;
  color: #FFFFFF;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.site-header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(-100%);
}
.site-header__mobile-menu-inner {
  padding: 80px 16px 40px;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-header__mobile-menu-inner {
    padding: 80px 64px 40px;
  }
}
.site-header__mobile-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.site-header__mobile-menu.active ~ .site-header__wrapper .site-header__menu-toggle {
  display: none;
}

/* Animacje dla przycisku hamburger */
@keyframes toggle-top-bar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9px);
  }
  100% {
    transform: translateY(9px) rotate(45deg);
  }
}
@keyframes toggle-middle-bar {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes toggle-bottom-bar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}
/* Animacje dla przycisku X */
@keyframes x-spin-1 {
  0% {
    transform: translateY(-50%) rotate(45deg);
  }
  100% {
    transform: translateY(-50%) rotate(225deg);
  }
}
@keyframes x-spin-2 {
  0% {
    transform: translateY(-50%) rotate(-45deg);
  }
  100% {
    transform: translateY(-50%) rotate(135deg);
  }
}
.mobile-navigation {
  padding-top: 64px;
}
.mobile-navigation__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-navigation__menu li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(168, 168, 168, 0.3);
}
.mobile-navigation__menu li:last-child {
  border-bottom: 0;
}
.mobile-navigation__menu a {
  color: #242424;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 16px 0;
  position: relative;
  transition: color 0.3s ease;
}
.mobile-navigation__menu a:hover, .mobile-navigation__menu a:focus {
  color: #3B4F3C;
}
.mobile-navigation__menu a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.mobile-navigation__menu .current-menu-item a,
.mobile-navigation__menu .current_page_item a {
  color: #3B4F3C;
}
.mobile-navigation__menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
}
.mobile-navigation__menu .sub-menu li {
  border-bottom: 0;
  border-top: 1px solid rgba(168, 168, 168, 0.3);
}
.mobile-navigation__menu .sub-menu li:first-child {
  margin-top: 0;
}
.mobile-navigation__menu .sub-menu a {
  font-size: 16px;
  padding: 12px 0;
}
.mobile-navigation__icons {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}
.mobile-navigation__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #242424;
  transition: color 0.3s ease;
}
.mobile-navigation__icon:first-child {
  margin-right: 32px;
}
.mobile-navigation__icon:hover, .mobile-navigation__icon:focus {
  color: #3B4F3C;
}
.mobile-navigation__icon:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.mobile-navigation__icon img {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}
.mobile-navigation__icon-text {
  font-weight: 500;
  font-size: 16px;
}
.mobile-navigation__cart {
  position: relative;
}
.mobile-navigation__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #A9C2A3;
  color: #FFFFFF;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay__content {
  width: 100%;
  max-width: 1600px;
  position: relative;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .search-overlay__content {
    padding: 0 32px;
  }
}
.search-overlay .search-form {
  position: relative;
}
.search-overlay .search-form .search-field {
  width: 100%;
  border: none;
  border-bottom: 1px solid #A8A8A8;
  padding: 16px 48px 16px 0;
  font-size: 18px;
  background: transparent;
}
.search-overlay .search-form .search-field:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 79, 60, 0.2);
  border-color: #3B4F3C;
}
.search-overlay .search-form .search-submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.search-overlay .search-form .search-submit img {
  width: 24px;
  height: 24px;
  display: block;
}
.search-overlay .search-form .search-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.search-overlay__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-overlay__close:hover {
  opacity: 0.7;
}
.search-overlay__close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

@media (max-width: 479px) {
  .site-header__wrapper {
    padding: 16px 16px;
    justify-content: space-between;
  }
}
body.menu-open,
body.search-open {
  overflow: hidden;
}

.site-header__search {
  margin-right: 0;
}
.site-header__search .dgwt-wcas-search-wrapp {
  min-width: auto;
}
.site-header__search-mobile {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.site-header__search-mobile .dgwt-wcas-search-wrapp {
  min-width: auto;
}
.site-header__icons > .site-header__search {
  margin-left: 0;
}

.dgwt-wcas-ico-magnifier {
  max-width: 24px;
  max-height: 24px;
}

.dgwt-wcas-search-wrapp {
  max-width: 100%;
}

.dgwt-wcas-search-submit:focus,
.dgwt-wcas-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 79, 60, 0.5);
}

.hero-slider {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  border-top: 1px solid #A8A8A8;
  border-bottom: 1px solid #A8A8A8;
  overflow: hidden;
}
.hero-slider__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 1366px) {
  .hero-slider__wrapper {
    flex-direction: row;
    height: 580px;
  }
}
.hero-slider__intro {
  background-color: #F7F6F2;
  padding: 44px 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 0 1px #A8A8A8;
}
.hero-slider__intro:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: #F7F6F2;
}
@media (min-width: 768px) {
  .hero-slider__intro {
    padding: 44px 32px;
  }
}
@media (min-width: 1024px) {
  .hero-slider__intro {
    padding: 64px 32px;
  }
}
@media (min-width: 1366px) {
  .hero-slider__intro {
    flex: 0 0 60%;
    border-right: 1px solid #A8A8A8;
  }
}
.hero-slider__title {
  font-size: clamp(32px, 5vw, 56px);
  color: #242424;
  max-width: 650px;
  margin: 0 0 32px 0;
  text-transform: uppercase;
  position: relative;
}
@media (min-width: 1366px) {
  .hero-slider__title {
    margin-bottom: 0;
  }
}
.hero-slider__description {
  color: #6C6C6C;
  max-width: 525px;
  position: relative;
}
@media (min-width: 1366px) {
  .hero-slider__description {
    margin-top: auto;
  }
}
.hero-slider__products {
  background-color: #FFFFFF;
  padding: 44px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-slider__products:before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .hero-slider__products {
    padding: 44px 32px;
  }
}
@media (min-width: 1024px) {
  .hero-slider__products {
    padding: 64px 32px;
  }
}
@media (min-width: 1366px) {
  .hero-slider__products {
    flex: 0 0 40%;
    justify-content: center;
  }
}
.hero-slider__products-images {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 44px;
  margin-bottom: 20px;
  z-index: 10;
  height: 300px;
}
@media (min-width: 768px) {
  .hero-slider__products-images {
    height: 400px;
  }
}
@media (min-width: 1366px) {
  .hero-slider__products-images {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 493px;
    margin: 0;
  }
}
.hero-slider__product-image-wrapper {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slider__product-image-wrapper.active {
  display: flex;
  animation: fadeInProduct 0.6s ease forwards;
}
@media (min-width: 1366px) {
  .hero-slider__product-image-wrapper {
    position: static;
  }
}
.hero-slider__product-image-wrapper img {
  width: auto;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .hero-slider__product-image-wrapper img {
    height: 400px;
  }
}
@media (min-width: 1366px) {
  .hero-slider__product-image-wrapper img {
    width: 125.9px;
    height: 492.99px;
  }
}
.hero-slider__tag {
  display: inline-block;
  font-size: 14px;
  color: #FFFFFF;
  background-color: #A9C2A3;
  padding: 8px 16px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.hero-slider__slides {
  position: relative;
  width: 100%;
  max-width: 300px;
  min-height: 220px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-slider__slides {
    min-height: 240px;
  }
}
@media (min-width: 1366px) {
  .hero-slider__slides {
    display: flex;
    flex-direction: column;
    min-height: 0;
    text-align: left;
  }
}
.hero-slider__slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero-slider__slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.hero-slider__product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1366px) {
  .hero-slider__product-content {
    align-items: flex-start;
  }
}
.hero-slider__product-content a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.hero-slider__product-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.active .hero-slider__product-details {
  animation: fadeInDetails 0.6s ease forwards;
}
@media (min-width: 1366px) {
  .hero-slider__product-details {
    align-items: flex-start;
  }
}
.hero-slider__product-title {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 16px 0;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1366px) {
  .hero-slider__product-title {
    text-align: left;
  }
}
.hero-slider__product-title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.hero-slider__product-description {
  color: #6C6C6C;
  margin-bottom: 16px;
  text-align: center;
}
@media (min-width: 1366px) {
  .hero-slider__product-description {
    text-align: left;
  }
}
.hero-slider__product-button {
  margin-bottom: 24px;
  align-self: center;
}
@media (min-width: 1366px) {
  .hero-slider__product-button {
    align-self: flex-start;
  }
}
.hero-slider__product-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.hero-slider__navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  position: relative;
}
@media (min-width: 1366px) {
  .hero-slider__navigation {
    justify-content: flex-start;
  }
}
.hero-slider__nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #A8A8A8;
  color: #242424;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider__nav-button:hover {
  background-color: #242424;
  color: #FFFFFF;
}
.hero-slider__nav-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

@keyframes fadeInProduct {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDetails {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-archive-wrapper {
  width: 100%;
  float: none;
  clear: both;
  display: block;
  overflow: hidden;
}

.product-archive {
  position: relative;
  margin-bottom: 0;
}
.product-archive__intro {
  margin-bottom: 0;
}
.product-archive__intro-content {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .product-archive__intro-content {
    flex-direction: row;
  }
}
.product-archive__intro-text {
  padding: 44px 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .product-archive__intro-text {
    width: 50%;
    padding: 64px 32px;
  }
}
.product-archive__intro-image {
  height: 400px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .product-archive__intro-image {
    width: 50%;
    height: auto;
  }
}
.product-archive__intro-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .product-archive__intro-image img {
    height: 640px;
  }
}
.product-archive__title {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 32px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .product-archive__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.product-archive__description {
  max-width: 450px;
}
@media (min-width: 1024px) {
  .product-archive__description {
    margin-bottom: 0;
  }
}
.product-archive__description p {
  margin-bottom: 1em;
}
.product-archive__description p:last-child {
  margin-bottom: 0;
}
.product-archive__search {
  margin-top: 32px;
  max-width: 330px;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-archive__search {
    margin-top: auto;
  }
}
.product-archive__search-label {
  display: block;
  font-size: 16px;
  margin-bottom: 16px;
  color: #242424;
}
.product-archive__search-form {
  width: 100%;
}
.product-archive__search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.product-archive__search-input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #A8A8A8;
  background-color: transparent;
  padding: 0 40px 0 0;
  font-size: 16px;
  color: #242424;
}
.product-archive__search-input::-moz-placeholder {
  color: #A8A8A8;
}
.product-archive__search-input::placeholder {
  color: #A8A8A8;
}
.product-archive__search-input:focus {
  outline: none;
  border-color: #3B4F3C;
}
.product-archive__search-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #6C6C6C;
}
.product-archive__search-button:hover {
  color: #242424;
}
.product-archive__search .dgwt-wcas-search-wrapp {
  max-width: 100%;
  width: 100%;
}
.product-archive__search .dgwt-wcas-sf-wrapp {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid #A8A8A8;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.product-archive__search .dgwt-wcas-sf-wrapp:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 21L15 15M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z' stroke='%23242424' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  cursor: pointer;
}
.product-archive__search .dgwt-wcas-search-submit,
.product-archive__search .dgwt-wcas-ico-magnifier {
  display: none !important;
}
.product-archive__search .dgwt-wcas-search-submit:before {
  display: none !important;
}
.product-archive__search .dgwt-wcas-preloader {
  right: 30px;
}
.product-archive__search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  background: transparent;
  color: #242424;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  border: none;
  height: 40px;
  padding: 0 30px 0 0;
}
.product-archive__search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::-moz-placeholder {
  color: #A8A8A8;
  opacity: 1;
}
.product-archive__search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
  color: #A8A8A8;
  opacity: 1;
}
.product-archive__search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #3B4F3C;
}
.product-archive__search .dgwt-wcas-suggestions-wrapp {
  border-radius: 0;
  border: 1px solid #A8A8A8;
  margin-top: 5px;
  background: #FFFFFF;
}
.product-archive__search .dgwt-wcas-suggestion {
  border-bottom: 1px solid rgba(168, 168, 168, 0.3);
  padding: 12px;
}
.product-archive__search .dgwt-wcas-suggestion:last-child {
  border-bottom: none;
}
.product-archive__search .dgwt-wcas-st {
  color: #242424;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 0;
}
.product-archive__search .dgwt-wcas-st-breadcrumbs {
  margin-top: 3px;
}
.product-archive__search .dgwt-wcas-sku {
  display: none;
}
.product-archive__search .dgwt-wcas-si {
  width: 60px;
  height: 60px;
}
.product-archive__search .dgwt-wcas-sp {
  color: #6C6C6C;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
.product-archive__search .dgwt-wcas-sp del .amount {
  text-decoration: line-through;
  color: #A8A8A8;
  margin-right: 5px;
}
.product-archive__search .dgwt-wcas-sp ins {
  text-decoration: none;
}
.product-archive__search .dgwt-wcas-sp .amount {
  color: #6C6C6C;
}
.product-archive__search .dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline {
  background-color: #F7F6F2;
  padding: 8px 12px;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #A8A8A8;
}
.product-archive__search .dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline .dgwt-wcas-st {
  font-weight: 500;
}
.product-archive__search .dgwt-wcas-suggestion-more {
  background-color: #F7F6F2;
  padding: 10px;
  text-align: center;
}
.product-archive__search .dgwt-wcas-suggestion-more .dgwt-wcas-st {
  color: #3B4F3C;
}
.product-archive__search .dgwt-wcas-suggestion-more .dgwt-wcas-st:hover {
  text-decoration: underline;
}
.product-archive__filters {
  width: 100%;
  clear: both;
  margin-bottom: 0;
  background-color: #F7F6F2;
  box-shadow: 0 1px 0 0 #A8A8A8, 0 -1px 0 0 #A8A8A8;
}
.product-archive__filters .container {
  padding: 32px;
}
@media (max-width: 1023px) {
  .product-archive__filters .container {
    padding-right: 0;
  }
}
.product-archive__categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0;
  padding: 0;
}
.product-archive__categories::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .product-archive__categories {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -12px;
  }
}
.product-archive__category {
  display: inline-block;
  padding: 10px 24px;
  background-color: #FFFFFF;
  border: 1px solid #A8A8A8;
  color: #6C6C6C;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-right: 24px;
}
@media (min-width: 1024px) {
  .product-archive__category {
    margin: 12px;
  }
}
.product-archive__category:hover {
  background-color: #A9C2A3;
  color: #FFFFFF;
  border-color: #A9C2A3;
}
.product-archive__category--active {
  background-color: #A9C2A3;
  color: #FFFFFF;
  border-color: #A9C2A3;
}
.product-archive__products {
  margin-bottom: 0;
  width: 100%;
  clear: both;
}
.product-archive__products .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}
.product-archive__slider {
  width: 100%;
  overflow: hidden;
}
.product-archive__grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
.product-archive__grid.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}
.product-archive__grid.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #F7F6F2;
  border-top: 4px solid #3B4F3C;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}
.product-archive__no-products {
  text-align: center;
  padding: 64px 0;
  width: 100%;
}
.product-archive__clearfix {
  clear: both;
  width: 100%;
  height: 0;
  overflow: hidden;
  display: block;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.product-archive-card {
  border-bottom: 1px solid #A8A8A8 !important;
}

.product-archive .product,
.product-archive li.product,
.product-archive .product-card,
.product-archive .useful-products .useful-products-card,
.useful-products .product-archive .useful-products-card,
.product-archive .featured-products .featured-products-card,
.featured-products .product-archive .featured-products-card,
.product-archive .highlighted-products .highlighted-products-card,
.highlighted-products .product-archive .highlighted-products-card,
.product-archive .selected-products .selected-products-card,
.selected-products .product-archive .selected-products-card,
.product-archive .product-archive-card,
.woocommerce .product-archive .product {
  border-bottom: 1px solid #A8A8A8 !important;
}

body.woocommerce-shop aside#secondary.widget-area,
body.tax-product_cat aside#secondary.widget-area {
  display: none;
}

.woocommerce-breadcrumb {
  display: none !important;
}

body.woocommerce-shop footer,
body.tax-product_cat footer {
  clear: both;
  width: 100%;
  float: none;
  display: block;
  position: relative;
}

.widget_recent_entries,
.widget_recent_comments,
.widget_archive,
.widget_categories,
.recent-posts,
.recent-comments,
.archives,
.categories {
  display: none;
}

body.woocommerce-shop .content-area,
body.tax-product_cat .content-area {
  width: 100%;
  float: none;
}

body.woocommerce-shop .site-main,
body.tax-product_cat .site-main {
  margin-right: 0;
}

.woocommerce-result-count,
.woocommerce-ordering {
  display: none !important;
}

.add_to_cart_button,
.button.product_type_simple,
.product-single-custom .product_type_simple.single_add_to_cart_button {
  display: none !important;
}

.star-rating {
  display: none !important;
}

@media (min-width: 1024px) {
  .product-archive-swiper-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .product-archive-swiper-slide {
    width: 25% !important;
  }
}
.product-single-wrapper {
  width: 100%;
  float: none;
  clear: both;
  display: block;
  overflow: hidden;
}

.product-single {
  margin-bottom: 64px;
}
.product-single__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .product-single__wrapper {
    flex-direction: row;
    gap: 64px;
  }
}
.product-single__summary {
  padding: 32px 0;
}
@media (min-width: 1024px) {
  .product-single__summary {
    width: 50%;
    padding: 0;
  }
}
.product-single .product_title {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 24px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .product-single .product_title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.product-single .price {
  font-size: 18px;
  color: #6C6C6C;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.product-single .price del {
  text-decoration: line-through;
  color: #A8A8A8;
}
.product-single .price ins {
  text-decoration: none;
  color: #6C6C6C;
  font-weight: 500;
}
.product-single .woocommerce-product-details__short-description {
  margin-bottom: 32px;
}
.product-single .woocommerce-product-details__short-description p {
  margin-bottom: 1em;
}
.product-single .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}
.product-single .woocommerce-product-gallery {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .product-single .woocommerce-product-gallery {
    width: 50%;
    margin-bottom: 0;
  }
}
.product-single .woocommerce-product-gallery .woocommerce-product-gallery__image {
  border: 1px solid #A8A8A8;
  margin-bottom: 16px;
}
.product-single .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}
.product-single .woocommerce-product-gallery .flex-control-thumbs li {
  width: calc(25% - 12px);
}
.product-single .woocommerce-product-gallery .flex-control-thumbs li img {
  border: 1px solid #A8A8A8;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.product-single .woocommerce-product-gallery .flex-control-thumbs li img.flex-active, .product-single .woocommerce-product-gallery .flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: #3B4F3C;
}
.product-single .woocommerce-tabs {
  display: none !important;
}

body.single-product aside#secondary.widget-area {
  display: none;
}

.woocommerce-breadcrumb {
  display: none !important;
}

.widget_recent_entries,
.widget_recent_comments,
.widget_archive,
.widget_categories,
.recent-posts,
.recent-comments,
.archives,
.categories {
  display: none;
}

body.single-product .content-area {
  width: 100%;
  float: none;
}

body.single-product .site-main {
  margin-right: 0;
}

.woocommerce-product-rating {
  display: none !important;
}

.up-sells.upsells.products {
  display: none !important;
}

.woocommerce-tabs.wc-tabs-wrapper {
  display: none !important;
}

.related.products {
  display: none !important;
}

.single-product-description {
  position: relative;
  overflow: hidden;
  box-shadow: none;
  margin-top: -1px;
  background-color: #F7F6F2;
}
.single-product-description__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .single-product-description__wrapper {
    flex-direction: row;
  }
}
.single-product-description__image-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px #A8A8A8;
}
@media (min-width: 1024px) {
  .single-product-description__image-box {
    height: auto;
    flex-shrink: 0;
    box-shadow: none;
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 24px);
    margin-left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
  }
  .single-product-description__image-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #A8A8A8;
    z-index: 1;
  }
}
@media (min-width: 1366px) {
  .single-product-description__image-box {
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 32px);
    margin-left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
  }
}
.single-product-description__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1024px) {
  .single-product-description__image {
    min-height: 100%;
  }
}
.single-product-description__content-box {
  width: 100%;
  padding: 44px 16px 64px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent, -1px 0 0 0 #A8A8A8;
  margin-top: -1px;
}
@media (min-width: 1024px) {
  .single-product-description__content-box {
    width: 50%;
    flex-shrink: 0;
    min-height: 0;
    padding: 100px 64px 100px;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
}
.single-product-description__content-box::before {
  content: "";
  position: absolute;
  display: none;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .single-product-description__content-box::before {
    display: block;
    background-image: url("../img/single-product-desc-image.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    right: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
    top: 60px;
    width: 200px;
    height: 300px;
    z-index: 0;
  }
}
@media (min-width: 1366px) {
  .single-product-description__content-box::before {
    right: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
  }
}
@media (min-width: 1024px) {
  .single-product-description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F7F6F2;
    z-index: 0;
    box-shadow: none;
  }
  .single-product-description::after {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 100vw;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 0;
    box-shadow: none;
  }
}
.single-product-description__title {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .single-product-description__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.single-product-description__text {
  margin-top: 64px;
  margin-bottom: 0;
  color: #6C6C6C;
  max-width: 385px;
  position: relative;
  z-index: 1;
}
.single-product-description__text p {
  margin-bottom: 1em;
}
.single-product-description__text p:last-child {
  margin-bottom: 0;
}

.single-product-description > .single-product-description__bottom-line, .single-product-description:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 2;
}

.newsletter-section {
  position: relative;
  z-index: 100;
  box-shadow: 0 -1px 0 0 #A8A8A8;
}
.newsletter-section__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .newsletter-section__wrapper {
    flex-direction: row;
    align-items: stretch;
  }
}
.newsletter-section__left {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .newsletter-section__left {
    width: 50%;
    flex: 1;
  }
}
.newsletter-section__text-box {
  width: 100%;
  padding: 44px 16px;
  background-color: #F7F6F2;
  background-image: url("../img/newsletter-image.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  border-right: 1px solid #A8A8A8;
  border-bottom: 1px solid #A8A8A8;
  z-index: 1;
}
@media (min-width: 1024px) {
  .newsletter-section__text-box {
    padding: 44px 32px;
    border-right: none;
  }
  .newsletter-section__text-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100%;
    background-color: #F7F6F2;
    z-index: -1;
    border-bottom: 1px solid #A8A8A8;
  }
}
.newsletter-section__form-box {
  width: 100%;
  padding: 44px 16px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #A8A8A8;
  border-bottom: 1px solid #A8A8A8;
  box-sizing: border-box;
  margin-top: -1px;
  position: relative;
  z-index: 0;
}
@media (min-width: 1024px) {
  .newsletter-section__form-box {
    padding: 44px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: none;
  }
  .newsletter-section__form-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100%;
    background-color: #FFFFFF;
    z-index: -1;
    border-bottom: 1px solid #A8A8A8;
  }
}
.newsletter-section__title {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .newsletter-section__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.newsletter-section__description {
  margin-top: 64px;
  color: #6C6C6C;
  max-width: 450px;
  margin-bottom: auto;
}
@media (min-width: 1024px) {
  .newsletter-section__description {
    margin-top: 100px;
  }
}
.newsletter-section__description p {
  margin-bottom: 0;
}
.newsletter-section__description p + p {
  margin-top: 1em;
}
.newsletter-section__right {
  width: 100%;
  height: 400px;
  overflow: hidden;
  order: -1;
  position: relative;
  border: 1px solid #A8A8A8;
  margin-bottom: -1px;
}
@media (min-width: 1024px) {
  .newsletter-section__right {
    width: 50%;
    height: auto;
    min-height: 800px;
    order: 1;
    margin-bottom: 0;
    margin-left: -1px;
  }
}
.newsletter-section__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1024px) {
  .newsletter-section__image {
    min-height: 800px;
  }
}
.newsletter-section .wpcf7 {
  width: 100%;
}
.newsletter-section .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.newsletter-section .wpcf7 .wpcf7-form p {
  margin: 0;
  padding: 0;
}
.newsletter-section .wpcf7 br {
  display: none;
}
.newsletter-section .wpcf7 .form-field {
  margin-bottom: 24px;
  position: relative;
}
.newsletter-section .wpcf7 .form-field:first-of-type {
  margin-bottom: 24px;
}
.newsletter-section .wpcf7 .form-field:last-of-type {
  margin-bottom: 0;
}
.newsletter-section .wpcf7 .form-label {
  display: block;
  font-size: 16px;
  color: #242424;
  margin-bottom: 16px;
  margin-top: 0;
}
.newsletter-section .wpcf7 label {
  margin: 0;
  padding: 0;
}
.newsletter-section .wpcf7 label + br {
  display: none;
}
.newsletter-section .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin: 0;
  padding: 0;
}
.newsletter-section .wpcf7 .wpcf7-form-control-wrap input[type=text],
.newsletter-section .wpcf7 .wpcf7-form-control-wrap input[type=email] {
  width: 100%;
  height: 40px;
  border: none;
  box-shadow: 0 1px 0 0 #A8A8A8;
  background-color: transparent;
  padding: 0;
  font-size: 16px;
  color: #242424;
  margin-top: 0;
  transition: box-shadow 0.3s ease;
}
.newsletter-section .wpcf7 .wpcf7-form-control-wrap input[type=text]::-moz-placeholder, .newsletter-section .wpcf7 .wpcf7-form-control-wrap input[type=email]::-moz-placeholder {
  color: #A8A8A8;
}
.newsletter-section .wpcf7 .wpcf7-form-control-wrap input[type=text]::placeholder,
.newsletter-section .wpcf7 .wpcf7-form-control-wrap input[type=email]::placeholder {
  color: #A8A8A8;
}
.newsletter-section .wpcf7 .wpcf7-form-control-wrap input[type=text]:focus,
.newsletter-section .wpcf7 .wpcf7-form-control-wrap input[type=email]:focus {
  outline: none;
  box-shadow: 0 1px 0 0 #3B4F3C;
}
.newsletter-section .wpcf7 .form-consent {
  margin-top: 64px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .newsletter-section .wpcf7 .form-consent {
    margin-top: 100px;
  }
}
.newsletter-section .wpcf7 .consent-text {
  font-size: 14px;
  color: #6C6C6C;
  display: block;
}
.newsletter-section .wpcf7 .consent-text a {
  color: #6C6C6C;
  text-decoration: underline;
}
.newsletter-section .wpcf7 .consent-text a:hover {
  color: #3B4F3C;
}
.newsletter-section .wpcf7 .form-submit {
  margin-top: 0;
}
.newsletter-section .wpcf7 .wpcf7-submit {
  align-self: flex-start;
  background: none;
  border: none;
  box-shadow: 0 1px 0 0 #3B4F3C;
  color: #242424;
  padding: 8px 0;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-section .wpcf7 .wpcf7-submit:hover {
  color: #3B4F3C;
}
.newsletter-section .wpcf7 .wpcf7-response-output {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 12px;
  box-shadow: 0 0 0 1px #A8A8A8;
  font-size: 14px;
}
.newsletter-section .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  box-shadow: 0 0 0 1px #f7e700;
}
.newsletter-section .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  box-shadow: 0 0 0 1px #3B4F3C;
}
.newsletter-section .wpcf7 span.wpcf7-form-control-wrap {
  margin-top: 0;
}

.woocommerce-page div.product div.summary,
.woocommerce div.product div.summary,
.product_meta,
.woocommerce-product-gallery,
.woocommerce div.product div.images,
.woocommerce-breadcrumb {
  display: none !important;
}

.product-single {
  margin-bottom: 0 !important;
}

.product-single-custom {
  margin-bottom: 0;
  position: relative;
}
.product-single-custom__full-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background-color: #F7F6F2;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media (min-width: 1024px) {
  .product-single-custom__full-bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background-color: #F7F6F2;
  }
}
@media (max-width: 1365px) {
  .product-single-custom__full-bg {
    width: 100%;
    height: 400px;
  }
  .product-single-custom__full-bg::before {
    display: none;
  }
}
.product-single-custom__layout {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1366px) {
  .product-single-custom__layout {
    flex-direction: row;
    align-items: stretch;
    min-height: 650px;
  }
}
@media (max-width: 1365px) {
  .product-single-custom__layout {
    flex-direction: column;
  }
}
.product-single-custom__bg-box {
  height: 400px;
  background-color: #F7F6F2;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: none;
}
.product-single-custom__bg-box__mobile-image {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 400px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 10;
}
@media (max-width: 1365px) {
  .product-single-custom__bg-box__mobile-image {
    display: block;
  }
}
@media (min-width: 1366px) {
  .product-single-custom__bg-box {
    width: 40%;
    height: auto;
    min-height: 650px;
    flex-shrink: 0;
    box-shadow: 1px 0 0 0 #A8A8A8;
  }
}
@media (min-width: 1024px) and (max-width: 1365px) {
  .product-single-custom__bg-box {
    width: 100%;
    box-shadow: 0 1px 0 0 #A8A8A8;
  }
}
@media (max-width: 1023px) {
  .product-single-custom__bg-box {
    width: 100%;
    box-shadow: 0 1px 0 0 #A8A8A8;
    overflow: visible;
  }
}
.product-single-custom__image-wrapper {
  position: relative;
  margin-top: -55px;
  text-align: center;
  z-index: 5;
}
@media (min-width: 1024px) {
  .product-single-custom__image-wrapper {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    width: auto;
  }
}
@media (max-width: 1365px) {
  .product-single-custom__image-wrapper {
    position: absolute;
    display: none;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    width: 100%;
  }
}
.product-single-custom__image {
  height: 500px;
  width: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .product-single-custom__image {
    height: 400px;
  }
}
.product-single-custom__content-box {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
}
@media (min-width: 1366px) {
  .product-single-custom__content-box {
    width: 60%;
    padding: 32px;
    min-height: 650px;
    flex-grow: 1;
    border: none;
    box-shadow: none;
  }
}
@media (max-width: 1366px) {
  .product-single-custom__content-box {
    width: 100%;
    padding: 44px 16px;
    min-height: auto;
  }
}
.product-single-custom__content {
  text-align: left;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .product-single-custom__content {
    max-width: 500px;
  }
}
.product-single-custom__title {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 32px;
  color: #242424;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Raleway", serif;
  text-transform: uppercase;
}
.product-single-custom__short-description {
  color: #6C6C6C;
  margin-bottom: 32px;
}
.product-single-custom__short-description p:last-child {
  margin-bottom: 0;
}
.product-single-custom__divider {
  height: 1px;
  background-color: #A8A8A8;
  margin: 32px 0;
}
.product-single-custom__variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.product-single-custom__option-label {
  position: relative;
  cursor: pointer;
}
.product-single-custom__option-label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.product-single-custom__option-label input[type=radio]:checked + .product-single-custom__option-text {
  border-color: #3B4F3C;
  background-color: #3B4F3C;
  color: #FFFFFF;
}
.product-single-custom__option-text {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #A8A8A8;
  border-radius: 0;
  transition: all 0.3s ease;
}
.product-single-custom__option-text:hover {
  border-color: rgb(142.5, 142.5, 142.5);
}
.product-single-custom__price-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.product-single-custom__price-label {
  font-size: 16px;
  color: #6C6C6C;
  margin-right: 8px;
}
.product-single-custom__price {
  font-weight: 600;
  color: #242424;
  font-size: clamp(18px, 2.5vw, 24px);
  font-family: "Raleway", serif;
}
.product-single-custom__price del {
  opacity: 0.6;
  margin-right: 10px;
  font-weight: 400;
  text-decoration: line-through;
  color: #6C6C6C;
}
.product-single-custom__price ins {
  text-decoration: none;
  color: #A15D5D;
}
.product-single-custom__price .amount {
  font-weight: 600;
}
.product-single-custom__add-to-cart {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}
.product-single-custom__quantity {
  display: flex;
  align-items: center;
  margin-right: 32px;
  margin-bottom: 24px;
  position: relative;
  z-index: 20;
}
.product-single-custom__quantity .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #A8A8A8;
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
}
.product-single-custom__qty-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F7F6F2;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 24px;
  padding: 0;
  line-height: 1;
  color: #242424;
  font-weight: 300;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.product-single-custom__qty-btn:active {
  background-color: rgb(237.2857142857, 235.0714285714, 226.2142857143);
}
.product-single-custom__qty-btn:active {
  opacity: 0.7;
}
.product-single-custom__qty-input {
  width: 48px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid #A8A8A8;
  border-right: 1px solid #A8A8A8;
  color: #242424;
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  background: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 0;
}
.product-single-custom__qty-input::-webkit-outer-spin-button, .product-single-custom__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.product-single-custom__qty-input:focus {
  outline: none;
  background-color: #FFFFFF;
}
@supports (-webkit-touch-callout: none) {
  .product-single-custom__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-single-custom__qty-btn::before {
    content: attr(data-content);
    color: #242424;
    font-weight: 400;
  }
}
.product-single-custom__add-to-cart-btn {
  display: inline-block;
  margin-left: 16px;
}
.product-single-custom__simple-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-single-custom__simple-form .quantity {
  margin-right: 32px;
}
.product-single-custom__simple-form .single_add_to_cart_button {
  margin-left: 0;
}
.product-single-custom .cart {
  margin-bottom: 0;
}
.product-single-custom .cart:not(.variations_form) {
  display: flex;
  align-items: center;
}
.product-single-custom .cart:not(.variations_form) .quantity {
  margin-right: 32px;
}
.product-single-custom .variations {
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .product-single-custom .variations {
    margin-bottom: 32px;
  }
}
.product-single-custom .variations table {
  width: 100%;
}
.product-single-custom .variations tr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-single-custom .variations tr {
    flex-direction: row;
    align-items: center;
  }
}
.product-single-custom .variations th {
  display: none;
}
.product-single-custom .variations td {
  padding: 8px 0;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .product-single-custom .variations td {
    display: table-cell;
    width: auto;
    padding-right: 0;
  }
}
.product-single-custom .variations label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  color: #242424;
}
.product-single-custom .variations select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #A8A8A8;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C6C6C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  height: 48px;
  font-size: 16px;
  color: #242424;
}
@media (min-width: 768px) {
  .product-single-custom .variations select {
    min-width: 200px;
    width: auto;
  }
}
.product-single-custom .variations select:focus {
  outline: none;
  border-color: #3B4F3C;
  box-shadow: 0 0 0 2px rgba(59, 79, 60, 0.1);
}
.product-single-custom .variations .reset_variations {
  display: none;
  margin-top: 32px;
  font-size: 14px;
  color: #6C6C6C;
  text-decoration: underline;
  padding: 8px 0;
}
.product-single-custom .variations .reset_variations:hover {
  color: #3B4F3C;
}
.product-single-custom .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .product-single-custom .woocommerce-variation-add-to-cart {
    flex-direction: row;
    align-items: center;
  }
}
.product-single-custom .woocommerce-variation-add-to-cart .quantity {
  margin-right: 32px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .product-single-custom .woocommerce-variation-add-to-cart .quantity {
    margin-bottom: 0;
  }
}
.product-single-custom .quantity {
  display: flex;
  align-items: center;
  margin-right: 32px;
  gap: 16px;
  position: relative;
  z-index: 20;
}
.product-single-custom .quantity .qty {
  width: 32px;
  height: 32px;
  text-align: center;
  border: none;
  color: #242424;
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  background: transparent;
  font-size: 16px;
}
.product-single-custom .quantity .qty::-webkit-outer-spin-button, .product-single-custom .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.product-single-custom .woocommerce-variation-price {
  margin-bottom: 32px;
}
.product-single-custom .woocommerce-variation-price .price {
  font-weight: 600;
  color: #242424;
  font-size: clamp(18px, 2.5vw, 24px);
  font-family: "Raleway", serif;
}
.product-single-custom .woocommerce-variation-price .price del {
  opacity: 0.6;
  margin-right: 10px;
  font-weight: 400;
  text-decoration: line-through;
  color: #6C6C6C;
}
.product-single-custom .woocommerce-variation-price .price ins {
  text-decoration: none;
  color: #A15D5D;
}
.product-single-custom .woocommerce-variation-price .price .amount {
  font-weight: 600;
}
.product-single-custom .woocommerce-variation-description {
  display: none;
}

.woocommerce-variation-price .price .product-single-custom__price-label {
  display: inline-block;
  margin-right: 8px;
}

.woocommerce-variation-price .price .price-label {
  font-size: 16px;
  color: #6C6C6C;
  margin-right: 8px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.variations .label label, .variations .reset_variations {
  display: none;
}

/**
 * WooCommerce Messages
 *
 * Style dla komunikatów systemowych WooCommerce:
 * - .woocommerce-message (sukces)
 * - .woocommerce-info (informacja)
 * - .woocommerce-error (błąd)
 * - .woocommerce-notice (powiadomienie)
 */
.woocommerce-notices-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-shadow: 0 1px 0 0 #A8A8A8;
  z-index: 100;
}
@media (max-width: 480px) {
  .woocommerce-notices-wrapper {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.woocommerce-notices-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.woocommerce-notice, .woocommerce-error, .woocommerce-info, .woocommerce-message {
  padding: 16px 20px;
  margin: 0;
  border-radius: 0;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-left: 4px solid;
  border-right: 1px solid #A8A8A8;
  border-top: 1px solid #A8A8A8;
  border-bottom: none;
}
@media (min-width: 768px) {
  .woocommerce-notice, .woocommerce-error, .woocommerce-info, .woocommerce-message {
    flex-direction: row;
    align-items: center;
    padding: 18px 24px;
  }
}
.woocommerce-notice .button, .woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button, .woocommerce-notice .product-single-custom .single_add_to_cart_button, .woocommerce-error .product-single-custom .single_add_to_cart_button, .woocommerce-info .product-single-custom .single_add_to_cart_button, .woocommerce-message .product-single-custom .single_add_to_cart_button, .product-single-custom .woocommerce-notice .single_add_to_cart_button, .product-single-custom .woocommerce-error .single_add_to_cart_button, .product-single-custom .woocommerce-info .single_add_to_cart_button, .product-single-custom .woocommerce-message .single_add_to_cart_button {
  margin-top: 12px;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .woocommerce-notice .button, .woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button, .woocommerce-notice .product-single-custom .single_add_to_cart_button, .woocommerce-error .product-single-custom .single_add_to_cart_button, .woocommerce-info .product-single-custom .single_add_to_cart_button, .woocommerce-message .product-single-custom .single_add_to_cart_button, .product-single-custom .woocommerce-notice .single_add_to_cart_button, .product-single-custom .woocommerce-error .single_add_to_cart_button, .product-single-custom .woocommerce-info .single_add_to_cart_button, .product-single-custom .woocommerce-message .single_add_to_cart_button {
    margin-top: 0;
    margin-left: auto;
    align-self: center;
  }
}

.woocommerce-message {
  background-color: rgba(169, 194, 163, 0.1);
  border-left-color: #A9C2A3;
  color: #242424;
}
.woocommerce-message::before {
  content: "✓";
  font-family: sans-serif;
  display: inline-block;
  margin-right: 10px;
  color: #3B4F3C;
  font-weight: 700;
}
.woocommerce-info {
  background-color: rgba(247, 246, 242, 0.5);
  border-left-color: #3B4F3C;
  color: #242424;
}
.woocommerce-info::before {
  content: "ℹ";
  font-family: sans-serif;
  display: inline-block;
  margin-right: 10px;
  color: #3B4F3C;
  font-weight: 700;
}
.woocommerce-error {
  background-color: rgba(248, 215, 218, 0.5);
  border-left-color: #DC3545;
  color: #721C24;
}
.woocommerce-error li {
  list-style: none;
  margin-bottom: 6px;
}
.woocommerce-error li:last-child {
  margin-bottom: 0;
}
.woocommerce-error::before {
  content: "⚠";
  font-family: sans-serif;
  display: inline-block;
  margin-right: 10px;
  color: #721C24;
  font-weight: 700;
}
.woocommerce-error .button, .woocommerce-error .product-single-custom .single_add_to_cart_button, .product-single-custom .woocommerce-error .single_add_to_cart_button {
  border-color: #DC3545;
  color: #721C24;
}
.woocommerce-error .button:hover, .woocommerce-error .product-single-custom .single_add_to_cart_button:hover, .product-single-custom .woocommerce-error .single_add_to_cart_button:hover {
  background-color: #DC3545;
  border-color: #DC3545;
  color: #FFFFFF;
}

.woocommerce-notice {
  background-color: rgba(158, 132, 118, 0.1);
  border-left-color: #9E8476;
  color: #242424;
}
.woocommerce-notice::before {
  content: "❗";
  font-family: sans-serif;
  display: inline-block;
  margin-right: 10px;
  color: rgb(116.8012820513, 94.6346153846, 82.6987179487);
  font-weight: 700;
}
.woocommerce-notice .button, .woocommerce-notice .product-single-custom .single_add_to_cart_button, .product-single-custom .woocommerce-notice .single_add_to_cart_button {
  border-color: #9E8476;
}
.woocommerce-notice .button:hover, .woocommerce-notice .product-single-custom .single_add_to_cart_button:hover, .product-single-custom .woocommerce-notice .single_add_to_cart_button:hover {
  background-color: #9E8476;
  border-color: #9E8476;
  color: #FFFFFF;
}

.woocommerce-order-received .woocommerce-notice--success {
  background-color: rgba(169, 194, 163, 0.1);
  border-left-color: #A9C2A3;
  font-size: 18px;
  font-weight: 500;
}
.woocommerce-order-received .woocommerce-notice--success::before {
  content: "✓";
  color: #3B4F3C;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.woocommerce-message {
  animation: fadeIn 0.3s ease-in-out;
}

/**
 * Responsywne dostosowania dla małych ekranów
 */
@media (min-width: 375px) {
  .woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-notice {
    padding: 14px 16px;
  }
}
/**
 * Dodatkowe style dla komunikatu "Zobacz koszyk"
 * Zamiast domyślnego w WooCommerce 
 */
.added_to_cart {
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
  font-size: 14px;
  color: #3B4F3C;
}
.added_to_cart:hover {
  color: #A9C2A3;
}
@media (min-width: 768px) {
  .added_to_cart {
    margin-left: 12px;
    margin-top: 0;
  }
}

.woocommerce-cart-notice {
  background-color: #3B4F3C;
  color: #FFFFFF;
  text-align: center;
  padding: 12px;
  width: 100%;
  position: relative;
}
.woocommerce-cart-notice a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 500;
}
.woocommerce-cart-notice a:hover {
  color: #A9C2A3;
}
.woocommerce-cart-notice .close-notice {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  opacity: 0.7;
}
.woocommerce-cart-notice .close-notice:hover {
  opacity: 1;
}

/**
 * Hook JS dla owijania treści komunikatów kontenerem
 * Ten skrypt zostanie dołączony do motywu przez functions.php
 */
/*
document.addEventListener('DOMContentLoaded', function() {
  // Znajdź wszystkie komunikaty WooCommerce
  const noticesWrapper = document.querySelectorAll('.woocommerce-notices-wrapper');

  noticesWrapper.forEach(function(wrapper) {
    // Utwórz nowy element dla treści komunikatów
    const container = document.createElement('div');
    container.className = 'woocommerce-notices-container';

    // Przenieś zawartość wrappera do kontenera
    while (wrapper.firstChild) {
      container.appendChild(wrapper.firstChild);
    }

    // Dodaj kontener do wrappera
    wrapper.appendChild(container);
  });
});
*/
/**
 * Komponenty kart produktÃ³w
 * UÅ¼ywane w rÃ³Å¼nych sekcjach: featured-products, highlighted-products, 
 * selected-products oraz product-archive
 */
.product-card, .useful-products .useful-products-card, .featured-products .featured-products-card, .highlighted-products .highlighted-products-card, .selected-products .selected-products-card, .product-archive-card {
  width: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-height: 500px !important;
  position: relative;
}
.product-card::after, .useful-products .useful-products-card::after, .featured-products .featured-products-card::after, .highlighted-products .highlighted-products-card::after, .selected-products .selected-products-card::after, .product-archive-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #A8A8A8;
  z-index: 1;
}
.product-card::before, .useful-products .useful-products-card::before, .featured-products .featured-products-card::before, .highlighted-products .highlighted-products-card::before, .selected-products .selected-products-card::before, .product-archive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #A8A8A8;
  z-index: 1;
}
@media (min-width: 1024px) {
  .product-card--no-left-border::before, .featured-products .featured-products-card::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .product-card--archive::before, .product-archive-card::before {
    display: none;
  }
  .product-archive-swiper-slide:nth-child(4n+1) .product-card--archive::before, .product-archive-swiper-slide:nth-child(4n+1) .product-archive-card::before {
    display: block;
  }
}
.product-card__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  text-decoration: none;
  position: relative;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 180px auto;
}
.product-card__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.product-card__image-container {
  display: inline-block;
  margin: 0;
}
.product-card__image-container img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 0 !important;
  transition: transform 0.3s ease;
}
.product-card__info {
  width: 100%;
  text-align: center;
  padding-top: 20px;
}
.product-card__title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #242424;
}
.product-card__title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.product-card__price {
  font-size: 16px;
  color: #6C6C6C;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.product-card__price-regular:only-child {
  color: #6C6C6C;
}
.product-card__price-sale {
  color: #6C6C6C;
  font-weight: 500;
}
.product-card__price--strikethrough {
  text-decoration: line-through;
  color: #A8A8A8;
}
.product-card:hover .product-card__image-container img, .useful-products .useful-products-card:hover .product-card__image-container img, .featured-products .featured-products-card:hover .product-card__image-container img, .highlighted-products .highlighted-products-card:hover .product-card__image-container img, .selected-products .selected-products-card:hover .product-card__image-container img, .product-archive-card:hover .product-card__image-container img {
  transform: scale(1.05);
}
.product-card .onsale, .useful-products .useful-products-card .onsale, .featured-products .featured-products-card .onsale, .highlighted-products .highlighted-products-card .onsale, .selected-products .selected-products-card .onsale, .product-archive-card .onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #3B4F3C;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  text-transform: uppercase;
  z-index: 2;
}
.product-card .add_to_cart_button:focus-visible, .useful-products .useful-products-card .add_to_cart_button:focus-visible, .featured-products .featured-products-card .add_to_cart_button:focus-visible, .highlighted-products .highlighted-products-card .add_to_cart_button:focus-visible, .selected-products .selected-products-card .add_to_cart_button:focus-visible, .product-archive-card .add_to_cart_button:focus-visible,
.product-card .added_to_cart:focus-visible,
.useful-products .useful-products-card .added_to_cart:focus-visible,
.featured-products .featured-products-card .added_to_cart:focus-visible,
.highlighted-products .highlighted-products-card .added_to_cart:focus-visible,
.selected-products .selected-products-card .added_to_cart:focus-visible,
.product-archive-card .added_to_cart:focus-visible,
.product-card button:focus-visible,
.useful-products .useful-products-card button:focus-visible,
.featured-products .featured-products-card button:focus-visible,
.highlighted-products .highlighted-products-card button:focus-visible,
.selected-products .selected-products-card button:focus-visible,
.product-archive-card button:focus-visible,
.product-card .button:focus-visible,
.useful-products .useful-products-card .button:focus-visible,
.featured-products .featured-products-card .button:focus-visible,
.highlighted-products .highlighted-products-card .button:focus-visible,
.selected-products .selected-products-card .button:focus-visible,
.product-archive-card .button:focus-visible,
.product-card .product-single-custom .single_add_to_cart_button:focus-visible,
.useful-products .useful-products-card .product-single-custom .single_add_to_cart_button:focus-visible,
.product-single-custom .product-card .single_add_to_cart_button:focus-visible,
.product-single-custom .useful-products .useful-products-card .single_add_to_cart_button:focus-visible,
.useful-products .product-single-custom .useful-products-card .single_add_to_cart_button:focus-visible,
.featured-products .featured-products-card .product-single-custom .single_add_to_cart_button:focus-visible,
.product-single-custom .featured-products .featured-products-card .single_add_to_cart_button:focus-visible,
.highlighted-products .highlighted-products-card .product-single-custom .single_add_to_cart_button:focus-visible,
.product-single-custom .highlighted-products .highlighted-products-card .single_add_to_cart_button:focus-visible,
.selected-products .selected-products-card .product-single-custom .single_add_to_cart_button:focus-visible,
.product-single-custom .selected-products .selected-products-card .single_add_to_cart_button:focus-visible,
.product-archive-card .product-single-custom .single_add_to_cart_button:focus-visible,
.product-single-custom .product-archive-card .single_add_to_cart_button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.product-card__action {
  width: 100%;
  padding: 0 20px 20px;
  text-align: center;
  margin-top: auto;
}
.product-card__form {
  display: inline-block;
}
.product-card__button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #FFFFFF;
  color: #242424;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-card__button:hover {
  background-color: #242424;
  color: #FFFFFF;
}
.product-card__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.product-card__button--add-to-cart {
  background-color: #3B4F3C;
  border-color: none;
  color: #FFFFFF;
}
.product-card__button--add-to-cart:hover {
  background-color: rgb(37.1956521739, 49.8043478261, 37.8260869565);
  border-color: rgb(37.1956521739, 49.8043478261, 37.8260869565);
}
.product-slider, .useful-products .useful-products-swiper, .featured-products .featured-products-swiper, .highlighted-products .highlighted-products-swiper, .selected-products .selected-products-swiper, .product-archive-swiper {
  height: 100%;
  position: relative;
}
.product-slider::before, .useful-products .useful-products-swiper::before, .featured-products .featured-products-swiper::before, .highlighted-products .highlighted-products-swiper::before, .selected-products .selected-products-swiper::before, .product-archive-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
.product-slider::after, .useful-products .useful-products-swiper::after, .featured-products .featured-products-swiper::after, .highlighted-products .highlighted-products-swiper::after, .selected-products .selected-products-swiper::after, .product-archive-swiper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
.product-slider__wrapper, .useful-products .useful-products-swiper-wrapper, .featured-products .featured-products-swiper-wrapper, .highlighted-products .highlighted-products-swiper-wrapper, .selected-products .selected-products-swiper-wrapper {
  margin: 0;
  height: 100%;
}
.product-slider__slide, .useful-products .useful-products-swiper-slide, .featured-products .featured-products-swiper-slide, .highlighted-products .highlighted-products-swiper-slide, .selected-products .selected-products-swiper-slide {
  height: auto;
  min-height: 500px !important;
  display: flex;
}
@media (min-width: 1024px) {
  .product-slider__slide, .useful-products .useful-products-swiper-slide, .featured-products .featured-products-swiper-slide, .highlighted-products .highlighted-products-swiper-slide, .selected-products .selected-products-swiper-slide {
    height: 100%;
    min-height: 500px !important;
  }
}
.product-slider__slide--archive, .product-archive-swiper-slide {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  float: left !important;
}
@media (min-width: 1024px) {
  .product-slider__slide--archive, .product-archive-swiper-slide {
    width: 25% !important;
  }
}

.product-archive-slider__wrapper, .product-archive-swiper-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin: 0 !important;
  height: auto !important;
}

.swiper-pagination-bullet:focus-visible,
.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.about-us-page .sideboxes-section, .b2b-page .sideboxes-section {
  border-bottom: 1px solid #A8A8A8;
  background-color: #F7F6F2;
}
.about-us-page .sideboxes-section .sideboxes-section__first-box-bg, .about-us-page .sideboxes-section .sideboxes-section__box--second, .b2b-page .sideboxes-section .sideboxes-section__first-box-bg, .b2b-page .sideboxes-section .sideboxes-section__box--second {
  background-color: #F7F6F2;
}
.about-us-page .sideboxes-section .sideboxes-section__description, .b2b-page .sideboxes-section .sideboxes-section__description {
  max-width: 500px;
}

/**
 * Product Benefits Section
 * 
 * Sekcja wyświetlająca korzyści z produktów w formie 4 boxów
 * z ikonką serca i opisem.
 */
.product-benefits {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #A8A8A8;
}
.product-benefits__container {
  max-width: 1600px;
  margin: 0 auto;
}
.product-benefits__grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #A8A8A8;
}
@media (min-width: 1024px) {
  .product-benefits__grid {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.product-benefits__box {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 44px 16px;
  position: relative;
  border-bottom: 1px solid #A8A8A8;
  background-color: #FFFFFF;
}
.product-benefits__box:last-child {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .product-benefits__box {
    width: 25%;
    height: 460px;
    padding: 44px 32px;
    border-bottom: none;
  }
  .product-benefits__box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #A8A8A8;
    z-index: 1;
  }
  .product-benefits__box:first-child {
    border-left: 1px solid #A8A8A8;
  }
  .product-benefits__box:last-child {
    border-right: 1px solid #A8A8A8;
  }
}
.product-benefits__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .product-benefits__icon {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .product-benefits__content {
    margin-top: auto;
  }
}
.product-benefits__title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
  color: #242424;
  line-height: 1.2;
}
.product-benefits__title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.product-benefits__description {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #6C6C6C;
}
.product-benefits__description p {
  margin-bottom: 1em;
}
.product-benefits__description p:last-child {
  margin-bottom: 0;
}
.product-benefits__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

/**
 * Contact Boxes Section
 * 
 * Sekcja wyświetlająca informacje kontaktowe w formie 3 boxów
 * z ikonkami i opisem.
 */
.contact-boxes {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #A8A8A8;
}
.contact-boxes__container {
  max-width: 1600px;
  margin: 0 auto;
}
.contact-boxes__grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #A8A8A8;
}
@media (min-width: 1024px) {
  .contact-boxes__grid {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.contact-boxes__box {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 44px 16px;
  position: relative;
  border-bottom: 1px solid #A8A8A8;
  background-color: #FFFFFF;
}
.contact-boxes__box:last-child {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .contact-boxes__box {
    width: 33.333%;
    height: 350px;
    padding: 44px 32px;
    border-bottom: none;
  }
  .contact-boxes__box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #A8A8A8;
    z-index: 1;
  }
  .contact-boxes__box:first-child {
    border-left: 1px solid #A8A8A8;
  }
  .contact-boxes__box:last-child {
    border-right: 1px solid #A8A8A8;
  }
}
.contact-boxes__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .contact-boxes__content {
    margin-top: auto;
  }
}
.contact-boxes__title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
  color: #242424;
  line-height: 1.2;
}
.contact-boxes__title a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.contact-boxes__description {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #6C6C6C;
}
.contact-boxes__description p {
  margin-bottom: 1em;
}
.contact-boxes__description p:last-child {
  margin-bottom: 0;
}
.contact-boxes__description a {
  color: #242424;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-boxes__description a:hover {
  color: #3B4F3C;
}
.contact-boxes__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.contact-form-box {
  width: 100%;
  padding: 0;
  position: relative;
  background-color: #F7F6F2;
  box-shadow: 0 -1px 0 0 #A8A8A8, 0 0 0 1px #A8A8A8;
}
.contact-form-box__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .contact-form-box__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }
}
.contact-form-box__image-box {
  position: relative;
  height: 400px;
  overflow: hidden;
  order: -1;
  border-bottom: 1px solid #A8A8A8;
  margin-bottom: -1px;
  background-color: #A8A8A8;
}
@media (min-width: 1024px) {
  .contact-form-box__image-box {
    flex-shrink: 0;
    height: auto;
    min-height: 800px;
    order: 0;
    margin-bottom: 0;
    border-bottom: none;
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 24px);
    margin-left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 24px));
  }
  .contact-form-box__image-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #A8A8A8;
    z-index: 1;
  }
}
@media (min-width: 1366px) {
  .contact-form-box__image-box {
    width: calc(50% + max(0px, (100vw - 1600px) / 2) + 32px);
    margin-left: calc(-1 * (max(0px, (100vw - 1600px) / 2) + 32px));
  }
}
.contact-form-box__image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (min-width: 1024px) {
  .contact-form-box__image-box img {
    min-height: 800px;
  }
}
.contact-form-box__form-box {
  display: flex;
  flex-direction: column;
  padding: 44px 16px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 1024px) {
  .contact-form-box__form-box {
    width: 50%;
    flex-shrink: 0;
    padding: 100px 64px;
  }
}
.contact-form-box__title {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .contact-form-box__title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.contact-form-box__form {
  margin-top: 64px;
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form-box__form {
    margin-top: 100px;
  }
}
.contact-form-box__form .wpcf7 {
  width: 100%;
}
.contact-form-box__form .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.contact-form-box__form .wpcf7 .wpcf7-form p {
  margin: 0;
  padding: 0;
}
.contact-form-box__form .wpcf7 br {
  display: none;
}
.contact-form-box__form .wpcf7 .form-field {
  margin-bottom: 24px;
  position: relative;
}
.contact-form-box__form .wpcf7 .form-field:first-of-type {
  margin-bottom: 24px;
}
.contact-form-box__form .wpcf7 .form-field:last-of-type {
  margin-bottom: 0;
}
.contact-form-box__form .wpcf7 .form-label {
  display: block;
  font-size: 16px;
  color: #242424;
  margin-bottom: 16px;
  margin-top: 0;
}
.contact-form-box__form .wpcf7 label {
  margin: 0;
  padding: 0;
}
.contact-form-box__form .wpcf7 label + br {
  display: none;
}
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin: 0;
  padding: 0;
}
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap input[type=text],
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap input[type=email],
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap textarea {
  width: 100%;
  height: 40px;
  border: none;
  box-shadow: 0 1px 0 0 #A8A8A8;
  background-color: transparent;
  padding: 0;
  font-size: 16px;
  color: #242424;
  margin-top: 0;
  transition: box-shadow 0.3s ease;
}
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap input[type=text]::-moz-placeholder, .contact-form-box__form .wpcf7 .wpcf7-form-control-wrap input[type=email]::-moz-placeholder, .contact-form-box__form .wpcf7 .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #A8A8A8;
}
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap input[type=text]::placeholder,
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap input[type=email]::placeholder,
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap textarea::placeholder {
  color: #A8A8A8;
}
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap input[type=text]:focus,
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap input[type=email]:focus,
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  box-shadow: 0 1px 0 0 #3B4F3C;
}
.contact-form-box__form .wpcf7 .wpcf7-form-control-wrap textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
  padding: 8px 0;
}
.contact-form-box__form .wpcf7 .form-consent {
  margin-top: 32px;
  margin-bottom: 32px;
}
.contact-form-box__form .wpcf7 .consent-text {
  font-size: 14px;
  color: #6C6C6C;
  display: block;
}
.contact-form-box__form .wpcf7 .consent-text .wpcf7-acceptance {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-form-box__form .wpcf7 .consent-text input[type=checkbox] {
  margin-right: 4px;
}
.contact-form-box__form .wpcf7 .consent-text a {
  color: #6C6C6C;
  text-decoration: underline;
}
.contact-form-box__form .wpcf7 .consent-text a:hover {
  color: #3B4F3C;
}
.contact-form-box__form .wpcf7 .form-submit {
  margin-top: 0;
}
.contact-form-box__form .wpcf7 .wpcf7-submit {
  background: none;
  border: none;
  border-bottom: 1px solid #3B4F3C;
  color: #242424;
  padding: 8px 0;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form-box__form .wpcf7 .wpcf7-submit:hover {
  transform: scale(1.05);
}
.contact-form-box__form .wpcf7 .wpcf7-response-output {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 12px;
  box-shadow: 0 0 0 1px #A8A8A8;
  font-size: 14px;
}
.contact-form-box__form .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  box-shadow: 0 0 0 1px #f7e700;
}
.contact-form-box__form .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  box-shadow: 0 0 0 1px #3B4F3C;
}
.contact-form-box__form .wpcf7 .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 14px;
  margin-top: 4px;
}
.contact-form-box__form .wpcf7 span.wpcf7-form-control-wrap {
  margin-top: 0;
}

.contact-map {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 -1px 0 0 #A8A8A8;
}
.contact-map__wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.contact-map__container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .contact-map__container {
    height: 0;
    padding-bottom: 45%;
  }
}
@media (min-width: 1366px) {
  .contact-map__container {
    padding-bottom: 40%;
  }
}
.contact-map__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.recipes {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.recipes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
.recipes::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
}
.recipes__container {
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .recipes__container {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-areas: "content items";
    grid-auto-rows: auto;
    align-items: start;
  }
}
.recipes__content {
  width: 100%;
  padding: 44px 23px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  background-color: #F7F6F2;
  height: auto;
  border-bottom: 1px solid #A8A8A8;
}
@media (min-width: 1024px) {
  .recipes__content {
    grid-area: content;
    padding: 44px 32px;
    min-height: 100%;
    border-bottom: 1px solid #A8A8A8;
    align-self: start;
    height: auto;
  }
}
.recipes__content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  right: 100%;
  background-color: #F7F6F2;
  z-index: -1;
  display: none;
}
@media (min-width: 1024px) {
  .recipes__content::before {
    display: block;
  }
}
.recipes__content::after {
  content: "";
  position: absolute;
}
@media (min-width: 1024px) {
  .recipes__content::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #A8A8A8;
    z-index: 1;
  }
}
.recipes__content-border {
  position: absolute;
  bottom: -1px;
  right: 100%;
  width: 100vw;
  height: 1px;
  background-color: #A8A8A8;
  z-index: 1;
  display: none;
}
@media (min-width: 1024px) {
  .recipes__content-border {
    display: block;
  }
}
.recipes__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .recipes__title {
    font-size: clamp(28px, 4.5vw, 48px);
    margin-bottom: 64px;
  }
}
.recipes__search {
  margin-top: 32px;
  max-width: 330px;
  width: 100%;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .recipes__search {
    margin-top: auto;
  }
}
.recipes__search-label {
  display: block;
  font-size: 16px;
  margin-bottom: 16px;
  color: #242424;
}
.recipes__search-form {
  width: 100%;
}
.recipes__search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.recipes__search-input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #A8A8A8;
  background-color: transparent;
  padding: 0 40px 0 0;
  font-size: 16px;
  color: #242424;
}
.recipes__search-input::-moz-placeholder {
  color: #A8A8A8;
}
.recipes__search-input::placeholder {
  color: #A8A8A8;
}
.recipes__search-input:focus {
  outline: none;
  border-color: #3B4F3C;
}
.recipes__search-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #6C6C6C;
}
.recipes__search-button:hover {
  color: #242424;
}
.recipes__search .dgwt-wcas-search-wrapp {
  max-width: 100%;
  width: 100%;
}
.recipes__search .dgwt-wcas-sf-wrapp {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid #A8A8A8;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.recipes__search .dgwt-wcas-sf-wrapp:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 21L15 15M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z' stroke='%23242424' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  cursor: pointer;
}
.recipes__search .dgwt-wcas-search-submit,
.recipes__search .dgwt-wcas-ico-magnifier {
  display: none !important;
}
.recipes__search .dgwt-wcas-search-submit:before {
  display: none !important;
}
.recipes__search .dgwt-wcas-preloader {
  right: 30px;
}
.recipes__search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  background: transparent;
  color: #242424;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  border: none;
  height: 40px;
  padding: 0 30px 0 0;
}
.recipes__search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::-moz-placeholder {
  color: #A8A8A8;
  opacity: 1;
}
.recipes__search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
  color: #A8A8A8;
  opacity: 1;
}
.recipes__search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #3B4F3C;
}
.recipes__search .dgwt-wcas-suggestions-wrapp {
  border-radius: 0;
  border: 1px solid #A8A8A8;
  margin-top: 5px;
  background: #FFFFFF;
}
.recipes__search .dgwt-wcas-suggestion {
  border-bottom: 1px solid rgba(168, 168, 168, 0.3);
  padding: 12px;
}
.recipes__search .dgwt-wcas-suggestion:last-child {
  border-bottom: none;
}
.recipes__search .dgwt-wcas-st {
  color: #242424;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 0;
}
.recipes__search .dgwt-wcas-st-breadcrumbs {
  margin-top: 3px;
}
.recipes__search .dgwt-wcas-sku {
  display: none;
}
.recipes__search .dgwt-wcas-si {
  width: 60px;
  height: 60px;
}
.recipes__search .dgwt-wcas-sp {
  color: #6C6C6C;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
.recipes__search .dgwt-wcas-sp del .amount {
  text-decoration: line-through;
  color: #A8A8A8;
  margin-right: 5px;
}
.recipes__search .dgwt-wcas-sp ins {
  text-decoration: none;
}
.recipes__search .dgwt-wcas-sp .amount {
  color: #6C6C6C;
}
.recipes__search .dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline {
  background-color: #F7F6F2;
  padding: 8px 12px;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #A8A8A8;
}
.recipes__search .dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline .dgwt-wcas-st {
  font-weight: 500;
}
.recipes__search .dgwt-wcas-suggestion-more {
  background-color: #F7F6F2;
  padding: 10px;
  text-align: center;
}
.recipes__search .dgwt-wcas-suggestion-more .dgwt-wcas-st {
  color: #3B4F3C;
}
.recipes__search .dgwt-wcas-suggestion-more .dgwt-wcas-st:hover {
  text-decoration: underline;
}
.recipes__description {
  color: #6C6C6C;
  font-size: 16px;
  position: relative;
  z-index: 1;
  margin-top: auto;
  max-width: 400px;
}
.recipes__description p:last-child {
  margin-bottom: 0;
}
.recipes__items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 1024px) {
  .recipes__items {
    grid-area: items;
  }
}
.recipes__item {
  width: 100%;
  position: relative;
  display: block;
}
@media (min-width: 1024px) {
  .recipes__item {
    width: 50%;
  }
}
.recipes__item-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .recipes__item-wrapper {
    height: 460px;
  }
}
.recipes__item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.recipes__item:hover .recipes__item-image {
  transform: scale(1.05);
}
.recipes__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.recipes__item:hover .recipes__item-overlay {
  opacity: 1;
}
.recipes__item-arrow img {
  width: 100px;
  height: 100px;
}
.recipes__item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F7F6F2;
  padding: 20px;
}
.recipes__item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #242424;
  text-align: center;
}
.recipes__item::before, .recipes__item::after {
  content: "";
  position: absolute;
  background-color: #A8A8A8;
  z-index: 1;
}
.recipes__item::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.recipes__item::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
}
@media (min-width: 1024px) {
  .recipes__item:nth-child(2n)::after {
    display: none;
  }
}
.recipes__item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
  z-index: 2;
}
.recipes__no-items {
  width: 100%;
  padding: 40px;
  text-align: center;
  color: #6C6C6C;
}

.useful-products {
  position: relative;
  overflow: hidden;
  border-bottom: none;
}
@media (min-width: 1366px) {
  .useful-products {
    border-bottom: 1px solid #A8A8A8;
  }
}
.useful-products__container {
  max-width: 1600px;
  margin: 0 auto;
}
.useful-products__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1366px) {
  .useful-products__wrapper {
    flex-direction: row;
  }
}
.useful-products__text-box {
  display: flex;
  flex-direction: column;
  padding: 44px 16px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #A8A8A8;
}
@media (min-width: 1366px) {
  .useful-products__text-box {
    width: 25%;
    padding: 44px 32px;
    box-sizing: unset;
    border-bottom: none;
    border-right: 1px solid #A8A8A8;
  }
  .useful-products__text-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 100vw;
    background-color: inherit;
    z-index: -1;
  }
}
.useful-products__heading {
  font-size: clamp(24px, 3vw, 32px);
  color: #242424;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .useful-products__heading {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
@media (min-width: 1366px) {
  .useful-products__heading {
    margin-bottom: 24px;
  }
}
.useful-products__heading a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.useful-products__description {
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .useful-products__description {
    margin-bottom: auto;
  }
}
.useful-products__description p {
  margin-bottom: 1em;
}
.useful-products__description p:last-child {
  margin-bottom: 0;
}
.useful-products__description a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.useful-products__navigation {
  display: flex;
  gap: 16px;
  margin-top: auto;
}
.useful-products__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #A8A8A8;
  background-color: #FFFFFF;
  color: #242424;
  cursor: pointer;
  transition: all 0.3s ease;
}
.useful-products__nav-btn:hover {
  background-color: #242424;
  border-color: #242424;
  color: #FFFFFF;
}
.useful-products__nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}
.useful-products__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.useful-products__nav-btn.swiper-button-disabled:hover {
  background-color: #FFFFFF;
  border-color: #A8A8A8;
  color: #242424;
}
.useful-products__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1366px) {
  .useful-products__slider {
    width: 75%;
    display: flex;
  }
  .useful-products__slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    width: 100vw;
    background-color: inherit;
    z-index: -1;
  }
}
.useful-products .useful-products-card {
  border-left: none;
}
.useful-products .useful-products-card a:focus-visible,
.useful-products .useful-products-card button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.useful-products .useful-products-card,
.useful-products .useful-products-swiper-slide,
.useful-products .swiper-slide.useful-products-swiper-slide {
  min-height: 500px !important;
}

.useful-products .swiper-pagination-bullet:focus-visible,
.useful-products .swiper-button-next:focus-visible,
.useful-products .swiper-button-prev:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 36, 36, 0.5);
}

.recipe-content {
  margin: 0;
  padding: 0;
  position: relative;
}
.recipe-content__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .recipe-content__wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}
.recipe-content__sidebar {
  width: 100%;
  position: relative;
  background-color: #F7F6F2;
  border-bottom: 1px solid #A8A8A8;
  align-self: flex-start;
}
.recipe-content__sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100vw;
  background-color: #F7F6F2;
  border-bottom: 1px solid #A8A8A8;
}
@media (min-width: 1024px) {
  .recipe-content__sidebar {
    width: 480px;
    flex-shrink: 0;
  }
}
.recipe-content__toc {
  padding: 64px 32px;
}
@media (min-width: 1024px) {
  .recipe-content__toc {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.recipe-content__toc-title {
  font-size: 24px;
  font-weight: 500;
  color: #242424;
  text-transform: uppercase;
  margin-bottom: 100px;
  letter-spacing: 0.03em;
}
.recipe-content__toc-list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
  margin: 0;
}
.recipe-content__toc-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 24px;
  counter-increment: toc-counter;
}
.recipe-content__toc-item:last-child {
  margin-bottom: 0;
}
.recipe-content__toc-item::before {
  content: counter(toc-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #6C6C6C;
  font-weight: normal;
}
.recipe-content__toc-link {
  color: #6C6C6C;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.recipe-content__toc-link:hover {
  color: #3B4F3C;
}
.recipe-content__main {
  flex: 1;
  background-color: #FFFFFF;
  padding: 64px 32px;
  border-bottom: 1px solid #A8A8A8;
  border-left: 1px solid #A8A8A8;
}
@media (min-width: 1024px) {
  .recipe-content__main {
    flex: 1;
    padding: 64px 32px;
  }
}
.recipe-content__main > h2:first-child {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 32px !important;
  color: #242424;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .recipe-content__main > h2:first-child {
    font-size: clamp(28px, 4.5vw, 48px);
  }
}
.recipe-content__main > h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: #242424;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.recipe-content__main p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #6C6C6C;
}
.recipe-content__main p:last-child {
  margin-bottom: 0;
}
.recipe-content__main .content-section {
  margin-bottom: 64px;
}
.recipe-content__main .content-section:last-child {
  margin-bottom: 0;
}
.recipe-content__main .content-section h3 {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .recipe-content__sidebar {
    margin-bottom: 32px;
  }
  .recipe-content__toc {
    padding: 32px;
  }
  .recipe-content__toc-title {
    margin-bottom: 40px;
  }
  .recipe-content__main {
    padding: 32px;
    width: 100%;
  }
  .recipe-content__main .content-section {
    margin-bottom: 48px;
  }
}
.page-toc {
  margin: 0;
  padding: 0;
  position: relative;
}
.page-toc__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .page-toc__wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}
.page-toc__sidebar {
  width: 100%;
  position: relative;
  background-color: #F7F6F2;
  border-bottom: 1px solid #A8A8A8;
  align-self: flex-start;
}
.page-toc__sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100vw;
  background-color: #F7F6F2;
  border-bottom: 1px solid #A8A8A8;
}
@media (min-width: 1024px) {
  .page-toc__sidebar {
    width: 320px;
    flex-shrink: 0;
  }
}
.page-toc__toc {
  padding: 48px 32px;
}
@media (min-width: 1024px) {
  .page-toc__toc {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.page-toc__toc-title {
  font-size: 20px;
  font-weight: 500;
  color: #242424;
  text-transform: uppercase;
  margin-bottom: 48px;
  letter-spacing: 0.03em;
}
.page-toc__toc-list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
  margin: 0;
}
.page-toc__toc-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  counter-increment: toc-counter;
}
.page-toc__toc-item:last-child {
  margin-bottom: 0;
}
.page-toc__toc-item::before {
  content: counter(toc-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #6C6C6C;
  font-weight: normal;
}
.page-toc__toc-link {
  color: #6C6C6C;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-toc__toc-link:hover {
  color: #3B4F3C;
}
.page-toc__main {
  flex: 1;
  background-color: #FFFFFF;
  padding: 48px 32px;
  border-bottom: 1px solid #A8A8A8;
  border-left: 1px solid #A8A8A8;
}
@media (min-width: 1024px) {
  .page-toc__main {
    flex: 1;
    padding: 64px 48px;
  }
}
.page-toc__main > h1, .page-toc__main .content-section > h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 32px;
  color: #242424;
  text-transform: uppercase;
}
.page-toc__main > h2, .page-toc__main .content-section > h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 24px;
  color: #242424;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .page-toc__main > h2, .page-toc__main .content-section > h2 {
    font-size: clamp(24px, 3vw, 32px);
  }
}
.page-toc__main > h3, .page-toc__main .content-section > h3 {
  font-size: 16px;
  font-weight: 600;
  color: #242424;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .page-toc__main > h3, .page-toc__main .content-section > h3 {
    font-size: 18px;
  }
}
.page-toc__main p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #6C6C6C;
}
.page-toc__main p:last-child {
  margin-bottom: 0;
}
.page-toc__main ul, .page-toc__main ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.page-toc__main ul li, .page-toc__main ol li {
  margin-bottom: 8px;
  color: #6C6C6C;
}
.page-toc__main ul li:last-child, .page-toc__main ol li:last-child {
  margin-bottom: 0;
}
.page-toc__main .content-section {
  margin-bottom: 48px;
}
.page-toc__main .content-section:last-child {
  margin-bottom: 0;
}
.page-toc__main .content-section h1, .page-toc__main .content-section h2, .page-toc__main .content-section h3 {
  margin-top: 0;
}
.page-toc__main .content-section--h1 {
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .page-toc__sidebar {
    margin-bottom: 0;
  }
  .page-toc__toc {
    padding: 32px;
  }
  .page-toc__toc-title {
    margin-bottom: 32px;
  }
  .page-toc__main {
    padding: 32px;
    width: 100%;
  }
  .page-toc__main > h1, .page-toc__main .content-section > h1 {
    margin-bottom: 32px;
  }
  .page-toc__main .content-section {
    margin-bottom: 32px;
  }
  .page-toc__main .content-section--h1 {
    margin-bottom: 48px;
  }
}
.toc-bottom-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .toc-bottom-banner {
    height: 350px;
  }
}
@media (min-width: 1024px) {
  .toc-bottom-banner {
    height: 400px;
  }
}
.toc-bottom-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/**
 * Template Basic - specyficzne style dla szablonu podstawowego
 * Zaprojektowane, aby nie kolidować z innymi komponentami na stronie
 */
.template-basic {
  width: 100%;
  position: relative;
}
.template-basic__wrapper {
  max-width: 1600px;
  margin: auto;
  padding: 44px 16px;
}
@media (min-width: 768px) {
  .template-basic__wrapper {
    padding: 64px 32px;
  }
}
@media (min-width: 1024px) {
  .template-basic__wrapper {
    padding: 100px 32px;
  }
}
.template-basic__container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.template-basic__content {
  width: 100%;
}

.product-free-shipping-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 8px 16px;
  border-radius: 4px;
  color: #856404;
  font-size: 14px;
  margin: 16px 0 0;

  &--reached {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
  }
}

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