@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: #434343;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #141414;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #E20A19;
}
a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 2px;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

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

.decorative-font {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

.container--narrow {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

section, footer, article.page-toc {
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  section, footer, article.page-toc {
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  section, footer, article.page-toc {
    padding-inline: 3rem;
  }
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1;
  padding: 15px 24px;
  border: 1px solid #141414;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  background-color: transparent;
  color: #141414;
  text-decoration: none;
  overflow: hidden;
}
.button::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: invert(0);
          filter: invert(0);
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #141414;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: -1;
}
.button:hover {
  color: #FFFFFF;
}
.button:hover::before {
  left: 0;
}
.button:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-filter: invert(1);
          filter: invert(1);
}
.button:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button:disabled:hover {
  color: #141414;
}
.button:disabled:hover::before {
  left: -100%;
}
.button:disabled:hover::after {
  -webkit-filter: invert(0);
          filter: invert(0);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.button--dark, .product-single__add-to-cart form.cart .single_add_to_cart_button, .product-card__add-to-cart .button {
  background-color: #141414;
  color: #FFFFFF;
  border-color: #141414;
}
.button--dark::after, .product-single__add-to-cart form.cart .single_add_to_cart_button::after, .product-card__add-to-cart .button::after {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.button--dark::before, .product-single__add-to-cart form.cart .single_add_to_cart_button::before, .product-card__add-to-cart .button::before {
  background-color: rgb(45.5, 45.5, 45.5);
}
.button--dark:hover, .product-single__add-to-cart form.cart .single_add_to_cart_button:hover, .product-card__add-to-cart .button:hover {
  background-color: rgb(45.5, 45.5, 45.5);
  color: #FFFFFF;
}
.button--dark:hover::before, .product-single__add-to-cart form.cart .single_add_to_cart_button:hover::before, .product-card__add-to-cart .button:hover::before {
  left: 0;
}
.button--dark:hover::after, .product-single__add-to-cart form.cart .single_add_to_cart_button:hover::after, .product-card__add-to-cart .button:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-filter: invert(1);
          filter: invert(1);
}
.button--dark:disabled:hover, .product-single__add-to-cart form.cart .single_add_to_cart_button:disabled:hover, .product-card__add-to-cart .button:disabled:hover {
  color: #FFFFFF;
}
.button--dark:disabled:hover::after, .product-single__add-to-cart form.cart .single_add_to_cart_button:disabled:hover::after, .product-card__add-to-cart .button:disabled:hover::after {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.button--no-arrow::after {
  display: none;
}
.button--icon-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.button--icon-left::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.button--icon-left:hover::after {
  -webkit-transform: rotate(180deg) translateX(4px);
          transform: rotate(180deg) translateX(4px);
}
.button--small {
  padding: 12px 20px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  gap: 8px;
}
.button--large {
  padding: 18px 32px;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  gap: 16px;
}

*:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.text-primary {
  color: #141414;
}

.text-secondary {
  color: #434343;
}

.text-muted {
  color: #A3A3A3;
}

.text-accent {
  color: #E20A19;
}

.text-white {
  color: #FFFFFF;
}

.text-xs {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
}

.text-sm {
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.text-base {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.text-lg {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
}

.text-xl {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

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

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

.font-semibold {
  font-weight: 600;
}

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

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

:root {
  --color-primary: #141414;
  --color-secondary: #434343;
  --color-accent: #E20A19;
  --color-white: #FFFFFF;
  --color-background: #FFFFFF;
  --font-primary: Plus Jakarta Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  --font-decorative: Playfair Display, Georgia, serif;
  --container-width: 1360px;
  --container-width-narrow: 1280px;
  --section-padding: 1rem;
}
@media (min-width: 768px) {
  :root {
    --section-padding: 2rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --section-padding: 3rem;
  }
}

.hero {
  padding-inline: 0;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero {
    padding-inline: var(--section-padding);
    padding-block: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-block: 3rem;
  }
}
.hero__container {
  position: relative;
  background-color: #F4F4F4;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__container {
    border-radius: 32px;
  }
}
.hero__container.swiper {
  overflow: hidden;
}
.hero__container .swiper-slide {
  height: auto;
  padding: 50px;
  padding-bottom: 330px;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__container .swiper-slide {
    min-height: 500px;
    padding: 60px;
    padding-bottom: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1024px) {
  .hero__container .swiper-slide {
    min-height: 600px;
    padding: 80px;
    padding-bottom: 80px;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__background-image {
  position: absolute;
  display: block;
  pointer-events: none;
}
.hero__background-image--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__background-image--desktop {
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: auto;
    height: 100% !important;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right center;
       object-position: right center;
  }
}
.hero__background-image--mobile {
  display: block;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media (min-width: 768px) {
  .hero__background-image--mobile {
    display: none;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero__content {
    max-width: 350px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media (min-width: 1024px) {
  .hero__content {
    max-width: 500px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.hero__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background-color: #E20A19;
  border-radius: 6px;
  margin-bottom: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hero__badge-text {
  color: #FFFFFF;
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1;
}
.hero__badge-icon {
  width: 21px;
  height: 21px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: #141414;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.hero__description {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: #434343;
  margin-bottom: 3rem;
}
.hero__description p {
  margin-bottom: 1rem;
}
.hero__description p:last-child {
  margin-bottom: 0;
}
.hero__button {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .hero__button {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .hero__button {
    margin-bottom: 3rem;
  }
}
.hero__product-card {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 245px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: none;
}
.hero__product-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (min-width: 768px) {
  .hero__product-card {
    display: block;
  }
}
.hero__product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hero__product-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 8px;
}
.hero__product-link:hover {
  color: inherit;
}
.hero__product-image {
  width: 100%;
  margin-bottom: 16px;
}
.hero__product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.hero__product-title {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.2;
  color: #141414;
  margin-bottom: 4px;
  margin-top: 0;
}
.hero__product-price {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #141414;
}
.hero__product-price .woocommerce-Price-amount {
  font-weight: 700;
  color: #141414;
}
.hero__product-price .woocommerce-Price-currencySymbol {
  color: #141414;
}
.hero__product-price del {
  color: #A3A3A3;
  font-weight: 400;
  margin-right: 8px;
}
.hero__product-price ins {
  text-decoration: none;
  color: #141414;
  font-weight: 700;
}
.hero__navigation {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero__navigation {
    bottom: 40px;
  }
}
.hero__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto !important;
}
.hero__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: none;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero__bullet:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.hero__bullet:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.hero__bullet--active {
  background-color: #E20A19;
  width: 30px;
  border-radius: 5px;
}
.hero__bullet--active:hover {
  background-color: #E20A19;
}
.hero__prev, .hero__next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(20, 20, 20, 0.1);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
}
.hero__prev:hover, .hero__next:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.hero__prev:focus-visible, .hero__next:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.hero__prev::after, .hero__next::after {
  content: "";
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #141414;
  display: block;
}
.hero__prev::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-left: 3px;
}
.hero__next::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__product-link {
    -webkit-transition: none;
    transition: none;
  }
  .hero__product-card {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .hero__prev, .hero__next, .hero__bullet {
    -webkit-transition: none;
    transition: none;
  }
  .hero .swiper-autoplay-running .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
            transition-timing-function: linear !important;
  }
}
@media (prefers-contrast: high) {
  .hero__product-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #DEDEDE;
  }
  .hero__product-title {
    color: #141414;
  }
  .hero__product-price {
    color: #141414;
  }
  .hero__badge {
    border: 1px solid #FFFFFF;
  }
  .hero__bullet {
    border: 1px solid #141414;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .hero__bullet--active {
    border: 1px solid #FFFFFF;
    background-color: #E20A19;
  }
  .hero__prev, .hero__next {
    border: 1px solid #141414;
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.stats {
  padding-block: 1.5rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stats__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.stats__value {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: #141414;
  margin-bottom: 1rem;
}
.stats__description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.2;
  color: #434343;
}
.stats__description p {
  margin-bottom: 0.5rem;
}
.stats__description p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .stats {
    padding-block: 2rem;
  }
  .stats__value {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .stats {
    padding-block: 3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stats__item {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .stats__value {
    color: #141414;
  }
  .stats__description {
    color: #141414;
  }
}
.dlaczego-my {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .dlaczego-my {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: var(--section-padding);
  }
}
@media (min-width: 1024px) {
  .dlaczego-my {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.dlaczego-my__container {
  position: relative;
  background-color: #F8F8F8;
  padding: 60px 24px;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .dlaczego-my__container {
    border-radius: 32px;
    padding: 80px 30px;
  }
}
@media (min-width: 1024px) {
  .dlaczego-my__container {
    padding: 100px 50px;
  }
}
.dlaczego-my__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: #141414;
  margin-bottom: 3rem;
}
.dlaczego-my__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.dlaczego-my__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.dlaczego-my__advantages > .dlaczego-my__advantage {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 20px);
          flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}
.dlaczego-my__advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.dlaczego-my__icon {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dlaczego-my__svg-icon {
  width: 32px;
  height: 32px;
}
.dlaczego-my__advantage-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #141414;
  margin-bottom: 1rem;
  margin-top: 0;
}
.dlaczego-my__advantage-description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
  max-width: 350px;
}
.dlaczego-my__advantage-description p {
  margin-bottom: 1rem;
}
.dlaczego-my__advantage-description p:last-child {
  margin-bottom: 0;
}
.dlaczego-my .desktop-only {
  display: none;
}
@media (min-width: 1024px) {
  .dlaczego-my .desktop-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.dlaczego-my .mobile-tablet-only {
  display: block;
}
@media (min-width: 1024px) {
  .dlaczego-my .mobile-tablet-only {
    display: none;
  }
}
.dlaczego-my__slider-wrapper {
  margin-top: 2rem;
  position: relative;
}
.dlaczego-my__slider-wrapper .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.dlaczego-my__slider {
  overflow: visible;
}
.dlaczego-my__slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #A3A3A3;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.dlaczego-my__slider .swiper-pagination-bullet-active {
  background: #E20A19;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.dlaczego-my__slider .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.dlaczego-my__slider .swiper-button-prev,
.dlaczego-my__slider .swiper-button-next {
  color: #141414;
  background: transparent;
  border: none;
  cursor: pointer;
}
.dlaczego-my__slider .swiper-button-prev:after,
.dlaczego-my__slider .swiper-button-next:after {
  font-size: 24px;
}
.dlaczego-my__slider .swiper-button-prev:focus-visible,
.dlaczego-my__slider .swiper-button-next:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.dlaczego-my__slider .swiper-button-prev {
  left: -5px;
}
.dlaczego-my__slider .swiper-button-next {
  right: -5px;
}
.dlaczego-my__slide {
  height: auto;
}

@media (min-width: 768px) {
  .dlaczego-my__slider {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dlaczego-my__slider .swiper-pagination-bullet {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .dlaczego-my__container {
    border: 1px solid #DEDEDE;
  }
  .dlaczego-my__slider .swiper-pagination-bullet {
    border: 1px solid #141414;
  }
  .dlaczego-my__slider .swiper-pagination-bullet-active {
    background: #141414;
    border-width: 2px;
  }
}
.cta {
  padding-inline: 0;
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .cta {
    padding-inline: var(--section-padding);
    padding-block: 3rem;
  }
}
@media (min-width: 1024px) {
  .cta {
    padding-block: 4rem;
  }
}
.cta__container {
  position: relative;
  background-color: #f1f1f1;
  padding: 50px;
  padding-bottom: 330px;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta__container {
    border-radius: 32px;
    min-height: 500px;
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  .cta__container {
    min-height: 500px;
    padding: 100px 80px;
  }
}
.cta__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.cta__background-image {
  position: absolute;
  display: block;
  -webkit-user-drag: none;
}
.cta__background-image--desktop {
  display: none;
}
@media (min-width: 768px) {
  .cta__background-image--desktop {
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: auto;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 200px center;
       object-position: 200px center;
  }
}
@media (min-width: 1024px) {
  .cta__background-image--desktop {
    -o-object-position: right center;
       object-position: right center;
  }
}
.cta__background-image--mobile {
  display: block;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media (min-width: 768px) {
  .cta__background-image--mobile {
    display: none;
  }
}
.cta__content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 100%;
}
@media (min-width: 768px) {
  .cta__content {
    max-width: 350px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media (min-width: 1024px) {
  .cta__content {
    max-width: 500px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: #141414;
  margin-bottom: 1.5rem;
}
.cta__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.cta__description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
  margin-bottom: 3rem;
  max-width: 480px;
}
.cta__description p {
  margin-bottom: 1rem;
}
.cta__description p:last-child {
  margin-bottom: 0;
}
.cta__button {
  margin-bottom: 0;
}
.cta__box-link {
  position: relative;
  z-index: 2;
  display: none;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .cta__box-link {
    display: block;
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 430px;
  }
}
.cta__box-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 16px;
}
.cta__box-link:hover {
  color: #FFFFFF;
}
.cta__box {
  background-color: #141414;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cta__box-link:hover .cta__box {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.cta__box-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
}
.cta__box-arrow {
  width: 32px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(1);
          filter: invert(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cta__box-link:hover .cta__box-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .cta__box {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .cta__box-arrow {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .cta__box-link:hover .cta__box {
    -webkit-transform: none;
            transform: none;
  }
  .cta__box-link:hover .cta__box-arrow {
    -webkit-transform: none;
            transform: none;
  }
}
@media (prefers-contrast: high) {
  .cta__box {
    border: 1px solid #FFFFFF;
  }
}
@media (prefers-contrast: high) and (min-width: 768px) {
  .cta__content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #DEDEDE;
  }
}
.opinions {
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .opinions {
    padding-block: 3rem;
  }
}
@media (min-width: 1024px) {
  .opinions {
    padding-block: 4rem;
  }
}
.opinions__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #141414;
  text-align: left;
  margin-bottom: 3rem;
  line-height: 1.2;
  margin-top: 0;
}
.opinions__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
@media (min-width: 768px) {
  .opinions__title {
    margin-bottom: 4rem;
  }
}
.opinions__slider-wrapper {
  position: relative;
  padding: 0 16px;
  margin: 0 -16px;
}
@media (min-width: 768px) {
  .opinions__slider-wrapper {
    padding: 0 32px;
    margin: 0 -32px;
  }
}
@media (min-width: 1024px) {
  .opinions__slider-wrapper {
    padding: 0 48px;
    margin: 0 -48px;
  }
}
.opinions__card {
  background-color: #F8F8F8;
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .opinions__card {
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .opinions__card {
    padding: 24px;
  }
}
.opinions__card-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 1.5rem;
}
.opinions__text {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
  margin-bottom: 1.5rem;
  font-style: normal;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.opinions__text p {
  margin-bottom: 1rem;
}
.opinions__text p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .opinions__text {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  }
}
.opinions__products-section {
  margin-top: 2rem;
}
.opinions__products-title {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  color: #141414;
  margin-bottom: 1rem;
  line-height: 1.2;
  margin-top: 0;
}
.opinions__products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.opinions__product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  min-width: 80px;
}
.opinions__product-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #DEDEDE;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.opinions__product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.opinions__product-name {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  color: #434343;
  text-align: center;
  line-height: 1.2;
}
.opinions__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.opinions__author-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #DEDEDE;
  background-color: #FFFFFF;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.opinions__author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.opinions__author-details {
  min-width: 0;
}
.opinions__author-name {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: #141414;
  display: block;
  margin-bottom: 2px;
  font-style: normal;
}
.opinions__author-instagram {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
  display: block;
}
.opinions .swiper-button-next,
.opinions .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -24px;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #141414;
  background-color: #FFFFFF;
  border-radius: 50%;
  border: 1px solid #DEDEDE;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.opinions .swiper-button-next svg,
.opinions .swiper-button-prev svg {
  width: 24px;
  height: 24px;
}
.opinions .swiper-button-next::after,
.opinions .swiper-button-prev::after {
  display: none;
}
.opinions .swiper-button-next:hover,
.opinions .swiper-button-prev:hover {
  background-color: #141414;
  color: #FFFFFF;
  border-color: #141414;
}
.opinions .swiper-button-next:focus-visible,
.opinions .swiper-button-prev:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.opinions .swiper-button-next.swiper-button-disabled,
.opinions .swiper-button-prev.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.opinions .swiper-button-next.swiper-button-disabled:hover,
.opinions .swiper-button-prev.swiper-button-disabled:hover {
  background-color: #FFFFFF;
  color: #141414;
  border-color: #DEDEDE;
}
.opinions .swiper-button-prev {
  left: 5px;
}
@media (min-width: 768px) {
  .opinions .swiper-button-prev {
    left: 8px;
  }
}
@media (min-width: 1024px) {
  .opinions .swiper-button-prev {
    left: 25px;
  }
}
.opinions .swiper-button-next {
  right: 5px;
}
@media (min-width: 768px) {
  .opinions .swiper-button-next {
    right: 8px;
  }
}
@media (min-width: 1024px) {
  .opinions .swiper-button-next {
    right: 25px;
  }
}
.opinions .swiper-pagination {
  position: static;
  margin-top: 2rem;
}
.opinions .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #DEDEDE;
  opacity: 1;
  margin: 0 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.opinions .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #434343;
}
.opinions .swiper-pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.opinions .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #141414;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (min-width: 768px) {
  .opinions__card {
    min-height: 400px;
  }
}
@media (min-width: 1024px) {
  .opinions__card {
    min-height: 450px;
  }
  .opinions__text {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .opinions .swiper-button-next,
  .opinions .swiper-button-prev {
    -webkit-transition: none;
    transition: none;
  }
  .opinions .swiper-pagination-bullet {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@media (prefers-contrast: high) {
  .opinions__card {
    border: 1px solid #141414;
  }
  .opinions .swiper-button-next,
  .opinions .swiper-button-prev {
    border: 2px solid #141414;
  }
  .opinions__product-image, .opinions__author-image {
    border: 1px solid #141414;
  }
  .opinions .swiper-pagination-bullet {
    border: 1px solid #141414;
  }
  .opinions .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 2px solid #141414;
  }
}
.partner-logos {
  padding-block: 4rem;
}
.partner-logos__title {
  text-align: left;
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}
.partner-logos__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.partner-logos__carousel-container {
  position: relative;
  margin-bottom: 2rem;
}
.partner-logos__carousel-container .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.partner-logos__carousel {
  overflow: hidden;
  padding-inline: 50px;
}
@media (min-width: 768px) {
  .partner-logos__carousel {
    padding-inline: 60px;
  }
}
.partner-logos__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
  opacity: 0.5;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@media (min-width: 768px) {
  .partner-logos__slide {
    height: 100px;
  }
}
@media (min-width: 1024px) {
  .partner-logos__slide {
    height: 120px;
  }
}
.partner-logos__slide.swiper-slide-active {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.partner-logos__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  padding: 1rem;
}
.partner-logos__logo {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.partner-logos__button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid #DEDEDE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.partner-logos__button svg {
  width: 24px;
  height: 24px;
}
.partner-logos__button:hover {
  background-color: #141414;
  border-color: #141414;
  color: #FFFFFF;
}
.partner-logos__button:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.partner-logos__button--prev {
  left: 0;
}
.partner-logos__button--next {
  right: 0;
}
.partner-logos__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.partner-logos__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #A3A3A3;
  opacity: 0.7;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  border: none;
  padding: 0;
}
.partner-logos__pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.partner-logos__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #E20A19;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .partner-logos__slide {
    -webkit-transition: none;
    transition: none;
  }
  .partner-logos__button {
    -webkit-transition: none;
    transition: none;
  }
  .partner-logos__pagination .swiper-pagination-bullet {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@media (prefers-contrast: high) {
  .partner-logos__slide {
    opacity: 0.8;
  }
  .partner-logos__button {
    border: 2px solid #141414;
  }
  .partner-logos__button:hover {
    background-color: #141414;
    color: #FFFFFF;
  }
  .partner-logos__pagination .swiper-pagination-bullet {
    border: 1px solid #141414;
    background-color: transparent;
  }
  .partner-logos__pagination .swiper-pagination-bullet-active {
    background-color: #141414;
    border-width: 2px;
  }
}
.checkout-page {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.checkout-page .site-header,
.checkout-page .site-footer {
  display: none;
}

.woocommerce-checkout.woocommerce-order-pay form#order_review {
  padding: 20px;
  max-width: 640px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead {
  border-bottom: 1px solid #d4d4d4;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead th {
  font-size: 14px;
  font-weight: 600;
  color: #312B2B;
  text-align: left;
  padding: 16px 0;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead th.product-name {
  width: 60%;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead th.product-quantity {
  width: 15%;
  text-align: center;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead th.product-total {
  width: 25%;
  text-align: right;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tbody .order_item {
  border-bottom: 1px solid rgba(212, 212, 212, 0.5);
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tbody .order_item td {
  padding: 12px 0;
  vertical-align: middle;
  font-size: 14px;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tbody .order_item td.product-name {
  color: #312B2B;
  font-weight: 500;
  padding-right: 12px;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tbody .order_item td.product-quantity {
  text-align: center;
  color: rgba(49, 43, 43, 0.8);
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tbody .order_item td.product-quantity strong {
  font-weight: 500;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tbody .order_item td.product-subtotal {
  text-align: right;
  font-weight: 600;
  color: #312B2B;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tbody .order_item:last-child {
  border-bottom: none;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr th, .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr td {
  padding: 12px 0;
  font-size: 14px;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr th {
  text-align: left;
  font-weight: 500;
  color: #312B2B;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr td {
  text-align: right;
  font-weight: 600;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr td small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: rgba(49, 43, 43, 0.7);
  margin-top: 2px;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr:nth-last-child(2) th, .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr:nth-last-child(2) td {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #141414;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr:last-child th, .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr:last-child td {
  padding-top: 16px;
  border-top: 1px solid #d4d4d4;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review #payment {
  margin-top: 24px;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review #payment #place_order {
  width: 100%;
  background-color: #141414;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 16px;
  border-radius: 6px;
  border: none;
  margin-top: 16px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.woocommerce-checkout.woocommerce-order-pay form#order_review #payment #place_order:hover {
  background-color: rgb(7.25, 7.25, 7.25);
}
@media (max-width: 675px) {
  .woocommerce-checkout.woocommerce-order-pay form#order_review {
    padding: 16px;
  }
  .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead th {
    font-size: 12px;
  }
  .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead th.product-name {
    width: 50%;
  }
  .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead th.product-quantity {
    width: 20%;
  }
  .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table thead th.product-total {
    width: 30%;
  }
  .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tbody .order_item td {
    font-size: 12px;
  }
  .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr th, .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr td {
    font-size: 12px;
  }
  .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr:nth-last-child(2) th, .woocommerce-checkout.woocommerce-order-pay form#order_review .shop_table tfoot tr:nth-last-child(2) td {
    font-size: 14px;
  }
}

.checkout-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #d4d4d4;
}
.checkout-header__main {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.checkout-header__main--inner {
  width: 100%;
  max-width: 605px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkout-header__right {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.checkout-header__right--inner {
  width: 100%;
  max-width: 495px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.checkout-header__logo-img {
  max-height: 40px;
  width: auto;
  height: auto;
}
.checkout-header__cart-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.checkout-header__cart-link:hover {
  background-color: rgba(49, 43, 43, 0.05);
}
.checkout-header__cart-link svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.checkout-header__cart-link:hover svg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.checkout-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.checkout-footer {
  border-top: 1px solid #d4d4d4;
  background-color: #ffffff;
}
.checkout-footer__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.checkout-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkout-footer__link {
  font-size: 14px;
  color: #312B2B;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.checkout-footer__link:hover {
  opacity: 0.7;
}

@media (max-width: 675px) {
  .checkout-footer__container {
    padding: 0 16px;
    height: 50px;
  }
  .checkout-footer__links {
    gap: 16px;
  }
  .checkout-footer__link {
    font-size: 13px;
  }
}
.woocommerce-checkout.woocommerce-page .site-header,
.woocommerce-checkout.woocommerce-page .site-footer,
.woocommerce-checkout.woocommerce-page .newsletter {
  display: none;
}
.woocommerce-checkout.woocommerce-page .checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 100vh;
}
.woocommerce-checkout.woocommerce-page .checkout__main {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.woocommerce-checkout.woocommerce-page .checkout__main--inner {
  width: 100%;
  max-width: 605px;
  padding: 20px;
  padding-top: 32px;
  padding-right: 40px;
}
.woocommerce-checkout.woocommerce-page .checkout__summary {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-left: 1px solid #d4d4d4;
  background-color: #F5F5F5;
}
.woocommerce-checkout.woocommerce-page .checkout__summary--inner {
  width: 100%;
  max-width: 495px;
  padding: 20px;
  padding-top: 32px;
  padding-left: 40px;
}
.woocommerce-checkout.woocommerce-page .checkout__summary--inner h3#order_review_heading {
  font-size: 22px;
  font-weight: 500;
  color: #312B2B;
  margin-bottom: 12px;
}
.woocommerce-checkout.woocommerce-page .checkout__section {
  margin-bottom: 32px;
}
.woocommerce-checkout.woocommerce-page .checkout__section-title {
  font-size: 22px;
  font-weight: 500;
  color: #312B2B;
  margin-bottom: 12px;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .woocommerce-checkout.woocommerce-page .checkout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .woocommerce-checkout.woocommerce-page .checkout__main, .woocommerce-checkout.woocommerce-page .checkout__summary {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .woocommerce-checkout.woocommerce-page .checkout__main--inner, .woocommerce-checkout.woocommerce-page .checkout__summary--inner {
    width: 100%;
    max-width: 605px;
    padding: 20px;
    padding-top: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .woocommerce-checkout.woocommerce-page .checkout__summary {
    border-left: none;
    border-top: 1px solid #d4d4d4;
  }
}
.woocommerce-checkout.woocommerce-page .col2-set {
  display: block;
}
.woocommerce-checkout.woocommerce-page .col2-set .col-1,
.woocommerce-checkout.woocommerce-page .col2-set .col-2 {
  width: 100%;
  float: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-billing-fields h3,
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-fields h3 {
  font-size: 22px;
  font-weight: 500;
  color: #312B2B;
  margin-bottom: 12px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout.woocommerce-page .woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 675px) {
  .woocommerce-checkout.woocommerce-page .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout.woocommerce-page .woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-checkout.woocommerce-page .woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout.woocommerce-page .woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.woocommerce-checkout.woocommerce-page .woocommerce-additional-fields {
  margin-top: 20px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper {
  display: grid;
  gap: 16px;
}
.woocommerce-checkout.woocommerce-page .form-row {
  margin-bottom: 0 !important;
  position: relative;
  float: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (min-width: 675px) {
  .woocommerce-checkout.woocommerce-page .form-row.form-row-wide, .woocommerce-checkout.woocommerce-page .form-row[class*=address], .woocommerce-checkout.woocommerce-page .form-row[class*=email], .woocommerce-checkout.woocommerce-page .form-row[class*=phone], .woocommerce-checkout.woocommerce-page .form-row[class*=country], .woocommerce-checkout.woocommerce-page .form-row.notes {
    grid-column: 1/-1;
  }
}
.woocommerce-checkout.woocommerce-page .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #312B2B;
  margin-bottom: 4px;
}
.woocommerce-checkout.woocommerce-page .form-row label .required {
  color: #141414;
  font-weight: normal;
}
.woocommerce-checkout.woocommerce-page .form-row input[type=text],
.woocommerce-checkout.woocommerce-page .form-row input[type=email],
.woocommerce-checkout.woocommerce-page .form-row input[type=tel],
.woocommerce-checkout.woocommerce-page .form-row input[type=password],
.woocommerce-checkout.woocommerce-page .form-row select#billing_country,
.woocommerce-checkout.woocommerce-page .form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 16px;
  color: #312B2B;
  background-color: #ffffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 48px;
  font-family: inherit;
}
.woocommerce-checkout.woocommerce-page .form-row input[type=text]:focus,
.woocommerce-checkout.woocommerce-page .form-row input[type=email]:focus,
.woocommerce-checkout.woocommerce-page .form-row input[type=tel]:focus,
.woocommerce-checkout.woocommerce-page .form-row input[type=password]:focus,
.woocommerce-checkout.woocommerce-page .form-row select#billing_country:focus,
.woocommerce-checkout.woocommerce-page .form-row textarea:focus {
  outline: none;
  border-color: #141414;
  -webkit-box-shadow: 0 0 0 2px rgba(20, 20, 20, 0.1);
          box-shadow: 0 0 0 2px rgba(20, 20, 20, 0.1);
}
.woocommerce-checkout.woocommerce-page .form-row input[type=text]::-webkit-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=email]::-webkit-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=tel]::-webkit-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=password]::-webkit-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row select#billing_country::-webkit-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row textarea::-webkit-input-placeholder {
  color: rgb(130.4891304348, 114.5108695652, 114.5108695652);
}
.woocommerce-checkout.woocommerce-page .form-row input[type=text]::-moz-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=email]::-moz-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=tel]::-moz-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=password]::-moz-placeholder, .woocommerce-checkout.woocommerce-page .form-row select#billing_country::-moz-placeholder, .woocommerce-checkout.woocommerce-page .form-row textarea::-moz-placeholder {
  color: rgb(130.4891304348, 114.5108695652, 114.5108695652);
}
.woocommerce-checkout.woocommerce-page .form-row input[type=text]:-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=email]:-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=tel]:-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=password]:-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row select#billing_country:-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row textarea:-ms-input-placeholder {
  color: rgb(130.4891304348, 114.5108695652, 114.5108695652);
}
.woocommerce-checkout.woocommerce-page .form-row input[type=text]::-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=email]::-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=tel]::-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row input[type=password]::-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row select#billing_country::-ms-input-placeholder, .woocommerce-checkout.woocommerce-page .form-row textarea::-ms-input-placeholder {
  color: rgb(130.4891304348, 114.5108695652, 114.5108695652);
}
.woocommerce-checkout.woocommerce-page .form-row input[type=text]::placeholder,
.woocommerce-checkout.woocommerce-page .form-row input[type=email]::placeholder,
.woocommerce-checkout.woocommerce-page .form-row input[type=tel]::placeholder,
.woocommerce-checkout.woocommerce-page .form-row input[type=password]::placeholder,
.woocommerce-checkout.woocommerce-page .form-row select#billing_country::placeholder,
.woocommerce-checkout.woocommerce-page .form-row textarea::placeholder {
  color: rgb(130.4891304348, 114.5108695652, 114.5108695652);
}
.woocommerce-checkout.woocommerce-page .form-row select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 32px;
}
.woocommerce-checkout.woocommerce-page .form-row textarea {
  min-height: 100px;
  resize: vertical;
  height: auto;
}
.woocommerce-checkout.woocommerce-page .form-row.form-row-wide.create-account .woocommerce-form__label-for-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 0;
}
.woocommerce-checkout.woocommerce-page .form-row.form-row-wide.create-account .woocommerce-form__label-for-checkbox input[type=checkbox] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #141414;
  cursor: pointer;
}
.woocommerce-checkout.woocommerce-page .form-row.form-row-wide.create-account .woocommerce-form__label-for-checkbox span {
  font-size: 14px;
  line-height: 1.4;
}
.woocommerce-checkout.woocommerce-page .woocommerce-additional-fields h3 {
  font-size: 18px;
  font-weight: 600;
  color: #312B2B;
  margin-bottom: 20px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-account-fields .create-account {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgb(224.75, 224.75, 224.75);
}
.woocommerce-checkout.woocommerce-page .select2-container .select2-selection--single {
  height: 48px !important;
  border: 1px solid #d4d4d4 !important;
  border-radius: 6px !important;
}
.woocommerce-checkout.woocommerce-page .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 46px !important;
  padding-left: 16px !important;
  color: #312B2B !important;
}
.woocommerce-checkout.woocommerce-page .select2-container .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
}
.woocommerce-checkout.woocommerce-page .select2-container.select2-container--focus .select2-selection--single {
  border-color: #141414 !important;
  -webkit-box-shadow: 0 0 0 2px rgba(20, 20, 20, 0.1) !important;
          box-shadow: 0 0 0 2px rgba(20, 20, 20, 0.1) !important;
}
.woocommerce-checkout.woocommerce-page #ship-to-different-address {
  margin-top: 12px;
  margin-bottom: 20px;
}
.woocommerce-checkout.woocommerce-page #ship-to-different-address .woocommerce-form__label-for-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}
.woocommerce-checkout.woocommerce-page #ship-to-different-address .woocommerce-form__label-for-checkbox input[type=checkbox] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #141414;
  cursor: pointer;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  table-layout: fixed;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot th, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot td {
  all: unset;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr td {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  border-top: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr.cart_item {
  border-bottom: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td {
  padding: 16px 0;
  vertical-align: top;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-thumbnail {
  width: 80px;
  padding-right: 16px;
  position: relative;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-thumbnail .product-thumbnail-wrapper {
  position: relative;
  display: inline-block;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-thumbnail .product-quantity-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: 600;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-thumbnail img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgb(224.75, 224.75, 224.75);
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name {
  width: auto;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-info {
  margin-bottom: 16px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-info .product-title {
  font-size: 14px;
  font-weight: 500;
  color: #312B2B;
  line-height: 1.4;
  margin-bottom: 8px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-info dl {
  margin: 0;
  font-size: 12px;
  color: rgb(130.4891304348, 114.5108695652, 114.5108695652);
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-info dl dt, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-info dl dd {
  display: inline;
  margin: 0;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-info dl dt {
  font-weight: 600;
  color: #312B2B;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F5F5F5;
  border-radius: 50px;
  padding: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid rgb(224.75, 224.75, 224.75);
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty {
  width: 50px;
  height: 36px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #312B2B;
  margin: 0 4px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty:focus {
  outline: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty::-webkit-outer-spin-button, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty[type=number] {
  -moz-appearance: textfield;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #ffffff;
  border-radius: 50%;
  color: #312B2B;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty-btn:hover {
  background: #141414;
  color: white;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-name .product-quantity .quantity .qty-btn:disabled:hover {
  background: #ffffff;
  color: #312B2B;
  -webkit-transform: none;
          transform: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tbody tr td.product-total {
  width: 100px;
  text-align: right;
  font-weight: 600;
  color: #312B2B;
  font-size: 16px;
  padding-right: 0;
  padding-left: 16px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal {
  border-top: 1px solid rgb(224.75, 224.75, 224.75);
  border-bottom: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.shipping-total {
  border-bottom: 1px solid #d4d4d4;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.order-total {
  border-top: 1px solid #d4d4d4;
  border-bottom: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.order-total th, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-weight: 600;
  font-size: 18px;
  color: #312B2B;
  padding-top: 16px;
  padding-bottom: 16px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.order-total small.includes_tax {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr th, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr td {
  padding: 12px 0;
  font-size: 14px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr th {
  font-weight: 500;
  color: #312B2B;
  text-align: left;
  padding-left: 0;
  width: auto;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr td {
  font-weight: 600;
  color: #312B2B;
  text-align: right;
  padding-right: 0;
  width: 100px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr td .amount {
  font-weight: 600;
}
.woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.shipping-total th, .woocommerce-checkout.woocommerce-page .woocommerce-checkout-review-order-table tfoot tr.shipping-total td {
  color: rgb(89.7445652174, 78.7554347826, 78.7554347826);
  font-weight: 500;
}

.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li {
  position: relative;
  margin: 0;
  border: 1px solid #DEDEDE;
  background-color: #ffffff;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:only-child {
  border-radius: 7px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:first-child:not(:only-child) {
  border-radius: 7px 7px 0 0;
  border-bottom: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:not(:first-child):not(:last-child) {
  border-radius: 0;
  border-bottom: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:last-child:not(:only-child) {
  border-radius: 0 0 7px 7px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:has(> input[type=radio].shipping_method:checked) {
  border: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > input[type=radio].shipping_method {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > input[type=radio].shipping_method:checked + label {
  background-color: rgba(20, 20, 20, 0.05);
  border: 1px solid #141414;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > input[type=radio].shipping_method:checked + label::before {
  border-color: #141414;
  background-color: #141414;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > input[type=radio].shipping_method:checked + label::after {
  opacity: 1;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:only-child > input[type=radio].shipping_method:checked + label {
  border-radius: 7px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:first-child:not(:only-child) > input[type=radio].shipping_method:checked + label {
  border-radius: 7px 7px 0 0;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:not(:first-child):not(:last-child) > input[type=radio].shipping_method:checked + label {
  border-radius: 0;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li:last-child:not(:only-child) > input[type=radio].shipping_method:checked + label {
  border-radius: 0 0 7px 7px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  min-height: 60px;
  background: transparent;
  border: 1px solid transparent;
  gap: 5px;
  font-size: 14px;
  color: #312B2B;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > label:hover {
  background-color: rgba(20, 20, 20, 0.03);
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #DEDEDE;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: white;
  margin-right: 6px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > label::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > label img {
  margin-left: auto !important;
  max-height: 24px;
  max-width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.woocommerce-checkout.woocommerce-page .woocommerce-shipping-methods > li > label .woocommerce-Price-amount {
  font-weight: 500;
  color: #141414;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method {
  position: relative;
  margin: 0;
  border: 1px solid #DEDEDE;
  background-color: #ffffff;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:only-child {
  border-radius: 7px;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:first-child:not(:only-child) {
  border-radius: 7px 7px 0 0;
  border-bottom: none;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:not(:first-child):not(:last-child) {
  border-radius: 0;
  border-bottom: none;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:last-child:not(:only-child) {
  border-radius: 0 0 7px 7px;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:has(> input[type=radio].input-radio:checked) {
  border: none;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > input[type=radio].input-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > input[type=radio].input-radio:checked + label {
  background-color: rgba(20, 20, 20, 0.05);
  border: 1px solid #141414;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > input[type=radio].input-radio:checked + label::before {
  border-color: #141414;
  background-color: #141414;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > input[type=radio].input-radio:checked + label::after {
  opacity: 1;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > input[type=radio].input-radio:checked ~ .payment_box {
  display: block !important;
  margin: 0;
  padding: 16px;
  background-color: #F5F5F5;
  border-left: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
  border-top: none;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:only-child > input[type=radio].input-radio:checked + label {
  border-radius: 7px;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:first-child:not(:only-child) > input[type=radio].input-radio:checked + label {
  border-radius: 7px 7px 0 0;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:not(:first-child):not(:last-child) > input[type=radio].input-radio:checked + label {
  border-radius: 0;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:last-child:not(:only-child) > input[type=radio].input-radio:checked + label {
  border-radius: 0 0 7px 7px;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:last-child:not(:only-child) > input[type=radio].input-radio:checked + label:has(~ .payment_box) {
  border-radius: 0;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method:last-child:not(:only-child) > input[type=radio].input-radio:checked ~ .payment_box {
  border-radius: 0 0 7px 7px;
  border-bottom: 1px solid #DEDEDE;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  min-height: 50px;
  background: transparent;
  border: 1px solid transparent;
  gap: 12px;
  font-size: 14px;
  color: #312B2B;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > label:hover {
  background-color: rgba(20, 20, 20, 0.03);
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #DEDEDE;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: white;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > label::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method > label img {
  margin-left: auto;
  max-height: 28px;
  max-width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method .payment_box {
  display: none;
  border-radius: 0;
}
.woocommerce-checkout.woocommerce-page .wc_payment_methods.payment_methods.methods > .wc_payment_method .payment_box p {
  margin: 0;
  line-height: 1.4;
  font-size: 14px;
  color: #312B2B;
}

.woocommerce-checkout.woocommerce-page .checkout #paczkomat_id_wrapper {
  margin-top: 15px;
  display: block;
  padding: 0px;
  text-align: center;
  max-width: 710px;
}
.woocommerce-checkout.woocommerce-page .checkout #paczkomat_id_wrapper #paczkomat_id_field {
  border-radius: 7px 7px 0 0;
  padding: 30px;
  border: 1px solid #ededed;
  background: #fcfcfc;
}
.woocommerce-checkout.woocommerce-page .checkout #paczkomat_id_wrapper #open-geowidget {
  background-color: rgba(20, 20, 20, 0.04);
  border-radius: 0 0 7px 7px;
  font-weight: 400;
  color: #312B2B;
  width: 100%;
  border: 1px solid #141414;
}

.woocommerce-checkout.woocommerce-page button#place_order, .woocommerce-checkout.woocommerce-order-pay button#place_order {
  background: #141414;
  border-radius: 12px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.woocommerce-checkout.woocommerce-page button#place_order:hover, .woocommerce-checkout.woocommerce-order-pay button#place_order:hover {
  background: rgb(7.25, 7.25, 7.25);
  color: #eee;
}
.woocommerce-checkout.woocommerce-page .woocommerce-privacy-policy-text p, .woocommerce-checkout.woocommerce-order-pay .woocommerce-privacy-policy-text p {
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 24px;
  color: #312B2B;
}
.woocommerce-checkout.woocommerce-page .woocommerce-privacy-policy-text p a, .woocommerce-checkout.woocommerce-order-pay .woocommerce-privacy-policy-text p a {
  color: #141414;
}

.woocommerce-checkout.woocommerce-page .woocommerce-form-login-toggle,
.woocommerce-checkout.woocommerce-page .woocommerce-form-coupon-toggle {
  display: none;
}
.woocommerce-checkout.woocommerce-page .checkout__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}
.woocommerce-checkout.woocommerce-page .checkout__actions .btn-login-toggle,
.woocommerce-checkout.woocommerce-page .checkout__actions .btn-coupon-toggle {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  background-color: rgba(20, 20, 20, 0.05);
  border: 1px solid #141414;
  color: #312B2B;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.woocommerce-checkout.woocommerce-page .checkout__actions .btn-login-toggle svg,
.woocommerce-checkout.woocommerce-page .checkout__actions .btn-coupon-toggle svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.woocommerce-checkout.woocommerce-page .checkout__actions .btn-login-toggle:hover,
.woocommerce-checkout.woocommerce-page .checkout__actions .btn-coupon-toggle:hover {
  background-color: rgba(20, 20, 20, 0.1);
}
.woocommerce-checkout.woocommerce-page .checkout-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
.woocommerce-checkout.woocommerce-page .checkout-popup .woocommerce-error,
.woocommerce-checkout.woocommerce-page .checkout-popup .woocommerce-info,
.woocommerce-checkout.woocommerce-page .checkout-popup .woocommerce-message {
  margin-bottom: 12px;
}
.woocommerce-checkout.woocommerce-page .checkout-popup.active {
  display: block;
}
.woocommerce-checkout.woocommerce-page .checkout-popup.closing .checkout-popup__content {
  -webkit-animation: popup-exit 0.3s ease forwards;
          animation: popup-exit 0.3s ease forwards;
}
.woocommerce-checkout.woocommerce-page .checkout-popup.closing .checkout-popup__overlay {
  -webkit-animation: overlay-fade-out 0.3s ease forwards;
          animation: overlay-fade-out 0.3s ease forwards;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  -webkit-animation: overlay-fade-in 0.3s ease;
          animation: overlay-fade-in 0.3s ease;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-animation: popup-appear 0.3s ease;
          animation: popup-appear 0.3s ease;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content h3 {
  font-size: 22px;
  font-weight: 500;
  color: #312B2B;
  margin-bottom: 12px;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .popup-error-message {
  margin-bottom: 16px;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .popup-error-message .woocommerce-error {
  background-color: #fff1f0;
  border-left: 3px solid #e74c3c;
  color: #e74c3c;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login,
.woocommerce-checkout.woocommerce-page .checkout-popup__content .checkout_coupon {
  display: block !important;
  margin: 0;
  padding: 0;
  border: none;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login p,
.woocommerce-checkout.woocommerce-page .checkout-popup__content .checkout_coupon p {
  margin-bottom: 16px;
  font-size: 14px;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login .form-row,
.woocommerce-checkout.woocommerce-page .checkout-popup__content .checkout_coupon .form-row {
  margin-bottom: 12px !important;
}
@media (min-width: 675px) {
  .woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login .form-row.form-row-first, .woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login .form-row.form-row-last,
  .woocommerce-checkout.woocommerce-page .checkout-popup__content .checkout_coupon .form-row.form-row-first,
  .woocommerce-checkout.woocommerce-page .checkout-popup__content .checkout_coupon .form-row.form-row-last {
    width: 100%;
    float: none;
  }
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login button.button,
.woocommerce-checkout.woocommerce-page .checkout-popup__content .checkout_coupon button.button {
  background-color: #141414;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  width: 100%;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login button.button:hover,
.woocommerce-checkout.woocommerce-page .checkout-popup__content .checkout_coupon button.button:hover {
  background-color: rgb(7.25, 7.25, 7.25);
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login p {
  font-size: 14px;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__content .woocommerce-form-login .woocommerce-form-login__rememberme input[type=checkbox] {
  margin: 0;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  font-size: 24px;
  line-height: 1;
  color: #312B2B;
  cursor: pointer;
  background-color: #F5F5F5;
  border-radius: 6px;
}
.woocommerce-checkout.woocommerce-page .checkout-popup__close:hover {
  color: #141414;
}

@-webkit-keyframes popup-appear {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes popup-appear {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes popup-exit {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
  }
}
@keyframes popup-exit {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
  }
}
@-webkit-keyframes overlay-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes overlay-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes overlay-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes overlay-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body.popup-open {
  overflow: hidden;
}

.woocommerce-checkout.woocommerce-page .woocommerce-NoticeGroup {
  margin-bottom: 20px;
}
.woocommerce-checkout.woocommerce-page .form-row.woocommerce-invalid input.input-text,
.woocommerce-checkout.woocommerce-page .form-row.woocommerce-validated input.input-text {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-error,
.woocommerce-checkout.woocommerce-page .woocommerce-info,
.woocommerce-checkout.woocommerce-page .woocommerce-message {
  background-color: #FFF5F5;
  border: 1px solid rgba(231, 76, 60, 0.15);
  border-radius: 6px;
  color: #480f06;
  padding: 16px;
  margin: 0;
  list-style: none;
  font-size: 14px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-error li,
.woocommerce-checkout.woocommerce-page .woocommerce-info li,
.woocommerce-checkout.woocommerce-page .woocommerce-message li {
  position: relative;
  padding: 4px 0 4px 31px;
  margin-bottom: 5px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-checkout.woocommerce-page .woocommerce-error li:last-child,
.woocommerce-checkout.woocommerce-page .woocommerce-info li:last-child,
.woocommerce-checkout.woocommerce-page .woocommerce-message li:last-child {
  margin-bottom: 0;
}
.woocommerce-checkout.woocommerce-page .woocommerce-error li::before,
.woocommerce-checkout.woocommerce-page .woocommerce-info li::before,
.woocommerce-checkout.woocommerce-page .woocommerce-message li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1.5px solid #e74c3c;
  color: #e74c3c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-weight: bold;
}
.woocommerce-checkout.woocommerce-page .woocommerce-error li a,
.woocommerce-checkout.woocommerce-page .woocommerce-info li a,
.woocommerce-checkout.woocommerce-page .woocommerce-message li a {
  color: #480f06;
  text-decoration: none;
}
.woocommerce-checkout.woocommerce-page .woocommerce-error li a strong,
.woocommerce-checkout.woocommerce-page .woocommerce-info li a strong,
.woocommerce-checkout.woocommerce-page .woocommerce-message li a strong {
  font-weight: 500;
}
.woocommerce-checkout.woocommerce-page .woocommerce-error li a:hover,
.woocommerce-checkout.woocommerce-page .woocommerce-info li a:hover,
.woocommerce-checkout.woocommerce-page .woocommerce-message li a:hover {
  text-decoration: underline;
}
.woocommerce-checkout.woocommerce-page .woocommerce-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFF5F5;
  padding: 16px;
  color: #e74c3c;
}
.woocommerce-checkout.woocommerce-page .woocommerce-info::before {
  content: "!";
  margin-right: 12px;
  width: 18px;
  height: 18px;
  min-width: 20px;
  background-color: transparent;
  border: 1.5px solid #e74c3c;
  color: #e74c3c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-weight: bold;
}
.woocommerce-checkout.woocommerce-page .woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(39, 174, 96, 0.15);
  color: #27ae60;
  background-color: #F0FFF4;
  padding: 16px;
}
.woocommerce-checkout.woocommerce-page .woocommerce-message::before {
  content: "✓";
  margin-right: 12px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-color: transparent;
  border: 1.5px solid #27ae60;
  color: #27ae60;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
}
.woocommerce-checkout.woocommerce-page .checkout-inline-error-message {
  color: #e74c3c;
  font-size: 11px;
  margin-top: 3px;
  font-weight: 400;
}
.woocommerce-checkout.woocommerce-page .form-row.woocommerce-invalid label {
  color: #e74c3c;
}
.woocommerce-checkout.woocommerce-page .form-row.woocommerce-invalid input, .woocommerce-checkout.woocommerce-page .form-row.woocommerce-invalid select, .woocommerce-checkout.woocommerce-page .form-row.woocommerce-invalid textarea {
  border-color: rgba(231, 76, 60, 0.4);
  background-color: rgba(231, 76, 60, 0.03);
}
.woocommerce-checkout.woocommerce-page .form-row.woocommerce-validated input, .woocommerce-checkout.woocommerce-page .form-row.woocommerce-validated select, .woocommerce-checkout.woocommerce-page .form-row.woocommerce-validated textarea {
  border-color: rgba(39, 174, 96, 0.4);
  background-color: rgba(39, 174, 96, 0.03);
}

.about-why-us {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .about-why-us {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .about-why-us {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.about-why-us__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: #141414;
  margin-bottom: 3rem;
  text-align: center;
}
.about-why-us__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.about-why-us__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.about-why-us__advantages > .about-why-us__advantage {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.333% - 20px);
          flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
}
.about-why-us__advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.about-why-us__icon {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-why-us__svg-icon {
  width: 32px;
  height: 32px;
}
.about-why-us__advantage-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #141414;
  margin-bottom: 1rem;
  margin-top: 0;
}
.about-why-us__advantage-description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
  max-width: 350px;
}
.about-why-us__advantage-description p {
  margin-bottom: 1rem;
}
.about-why-us__advantage-description p:last-child {
  margin-bottom: 0;
}
.about-why-us .desktop-only {
  display: none;
}
@media (min-width: 1024px) {
  .about-why-us .desktop-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.about-why-us .mobile-tablet-only {
  display: block;
}
@media (min-width: 1024px) {
  .about-why-us .mobile-tablet-only {
    display: none;
  }
}
.about-why-us__slider-wrapper {
  margin-top: 2rem;
  position: relative;
}
.about-why-us__slider-wrapper .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.about-why-us__slider {
  overflow: visible;
}
.about-why-us__slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #A3A3A3;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.about-why-us__slider .swiper-pagination-bullet-active {
  background: #E20A19;
  opacity: 1;
  width: 12px;
  height: 12px;
}
.about-why-us__slider .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.about-why-us__slider .swiper-button-prev,
.about-why-us__slider .swiper-button-next {
  color: #141414;
  background: transparent;
  border: none;
  cursor: pointer;
}
.about-why-us__slider .swiper-button-prev:after,
.about-why-us__slider .swiper-button-next:after {
  font-size: 24px;
}
.about-why-us__slider .swiper-button-prev:focus-visible,
.about-why-us__slider .swiper-button-next:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.about-why-us__slider .swiper-button-prev {
  left: -5px;
}
.about-why-us__slider .swiper-button-next {
  right: -5px;
}
.about-why-us__slide {
  height: auto;
}

@media (min-width: 768px) {
  .about-why-us__slider {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-why-us__slider .swiper-pagination-bullet {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .about-why-us__slider .swiper-pagination-bullet {
    border: 1px solid #141414;
  }
  .about-why-us__slider .swiper-pagination-bullet-active {
    background: #141414;
    border-width: 2px;
  }
}
.product-gallery {
  position: relative;
  width: 100%;
}
.product-gallery__desktop {
  display: none;
}
@media (min-width: 768px) {
  .product-gallery__desktop {
    display: block;
  }
}
.product-gallery__main {
  margin-bottom: 1rem;
}
.product-gallery__main-image {
  display: block;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.product-gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-gallery__thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.product-gallery__thumbnail {
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  display: block;
}
.product-gallery__thumbnail:hover {
  border-color: #DEDEDE;
}
.product-gallery__thumbnail:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.product-gallery__thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-gallery__mobile {
  display: block;
}
@media (min-width: 768px) {
  .product-gallery__mobile {
    display: none;
  }
}
.product-gallery__slider {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
}
.product-gallery__slide {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-gallery__navigation {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.5rem;
  pointer-events: none;
}
.product-gallery__prev, .product-gallery__next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #141414;
  cursor: pointer;
  pointer-events: auto;
}
.product-gallery__prev:hover, .product-gallery__next:hover {
  background: rgba(255, 255, 255, 0.9);
}
.product-gallery__prev:focus-visible, .product-gallery__next:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.product-gallery__mobile-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-gallery__mobile-thumbs::-webkit-scrollbar {
  display: none;
}
.product-gallery__mobile-thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.product-gallery__mobile-thumb.is-active {
  border-color: #E20A19;
}
.product-gallery__mobile-thumb:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.product-gallery__mobile-thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery__thumbnail, .product-gallery__mobile-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .product-gallery__mobile-thumb.is-active {
    border-color: #141414;
    border-width: 3px;
  }
  .product-gallery__thumbnail:hover {
    border-color: #A3A3A3;
  }
  .product-gallery__prev, .product-gallery__next {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #141414;
  }
}
.product-upsells {
  padding-block: 2rem;
}
.product-upsells__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
  text-align: left;
}
.product-upsells__title .decorative-font {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.product-upsells__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .product-upsells__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-upsells__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .product-upsells .product-card__title {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }
}
@media (min-width: 1024px) {
  .product-upsells .product-card__title {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }
}

.product-usp {
  padding-block: 2rem;
}
.product-usp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .product-usp__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .product-usp__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-usp__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: #F4F4F4;
  border-radius: 8px;
}
.product-usp__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.product-usp__icon img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-usp__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #141414;
  font-weight: 500;
}
.product-usp__text p:last-child {
  margin-bottom: 0;
}

.product-accordions {
  padding-block: 2rem;
}
.product-accordions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.product-accordion {
  border-bottom: 1px solid #DEDEDE;
}
.product-accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
}
.product-accordion__header:hover .product-accordion__title {
  color: #E20A19;
}
.product-accordion__header:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.product-accordion__title {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 500;
  margin: 0;
  color: #141414;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.product-accordion__icon {
  position: relative;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-accordion__icon::before, .product-accordion__icon::after {
  content: "";
  position: absolute;
  background-color: #E20A19;
  border-radius: 1px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.product-accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.product-accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.product-accordion__content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.product-accordion__inner {
  padding: 0 0 1rem 0;
  color: #434343;
}
.product-accordion__inner p:last-child {
  margin-bottom: 0;
}
.product-accordion--active .product-accordion__icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
.product-accordion--active .product-accordion__content {
  max-height: 5000px;
}

@media (prefers-reduced-motion: reduce) {
  .product-accordion__icon::before, .product-accordion__icon::after {
    -webkit-transition: none;
    transition: none;
  }
  .product-accordion__content {
    -webkit-transition: none;
    transition: none;
  }
}
.countdown-timer {
  margin: 1.5rem 0;
  text-align: left;
}
.countdown-timer__header {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 500;
  color: #141414;
  margin-bottom: 0.5rem;
}
.countdown-timer__digits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .countdown-timer__digits {
    gap: 0.5rem;
  }
}
.countdown-timer__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.countdown-timer__number {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #141414;
  min-width: 2ch;
  text-align: center;
  position: relative;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}
.countdown-timer__number--changing {
  opacity: 0;
}
.countdown-timer__separator {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #141414;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 0;
  -webkit-animation: pulse 3s infinite ease-in-out;
          animation: pulse 3s infinite ease-in-out;
}
@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.countdown-timer__label {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  color: #434343;
  margin-top: 2px;
  white-space: nowrap;
}
.countdown-timer--finished {
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .countdown-timer__number {
    -webkit-transition: none;
    transition: none;
  }
  .countdown-timer__number--changing {
    opacity: 1;
  }
  .countdown-timer__separator {
    -webkit-animation: none;
            animation: none;
  }
}
@media (prefers-contrast: high) {
  .countdown-timer__header {
    color: #141414;
  }
  .countdown-timer__number {
    color: #141414;
  }
  .countdown-timer__separator {
    color: #141414;
  }
  .countdown-timer__label {
    color: #141414;
  }
}
.product-viewers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F4F4F4;
  border-radius: 999px;
  padding: 16px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.product-viewers__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 16px;
}
.product-viewers__text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #141414;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .product-viewers {
    -webkit-transition: none;
    transition: none;
  }
}
.extended-product-description {
  padding: 4rem 0;
}
.extended-product-description .container {
  overflow: hidden;
}
.extended-product-description__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #DEDEDE;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .extended-product-description__tabs {
    overflow-x: visible;
  }
}
.extended-product-description__tab {
  background: none;
  border: none;
  padding: 1.5rem 0.5rem;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #434343;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 0;
}
.extended-product-description__tab:hover {
  color: #141414;
}
.extended-product-description__tab:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 4px;
}
.extended-product-description__tab--active {
  color: #141414;
  border-bottom-color: #E20A19;
}
@media (min-width: 768px) {
  .extended-product-description__tab {
    padding: 1.5rem 1rem;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
  }
}
@media (min-width: 1024px) {
  .extended-product-description__tab {
    padding: 1.5rem 2rem;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
  }
}
.extended-product-description__content {
  position: relative;
  overflow: hidden;
}
.extended-product-description__panel {
  display: none;
  overflow: hidden;
}
.extended-product-description__panel--active {
  display: block;
}
.extended-product-description__panel:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 4px;
}
.extended-product-description__section {
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.extended-product-description__section:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .extended-product-description__section--two-column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .extended-product-description__text-content {
    width: 60%;
  }
}
.extended-product-description__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #141414;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  margin-top: 0;
}
.extended-product-description__description {
  color: #434343;
  line-height: 1.6;
}
.extended-product-description__description p {
  margin-bottom: 1rem;
}
.extended-product-description__description p:last-child {
  margin-bottom: 0;
}
.extended-product-description__intro {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .extended-product-description__intro {
    max-width: 70%;
  }
}
.extended-product-description__intro p {
  margin-bottom: 1rem;
}
.extended-product-description__intro p:last-child {
  margin-bottom: 0;
}
.extended-product-description__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
}
.extended-product-description__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .extended-product-description__image {
    width: 40%;
  }
}
.extended-product-description__media {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}
.extended-product-description__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .extended-product-description__media {
    width: 40%;
  }
}
.extended-product-description__video {
  width: 100%;
  border-radius: 24px;
  display: block;
}
.extended-product-description__effects {
  width: 100%;
}
.extended-product-description__effects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .extended-product-description__effects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .extended-product-description__effects-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.extended-product-description__effect-card {
  text-align: left;
  padding: 1.5rem;
  border-radius: 16px;
  background: #F8F8F8;
}
.swiper .extended-product-description__effect-card {
  height: auto;
  margin-right: 0;
  width: auto;
  min-width: 200px;
}
@media (min-width: 768px) {
  .swiper .extended-product-description__effect-card {
    width: auto;
  }
}
.extended-product-description__effect-icon {
  margin: 0 0 1rem 0;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.extended-product-description__effect-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.extended-product-description__effect-title {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #141414;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}
.extended-product-description__effect-description {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #434343;
  line-height: 1.5;
}
.extended-product-description__effect-description p {
  margin-bottom: 0.5rem;
}
.extended-product-description__effect-description p:last-child {
  margin-bottom: 0;
}
.extended-product-description__combining {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .extended-product-description__combining {
    grid-template-columns: repeat(2, 1fr);
  }
}
.extended-product-description__combining-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #141414;
  margin: 0 0 1.5rem 0;
}
.extended-product-description__combining-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.extended-product-description__combining-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #434343;
}
.extended-product-description__combining-item:last-child {
  margin-bottom: 0;
}
.extended-product-description__combining-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.extended-product-description__properties {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .extended-product-description__properties {
    grid-template-columns: repeat(2, 1fr);
  }
}
.extended-product-description__property-card {
  background: #F8F8F8;
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}
.extended-product-description__property-icon {
  margin: 0 0 1.5rem 0;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.extended-product-description__property-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.extended-product-description__property-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #141414;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}
.extended-product-description__property-description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #434343;
  line-height: 1.5;
}
.extended-product-description__property-description p {
  margin-bottom: 0.5rem;
}
.extended-product-description__property-description p:last-child {
  margin-bottom: 0;
}
.extended-product-description__composition p {
  margin-bottom: 1rem;
}
.extended-product-description__composition p:last-child {
  margin-bottom: 0;
}
.extended-product-description__reviews-intro {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .extended-product-description__reviews-intro {
    max-width: 70%;
  }
}
.extended-product-description__reviews-intro p {
  margin-bottom: 1rem;
}
.extended-product-description__reviews-intro p:last-child {
  margin-bottom: 0;
}
.extended-product-description__reviews {
  width: 100%;
}
.extended-product-description__reviews-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .extended-product-description__reviews-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .extended-product-description__reviews-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}
.swiper .extended-product-description__reviews-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper .extended-product-description__reviews-slider .extended-product-description__review-card {
  width: 300px;
  margin-right: 1.5rem;
}
@media (min-width: 768px) {
  .swiper .extended-product-description__reviews-slider .extended-product-description__review-card {
    width: 350px;
  }
}
.extended-product-description__review-card {
  background: #F8F8F8;
  border-radius: 16px;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.extended-product-description__review-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.extended-product-description__review-content p {
  margin-bottom: 1rem;
}
.extended-product-description__review-content p:last-child {
  margin-bottom: 0;
}
.extended-product-description__review-author {
  margin-top: auto;
}
.extended-product-description__review-name {
  font-weight: 600;
  color: #141414;
  margin-bottom: 0.25rem;
}
.extended-product-description__review-tag {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
}
.extended-product-description__faq {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #DEDEDE;
}
.extended-product-description__faq-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .extended-product-description__faq-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .extended-product-description__faq-intro {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
  }
}
.extended-product-description__faq-description p {
  margin-bottom: 1rem;
}
.extended-product-description__faq-description p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .extended-product-description__faq-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 60%;
  }
}
.extended-product-description__faq-accordion {
  border-bottom: 1px solid #DEDEDE;
}
.extended-product-description__faq-accordion:last-child {
  border-bottom: none;
}
.extended-product-description__faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.extended-product-description__faq-header:hover {
  color: #E20A19;
}
.extended-product-description__faq-header:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 4px;
}
.extended-product-description__faq-header[aria-expanded=true] .extended-product-description__faq-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.extended-product-description__faq-question {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: #141414;
  margin: 0;
  text-align: left;
  line-height: 1.2;
}
.extended-product-description__faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1rem;
}
.extended-product-description__faq-icon::before, .extended-product-description__faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #141414;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.extended-product-description__faq-icon::before {
  width: 16px;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.extended-product-description__faq-icon::after {
  width: 2px;
  height: 16px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.extended-product-description__faq-header:hover .extended-product-description__faq-icon::before, .extended-product-description__faq-header:hover .extended-product-description__faq-icon::after {
  background-color: #E20A19;
}
.extended-product-description__faq-content {
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.extended-product-description__faq-content[aria-hidden=true] {
  max-height: 0;
}
.extended-product-description__faq-content[aria-hidden=false] {
  max-height: none;
}
.extended-product-description__faq-answer {
  padding: 0 0 1.5rem 0;
  color: #434343;
}
.extended-product-description__faq-answer p {
  margin-bottom: 1rem;
}
.extended-product-description__faq-answer p:last-child {
  margin-bottom: 0;
}

.extended-product-description__effects-grid.swiper,
.extended-product-description__reviews-slider.swiper {
  overflow: visible;
  padding-bottom: 1.5rem;
}
.extended-product-description__effects-grid.swiper .swiper-pagination,
.extended-product-description__reviews-slider.swiper .swiper-pagination {
  position: static;
  margin-top: 1rem;
}
.extended-product-description__effects-grid.swiper .swiper-pagination .swiper-pagination-bullet,
.extended-product-description__reviews-slider.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #DEDEDE;
  opacity: 1;
  margin: 0 4px;
}
.extended-product-description__effects-grid.swiper .swiper-pagination .swiper-pagination-bullet-active,
.extended-product-description__reviews-slider.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #E20A19;
}

@media (prefers-reduced-motion: reduce) {
  .extended-product-description__tab, .extended-product-description__faq-header {
    -webkit-transition: none;
    transition: none;
  }
  .extended-product-description__faq-icon {
    -webkit-transition: none;
    transition: none;
  }
  .extended-product-description__faq-icon::before, .extended-product-description__faq-icon::after {
    -webkit-transition: none;
    transition: none;
  }
  .extended-product-description__faq-content {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .extended-product-description__tab {
    border: 1px solid transparent;
  }
  .extended-product-description__tab--active {
    border-color: #E20A19;
    background: rgba(226, 10, 25, 0.1);
  }
  .extended-product-description__effect-card, .extended-product-description__property-card, .extended-product-description__review-card {
    border: 1px solid #DEDEDE;
  }
  .extended-product-description__faq-accordion {
    border-bottom-width: 2px;
  }
}
.archive-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .archive-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .archive-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.archive-hero__container {
  position: relative;
}
.archive-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .archive-hero__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3rem;
  }
}
.archive-hero__title-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}
@media (min-width: 768px) {
  .archive-hero__title-wrapper {
    max-width: 50%;
  }
}
.archive-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 0;
}
.archive-hero__title .decorative-font {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.archive-hero__description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}
@media (min-width: 768px) {
  .archive-hero__description {
    max-width: 50%;
  }
}
.archive-hero__description p {
  margin-bottom: 1rem;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: #434343;
}
.archive-hero__description p:last-child {
  margin-bottom: 0;
}

.shop-section {
  padding-bottom: 4rem;
}

.shop-layout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .shop-layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}

.shop-filters-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #141414;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .shop-filters-toggle {
    display: none;
  }
}
.shop-filters-toggle:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.shop-filters-toggle__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.shop-filters {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  max-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.shop-filters.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 768px) {
  .shop-filters {
    position: sticky;
    top: 20px;
    width: 300px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transform: none;
            transform: none;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    max-height: none;
  }
}
@media (min-width: 1024px) {
  .shop-filters {
    width: 320px;
  }
}
.shop-filters__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #DEDEDE;
}
@media (min-width: 768px) {
  .shop-filters__header {
    padding: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
}
.shop-filters__title {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  margin-bottom: 0;
}
.shop-filters__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  color: #141414;
}
.shop-filters__close:hover {
  background-color: #F4F4F4;
}
.shop-filters__close:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .shop-filters__close {
    display: none;
  }
}
.shop-filters__content {
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 768px) {
  .shop-filters__content {
    padding: 0;
  }
}
.shop-filters__section {
  margin-bottom: 2rem;
}
.shop-filters__section:last-child {
  margin-bottom: 0;
}
.shop-filters__section:empty {
  display: none;
}
.shop-filters__section-title {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.shop-filters__section-reset {
  margin-bottom: 2rem;
}
.shop-filters__section-reset .facetwp-facet {
  margin-bottom: 0;
}
.shop-filters__section-reset .facetwp-reset {
  display: inline-block;
  background: transparent;
  border: 1px solid #141414;
  border-radius: 999px;
  color: #141414;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.shop-filters__section-reset .facetwp-reset:hover {
  background-color: #141414;
  color: #FFFFFF;
}
.shop-filters__section-reset .facetwp-reset:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.shop-filters__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid #DEDEDE;
}
@media (min-width: 768px) {
  .shop-filters__actions {
    display: none;
  }
}
.shop-filters__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2rem;
  background-color: #141414;
  color: #FFFFFF;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.shop-filters__button:hover {
  background-color: rgb(45.5, 45.5, 45.5);
}
.shop-filters__button:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.shop-filters__button--apply {
  width: 100%;
  height: 48px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.shop-filters-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.shop-filters-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .shop-filters-overlay {
    display: none;
  }
}

.facetwp-facet {
  margin-bottom: 1rem !important;
}
.facetwp-facet .facetwp-display-value {
  color: #141414;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.facetwp-facet .facetwp-counter {
  color: #434343;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.facetwp-facet .facetwp-toggle {
  color: #141414;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.facetwp-facet .facetwp-toggle:hover {
  color: #E20A19;
}
.facetwp-facet .facetwp-checkbox {
  background: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  cursor: pointer;
}
.facetwp-facet .facetwp-checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border: 1px solid #DEDEDE;
  border-radius: 3px;
  background-color: #FFFFFF;
}
.facetwp-facet .facetwp-checkbox.checked::before {
  background-color: #E20A19;
  border-color: #E20A19;
}
.facetwp-facet .facetwp-checkbox.checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 12px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.facetwp-facet .facetwp-checkbox:hover::before {
  border-color: #141414;
}
.facetwp-facet .facetwp-checkbox.disabled {
  opacity: 0.4;
  cursor: default;
}
.facetwp-facet .facetwp-radio {
  background: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  cursor: pointer;
}
.facetwp-facet .facetwp-radio::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #DEDEDE;
  border-radius: 50%;
  background-color: #FFFFFF;
}
.facetwp-facet .facetwp-radio.checked::before {
  border-color: #E20A19;
}
.facetwp-facet .facetwp-radio.checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E20A19;
}
.facetwp-facet .facetwp-radio:hover::before {
  border-color: #141414;
}
.facetwp-facet .facetwp-radio.disabled {
  opacity: 0.4;
  cursor: default;
}
.facetwp-facet .facetwp-search {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.facetwp-facet .facetwp-search:focus {
  outline: none;
  border-color: #141414;
}

.facet-count {
  color: #A3A3A3;
  font-size: 0.9em;
}

.facetwp-selections {
  margin-bottom: 1rem;
}
.facetwp-selections ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.facetwp-selections li {
  background-color: #F4F4F4;
  border-radius: 4px;
  margin: 0;
  padding: 0;
}
.facetwp-selections li .facetwp-selection-value {
  display: inline-block;
  padding: 4px 28px 4px 10px;
  position: relative;
  margin: 0;
  background: none;
  cursor: pointer;
}
.facetwp-selections li .facetwp-selection-value:after {
  content: "×";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #A3A3A3;
  font-size: 16px;
  line-height: 1;
}
.facetwp-selections li .facetwp-selection-value:hover:after {
  color: #141414;
}

.shop-filters-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #141414;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .shop-filters-toggle {
    display: none;
  }
}
.shop-filters-toggle:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.shop-filters-toggle__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/**
 * Override FacetWP default styles
 * This CSS should be added to your theme's style.css or custom CSS section
 */
/* Remove default background images */
.facetwp-checkbox,
.facetwp-radio,
.facetwp-selection-value {
  background-image: none !important;
}

/* Reset specific styling */
.facetwp-type-reset .facetwp-reset {
  display: inline-block;
  background: transparent;
  border: 1px solid #141414; /* $text-primary */
  border-radius: 999px;
  color: #141414; /* $text-primary */
  font-weight: 500; /* $font-weight-medium */
  font-size: 0.95rem; /* $font-size-sm */
  padding: 0.7rem 1.7rem; /* $spacing-sm $spacing-lg */
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  width: 100%;
}

.facetwp-type-reset .facetwp-reset:hover {
  background-color: #141414; /* $text-primary */
  color: #FFFFFF; /* $white */
}

/* Fix checkbox styling */
.facetwp-checkbox {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  cursor: pointer;
}

.facetwp-checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #DEDEDE; /* $color-border */
  border-radius: 3px;
  background-color: #FFFFFF; /* $white */
}

.facetwp-checkbox.checked:before {
  background-color: #E20A19; /* $color-accent */
  border-color: #E20A19; /* $color-accent */
}

.facetwp-checkbox.checked:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #FFFFFF; /* $white */
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.shop-products {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.shop-products__header {
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}
.shop-products__header .woocommerce-notices-wrapper {
  margin-bottom: 1.5rem;
  width: 100%;
}
.shop-products__header .woocommerce-ordering {
  margin-bottom: 1.5rem;
  max-width: 260px;
  float: right;
}
.shop-products__header .woocommerce-ordering select {
  padding: 0.5rem 1.5rem;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  background-color: #FFFFFF;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #141414;
  width: 100%;
}
.shop-products__header .woocommerce-ordering select:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.shop-products__header::after {
  content: "";
  display: table;
  clear: both;
}
.shop-products__grid {
  margin-bottom: 3rem;
}
.shop-products__grid .products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .shop-products__grid .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .shop-products__grid .products {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}
.shop-products__footer .woocommerce-pagination {
  margin-top: 3rem;
  text-align: center;
}
.shop-products__footer .woocommerce-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}
.shop-products__footer .woocommerce-pagination .page-numbers li {
  margin: 0;
}
.shop-products__footer .woocommerce-pagination .page-numbers li .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  color: #141414;
  background-color: #F4F4F4;
}
.shop-products__footer .woocommerce-pagination .page-numbers li .page-numbers.current {
  background-color: #141414;
  color: #FFFFFF;
}
.shop-products__footer .woocommerce-pagination .page-numbers li .page-numbers:hover:not(.current) {
  background-color: #DEDEDE;
}
.shop-products__footer .woocommerce-pagination .page-numbers li .page-numbers:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}

.archive-description {
  padding-top: 3rem;
  padding-inline: 0rem;
}
.archive-description__content {
  text-align: center;
}
.archive-description__wrapper {
  position: relative;
}
.archive-description__wrapper.is-collapsed .archive-description__text {
  max-height: 6rem;
  overflow: hidden;
}
.archive-description__wrapper.is-collapsed .archive-description__text::after {
  opacity: 1;
  visibility: visible;
}
.archive-description__wrapper.is-expanded .archive-description__text {
  max-height: none;
  overflow: visible;
}
.archive-description__wrapper.is-expanded .archive-description__text::after {
  opacity: 0;
  visibility: hidden;
}
.archive-description__text {
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
  position: relative;
  text-align: left;
}
.archive-description__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#FFFFFF));
  background: linear-gradient(transparent, #FFFFFF);
  pointer-events: none;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
}
.archive-description__text p {
  margin-bottom: 1.5rem;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: #434343;
}
.archive-description__text p:last-child {
  margin-bottom: 0;
}
.archive-description__text h3, .archive-description__text h4, .archive-description__text h5, .archive-description__text h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #141414;
}
.archive-description__text h3:first-child, .archive-description__text h4:first-child, .archive-description__text h5:first-child, .archive-description__text h6:first-child {
  margin-top: 0;
}
.archive-description__text ul, .archive-description__text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.archive-description__text ul li, .archive-description__text ol li {
  margin-bottom: 0.5rem;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: #434343;
}
.archive-description__text strong {
  color: #141414;
  font-weight: 600;
}
.archive-description__text a {
  color: #E20A19;
}
.archive-description__text a:hover {
  text-decoration: underline;
}
.archive-description__text a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .archive-description__wrapper.is-collapsed .archive-description__text {
    max-height: 7.5rem;
  }
}
@media (min-width: 1024px) {
  .archive-description__wrapper.is-collapsed .archive-description__text {
    max-height: 9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .archive-description__text {
    -webkit-transition: none;
    transition: none;
  }
  .archive-description__text::after {
    -webkit-transition: none;
    transition: none;
  }
}
.woocommerce-result-count {
  display: none !important;
}

@media (hover: hover) {
  .shop-filters__checkbox input[type=checkbox]:hover {
    border-color: #141414;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-filters {
    -webkit-transition: none;
    transition: none;
  }
}
.shop-filters-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.shop-filters-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .shop-filters-overlay {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-filters-overlay {
    -webkit-transition: none;
    transition: none;
  }
}

.contact {
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
  }
}
.contact__form-section {
  width: 100%;
}
@media (min-width: 768px) {
  .contact__form-section {
    width: 50%;
  }
}
.contact__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: #141414;
  margin-bottom: 1.5rem;
}
.contact__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.contact__description {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: #434343;
  margin-bottom: 2rem;
}
.contact__description p {
  margin-bottom: 1rem;
}
.contact__description p:last-child {
  margin-bottom: 0;
}
.contact__form .wpcf7 {
  width: 100%;
}
.contact__form .wpcf7 form p {
  margin: 0;
}
.contact__form .wpcf7 label {
  display: block;
  font-weight: 500;
  color: #141414;
  margin-bottom: 0.25rem;
  width: 100%;
}
.contact__form .wpcf7 input[type=text],
.contact__form .wpcf7 input[type=email],
.contact__form .wpcf7 textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #DEDEDE;
  border-radius: 999px;
  background-color: #FFFFFF;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #141414;
  margin-bottom: 2rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact__form .wpcf7 input[type=text]::-webkit-input-placeholder, .contact__form .wpcf7 input[type=email]::-webkit-input-placeholder, .contact__form .wpcf7 textarea::-webkit-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}
.contact__form .wpcf7 input[type=text]::-moz-placeholder, .contact__form .wpcf7 input[type=email]::-moz-placeholder, .contact__form .wpcf7 textarea::-moz-placeholder {
  color: #A3A3A3;
  opacity: 1;
}
.contact__form .wpcf7 input[type=text]:-ms-input-placeholder, .contact__form .wpcf7 input[type=email]:-ms-input-placeholder, .contact__form .wpcf7 textarea:-ms-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}
.contact__form .wpcf7 input[type=text]::-ms-input-placeholder, .contact__form .wpcf7 input[type=email]::-ms-input-placeholder, .contact__form .wpcf7 textarea::-ms-input-placeholder {
  color: #A3A3A3;
  opacity: 1;
}
.contact__form .wpcf7 input[type=text]::placeholder,
.contact__form .wpcf7 input[type=email]::placeholder,
.contact__form .wpcf7 textarea::placeholder {
  color: #A3A3A3;
  opacity: 1;
}
.contact__form .wpcf7 input[type=text]:focus,
.contact__form .wpcf7 input[type=email]:focus,
.contact__form .wpcf7 textarea:focus {
  border-color: #141414;
  outline: none;
}
.contact__form .wpcf7 input[type=text]:focus-visible,
.contact__form .wpcf7 input[type=email]:focus-visible,
.contact__form .wpcf7 textarea:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.contact__form .wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
  border-radius: 24px;
  padding: 20px;
}
.contact__form .wpcf7 .wpcf7-acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2rem;
}
.contact__form .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__form .wpcf7 .wpcf7-acceptance input[type=checkbox] {
  margin-right: 0.5rem;
  margin-top: 0.25em;
  min-width: 18px;
  height: 18px;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #FFFFFF;
  position: relative;
  cursor: pointer;
}
.contact__form .wpcf7 .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #141414;
  border-color: #141414;
}
.contact__form .wpcf7 .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact__form .wpcf7 .wpcf7-acceptance input[type=checkbox]:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.contact__form .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #434343;
}
.contact__form .wpcf7 .wpcf7-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1;
  padding: 15px 24px;
  border: 1px solid #141414;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  background-color: #141414;
  color: #FFFFFF !important;
  text-decoration: none;
  overflow: hidden;
}
.contact__form .wpcf7 .wpcf7-submit::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: invert(1);
          filter: invert(1);
  display: inline-block;
}
.contact__form .wpcf7 .wpcf7-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgb(45.5, 45.5, 45.5);
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: -1;
}
.contact__form .wpcf7 .wpcf7-submit:hover {
  color: #FFFFFF !important;
  background-color: rgb(45.5, 45.5, 45.5);
}
.contact__form .wpcf7 .wpcf7-submit:hover::before {
  left: 0;
}
.contact__form .wpcf7 .wpcf7-submit:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-filter: invert(1);
          filter: invert(1);
}
.contact__form .wpcf7 .wpcf7-submit:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.contact__form .wpcf7 .wpcf7-spinner {
  margin-left: 0.5rem;
}
.contact__form .wpcf7 .wpcf7-not-valid-tip {
  color: #E20A19;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: -1.5rem;
  margin-bottom: 1rem;
  display: block;
}
.contact__form .wpcf7 .wpcf7-response-output {
  border: 1px solid #DEDEDE;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 0;
  margin-inline: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 16px;
}
.contact__form .wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .contact__form .wpcf7 .wpcf7-response-output.wpcf7-aborted {
  border-color: #E20A19;
  color: #E20A19;
}
.contact__form .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #46b450;
  color: #46b450;
}
.contact__image-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .contact__image-wrapper {
    width: 50%;
    aspect-ratio: auto;
  }
}
.contact__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .contact__image {
    aspect-ratio: auto;
  }
}

.contact-boxes {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.contact-boxes__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-boxes__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.contact-boxes__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .contact-boxes__item {
    width: 33.333%;
    padding-right: 2rem;
  }
}
.contact-boxes__icon {
  margin-bottom: 1rem;
}
.contact-boxes__icon img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-boxes__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #141414;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.contact-boxes__description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #434343;
  margin-bottom: 1rem;
}
.contact-boxes__description p {
  margin-bottom: 0.5rem;
}
.contact-boxes__description p:last-child {
  margin-bottom: 0;
}
.contact-boxes__link {
  color: #141414;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-boxes__link:hover {
  color: #E20A19;
}
.contact-boxes__link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.contact-boxes__text {
  color: #141414;
  font-weight: 600;
}

@media (prefers-contrast: high) {
  .contact__form .wpcf7 input[type=text],
  .contact__form .wpcf7 input[type=email],
  .contact__form .wpcf7 textarea {
    border: 2px solid #141414;
  }
  .contact__form .wpcf7 input[type=checkbox] {
    border: 2px solid #141414;
  }
  .contact-boxes__link {
    text-decoration: underline;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact__form .wpcf7 input[type=text],
  .contact__form .wpcf7 input[type=email],
  .contact__form .wpcf7 textarea,
  .contact__form .wpcf7 .wpcf7-submit {
    -webkit-transition: none;
    transition: none;
  }
  .contact__form .wpcf7 .wpcf7-submit::after,
  .contact__form .wpcf7 .wpcf7-submit::before {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .contact-boxes__link {
    -webkit-transition: none;
    transition: none;
  }
}
.cart-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .cart-page {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.cart-page__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media (min-width: 1024px) {
  .cart-page__main {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 70%;
            flex: 1 1 70%;
    max-width: 70%;
  }
}
.cart-page__sidebar {
  width: 100%;
}
@media (min-width: 1024px) {
  .cart-page__sidebar {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30%;
            flex: 1 1 30%;
    max-width: 30%;
    position: sticky;
    top: 30px;
  }
}

.shop_table.woocommerce-cart-form__contents {
  display: block;
  width: 100%;
}

.cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 1rem 0;
  border-bottom: 1px solid #DEDEDE;
  position: relative;
}
.cart-item--first, .cart-item--single {
  border-top: none;
}
.cart-item--last, .cart-item--single {
  border-bottom: none;
}
.cart-item__thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  width: 80px;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .cart-item__thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 100px;
  }
}
.cart-item__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.cart-item__thumbnail a {
  display: block;
  border-radius: 12px;
}
.cart-item__thumbnail a:focus {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.cart-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart-item__content dl {
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.cart-item__content dl dt, .cart-item__content dl dd {
  display: inline;
  margin: 0;
}
.cart-item__content dl dt {
  font-weight: 600;
  color: #141414;
}
.cart-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}
.cart-item__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 1rem;
}
.cart-item__title {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}
.cart-item__title a {
  color: #141414;
  text-decoration: none;
}
.cart-item__title a:hover {
  color: #E20A19;
}
.cart-item__title a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.cart-item__remove {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart-item__remove .remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #F8F8F8;
  border-radius: 50%;
  color: #141414;
  font-size: 26px;
  line-height: 0.8em;
  text-decoration: none;
  border: 1px solid #DEDEDE;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cart-item__remove .remove:hover {
  background-color: #E20A19;
  color: #FFFFFF;
}
.cart-item__remove .remove:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.cart-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .cart-item__bottom {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.cart-item__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}
.cart-item__quantity .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #DEDEDE;
  border-radius: 999px;
  padding: 8px;
  background: #FFFFFF;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  max-width: 300px;
}
.cart-item__quantity .quantity .qty-button {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #141414;
  padding: 0;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.cart-item__quantity .quantity .qty-button:hover {
  color: #E20A19;
}
.cart-item__quantity .quantity .qty-button:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 50%;
}
.cart-item__quantity .quantity .qty-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-item__quantity .quantity .qty-button:disabled:hover {
  color: #141414;
}
.cart-item__quantity .quantity input[type=number],
.cart-item__quantity .quantity .qty {
  width: 40px;
  border: none;
  text-align: center;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: #141414;
  padding: 0;
  background: transparent;
  -moz-appearance: textfield;
}
.cart-item__quantity .quantity input[type=number]::-webkit-outer-spin-button, .cart-item__quantity .quantity input[type=number]::-webkit-inner-spin-button,
.cart-item__quantity .quantity .qty::-webkit-outer-spin-button,
.cart-item__quantity .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-item__quantity .quantity input[type=number]:focus,
.cart-item__quantity .quantity .qty:focus {
  outline: none;
}
.cart-item__quantity .quantity input[type=number]:disabled,
.cart-item__quantity .quantity .qty:disabled {
  opacity: 0.7;
}
.cart-item__subtotal {
  font-weight: 700;
  color: #141414;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  margin-left: auto;
}
@media (min-width: 768px) {
  .cart-item__subtotal {
    text-align: right;
  }
}
.cart-item__subtotal del {
  color: #A3A3A3;
  font-weight: 400;
  margin-right: 0.25rem;
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.cart-item__subtotal ins {
  text-decoration: none;
  color: #141414;
}

.cart-item__savings {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #E20A19;
  font-weight: 500;
  margin-top: 4px;
  text-align: right;
}

.cart-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}
@media (min-width: 768px) {
  .cart-actions {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cart-actions .cart-update {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .cart-actions .cart-update {
    width: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.cart-actions .cart-update .button {
  width: 100%;
}
@media (min-width: 768px) {
  .cart-actions .cart-update .button {
    width: auto;
  }
}
.cart-actions .coupon {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .cart-actions .coupon {
    width: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cart-actions .coupon .input-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid #DEDEDE;
  border-radius: 40px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
@media (min-width: 768px) {
  .cart-actions .coupon .input-text {
    width: 180px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.cart-actions .coupon .input-text:focus {
  outline: 2px solid #E20A19;
  outline-offset: -2px;
  border-color: #E20A19;
}
.cart-actions .coupon .input-text.has-error {
  border-color: #e74c3c;
}
.cart-actions .coupon .coupon-error-notice {
  width: 100%;
  color: #e74c3c;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: 0.25rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.cart_totals {
  background-color: #F4F4F4;
  border-radius: 16px;
  padding: 2rem;
}
.cart_totals .cart-summary__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 2rem 0;
  color: #141414;
}
.cart_totals .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.cart_totals .shop_table th {
  text-align: left;
  font-weight: 500;
  color: #434343;
  padding: 0.5rem 0;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
.cart_totals .shop_table td {
  text-align: right;
  font-weight: 500;
  color: #141414;
  padding: 0.5rem 0;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
.cart_totals .shop_table td .amount {
  font-weight: inherit;
}
.cart_totals .shop_table td .includes_tax {
  display: block;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  color: #A3A3A3;
  margin-top: 2px;
}
.cart_totals .shop_table .cart-discount td {
  color: #E20A19;
}
.cart_totals .shop_table .cart-discount .woocommerce-remove-coupon {
  margin-left: 0.25rem;
  color: #A3A3A3;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
}
.cart_totals .shop_table .cart-discount .woocommerce-remove-coupon:hover {
  color: #E20A19;
  text-decoration: underline;
}
.cart_totals .shop_table .cart-savings-total th {
  color: #E20A19;
  background: rgba(226, 10, 25, 0.07);
  border-radius: 8px 0 0 8px;
  padding-left: 16px;
}
.cart_totals .shop_table .cart-savings-total td {
  color: #E20A19;
  font-weight: 700;
  background: rgba(226, 10, 25, 0.07);
  border-radius: 0 8px 8px 0;
  padding-right: 16px;
}
@media (max-width: 767px) {
  .cart_totals .shop_table .cart-savings-total th {
    padding-left: 16px;
  }
  .cart_totals .shop_table .cart-savings-total td {
    border-radius: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cart_totals .shop_table .order-total {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 700;
  border-top: 1px solid #DEDEDE;
  margin-top: 1rem;
  padding-top: 1rem;
}
.cart_totals .shop_table .order-total th,
.cart_totals .shop_table .order-total td {
  padding: 1rem 0;
  color: #141414;
}
.cart_totals .shop_table .order-total small.includes_tax {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  font-weight: 400;
  color: #141414;
}
.cart_totals .shipping {
  display: none;
}
.cart_totals .shipping ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
.cart_totals .shipping li {
  padding: 0.5rem 0;
}
.cart_totals .shipping li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5rem;
  cursor: pointer;
}
.cart_totals .shipping li label input[type=radio] {
  margin: 0;
}
.cart_totals .wc-proceed-to-checkout {
  margin-top: 2rem;
}
.cart_totals .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 500;
}

.minicart-savings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(226, 10, 25, 0.07);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
}
.minicart-savings__label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #E20A19;
  font-weight: 500;
}
.minicart-savings__amount {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #E20A19;
  font-weight: 700;
}
.minicart-savings__amount .woocommerce-Price-amount {
  color: inherit;
}

.cross-sells {
  margin-top: 4rem;
}
.cross-sells ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
@media (min-width: 768px) {
  .cross-sells ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .cross-sells ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: #FFF5F5;
  border: 1px solid rgba(231, 76, 60, 0.15);
  border-radius: 4px;
  color: #480f06;
  padding: 1rem;
  margin: 0 0 2rem 0;
  list-style: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
  position: relative;
  padding: 4px 0 4px 31px;
  margin-bottom: 5px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-error li:last-child,
.woocommerce-info li:last-child,
.woocommerce-message li:last-child {
  margin-bottom: 0;
}
.woocommerce-error li::before,
.woocommerce-info li::before,
.woocommerce-message li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1.5px solid #e74c3c;
  color: #e74c3c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-weight: bold;
}
.woocommerce-error li a,
.woocommerce-info li a,
.woocommerce-message li a {
  color: #480f06;
  text-decoration: none;
}
.woocommerce-error li a strong,
.woocommerce-info li a strong,
.woocommerce-message li a strong {
  font-weight: 500;
}
.woocommerce-error li a:hover,
.woocommerce-info li a:hover,
.woocommerce-message li a:hover {
  text-decoration: underline;
}

.woocommerce-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFF5F5;
  padding: 1rem;
  color: #e74c3c;
}
.woocommerce-info::before {
  content: "!";
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  min-width: 20px;
  background-color: transparent;
  border: 1.5px solid #e74c3c;
  color: #e74c3c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(39, 174, 96, 0.15);
  color: #27ae60;
  background-color: #F0FFF4;
  padding: 1rem;
}
.woocommerce-message::before {
  content: "✓";
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-color: transparent;
  border: 1.5px solid #27ae60;
  color: #27ae60;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  .cart-item__remove .remove,
  .cart-item__quantity .qty-button {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .cart-item__thumbnail img {
    border: 2px solid #141414;
  }
  .cart-item__remove .remove {
    border: 1px solid #141414;
  }
  .cart_totals {
    border: 2px solid #141414;
  }
  .cart-item__quantity .quantity {
    border: 2px solid #141414;
  }
}
.cart-greeting-card {
  margin-top: 3rem;
}
.cart-greeting-card__container {
  max-width: 100%;
}
.cart-greeting-card__message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.cart-greeting-card__message--success {
  background-color: rgba(34, 197, 94, 0.1);
  color: rgb(21, 128, 61);
}
.cart-greeting-card__message--error {
  background-color: rgba(239, 68, 68, 0.1);
  color: rgb(185, 28, 28);
}
.cart-greeting-card__toggle {
  margin-bottom: 1rem;
}
.cart-greeting-card__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
}
.cart-greeting-card__checkbox-label:hover {
  color: #E20A19;
}
.cart-greeting-card__checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #FFFFFF;
  border: 2px solid #141414;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cart-greeting-card__checkbox:checked {
  background-color: #141414;
}
.cart-greeting-card__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cart-greeting-card__checkbox:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.cart-greeting-card__checkbox-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #141414;
}
.cart-greeting-card__price {
  color: #E20A19;
  font-weight: 700;
}
.cart-greeting-card__config {
  padding-top: 1.5rem;
}
.cart-greeting-card__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.cart-greeting-card__section {
  border: none;
  padding: 0;
  margin: 0;
}
.cart-greeting-card__section:not(:last-child) {
  margin-bottom: 1rem;
}
.cart-greeting-card__section-title {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
  color: #141414;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.cart-greeting-card__templates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 768px) {
  .cart-greeting-card__templates {
    gap: 1.5rem;
  }
}
.cart-greeting-card__template-option {
  display: block;
  cursor: pointer;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}
.cart-greeting-card__template-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cart-greeting-card__template-radio:focus-visible + .cart-greeting-card__template-preview {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.cart-greeting-card__template-radio:checked + .cart-greeting-card__template-preview img {
  border-color: #E20A19;
}
.cart-greeting-card__template-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-greeting-card__template-image {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  border: 2px solid transparent;
  margin-bottom: 0.5rem;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
@media (min-width: 768px) {
  .cart-greeting-card__template-image {
    max-width: 120px;
  }
}
.cart-greeting-card__template-name {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #141414;
  text-align: center;
  line-height: 1.2;
}
.cart-greeting-card__personal-fields {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cart-greeting-card__personal-fields {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.cart-greeting-card__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.cart-greeting-card__label {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
  color: #141414;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.cart-greeting-card__input, .cart-greeting-card__select {
  padding: 1rem 1.5rem;
  border: 1px solid #DEDEDE;
  border-radius: 999px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  background-color: #FFFFFF;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.cart-greeting-card__input:focus, .cart-greeting-card__select:focus {
  outline: none;
  border-color: #E20A19;
}
.cart-greeting-card__input::-webkit-input-placeholder, .cart-greeting-card__select::-webkit-input-placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__input::-moz-placeholder, .cart-greeting-card__select::-moz-placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__input:-ms-input-placeholder, .cart-greeting-card__select:-ms-input-placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__input::-ms-input-placeholder, .cart-greeting-card__select::-ms-input-placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__input::placeholder, .cart-greeting-card__select::placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__input:invalid, .cart-greeting-card__select:invalid {
  border-color: #ef4444;
}
.cart-greeting-card__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.cart-greeting-card__select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: rgba(222, 222, 222, 0.1);
}
.cart-greeting-card__preview {
  margin-top: 0.5rem;
  padding: 1rem;
  background-color: rgba(20, 20, 20, 0.03);
  border-radius: 8px;
}
.cart-greeting-card__preview-content {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: #434343;
  color: #141414;
}
.cart-greeting-card__custom-toggle-wrapper {
  margin-top: 1.5rem;
}
.cart-greeting-card__custom-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 500;
}
.cart-greeting-card__custom-toggle:hover {
  color: #E20A19;
}
.cart-greeting-card__textarea {
  padding: 0.5rem 1.5rem;
  border: 1px solid #DEDEDE;
  border-radius: 16px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  background-color: #FFFFFF;
  min-height: 100px;
  resize: vertical;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.cart-greeting-card__textarea:focus {
  outline: none;
  border-color: #E20A19;
}
.cart-greeting-card__textarea::-webkit-input-placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__textarea::-moz-placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__textarea:-ms-input-placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__textarea::-ms-input-placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__textarea::placeholder {
  color: #A3A3A3;
}
.cart-greeting-card__textarea:invalid {
  border-color: #ef4444;
}
.cart-greeting-card__counter {
  margin-top: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
  text-align: right;
}
.cart-greeting-card__counter--warning {
  color: #E20A19;
  font-weight: 500;
}
.cart-greeting-card__actions {
  margin-top: 1rem;
}
.cart-greeting-card__submit {
  min-width: 200px;
}
.cart-greeting-card__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cart-greeting-card__submit:disabled:hover::before {
  left: -100%;
}
.cart-greeting-card__help-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
  margin-top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .cart-greeting-card__template-image {
    -webkit-transition: none;
    transition: none;
  }
  .cart-greeting-card__input, .cart-greeting-card__select, .cart-greeting-card__textarea, .cart-greeting-card__checkbox {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .cart-greeting-card__template-radio:checked + .cart-greeting-card__template-preview img {
    border: 3px solid #E20A19;
  }
  .cart-greeting-card__input, .cart-greeting-card__select, .cart-greeting-card__textarea {
    border: 2px solid #141414;
  }
  .cart-greeting-card__input:focus, .cart-greeting-card__select:focus, .cart-greeting-card__textarea:focus {
    border: 2px solid #E20A19;
  }
  .cart-greeting-card__checkbox {
    border: 2px solid #141414;
  }
  .cart-greeting-card__message--success {
    border: 1px solid rgb(21, 128, 61);
  }
  .cart-greeting-card__message--error {
    border: 1px solid rgb(185, 28, 28);
  }
}
.cart-greeting-card__config[aria-hidden=true] * {
  visibility: hidden;
}

article.page-toc {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.page-toc-section {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .page-toc-section {
    padding-block: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-toc-section {
    padding-block: 5rem;
  }
}

.page-toc__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .page-toc__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page-toc__content-wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .page-toc__content-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: calc(100% - 360px);
  }
}
.page-toc__header {
  margin-bottom: 3rem;
}
.page-toc__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #141414;
  margin-bottom: 0;
}
.page-toc__title .decorative-font {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #141414;
}
.page-toc__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.page-toc__content {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
}
.page-toc__content h1, .page-toc__content h2, .page-toc__content h3, .page-toc__content h4, .page-toc__content h5, .page-toc__content h6 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #141414;
}
.page-toc__content h1:first-child, .page-toc__content h2:first-child, .page-toc__content h3:first-child, .page-toc__content h4:first-child, .page-toc__content h5:first-child, .page-toc__content h6:first-child {
  margin-top: 0;
}
.page-toc__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 0.5rem;
}
.page-toc__content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.page-toc__content h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
.page-toc__content h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}
.page-toc__content h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.page-toc__content p {
  margin-bottom: 1.5rem;
}
.page-toc__content p:last-child {
  margin-bottom: 0;
}
.page-toc__content ul, .page-toc__content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.page-toc__content ul li, .page-toc__content ol li {
  margin-bottom: 0.5rem;
}
.page-toc__content ul li:last-child, .page-toc__content ol li:last-child {
  margin-bottom: 0;
}
.page-toc__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #F4F4F4;
  border-left: 4px solid #E20A19;
  font-style: italic;
}
.page-toc__content blockquote p {
  margin-bottom: 1rem;
}
.page-toc__content blockquote p:last-child {
  margin-bottom: 0;
}
.page-toc__content table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
}
.page-toc__content table th,
.page-toc__content table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #DEDEDE;
}
.page-toc__content table th {
  background-color: #F4F4F4;
  font-weight: 600;
  color: #141414;
}
.page-toc__sidebar {
  width: 100%;
}
.page-toc__sidebar--mobile {
  display: block;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .page-toc__sidebar--mobile {
    display: none;
  }
}
.page-toc__sidebar--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .page-toc__sidebar--desktop {
    display: block;
    width: 320px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: sticky;
    top: 190px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
  .page-toc__sidebar--desktop::-webkit-scrollbar {
    width: 6px;
  }
  .page-toc__sidebar--desktop::-webkit-scrollbar-track {
    background: transparent;
  }
  .page-toc__sidebar--desktop::-webkit-scrollbar-thumb {
    background: rgba(163, 163, 163, 0.3);
    border-radius: 3px;
  }
  .page-toc__sidebar--desktop::-webkit-scrollbar-thumb:hover {
    background: rgba(163, 163, 163, 0.5);
  }
}

.page-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #DEDEDE;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
}
.page-links a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.25rem 1rem;
  background-color: #F4F4F4;
  border-radius: 4px;
  color: #141414;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.page-links a:hover {
  background-color: #E20A19;
  color: #FFFFFF;
}
.page-links a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.page-links .current {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.25rem 1rem;
  background-color: #E20A19;
  color: #FFFFFF;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .page-toc__header {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-toc__content h1, .page-toc__content h2, .page-toc__content h3, .page-toc__content h4, .page-toc__content h5, .page-toc__content h6 {
    margin-top: 4rem;
  }
  .page-toc__content h1:first-child, .page-toc__content h2:first-child, .page-toc__content h3:first-child, .page-toc__content h4:first-child, .page-toc__content h5:first-child, .page-toc__content h6:first-child {
    margin-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-toc__sidebar--desktop {
    scroll-behavior: auto;
  }
  .page-links a {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .page-toc__content blockquote {
    border-left-width: 6px;
    border-left-color: #141414;
  }
  .page-toc__content table th,
  .page-toc__content table td {
    border-bottom: 2px solid #141414;
  }
  .page-toc__content table th {
    background-color: #141414;
    color: #FFFFFF;
  }
  .page-links a {
    border: 1px solid #141414;
  }
  .page-links a:hover {
    border-color: #FFFFFF;
  }
  .page-links .current {
    border: 1px solid #E20A19;
  }
}
.blog-section {
  padding-bottom: 4rem;
}

.blog-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.blog-categories__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .blog-categories__wrapper {
    gap: 1rem;
  }
}
.blog-categories__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem 1.5rem;
  border: 1px solid #DEDEDE;
  border-radius: 999px;
  background-color: #FFFFFF;
  color: #434343;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.blog-categories__button:hover {
  background-color: #F4F4F4;
  border-color: #141414;
  color: #141414;
}
.blog-categories__button:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.blog-categories__button--active {
  background-color: #141414;
  border-color: #141414;
  color: #FFFFFF;
}
.blog-categories__button--active:hover {
  background-color: #141414;
  border-color: #141414;
  color: #FFFFFF;
}

.blog-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .blog-posts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .blog-posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-posts__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
}
.blog-posts__pagination .navigation.pagination {
  width: 100%;
}
.blog-posts__pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.blog-posts__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.blog-posts__pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  color: #141414;
  background-color: #F4F4F4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-posts__pagination .page-numbers.current {
  background-color: #141414;
  color: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.blog-posts__pagination .page-numbers:hover:not(.current):not(.dots) {
  background-color: #DEDEDE;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.blog-posts__pagination .page-numbers:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.blog-posts__pagination .page-numbers.dots {
  background-color: transparent;
  min-width: auto;
  padding: 0 0.5rem;
}
.blog-posts__pagination .page-numbers.prev, .blog-posts__pagination .page-numbers.next {
  padding: 0 1.5rem;
}
.blog-posts__empty {
  padding: 4rem;
  text-align: center;
  background-color: #F4F4F4;
  border-radius: 16px;
}
.blog-posts__empty p {
  margin-bottom: 0;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: #434343;
}

@media (min-width: 768px) {
  .blog-categories__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .blog-posts__pagination .nav-links {
    gap: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .blog-categories__button {
    -webkit-transition: none;
    transition: none;
  }
  .blog-posts__pagination .page-numbers {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@media (prefers-contrast: high) {
  .blog-posts__pagination .page-numbers.current {
    border: 2px solid #FFFFFF;
  }
  .blog-posts__pagination .page-numbers:not(.current):not(.dots) {
    border: 1px solid #141414;
  }
}
.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.blog-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.blog-card__image-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #F4F4F4;
}
.blog-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-card__image-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.blog-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog-card__image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #F8F8F8;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23A3A3A3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"/><circle cx="8.5" cy="8.5" r="1.5"/><polyline points="21,15 16,10 5,21"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px 48px;
}
.blog-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.blog-card__category {
  display: inline-block;
  padding: 6px 12px;
  background-color: #F8F8F8;
  color: #434343;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 1rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-card__category:hover {
  background-color: #DEDEDE;
  color: #141414;
}
.blog-card__category:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.blog-card__title {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0;
}
.blog-card__title a {
  color: #141414;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: #E20A19;
}
.blog-card__title a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.blog-card__excerpt {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
  color: #434343;
  margin-bottom: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.blog-card__excerpt p {
  margin-bottom: 0.5rem;
}
.blog-card__excerpt p:last-child {
  margin-bottom: 0;
}
.blog-card__meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #DEDEDE;
}
.blog-card__date {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
  font-weight: 500;
}
.blog-card:hover .blog-card__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (min-width: 768px) {
  .blog-card__title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .blog-card__image {
    -webkit-transition: none;
    transition: none;
  }
  .blog-card__category {
    -webkit-transition: none;
    transition: none;
  }
  .blog-card__title a {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .blog-card__image-wrapper {
    border: 2px solid #DEDEDE;
  }
  .blog-card__category {
    border: 1px solid #DEDEDE;
  }
  .blog-card__title a {
    text-decoration: underline;
  }
}
.single-post-hero {
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .single-post-hero {
    padding-block: 4rem;
  }
}
@media (min-width: 1024px) {
  .single-post-hero {
    padding-block: 4rem;
  }
}
.single-post-hero__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .single-post-hero__image-wrapper {
    aspect-ratio: 21/9;
  }
}
.single-post-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.single-post-content {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .single-post-content {
    padding-block: 1rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-post-content {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
}

.single-post__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 3rem;
}
.single-post__content-wrapper {
  width: 100%;
}
.single-post__header {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .single-post__header {
    margin-bottom: 4rem;
  }
}
.single-post__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #141414;
  margin-bottom: 1.5rem;
}
.single-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 0;
}
.single-post__date {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
  font-weight: 500;
}
.single-post__category {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #434343;
  text-decoration: none;
}
.single-post__category:hover {
  color: #E20A19;
}
.single-post__category:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.single-post__content {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
  margin-bottom: 3rem;
}
.single-post__content ul {
  list-style: none;
  padding-left: 0 !important;
}
.single-post__content ul li {
  position: relative;
  padding-left: 32px; /* odstęp na ikonkę */
}
.single-post__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px; /* dopasuj pionowo */
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/themes/janda/assets/img/janda-czerwone-serce.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.single-post__content h1, .single-post__content h2, .single-post__content h3, .single-post__content h4, .single-post__content h5, .single-post__content h6 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #141414;
}
.single-post__content h1:first-child, .single-post__content h2:first-child, .single-post__content h3:first-child, .single-post__content h4:first-child, .single-post__content h5:first-child, .single-post__content h6:first-child {
  margin-top: 0;
}
.single-post__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-bottom: 0.5rem;
}
.single-post__content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.single-post__content h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
.single-post__content h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}
.single-post__content h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.single-post__content p {
  margin-bottom: 1.5rem;
}
.single-post__content p:last-child {
  margin-bottom: 0;
}
.single-post__content ul, .single-post__content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.single-post__content ul li, .single-post__content ol li {
  margin-bottom: 0.5rem;
}
.single-post__content ul li:last-child, .single-post__content ol li:last-child {
  margin-bottom: 0;
}
.single-post__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #F4F4F4;
  border-left: 4px solid #E20A19;
  font-style: italic;
}
.single-post__content blockquote p {
  margin-bottom: 1rem;
}
.single-post__content blockquote p:last-child {
  margin-bottom: 0;
}
.single-post__content img {
  border-radius: 8px;
  margin: 1.5rem 0;
}
.single-post__content table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
}
.single-post__content table th,
.single-post__content table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #DEDEDE;
}
.single-post__content table th {
  background-color: #F4F4F4;
  font-weight: 600;
  color: #141414;
}
.single-post__footer {
  padding-top: 2rem;
  border-top: 1px solid #DEDEDE;
}
.single-post__tags {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
}
.single-post__tags a {
  color: #434343;
  text-decoration: none;
}
.single-post__tags a:hover {
  color: #E20A19;
}
.single-post__tags a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.single-post__sidebar {
  width: 100%;
}
.single-post__sidebar--mobile {
  display: block;
  margin-bottom: 3rem;
}
.single-post__sidebar--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .single-post__sidebar--desktop {
    display: block;
    width: 320px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: sticky;
    top: 160px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
  .single-post__sidebar--desktop::-webkit-scrollbar {
    width: 6px;
  }
  .single-post__sidebar--desktop::-webkit-scrollbar-track {
    background: transparent;
  }
  .single-post__sidebar--desktop::-webkit-scrollbar-thumb {
    background: rgba(163, 163, 163, 0.3);
    border-radius: 3px;
  }
  .single-post__sidebar--desktop::-webkit-scrollbar-thumb:hover {
    background: rgba(163, 163, 163, 0.5);
  }
}

.post-navigation {
  padding-block: 2rem;
}
.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .post-navigation .nav-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: block;
  padding: 1.5rem;
  background-color: #F4F4F4;
  border-radius: 8px;
  text-decoration: none;
  color: #141414;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background-color: #F8F8F8;
}
.post-navigation .nav-previous a:focus-visible,
.post-navigation .nav-next a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .post-navigation .nav-next {
    text-align: right;
  }
}
.post-navigation .nav-subtitle {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
  margin-bottom: 0.25rem;
}
.post-navigation .nav-title {
  display: block;
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.2;
}

.page-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #DEDEDE;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #A3A3A3;
}
.page-links a {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.25rem 1rem;
  background-color: #F4F4F4;
  border-radius: 4px;
  color: #141414;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.page-links a:hover {
  background-color: #E20A19;
  color: #FFFFFF;
}
.page-links a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.page-links .current {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.25rem 1rem;
  background-color: #E20A19;
  color: #FFFFFF;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .single-post__header {
    margin-bottom: 4rem;
  }
  .single-post__content h1, .single-post__content h2, .single-post__content h3, .single-post__content h4, .single-post__content h5, .single-post__content h6 {
    margin-top: 4rem;
  }
  .single-post__content h1:first-child, .single-post__content h2:first-child, .single-post__content h3:first-child, .single-post__content h4:first-child, .single-post__content h5:first-child, .single-post__content h6:first-child {
    margin-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .single-post__sidebar--desktop {
    scroll-behavior: auto;
  }
  .page-links a,
  .post-navigation a {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .single-post__content blockquote {
    border-left-width: 6px;
    border-left-color: #141414;
  }
  .single-post__content table th,
  .single-post__content table td {
    border-bottom: 2px solid #141414;
  }
  .single-post__content table th {
    background-color: #141414;
    color: #FFFFFF;
  }
  .single-post__content img {
    border: 1px solid #DEDEDE;
  }
  .post-navigation .nav-previous a,
  .post-navigation .nav-next a {
    border: 1px solid #141414;
  }
  .page-links a {
    border: 1px solid #141414;
  }
  .page-links a:hover {
    border-color: #FFFFFF;
  }
  .page-links .current {
    border: 1px solid #E20A19;
  }
}
.page-section {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .page-section {
    padding-block: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-section {
    padding-block: 5rem;
  }
}

.page__header {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .page__header {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .page__header {
    margin-bottom: 4rem;
  }
}
.page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #141414;
  margin-bottom: 0;
}
.page__content {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
}

.page__header--narrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .page__header--narrow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .page__header--narrow .page__title {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .page__header--narrow .page__description {
    width: 50%;
  }
}

ul.products li.product {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100% !important;
  float: none !important;
  margin-right: 0 !important;
}

.product-card {
  position: relative;
  list-style: none;
  width: 100% !important;
}
.product-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.product-card__image-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(222, 222, 222, 0.2);
  aspect-ratio: 1/1.08;
}
.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__image-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-filter: brightness(0.98);
          filter: brightness(0.98);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  border-radius: 16px;
}
.product-card__image-link:hover img, .product-card__image-link:focus img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.product-card__image-link:focus-visible {
  outline: 4px solid #E20A19 !important;
  outline-offset: 2px;
  border: 2px solid #E20A19;
  border-radius: 16px;
}
.product-card__badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  z-index: 2;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.product-card__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background-color: #141414;
  color: #FFFFFF;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.product-card__badge-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.product-card__title {
  font-size: clamp(0.875rem, 1vw, 1rem) !important;
  font-weight: 500;
  margin-bottom: 0.25rem;
  line-height: 1.2;
  -ms-hyphens: auto;
      hyphens: auto;
  margin-top: 0;
}
.product-card__title a {
  color: #141414;
  text-decoration: none;
}
.product-card__title a:hover {
  color: #E20A19;
}
.product-card__title a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.product-card__category {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #434343;
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}
.product-card__category:hover {
  color: #E20A19;
}
.product-card__category:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.product-card__price {
  font-weight: 600;
  color: #141414;
  margin-top: auto;
}
.product-card__price .price {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
.product-card__price .price del {
  color: #A3A3A3;
  font-weight: 400;
  margin-right: 8px;
}
.product-card__price .price ins {
  text-decoration: none;
  color: #E20A19;
  font-weight: 700;
}
.product-card__price .price .woocommerce-Price-amount {
  font-weight: 700;
}
.product-card__price .price .woocommerce-Price-currencySymbol {
  font-weight: 400;
}
.product-card__add-to-cart {
  margin-top: 1rem;
}
.product-card__add-to-cart a.added_to_cart.wc-forward {
  display: none !important;
}

@media (min-width: 768px) {
  .product-card__title {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-card__image-link img {
    -webkit-transition: none;
    transition: none;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
@media (prefers-contrast: high) {
  .product-card__badge {
    border: 1px solid #FFFFFF;
  }
  .product-card__title a {
    text-decoration: underline;
  }
  .product-card__category {
    text-decoration: underline;
  }
  .product-card__image-wrapper {
    border: 2px solid #DEDEDE;
  }
  .product-card__image-link img {
    -webkit-filter: none;
            filter: none;
  }
}
.product-single__main {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.product-single__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
@media (min-width: 768px) {
  .product-single__layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .product-single__layout {
    gap: 4rem;
  }
}
.product-single__gallery-wrap {
  width: 100%;
}
@media (min-width: 768px) {
  .product-single__gallery-wrap {
    width: 50%;
  }
}
.product-single__content {
  width: 100%;
}
@media (min-width: 768px) {
  .product-single__content {
    width: 50%;
  }
}
.product-single__header {
  margin-bottom: 2rem;
}
.product-single__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #141414;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.product-single__category {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: #434343;
  display: block;
  text-decoration: none;
}
.product-single__category:hover {
  color: #E20A19;
}
.product-single__category:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.product-single__summary .woocommerce-product-details__short-description {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #434343;
  margin-bottom: 2rem;
}
.product-single__price {
  margin-bottom: 2rem;
}
.product-single__price .price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #141414;
  display: block;
  line-height: 1.2;
}
.product-single__add-to-cart .stock.in-stock {
  position: relative;
  padding-left: 30px; /* miejsce na ikonkę */
  font-weight: 600;
  color: #333;
}
.product-single__add-to-cart .stock.in-stock::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(48, 227, 72, 0.4784313725);
  border: 4px solid #30E348;
}
.product-single__add-to-cart form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.product-single__add-to-cart form.cart .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #DEDEDE;
  border-radius: 999px;
  padding: 8px;
  background: #FFFFFF;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  max-width: 300px;
}
@media (min-width: 768px) {
  .product-single__add-to-cart form.cart .quantity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.product-single__add-to-cart form.cart .quantity .qty-button {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #141414;
  padding: 0;
}
.product-single__add-to-cart form.cart .quantity .qty-button:hover {
  color: #E20A19;
}
.product-single__add-to-cart form.cart .quantity .qty-button:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 50%;
}
.product-single__add-to-cart form.cart .quantity input[type=number] {
  width: 40px;
  border: none;
  text-align: center;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: #141414;
  padding: 0;
  background: transparent;
  -moz-appearance: textfield;
}
.product-single__add-to-cart form.cart .quantity input[type=number]::-webkit-outer-spin-button, .product-single__add-to-cart form.cart .quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-single__add-to-cart form.cart .quantity input[type=number]:focus {
  outline: none;
}
.product-single__add-to-cart form.cart .single_add_to_cart_button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .product-single__add-to-cart form.cart .single_add_to_cart_button {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

.woocommerce-tabs,
.related,
.upsells {
  display: none;
}

.breadcrumbs {
  padding-bottom: 1rem;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .breadcrumbs__list {
    font-size: clamp(0.875rem, 1vw, 1rem);
    gap: 0.5rem;
  }
}
.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .breadcrumbs__item {
    gap: 0.5rem;
  }
}
.breadcrumbs__item:last-child .breadcrumbs__separator {
  display: none;
}
.breadcrumbs__link {
  color: #434343;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  padding: 0.25rem;
  margin: -0.25rem;
  border-radius: 4px;
}
.breadcrumbs__link:hover {
  color: #E20A19;
}
.breadcrumbs__link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  color: #E20A19;
}
.breadcrumbs__link span {
  display: inline;
}
@media (min-width: 768px) {
  .breadcrumbs__link {
    padding: 0.5rem;
    margin: -0.5rem;
  }
}
.breadcrumbs__current {
  color: #141414;
  font-weight: 500;
  word-break: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
}
.breadcrumbs__separator {
  color: #A3A3A3;
  font-weight: 400;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  margin-inline: 2px;
}
@media (min-width: 768px) {
  .breadcrumbs__separator {
    margin-inline: 4px;
  }
}

.breadcrumbs--with-background {
  background-color: #F8F8F8;
  border-bottom: 1px solid rgba(222, 222, 222, 0.5);
}

.breadcrumbs--compact {
  padding-block: 0.5rem 1rem;
}
.breadcrumbs--compact .breadcrumbs__list {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
}
@media (min-width: 768px) {
  .breadcrumbs--compact .breadcrumbs__list {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }
}

@media (max-width: 480px) {
  .breadcrumbs__current {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .breadcrumbs__link {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
  }
}
.single-product .woocommerce .breadcrumbs__current {
  color: #E20A19;
}

@media (prefers-contrast: high) {
  .breadcrumbs__link {
    text-decoration: underline;
  }
  .breadcrumbs__link:hover, .breadcrumbs__link:focus-visible {
    text-decoration: none;
    background-color: #E20A19;
    color: #FFFFFF;
  }
  .breadcrumbs__current {
    font-weight: 700;
  }
  .breadcrumbs__separator {
    color: #141414;
    font-weight: 500;
  }
}
@media (prefers-reduced-motion: reduce) {
  .breadcrumbs__link {
    -webkit-transition: none;
    transition: none;
  }
}
.breadcrumbs meta {
  display: none;
}

.faq-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.faq-section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .faq-section__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
  }
}
.faq-section__intro {
  width: 100%;
}
@media (min-width: 768px) {
  .faq-section__intro {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    max-width: 50%;
  }
}
.faq-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  color: #141414;
}
.faq-section__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.faq-section__description {
  color: #434343;
  margin-bottom: 2rem;
}
.faq-section__description p {
  margin-bottom: 1rem;
}
.faq-section__description p:last-child {
  margin-bottom: 0;
}
.faq-section__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .faq-section__contact {
    gap: 1.5rem;
  }
}
.faq-section__contact-column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.faq-section__contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #141414;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.faq-section__contact-link:hover {
  color: #E20A19;
}
.faq-section__contact-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.faq-section__contact-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-section__contact-icon svg {
  width: 24px;
  height: 24px;
}
.faq-section__contact-icon svg path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}
.faq-section__contact-text {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
}
.faq-section__button {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .faq-section__button {
    margin-top: 1.5rem;
  }
}
.faq-section__accordions {
  width: 100%;
}
@media (min-width: 768px) {
  .faq-section__accordions {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    max-width: 50%;
  }
}

.faq-accordions {
  width: 100%;
}
.faq-accordions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.faq-accordion {
  border-bottom: 1px solid #DEDEDE;
}
.faq-accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
}
.faq-accordion__header:hover .faq-accordion__title {
  color: #E20A19;
}
.faq-accordion__header:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.faq-accordion__title {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 500;
  margin: 0;
  color: #141414;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.faq-accordion__icon {
  position: relative;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-accordion__icon::before, .faq-accordion__icon::after {
  content: "";
  position: absolute;
  background-color: #E20A19;
  border-radius: 1px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-accordion__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.faq-accordion__content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.faq-accordion__inner {
  padding-bottom: 1.5rem;
  color: #434343;
}
.faq-accordion__inner p:last-child {
  margin-bottom: 0;
}
.faq-accordion--active .faq-accordion__icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

@media (prefers-contrast: high) {
  .faq-section__contact-link {
    text-decoration: underline;
  }
  .faq-section__contact-icon svg path {
    stroke-width: 2px;
  }
  .faq-accordion__header {
    border: 1px solid #141414;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-section__contact-link {
    -webkit-transition: none;
    transition: none;
  }
  .faq-section__contact-icon svg path {
    -webkit-transition: none;
    transition: none;
  }
  .faq-accordion__title {
    -webkit-transition: none;
    transition: none;
  }
  .faq-accordion__icon::before, .faq-accordion__icon::after {
    -webkit-transition: none;
    transition: none;
  }
  .faq-accordion__content {
    -webkit-transition: none;
    transition: none;
  }
}
.table-of-contents {
  background-color: #F4F4F4;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  margin-bottom: 2rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.table-of-contents--ready {
  opacity: 1;
}
@media (min-width: 768px) {
  .table-of-contents {
    padding: 32px;
    border-radius: 24px;
  }
}
@media (min-width: 1024px) {
  .table-of-contents--sticky {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.table-of-contents__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.table-of-contents__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #141414;
  margin-bottom: 1rem;
  margin-top: 0;
}
.table-of-contents__nav {
  width: 100%;
}
.table-of-contents__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.table-of-contents__item {
  line-height: 1.5;
}
.table-of-contents__item--h2 {
  margin-left: 0;
}
.table-of-contents__item--h3 {
  margin-left: 1rem;
}
.table-of-contents__item--h4 {
  margin-left: 2rem;
}
.table-of-contents__item--h5 {
  margin-left: 3rem;
}
.table-of-contents__item--h6 {
  margin-left: 4rem;
}
.table-of-contents__link {
  color: #434343;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid transparent;
  margin-left: -1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.table-of-contents__link:hover {
  color: #E20A19;
}
.table-of-contents__link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.table-of-contents__link.active {
  color: #E20A19;
  font-weight: 500;
  border-left-color: #E20A19;
}
.table-of-contents__placeholder {
  color: #A3A3A3;
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: 1rem 0;
}

@media (prefers-reduced-motion: reduce) {
  .table-of-contents {
    -webkit-transition: none;
    transition: none;
  }
  .table-of-contents__link {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .table-of-contents {
    background-color: #FFFFFF;
    border: 1px solid #DEDEDE;
  }
  .table-of-contents__link.active {
    border-left-width: 3px;
    font-weight: 700;
  }
}
.janda-free-shipping-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F8F8F8;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 2rem;
}
.janda-free-shipping-progress__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 24px;
}
.janda-free-shipping-progress__icon img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.janda-free-shipping-progress__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.janda-free-shipping-progress__message {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #141414;
  font-weight: 500;
  margin: 0;
}
.janda-free-shipping-progress__highlight {
  color: #E20A19;
  font-weight: 700;
}

@media (min-width: 768px) {
  .janda-free-shipping-progress__message {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .janda-free-shipping-progress {
    -webkit-transition: none;
    transition: none;
  }
}
.gift-wrapping-section {
  margin-top: 2rem;
}
.gift-wrapping-section .gift-wrapping-trigger {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .gift-wrapping-section .gift-wrapping-trigger {
    width: auto;
  }
}
.gift-wrapping-section .gift-wrapping-trigger .gift-icon {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
.gift-wrapping-section .gift-wrapping-trigger .packages-count {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #E20A19;
  font-weight: 500;
}

.gift-wrapping-qty {
  font-weight: 500;
  color: #141414;
  padding: 8px 12px;
  background-color: #F8F8F8;
  border-radius: 999px;
  border: 1px solid #DEDEDE;
}

.gift-wrapping-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.gift-wrapping-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(4px);
}
.gift-wrapping-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  background-color: #FFFFFF;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 60px rgba(20, 20, 20, 0.2);
          box-shadow: 0 20px 60px rgba(20, 20, 20, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .gift-wrapping-modal .modal-content {
    width: 80%;
  }
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid #DEDEDE;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-header h3 {
  margin: 0;
  color: #141414;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}
.modal-header .modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background-color: #F8F8F8;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.modal-header .modal-close:hover {
  background-color: #E20A19;
  color: #FFFFFF;
}

.modal-body {
  padding: 2rem 2rem 0 2rem;
  overflow-y: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media (min-width: 768px) {
  .modal-body {
    padding: 2rem 3rem 0 3rem;
  }
}

.packaging-info--top {
  background-color: #F8F8F8;
  border-left: 3px solid #141414;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 3rem;
}
.packaging-info--top .packaging-intro {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #141414;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.packaging-info--top .packaging-rules p {
  margin: 0 0 0.25rem 0;
  color: #434343;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
}
.packaging-info--top .packaging-rules p:last-child {
  margin-bottom: 0;
}
.packaging-info--top .packaging-rules p strong {
  color: #141414;
  font-weight: 600;
}
.packaging-info--top .packaging-rules .note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #DEDEDE;
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  color: #A3A3A3;
  line-height: 1.5;
}

.packages-container .package-wrapper {
  border: 2px solid #DEDEDE;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.packages-container .package-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .packages-container .package-header {
    margin-bottom: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.packages-container .package-header h4 {
  margin: 0;
  color: #141414;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
}
.packages-container .package-header .package-limits {
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.packages-container .package-header .package-limits .limit-info {
  color: #434343;
}
.packages-container .package-header .package-limits .limit-info.limit-reached {
  color: #E20A19;
  font-weight: 500;
}
.packages-container .package-header .package-limits .current-count,
.packages-container .package-header .package-limits .masks-count {
  font-weight: 700;
  color: #141414;
}

.products-list {
  margin-bottom: 2rem;
}
.products-list .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #DEDEDE;
  border-radius: 12px;
  margin-bottom: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.products-list .product-item:last-child {
  margin-bottom: 0;
}
.products-list .product-item:hover {
  border-color: #E20A19;
}
.products-list .product-item.product-disabled {
  opacity: 0.5;
  pointer-events: none;
  background-color: #F8F8F8;
}
.products-list .product-item .product-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #F8F8F8;
  position: relative;
}
.products-list .product-item .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-list .product-item .product-image .product-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.products-list .product-item .product-image .product-badge--set {
  background-color: #10B981;
  color: #FFFFFF;
}
.products-list .product-item .product-image .product-badge--mask {
  background-color: #3B82F6;
  color: #FFFFFF;
}
.products-list .product-item .product-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.products-list .product-item .product-details h5 {
  margin: 0 0 0.25rem 0;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
  color: #141414;
  line-height: 1.2;
}
.products-list .product-item .product-details .quantity-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .products-list .product-item .product-details .quantity-control {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.products-list .product-item .product-details .quantity-control > span {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #434343;
}

.quantity-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #DEDEDE;
  border-radius: 999px;
  background-color: #FFFFFF;
}
.quantity-selector .qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 700;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.quantity-selector .qty-btn:hover {
  color: #E20A19;
}
.quantity-selector .qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.quantity-selector .qty-btn:disabled:hover {
  color: inherit;
}
.quantity-selector .qty-input {
  width: 40px;
  border: none;
  background: none;
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
  padding: 0;
}
.quantity-selector .qty-input:focus {
  outline: none;
}
.quantity-selector .qty-input::-webkit-outer-spin-button, .quantity-selector .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-selector .qty-input[type=number] {
  -moz-appearance: textfield;
}

.package-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.package-actions .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 150px;
}
@media (min-width: 768px) {
  .package-actions .button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.modal-footer {
  padding: 2rem;
  border-top: 1px solid #DEDEDE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-footer .button {
  min-width: 120px;
}
@media (min-width: 768px) {
  .modal-footer {
    padding: 2rem 3rem;
  }
}

.limit-reached-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(222, 222, 222, 0.5);
  padding: 1rem 1.5rem;
  margin: 0 -2rem -2rem;
  z-index: 10;
  -webkit-animation: slideUp 0.3s ease-out;
          animation: slideUp 0.3s ease-out;
}
@media (min-width: 768px) {
  .limit-reached-bar {
    margin: 0 -3rem -2rem;
    padding: 1rem 3rem;
  }
}
.limit-reached-bar .limit-reached-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .limit-reached-bar .limit-reached-content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.limit-reached-bar .limit-reached-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  color: #434343;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.limit-reached-bar .limit-reached-add {
  white-space: nowrap;
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
body.modal-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .gift-wrapping-modal .modal-content .products-list .product-item .product-image {
    width: 80px;
    height: 80px;
  }
  .gift-wrapping-modal .modal-content .products-list .product-item .product-details .quantity-control {
    gap: 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gift-wrapping-modal,
  .modal-close,
  .qty-btn,
  .product-item {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .gift-wrapping-modal .modal-content {
    border: 3px solid #141414;
  }
  .package-wrapper {
    border-color: #141414;
  }
  .product-item {
    border-color: #141414;
  }
  .product-item:hover {
    border-color: #E20A19;
    border-width: 2px;
  }
}
@media print {
  .gift-wrapping-modal {
    display: none !important;
  }
}
.loyalty-features {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .loyalty-features {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.loyalty-features__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .loyalty-features__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
  }
}
.loyalty-features__intro {
  width: 100%;
}
@media (min-width: 768px) {
  .loyalty-features__intro {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
    max-width: 40%;
    position: sticky;
    top: 3rem;
  }
}
.loyalty-features__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 2rem;
  word-wrap: break-word;
}
.loyalty-features__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.loyalty-features__description {
  color: #434343;
  word-wrap: break-word;
}
.loyalty-features__description p {
  margin-bottom: 1rem;
}
.loyalty-features__description p:last-child {
  margin-bottom: 0;
}
.loyalty-features__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .loyalty-features__list {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 60%;
            flex: 1 1 60%;
    max-width: 60%;
  }
}
.loyalty-features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.loyalty-features__icon-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
}
.loyalty-features__icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loyalty-features__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.loyalty-features__line {
  position: relative;
  width: 1px;
  height: 100px;
  background-color: #E20A19;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.loyalty-features__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.loyalty-features__item-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #141414;
  word-wrap: break-word;
}
.loyalty-features__item-description {
  color: #434343;
  word-wrap: break-word;
}
.loyalty-features__item-description p {
  margin-bottom: 1rem;
}
.loyalty-features__item-description p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .loyalty-features__line {
    height: 120px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .loyalty-features__intro {
    position: relative;
    top: 0;
  }
}
@media (prefers-contrast: high) {
  .loyalty-features__line {
    background-color: #141414;
    width: 2px;
  }
}
.favorites-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1660px;
  margin: 0 auto;
  width: 100%;
  gap: 10em;
  padding: 2em 6vw 5em 6vw;
}

.favorites-page-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page-header {
  text-align: center;
}

.page-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #1e1e1e;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
}

.page-description {
  font-size: 1.1em;
  color: #4e4e4e;
  margin: 0;
  font-weight: 400;
}

/* Kontrolki ulubionych */
.favorites-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
}
.favorites-controls .favorites-count-info {
  font-size: 1.1em;
  color: #1e1e1e;
  font-weight: 400;
}
.favorites-controls .favorites-count-info .count {
  font-weight: 700;
  color: #E20B19;
}

/* Siatka ulubionych produktów */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Stan braku ulubionych */
.no-favorites {
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 40px;
}
.no-favorites-icon {
  margin-bottom: 20px;
}
.no-favorites-icon img {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}
.no-favorites h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #1e1e1e;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
}
.no-favorites p {
  font-size: 1.1em;
  color: #4e4e4e;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}
.no-favorites .button {
  display: inline-block;
}

.favorites-count:empty, .favorites-count[style*="display: none"] {
  display: none !important;
}

/* Menu link ulubionych */
.favorites-menu-link {
  position: relative;
}

.menu-item-favorites {
  position: relative;
}

/* Widget ulubionych */
.favorites-widget {
  text-align: center;
}
.favorites-widget-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.favorites-widget-link:hover {
  color: #E20B19;
}
.favorites-widget img {
  width: 24px;
  height: 24px;
}

/* Powiadomienia */
.favorite-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 300px;
}

/* Animacje */
.favorite-product {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.favorite-product.removing {
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/* Responsive */
@media (max-width: 724px) {
  .favorites-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .favorites-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .page-title {
    font-size: 2em;
  }
  .no-favorites {
    padding: 40px 15px;
  }
  .favorite-notification {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}
@media (max-width: 524px) {
  .favorites-page {
    padding: 20px 20px;
  }
  .page-title {
    font-size: 1.8em;
  }
  .favorites-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .clear-all-favorites {
    padding: 12px 24px;
    font-size: 16px;
  }
}
.fav-icon {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  z-index: 10;
}
.fav-icon .fav-button {
  background: transparent;
  border: none;
  padding: 0.4em 0.4em;
  border-radius: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  background: #fff;
}
.fav-icon .fav-button img {
  width: 25px;
  height: 25px;
  display: block;
  pointer-events: none;
}

.product-highlight {
  padding-inline: var(--section-padding);
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .product-highlight {
    padding-block: 3rem;
  }
}
@media (min-width: 1024px) {
  .product-highlight {
    padding-block: 4rem;
  }
}
.product-highlight__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .product-highlight__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 50px;
  }
}
.product-highlight__image-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .product-highlight__image-wrapper {
    display: block;
    width: 25%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.product-highlight__image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px;
}
.product-highlight__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-highlight__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .product-highlight__header {
    margin-bottom: 64px;
  }
}
.product-highlight__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0;
}
.product-highlight__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.product-highlight__button {
  display: none;
}
@media (min-width: 768px) {
  .product-highlight__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.product-highlight__mobile-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 2rem;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (min-width: 768px) {
  .product-highlight__mobile-button {
    display: none;
  }
}
.product-highlight__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-highlight__products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .product-highlight__products-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}
@media (min-width: 1024px) {
  .product-highlight__products-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .product-highlight__products-list .product-highlight__item--desktop-hidden {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-highlight__image {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .product-highlight__image {
    border: 2px solid #DEDEDE;
  }
  .product-highlight__title {
    color: #141414;
  }
}
.info-section {
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .info-section {
    padding-block: 3rem;
  }
}
@media (min-width: 1024px) {
  .info-section {
    padding-block: 4rem;
  }
}
.info-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .info-section__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.info-section__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .info-section__left {
    width: 50%;
  }
}
.info-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.info-section__right {
  display: none;
}
@media (min-width: 768px) {
  .info-section__right {
    display: block;
    width: 50%;
  }
}
.info-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: #141414;
  margin-bottom: 1.5rem;
}
.info-section__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.info-section__description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
  margin-bottom: 3rem;
}
.info-section__description p {
  margin-bottom: 1rem;
}
.info-section__description p:last-child {
  margin-bottom: 0;
}
.info-section__button {
  margin-bottom: 4rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (min-width: 768px) {
  .info-section__button {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .info-section__button {
    margin-bottom: 4rem;
  }
}
.info-section__image {
  border-radius: 24px;
  overflow: hidden;
}
.info-section__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-section__image--left {
  aspect-ratio: 1/1;
  margin-top: auto;
}
@media (min-width: 768px) {
  .info-section__image--left {
    display: none;
  }
}
@media (min-width: 1024px) {
  .info-section__image--left {
    display: block;
    aspect-ratio: 3/2;
  }
}
.info-section__image--right {
  height: 100%;
}
.info-section__image--right img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .info-section__button {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .info-section__image {
    border: 1px solid #DEDEDE;
  }
}
.subpage-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.subpage-hero__header {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .subpage-hero__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 3rem;
  }
}
.subpage-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: #141414;
}
@media (min-width: 768px) {
  .subpage-hero__title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.subpage-hero__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.subpage-hero__description {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: #434343;
}
@media (min-width: 768px) {
  .subpage-hero__description {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.subpage-hero__description p {
  margin-bottom: 1rem;
}
.subpage-hero__description p:last-child {
  margin-bottom: 0;
}
.subpage-hero__image-container {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .subpage-hero__image-container {
    border-radius: 24px;
  }
}
.subpage-hero__image {
  display: block;
  width: 100%;
  height: auto;
}
.subpage-hero__image--desktop {
  display: none;
}
@media (min-width: 768px) {
  .subpage-hero__image--desktop {
    display: block;
    aspect-ratio: 24/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.subpage-hero__image--mobile {
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .subpage-hero__image--mobile {
    display: none;
  }
}

.subcategories-list {
  margin-bottom: 2rem;
}
.subcategories-list__title {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #141414;
}
.subcategories-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .subcategories-list__items {
    gap: 1rem;
  }
}
.subcategories-list__item {
  margin: 0;
}
.subcategories-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background-color: #F4F4F4;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.subcategories-list__link:hover {
  background-color: #F4F4F4;
  color: #E20A19;
}
.subcategories-list__link:hover .subcategories-list__marker {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.subcategories-list__link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.subcategories-list__marker {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.subcategories-list__name {
  font-weight: 500;
  color: #141414;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.subcategories-list__count {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  color: #434343;
  margin-left: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .subcategories-list__link {
    -webkit-transition: none;
    transition: none;
  }
  .subcategories-list__marker {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
}
@media (prefers-contrast: high) {
  .subcategories-list__link {
    border: 1px solid #DEDEDE;
  }
  .subcategories-list__name {
    text-decoration: underline;
  }
}
.footer {
  padding-top: 4rem;
  background-color: #FFFFFF;
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #DEDEDE;
}
@media (min-width: 1024px) {
  .footer__main {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 3rem;
  }
}
.footer__column {
  width: calc(50% - 1rem);
}
@media (min-width: 1024px) {
  .footer__column {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.footer__column--logo {
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__column--logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
  }
}
.footer__column--contact {
  width: 100%;
}
.footer__logo-link {
  display: inline-block;
  margin-bottom: 2rem;
}
.footer__logo-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 0.25rem;
  border-radius: 2px;
}
.footer__logo {
  display: block;
  width: 135px;
  height: auto;
}
.footer__company-info {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #434343;
  line-height: 1.6;
}
.footer__company-info p {
  margin-bottom: 1rem;
}
.footer__company-info p:last-child {
  margin-bottom: 0;
}
.footer__heading {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: #141414;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu li {
  margin-bottom: 0.5rem;
}
.footer__menu li:last-child {
  margin-bottom: 0;
}
.footer__menu a {
  color: #434343;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__menu a:hover {
  color: #E20A19;
}
.footer__menu a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 2px;
}
.footer__contact-info {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #434343;
  line-height: 1.6;
}
.footer__contact-info p {
  margin-bottom: 1rem;
}
.footer__contact-info p:last-child {
  margin-bottom: 0;
}
.footer__contact-info a {
  color: #434343;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__contact-info a:hover {
  color: #E20A19;
}
.footer__contact-info a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 2px;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__copyright {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #434343;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 768px) {
  .footer__copyright {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.footer__policy-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.footer__policy-menu li {
  margin: 0;
}
.footer__policy-menu a {
  color: #434343;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__policy-menu a:hover {
  color: #E20A19;
}
.footer__policy-menu a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .footer__policy-menu {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .footer__social {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
  }
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.footer__social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 20, 20, 0);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  border-radius: 50%;
}
.footer__social-link:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.footer__social-link:hover::before {
  background-color: rgba(20, 20, 20, 0.1);
}
.footer__social-link:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.footer__social-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.footer__social-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .footer__social-link, .footer__menu a, .footer__policy-menu a, .footer__contact-info a {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .footer__social-link:hover, .footer__social-link:focus, .footer__menu a:hover, .footer__menu a:focus, .footer__policy-menu a:hover, .footer__policy-menu a:focus, .footer__contact-info a:hover, .footer__contact-info a:focus {
    -webkit-transform: none !important;
            transform: none !important;
  }
  .footer__social-link::before, .footer__menu a::before, .footer__policy-menu a::before, .footer__contact-info a::before {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .footer__main {
    border-bottom: 2px solid #141414;
  }
  .footer__menu a, .footer__policy-menu a {
    text-decoration: underline;
    color: #141414;
  }
  .footer__copyright {
    color: #141414;
  }
  .footer__company-info, .footer__contact-info {
    color: #141414;
  }
  .footer__social-link {
    border: 1px solid #141414;
  }
  .footer__social-link:hover::before {
    background-color: transparent;
  }
}
.footer#colophon:focus {
  outline: none;
}
.footer__menu a:hover, .footer__policy-menu a:hover, .footer__contact-info a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-header {
  position: relative;
  z-index: 100;
}
.site-header__info-bar {
  background-color: #141414;
  color: #FFFFFF;
  padding: 1rem 0;
  overflow: hidden;
  display: none;
}
@media (min-width: 1024px) {
  .site-header__info-bar {
    display: block;
  }
}
.site-header__info-content {
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-align: center;
}
.site-header__info-content a {
  color: #FFFFFF;
  text-decoration: underline;
}
.site-header__info-content a:hover, .site-header__info-content a:focus {
  color: rgba(255, 255, 255, 0.8);
}
.site-header__main {
  display: none;
  border-bottom: 1px solid #DEDEDE;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .site-header__main {
    display: block;
  }
}
.site-header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0;
}
.site-header__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header__col--left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-header__col--center {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 1rem;
}
.site-header__col--right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-header__logo {
  text-align: center;
}
.site-header__logo img {
  max-height: 32px;
  width: auto;
}
.site-header__logo-link {
  display: inline-block;
}
.site-header__logo-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__logo-text {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #141414;
}
.site-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu li {
  margin: 0;
  padding: 0;
  margin-right: 1rem;
  position: relative;
}
.site-header__menu li:last-child {
  margin-right: 0;
}
.site-header__menu li.mega-menu {
  position: static;
}
.site-header__menu li.mega-menu > .sub-menu {
  display: none !important;
}
.site-header__menu li.mega-menu:hover .mega-menu-panel, .site-header__menu li.mega-menu:focus-within .mega-menu-panel {
  opacity: 1;
  visibility: visible;
}
.site-header__menu a {
  color: #141414;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
}
.site-header__menu a:hover, .site-header__menu a:focus {
  color: #E20A19;
}
.site-header__menu a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__menu .current-menu-item > a,
.site-header__menu .current-menu-ancestor > a {
  color: #E20A19;
}
.site-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.site-header__search {
  margin-right: 1rem;
}
.site-header__action-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #141414;
  text-decoration: none;
  position: relative;
}
.site-header__action-link:hover, .site-header__action-link:focus {
  color: #E20A19;
}
.site-header__action-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__icon {
  width: 16px;
  height: 16px;
  margin-right: 0.25rem;
}
.site-header__action-text {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
}
.site-header__cart-icon-wrapper {
  position: relative;
}
.site-header__cart-count {
  position: absolute;
  bottom: -7px;
  left: -7px;
  background-color: #E20A19;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-header__navigation {
  background-color: #FFFFFF;
  border-bottom: 1px solid #DEDEDE;
  display: none;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .site-header__navigation {
    display: block;
  }
}
.site-header__navigation.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(20, 20, 20, 0.1);
          box-shadow: 0 2px 10px rgba(20, 20, 20, 0.1);
  -webkit-animation: slideDown 0.3s ease;
          animation: slideDown 0.3s ease;
}
.site-header__navigation .site-header__col--left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-header__navigation .site-header__col--right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.site-header__create-set {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.site-header__create-set .site-header__button-icon {
  margin-right: 0.25rem;
  width: 16px;
  height: 16px;
}
.site-header__create-set::after {
  display: none;
}
.site-header__create-set-text {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
}
.site-header__mobile {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #DEDEDE;
}
@media (min-width: 1024px) {
  .site-header__mobile {
    display: none;
  }
}
.site-header__mobile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 1.5rem;
}
.site-header__mobile-logo img {
  max-height: 24px;
  width: auto;
}
.site-header__mobile-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.site-header__menu-toggle {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
}
.site-header__menu-toggle:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__menu-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #141414;
}
.site-header__menu-icon::before, .site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #141414;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.site-header__menu-icon::before {
  top: -6px;
}
.site-header__menu-icon::after {
  bottom: -6px;
}
.site-header__mobile-cart {
  position: relative;
  color: #141414;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header__mobile-cart:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__mobile-info-bar {
  background-color: #141414;
  color: #FFFFFF;
  padding: 0.5rem 0;
  overflow: hidden;
  display: block;
}
@media (min-width: 1024px) {
  .site-header__mobile-info-bar {
    display: none;
  }
}
.site-header__mobile-info-content {
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-align: center;
  white-space: nowrap;
  -webkit-animation: scroll-text 20s linear infinite;
          animation: scroll-text 20s linear infinite;
}
.site-header__mobile-info-content a {
  color: #FFFFFF;
  text-decoration: underline;
}
.site-header__mobile-info-content a:hover, .site-header__mobile-info-content a:focus {
  color: rgba(255, 255, 255, 0.8);
}
.site-header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.site-header__mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.site-header__mobile-menu-container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.is-active .site-header__mobile-menu-container {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.site-header__mobile-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid #DEDEDE;
}
.site-header__close-menu {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
}
.site-header__close-menu:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.site-header__close-icon::before, .site-header__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #141414;
}
.site-header__close-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.site-header__close-icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.site-header__mobile-menu-content {
  padding: 1rem 1.5rem 2rem;
}
.site-header__mobile-nav {
  margin-bottom: 2rem;
}
.site-header__mobile-menu-list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}
.site-header__mobile-menu-list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #DEDEDE;
  position: relative;
}
.site-header__mobile-menu-list li.menu-item-has-children > a {
  padding-right: 50px;
}
.site-header__mobile-menu-list li.menu-item-has-children .submenu-toggle {
  position: absolute;
  right: 10px;
  top: 7px;
  width: 32px;
  height: 32px;
  background-color: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}
.site-header__mobile-menu-list li.menu-item-has-children .submenu-toggle:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__mobile-menu-list li.menu-item-has-children .submenu-toggle svg {
  width: 10px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  fill: #434343;
}
.site-header__mobile-menu-list li.menu-item-has-children .submenu-toggle:hover {
  background-color: #F8F8F8;
}
.site-header__mobile-menu-list li.menu-item-has-children .submenu-toggle:hover svg {
  fill: #E20A19;
}
.site-header__mobile-menu-list li.menu-item-has-children.submenu-open > .submenu-toggle {
  background-color: #F8F8F8;
}
.site-header__mobile-menu-list li.menu-item-has-children.submenu-open > .submenu-toggle svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  fill: #E20A19;
}
.site-header__mobile-menu-list li.menu-item-has-children .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #F8F8F8;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.site-header__mobile-menu-list li.menu-item-has-children .sub-menu li a {
  padding: 1rem 1.5rem;
  padding-left: 40px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
.site-header__mobile-menu-list li.menu-item-has-children .sub-menu li.menu-item-has-children > a {
  padding-right: 50px;
}
.site-header__mobile-menu-list li.menu-item-has-children .sub-menu li.menu-item-has-children .submenu-toggle {
  right: 10px;
  top: 7px;
}
.site-header__mobile-menu-list li.menu-item-has-children .sub-menu li.menu-item-has-children .submenu-toggle svg {
  width: 10px;
  height: 10px;
}
.site-header__mobile-menu-list li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu {
  background-color: rgba(248, 248, 248, 0.7);
}
.site-header__mobile-menu-list li.menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu a {
  padding: 1rem 1.5rem;
  padding-left: 60px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
.site-header__mobile-menu-list li.menu-item-has-children.submenu-open > .sub-menu {
  max-height: 2000px;
}
.site-header__mobile-menu-list a {
  display: block;
  padding: 1rem 0;
  color: #141414;
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  text-decoration: none;
}
.site-header__mobile-menu-list a:hover, .site-header__mobile-menu-list a:focus {
  color: #E20A19;
}
.site-header__mobile-menu-list a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__mobile-menu-list .current-menu-item > a,
.site-header__mobile-menu-list .current-menu-ancestor > a {
  color: #E20A19;
}
.site-header__mobile-actions-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.site-header__mobile-menu-create-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-header__mobile-menu-create-set::after {
  display: none;
}
.site-header__mobile-search {
  margin-bottom: 1.5rem;
}
.site-header__mobile-user-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.site-header__mobile-action-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #141414;
  text-decoration: none;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
.site-header__mobile-action-link:hover, .site-header__mobile-action-link:focus {
  color: #E20A19;
}
.site-header__mobile-action-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.site-header__menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.5);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  backdrop-filter: blur(2px);
}

@-webkit-keyframes scroll-text {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll-text {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  .has-sticky-nav {
    padding-top: 45px;
  }
}

.menu-open {
  overflow: hidden;
}
.menu-open .site-header__mobile-menu {
  opacity: 1;
  visibility: visible;
}
.menu-open .site-header__mobile-menu .site-header__mobile-menu-container {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.menu-open .site-header__menu-overlay {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease, visibility 0s 0s;
  transition: opacity 0.3s ease, visibility 0s 0s;
}

.mega-menu-panel {
  position: absolute;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0 28px 30px rgba(20, 20, 20, 0.15);
          box-shadow: 0 28px 30px rgba(20, 20, 20, 0.15);
  border-radius: 0 0 16px 16px;
  padding: 3rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 768px) {
  .mega-menu-panel {
    padding: 3rem 3rem;
  }
}
@media (min-width: 1024px) {
  .mega-menu-panel {
    padding: 3rem 1.5rem;
  }
}
.mega-menu-panel .container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0;
}

.mega-menu-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.mega-menu-categories {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.mega-menu-category {
  margin-bottom: 2rem;
}
.mega-menu-category:last-child {
  margin-bottom: 0;
}

.mega-menu-category-title {
  font-weight: 700 !important;
  margin-bottom: 1rem;
  display: block;
  color: #141414;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  padding: 0 0 0.5rem 0;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.mega-menu-category-title:hover, .mega-menu-category-title:focus {
  color: #E20A19;
}
.mega-menu-category-title:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}

.mega-menu-subcategories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu-subcategories .mega-menu-subcategory {
  margin-bottom: 0.5rem;
}
.mega-menu-subcategories .mega-menu-subcategory:last-child {
  margin-bottom: 0;
}
.mega-menu-subcategories .mega-menu-subcategory a {
  display: block;
  color: #434343;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  padding: 0.25rem 0;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.mega-menu-subcategories .mega-menu-subcategory a:hover, .mega-menu-subcategories .mega-menu-subcategory a:focus {
  color: #E20A19;
}
.mega-menu-subcategories .mega-menu-subcategory a:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.mega-menu-subcategories .mega-menu-subcategory .mega-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.mega-menu-subcategories .mega-menu-subcategory .mega-menu-content .mega-menu-title {
  font-weight: 500;
  color: #141414;
}
.mega-menu-subcategories .mega-menu-subcategory .mega-menu-content .mega-menu-description {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  opacity: 0.7;
  line-height: 1.2;
}

.mega-menu-featured {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  padding-left: 2rem;
  border-left: 1px solid #DEDEDE;
}
.mega-menu-featured-title {
  font-weight: 700;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #141414;
  margin: 0 0 1rem 0;
}

.mega-menu-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.mega-menu-product-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  border-radius: 8px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.mega-menu-product-link:hover, .mega-menu-product-link:focus {
  background-color: #F8F8F8;
  color: inherit;
}
.mega-menu-product-link:focus-visible {
  outline: 2px solid #E20A19;
  outline-offset: 2px;
}
.mega-menu-product-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}
.mega-menu-product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.mega-menu-product-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.mega-menu-product-title {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #141414;
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}
.mega-menu-product-price {
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 600;
  color: #141414;
}
.mega-menu-product-price .woocommerce-Price-amount {
  font-weight: 700;
}
.mega-menu-product-price del {
  color: #A3A3A3;
  font-weight: 400;
  margin-right: 0.25rem;
}
.mega-menu-product-price ins {
  text-decoration: none;
  color: #E20A19;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .site-header__mobile-info-content {
    -webkit-animation: none;
            animation: none;
  }
  .site-header__navigation.is-sticky {
    -webkit-animation: none;
            animation: none;
  }
  .site-header__mobile-menu, .site-header__mobile-menu-container {
    -webkit-transition: none;
    transition: none;
  }
  .mega-menu-panel {
    -webkit-transition: none;
    transition: none;
  }
  .submenu-toggle svg {
    -webkit-transition: none;
    transition: none;
  }
  .sub-menu {
    -webkit-transition: none;
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .mega-menu-panel {
    border: 2px solid #141414;
  }
  .submenu-toggle {
    border: 2px solid #141414;
  }
}
.newsletter {
  padding-inline: 0;
  padding-block: 1.5rem;
}
@media (min-width: 768px) {
  .newsletter {
    padding-inline: var(--section-padding);
    padding-block: 2rem;
  }
}
@media (min-width: 1024px) {
  .newsletter {
    padding-block: 3rem;
  }
}
.newsletter__container {
  position: relative;
  background-color: #F8F8F8;
  padding: 50px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .newsletter__container {
    border-radius: 32px;
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .newsletter__container {
    padding: 80px 40px;
  }
}
.newsletter__decoration {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.newsletter__decoration img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.newsletter__decoration--left {
  position: absolute;
  bottom: 30px;
  left: 40px;
  width: 112px;
  height: auto;
  z-index: 1;
  display: none;
}
@media (min-width: 1024px) {
  .newsletter__decoration--left {
    display: block;
  }
}
.newsletter__decoration--right {
  position: absolute;
  bottom: -37px;
  right: 170px;
  width: 73px;
  height: auto;
  z-index: 1;
  display: none;
}
@media (min-width: 768px) {
  .newsletter__decoration--right {
    display: block;
  }
}
.newsletter__decoration--mobile {
  width: 50px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .newsletter__decoration--mobile {
    display: none;
  }
}
.newsletter__content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin: 0 auto;
}
.newsletter__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: #141414;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .newsletter__title {
    margin-bottom: 2rem;
  }
}
.newsletter__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.newsletter__description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.5;
  color: #434343;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsletter__description p {
  margin-bottom: 1rem;
}
.newsletter__description p:last-child {
  margin-bottom: 0;
}
.newsletter__form {
  margin: 0 auto;
  max-width: 450px;
}

@media (prefers-contrast: high) {
  .newsletter__container {
    border: 1px solid #DEDEDE;
  }
}
.social-media {
  padding-top: 4rem;
  padding-inline: 0;
  overflow: hidden;
}
.social-media__header-container {
  padding-inline: var(--section-padding);
}
.social-media__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: #141414;
  margin-bottom: 3rem;
}
.social-media__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.social-media__gallery-wrapper {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}
.social-media__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .social-media__gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.social-media__item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.social-media__link, .social-media__image-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.social-media__link:focus-visible {
  outline: none;
}
.social-media__link:focus-visible .social-media__focus-indicator {
  opacity: 1;
}
.social-media__focus-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #E20A19;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.social-media__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease;
  transition: transform 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
}
.social-media__link:hover .social-media__image, .social-media__link:focus .social-media__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

@media (prefers-reduced-motion: reduce) {
  .social-media__image {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@media (prefers-contrast: high) {
  .social-media__item {
    border: 1px solid #DEDEDE;
  }
  .social-media__link:hover .social-media__image, .social-media__link:focus .social-media__image {
    -webkit-transform: none;
            transform: none;
    -webkit-filter: brightness(1);
            filter: brightness(1);
    border: 2px solid #141414;
  }
  .social-media__focus-indicator {
    border-width: 4px;
  }
}
@media (hover: none) {
  .social-media__link:active .social-media__image {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    -webkit-filter: brightness(0.95);
            filter: brightness(0.95);
  }
}/*# sourceMappingURL=style.css.map */