@charset "UTF-8";
:root {
  --color-primary: #0269b3;
  --color-primary-light: #0595fc;
  --color-primary-dark: #024c7c;
  --color-primary-darker: #014b81;
  --color-secondary: #0269b3;
  --color-secondary-light: #0387e5;
  --color-secondary-lighter: #1fa0fc;
  --color-secondary-lighter-60: #e8f5ff;
  --color-tertiary: #1b2631;
  --color-tertiary-light: #535353;
  --color-tertiary--reverse: #ffffff;
  --color-tertiary--btn: #1b2631;
  --color-quaternary: #C51B2A;
  --color-very-light-gray: #f0f0f0;
  --color-light-gray: #e4e4e4;
  --color-dark-gray: #b1b1b1;
  --color-darkest-gray: #989898;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-icon-hover: #a0a0a0;
  --color-white-dark: #f2f2f2;
  --color-white-darker: #e6e6e6;
  --color-background: #ffffff;
  --color-background-gray: #f0f0f0;
  --color-success:#b8dab8;
  --color-success-dark: #297e29;
  --color-error: #dab8b8;
  --color-error-dark: #4b0606;
}

/*
0-300px: Small Phone
300px-600px: Phone
600px-900px: Tablet portrait
900px-1200px: tablet landscape
1200px-1800px: there is where our normal styles apply
1800px + : Big desktop


$breakpoint argument choices: 
- small-phone
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
/* Keyframes for fade-in animation */
.animate {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation-delay {
  visibility: hidden;
}

.animation-delay.animate {
  visibility: visible;
}

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

html {
  font-size: 62.5%;
  /*
  @include respond(tab-land) { 
    font-size: 59.38%; //1rem = 9.5px, 9.5/16 = 59.38%
  }

  @include respond(big-desktop) {
    font-size: 75%; //1rem = 12, 12/16 = 75%
  }
  */
}

body {
  box-sizing: border-box;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

body {
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--color-tertiary);
  background: var(--color-background);
  line-height: 2.4rem;
}

a {
  text-decoration: none;
  color: var(--color-tertiary);
}

ul {
  list-style-type: none;
  padding: 0;
}
ul li a {
  position: relative;
  height: auto;
  text-decoration: none;
  color: var(--color-tertiary);
}

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

h1 {
  font-size: 4.8rem;
  line-height: 5.76rem;
}
@media only screen and (max-width: 56.25em) {
  h1 {
    font-size: 4.8rem;
    line-height: 5.76rem;
  }
}
@media only screen and (max-width: 37.5em) {
  h1 {
    font-size: 3.4rem;
    line-height: 4.42rem;
  }
}

h2 {
  font-size: 3.4rem;
  line-height: 4.25rem;
}
@media only screen and (max-width: 37.5em) {
  h2 {
    font-size: 2.8rem;
    line-height: 3.5rem;
  }
}
@media only screen and (min-width: 112.5em) {
  h2 {
    font-size: 5.6rem;
    line-height: 7rem;
  }
}

h3 {
  font-size: 2.6rem;
  line-height: 3.38rem;
}
@media only screen and (max-width: 37.5em) {
  h3 {
    font-size: 1.8rem;
    line-height: 2.34rem;
  }
}

h4 {
  font-size: 2.4rem;
  line-height: 3rem;
}
@media only screen and (max-width: 37.5em) {
  h4 {
    font-size: 1.8rem;
    line-height: 2.34rem;
  }
}

h5 {
  font-size: 1.8rem;
  line-height: 2.34rem;
}
@media only screen and (max-width: 37.5em) {
  h5 {
    font-size: 1.6rem;
    line-height: 2.08rem;
  }
}
@media only screen and (min-width: 112.5em) {
  h5 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}

h6 {
  font-size: 1.6rem;
  line-height: 2.08rem;
}

.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-secondary-light {
  color: var(--color-secondary-light);
}

.color-tertiary {
  color: var(--color-tertiary);
}

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

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

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

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

.mt-60 {
  margin-top: 6rem;
}

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

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

.mb-60 {
  margin-bottom: 6rem;
}

.mr-5 {
  margin-right: 0.5rem;
}

.mr-10 {
  margin-right: 1rem;
}

.mr-15 {
  margin-right: 1.5rem;
}

.mr-20 {
  margin-right: 2rem;
}

.pb-15 {
  padding-bottom: 1.5rem;
}

.pb-20 {
  padding-bottom: 2rem;
}

.pb-40 {
  padding-bottom: 4rem;
}

.pr-10 {
  padding-right: 1rem;
}

.pl-10 {
  padding-left: 1rem;
}

.w-100 {
  width: 100%;
}

.border-bottom {
  border-bottom: 1px solid var(--color-tertiary);
}

.gradient-text {
  display: inline-block;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.ls-large {
  letter-spacing: 0.5rem;
}

.ls-medium {
  letter-spacing: 0.3rem;
}

.title-separator {
  position: relative;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 3rem;
  text-align: center;
}
.title-separator::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 1.2rem auto 0 auto;
  border-radius: 2px;
}

.only-mobile {
  display: none !important;
}
@media only screen and (max-width: 37.5em) {
  .only-mobile {
    display: flex !important;
  }
}

.only-tab {
  display: none !important;
}
@media only screen and (max-width: 56.25em) {
  .only-tab {
    display: flex !important;
  }
}

.only-tab-land {
  display: none !important;
}
@media only screen and (max-width: 75em) {
  .only-tab-land {
    display: flex !important;
  }
}

.only-min-tab {
  display: none !important;
}
@media only screen and (min-width: 37.5em) {
  .only-min-tab {
    display: flex !important;
  }
}

.only-desc {
  display: none !important;
}
@media only screen and (min-width: 75em) {
  .only-desc {
    display: flex !important;
  }
}

.none {
  display: none !important;
}

.active {
  display: block !important;
}

.rotate-180 {
  transform: rotate(180deg);
}

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

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

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

.uppercase {
  text-transform: uppercase;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: -1;
}
.image-overlay img {
  pointer-events: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.image-overlay .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(186, 186, 186);
  background: linear-gradient(0deg, rgba(2, 55, 94, 0.8) 0%, rgba(2, 55, 94, 0.8) 100%);
  pointer-events: none;
}
.image-overlay .overlay.lighten {
  background: rgb(186, 186, 186);
  background: linear-gradient(0deg, rgba(2, 55, 94, 0.8) 0%, rgba(2, 55, 94, 0.8) 100%);
}
.image-overlay .overlay-dark {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(33, 33, 33);
  background: linear-gradient(0deg, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 0.8) 100%);
  pointer-events: none;
}
.image-overlay .overlay-dark.lighten-dark {
  background: rgb(33, 33, 33);
  background: linear-gradient(0deg, rgba(33, 33, 33, 0.4) 0%, rgba(33, 33, 33, 0.9) 100%);
}

input[type=text],
input[type=password],
input[type=email],
input[type=date],
input[type=time],
input[type=tel] {
  height: 5.6rem;
  font-size: 1.6rem;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-tertiary--btn);
  min-width: 10rem;
  border: none;
  border-bottom: 1px solid var(--color-dark-gray) !important;
  width: 100%;
}

label {
  padding-bottom: 0.5rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number], .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  width: 100%;
  height: 100%;
  font-size: 1.6rem !important;
  background-color: var(--color-background) !important;
  color: var(--color-tertiary) !important;
  padding: 0 !important;
  border: 1px solid var(--color-tertiary) !important;
  border-radius: 0 !important;
  min-width: 4.4rem !important;
}

.input__number-container {
  box-sizing: content-box;
  display: flex;
  position: relative;
  background: none transparent;
  border: 1px solid var(--color-tertiary);
  height: 3.5rem;
  border-radius: 2.5rem;
}

.input__number-button button {
  background: var(--color-background);
  border: 0;
  border-radius: 2.5rem;
  box-shadow: none;
  color: currentColor;
  cursor: pointer;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  min-width: 4rem;
  padding: 0;
  text-align: center;
  text-decoration: none;
  height: 100%;
}
.input__number-button button:hover {
  opacity: 0.6;
}

.input__number-wrapper input {
  border: none !important;
  border-right: 1px solid var(--color-tertiary) !important;
  border-left: 1px solid var(--color-tertiary) !important;
}

.select2-selection__arrow {
  top: 1.4rem !important;
}

.select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  height: 5.6rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: var(--color-primary);
}

.wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion.is-highlighted, .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:active, .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:focus, .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:hover, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion.is-highlighted, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:active, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:focus, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list .components-form-token-field__suggestion:hover {
  background-color: var(--color-primary) !important;
}

.wpcf7-textarea {
  padding: 1.2rem;
  border: 1px solid var(--color-dark-gray);
  font-family: "Poppins", sans-serif !important;
  margin: 4rem 0;
  width: 100%;
}

.wpcf7-form {
  max-width: 60rem;
  text-align: left;
  margin: 0 auto;
}

.wpcf7-select {
  width: 100%;
  height: 5.6rem;
}

.woocommerce input[type=text],
.woocommerce input[type=password],
.woocommerce input[type=email],
.woocommerce input[type=date],
.woocommerce input[type=time],
.woocommerce input[type=tel] {
  border: 1px solid var(--color-dark-gray) !important;
}

.woocommerce-Input {
  border: 1px solid var(--color-dark-gray) !important;
}

/*
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {

      height: 100%;
      width: 100%;
      font-size: $font-size-big !important;
      cursor: pointer;
      background: var(--color-white) !important;
      color: var(--color-tertiary) !important;
      border: 1.5px solid var(--color-tertiary) !important;
      border-radius: 0 !important;
      opacity: 1 !important;
      min-width: 4.4rem !important;
      font-weight: $font-bold !important;

      &:focus {
         box-shadow: none !important;
      }
}

.wc-block-components-quantity-selector {
      height: $input-number-height;
      width: 13.2rem !important;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--color-light-gray) !important;
      border: 1.5px solid var(--color-tertiary) !important;
      border-radius: 0 !important;
      color: var(--color-tertiary) !important;

      &:after {
         border: none !important;
      }
}

.input__number {

   text-align: center;

   &-container {
      display: flex;
      align-items: center;
   }

   &-wrapper, .wc-block-components-quantity-selector {
      position: relative;
      height: $input-number-height;
      width: $input-number-width;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--color-light-gray) !important;
      border: 1.5px solid var(--color-tertiary) !important;
      border-radius: 0 !important;
      color: var(--color-tertiary) !important;

      &:after {
         border: none !important;
      }
   }

   &-button {
      height: $input-number-height;
      width: $input-number-width;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1.5px solid var(--color-tertiary) !important;

      button {
         height: 100%;
         width: 100%;
         font-size: $font-size-big !important;
         cursor: pointer;
         background: var(--color-white) !important;
         color: var(--color-tertiary) !important;
         border: 1.5px solid var(--color-tertiary) !important;
         border-radius: 0 !important;
         opacity: 1 !important;
         font-weight: $font-bold !important;

         &:focus {
            box-shadow: none !important;
         }
      }
   }
}

*/
button {
  border: none;
}

.btn-margin-top {
  margin-top: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .btn-margin-top {
    margin-top: 2rem;
  }
}

.btn, .btn:link, .btn:visited {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  position: relative;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
  border-radius: 5.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 37.5em) {
  .btn, .btn:link, .btn:visited {
    width: 100%;
    padding: 1rem 1.4rem;
  }
}

.btn-white {
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  color: var(--color-tertiary);
  font-weight: 500;
}
.btn-white:hover {
  background: transparent;
  color: var(--color-white);
}

.btn-white-border {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  color: var(--color-tertiary--btn);
  font-size: 1.6rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  font-weight: 500;
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
}
.btn-primary:active {
  background-color: var(--color-primary-darker);
}

.btn-white-reverse {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-weight: 500;
}
@media only screen and (min-width: 75em) {
  .btn-white-reverse:hover {
    background-color: var(--color-white-dark);
    color: var(--color-primary);
    border: 2px solid var(--color-white-dark);
  }
  .btn-white-reverse:active {
    background-color: var(--color-white-darker);
    color: var(--color-primary);
    border: 2px solid var(--color-white-darker);
  }
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-tertiary--reverse);
  font-weight: 500;
  border: 2px solid var(--color-secondary);
}
.btn-secondary:hover {
  background-color: var(--color-secondary-light);
  border: 2px solid var(--color-secondary-light);
}
.btn-secondary:active {
  background-color: var(--color-secondary-lighter);
  border: 2px solid var(--color-secondary-lighter);
}

.btn-round, .btn-round:link, .btn-round:visited {
  border-radius: 50% 50% 50% 0;
  height: 3rem;
  width: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  font-size: 1.6rem;
  cursor: pointer;
  border: none;
}

.btn-gray {
  background-color: var(--color-light-gray);
  color: var(--color-tertiary);
  border: 2px solid var(--color-light-gray);
  font-weight: 500;
}
.btn-gray:hover {
  background-color: var(--color-dark-gray);
  border: 2px solid var(--color-dark-gray);
}
.btn-gray:active {
  background-color: var(--color-darkest-gray);
  border: 2px solid var(--color-darkest-gray);
}

.hamburger__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.hamburger__menu.active {
  background-color: var(--color-primary);
}
.hamburger__menu--icon {
  position: relative;
}
.hamburger__menu--icon, .hamburger__menu--icon::before, .hamburger__menu--icon::after {
  width: 2rem;
  height: 0.2rem;
  background-color: var(--color-tertiary);
  display: inline-block;
}
.hamburger__menu--icon::before, .hamburger__menu--icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.hamburger__menu--icon::before {
  top: -0.7rem;
}
.hamburger__menu--icon::after {
  top: 0.7rem;
}
.hamburger__menu--icon.active {
  background-color: transparent;
  height: 0;
}
.hamburger__menu--icon.active::before {
  top: 0;
  transform: rotate(135deg);
  background-color: var(--color-primary);
  height: 0.2rem;
}
.hamburger__menu--icon.active::after {
  top: 0;
  transform: rotate(-135deg);
  background-color: var(--color-primary);
  height: 0.2rem;
}

.logo {
  fill: var(--color-tertiary);
  color: var(--color-tertiary);
}

.arrow-icon-big {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s ease;
}

.arrow-icon-big::after {
  content: "";
  border: solid currentColor;
  border-width: 0 1.3px 1.3px 0;
  padding: 5px;
  transform: translateY(-3px) rotate(45deg);
  -webkit-transform: translateY(-3px) rotate(45deg);
}

.rotate {
  transform: rotate(180deg); /* Obróć ikonę o 180 stopni */
}

.rotate-90 {
  transform: rotate(-90deg);
}

.icon {
  padding-right: 1rem;
}

.underline-container {
  position: relative;
  display: inline-block;
}

.underline-container .underline-icon {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.underline-5 {
  bottom: -0.5em;
}

.underline-2 {
  bottom: -0.2em;
}

.icon-container {
  width: 23px; /* Szerokość kontenera na ikonę, aby dopasować się do ikony */
  height: 23px; /* Wysokość kontenera na ikonę, aby dopasować się do ikony */
  display: flex; /* Ustawiamy kontener na flex, aby łatwiej zarządzać jego zawartością */
  justify-content: center; /* Wyśrodkowanie zawartości w pionie */
  align-items: center; /* Wyśrodkowanie zawartości w poziomie */
}

.rotate-svg {
  transition: transform 2s ease; /* Zmieniamy czas trwania animacji na 2 sekundy */
}

.rotate-animation {
  transform: rotate(360deg); /* Obracamy ikonę o 360 stopni */
}

.arrow-icon-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s ease;
}

.arrow-icon-small::after {
  content: "";
  border: solid currentColor;
  border-width: 0 1.3px 1.3px 0;
  padding: 4px;
  transform: translateY(-3px) rotate(45deg);
  -webkit-transform: translateY(-3px) rotate(45deg);
}

.switch {
  position: relative;
  display: inline-block;
  width: 5.6rem; /* Szerokość przełącznika */
  height: 25px; /* Zmniejszona wysokość przełącznika */
  margin-left: 1rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-light-gray);
  transition: background-color 0.4s ease;
  border-radius: 1.25rem; /* Dostosowanie promienia, aby pasował do nowej wysokości */
}

.slider:before {
  position: absolute;
  content: "";
  height: 21px; /* Zmniejszona wysokość kółka */
  width: 21px; /* Zmniejszona szerokość kółka */
  left: 2px; /* Pozycja kółka */
  bottom: 2px; /* Pozycja kółka */
  background-color: var(--color-white);
  transition: transform 0.4s ease, background-color 0.4s ease;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:checked + .slider:before {
  transform: translateX(calc(5.6rem - 27px)); /* Przesunięcie kółka, dostosowane do nowej szerokości */
}

/* Dodajemy przejście dla wszystkich elementów */
html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s;
  transition-delay: 0;
}

/* Styl dla karuzeli */
.carousel {
  position: relative;
  overflow-y: scroll; /* Wymusza przewijanie */
  max-width: 100%;
  display: flex;
  padding-bottom: 3rem;
  --scrollbar-color-thumb: var(--color-primary);
  --scrollbar-color-track: var(--color-light-gray);
  /* Ukrycie natywnych scrollbarów */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE i Edge */
}

.carousel::-webkit-scrollbar {
  display: none; /* Ukryj scrollbar w WebKit */
}

/* Pasek postępu (track) */
.carousel-progress {
  position: absolute;
  bottom: 0; /* Pasek widoczny na dole */
  left: 0;
  height: 4px; /* Wysokość tracka */
  width: 100%; /* Pełna szerokość */
  background-color: var(--color-light-gray); /* Kolor tła (tracka) */
  z-index: 10;
}

/* Uchwyt paska przewijania (thumb) */
.carousel-progress-thumb {
  position: absolute;
  bottom: 0;
  height: 4px; /* Wysokość uchwytu */
  width: 100px; /* Stała szerokość uchwytu */
  background-color: var(--color-primary-light); /* Kolor uchwytu */
  border-radius: 2px; /* Zaokrąglone rogi */
  z-index: 11;
  transition: transform 0.1s linear; /* Płynne przesuwanie uchwytu */
}

/* Stylizacja dla pozostałych elementów karuzeli */
.carousel-container {
  position: relative;
}

.carousel-left, .carousel-right {
  cursor: pointer;
  z-index: 1;
  padding: 0.8rem 1rem;
  width: 6.4rem;
  height: 4.4rem;
  display: none;
  user-select: none;
  justify-content: center;
  align-items: center;
  background-color: var(--color-background-gray);
  color: var(--color-tertiary);
  z-index: 1000;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  height: 50px;
  width: 50px;
}
@media only screen and (max-width: 75em) {
  .carousel-left, .carousel-right {
    display: none !important;
  }
}

.carousel-left:hover, .carousel-right:hover {
  background-color: var(--color-dark-gray);
}

.carousel-left {
  left: -10rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 75em) {
  .carousel-left {
    left: 0;
  }
}

.carousel-right {
  right: -10rem;
}
@media only screen and (max-width: 75em) {
  .carousel-right {
    right: 0;
  }
}

.carousel-container-in .carousel-left {
  left: 0;
}
.carousel-container-in .carousel-right {
  right: 0;
}

.dropdown {
  border: none;
  display: block;
  cursor: pointer;
  color: var(--color-white);
}
.dropdown-container {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.dropdown-container .active {
  max-height: 1000rem;
}
.dropdown-container .active .arrow-icon-big {
  transform: rotate(180deg); /* Obróć ikonę o 180 stopni */
}
.dropdown-item {
  padding: 1.5rem 0;
}

.flex-item.col-6.flex-container.section-about-product__image {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

@media only screen and (min-width: 56.25em) {
  .mini-slider {
    overflow: visible;
  }
  .mini-slider .slides {
    display: flex;
    flex-wrap: wrap;
    transition: none;
  }
  .mini-slider .slides > li:not(:last-child) {
    margin-right: 2.4rem;
  }
  .mini-slider .dots {
    display: none;
  }
}
@media only screen and (max-width: 56.25em) {
  .mini-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .mini-slider .slides {
    display: flex; /* Elementy w rzędzie */
    transition: transform 0.5s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .mini-slider .slides > li {
    flex: 0 0 100%;
    box-sizing: border-box;
  }
  .mini-slider .dots {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
  }
  .mini-slider .dot {
    height: 0.8rem;
    width: 0.8rem;
    margin: 0 1rem;
    background-color: var(--color-secondary-lighter-60);
    border-radius: 50%;
    cursor: pointer;
  }
  .mini-slider .dot-active {
    background-color: var(--color-secondary);
  }
}
#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 109998;
}

.popup-content {
  max-width: 70rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  padding: 4.8rem;
  text-align: center;
  border-radius: 8px;
}
@media only screen and (max-width: 37.5em) {
  .popup-content {
    padding: 2.4rem;
    margin: 0 2.4rem;
  }
}
.popup-content--description {
  padding: 4rem 0 4rem;
}
.popup-content--btn {
  margin-right: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .popup-content--btn {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
.popup-content--header {
  text-align: center;
  margin-top: 4rem;
}

.cart-popup {
  position: fixed;
  top: 50px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.cart-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}
.flex-inline {
  display: inline-flex;
}
.flex-item {
  box-sizing: border-box;
  flex: 0 0 100%;
}
@media (min-width: 576px) {
  .flex-item.col-1 {
    flex: 0 0 calc(8.3333% - 1.2rem);
  }
  .flex-item.col-2 {
    flex: 0 0 calc(16.6667% - 1.2rem);
  }
  .flex-item.col-3 {
    flex: 0 0 calc(25% - 1.2rem);
  }
  .flex-item.col-4 {
    flex: 0 0 calc(33.3333% - 1.2rem);
  }
  .flex-item.col-5 {
    flex: 0 0 calc(41.6667% - 1.2rem);
  }
  .flex-item.col-6 {
    flex: 0 0 calc(50% - 1.2rem);
  }
  .flex-item.col-7 {
    flex: 0 0 calc(58.3333% - 1.2rem);
  }
  .flex-item.col-8 {
    flex: 0 0 calc(66.6667% - 1.2rem);
  }
  .flex-item.col-9 {
    flex: 0 0 calc(75% - 1.2rem);
  }
  .flex-item.col-10 {
    flex: 0 0 calc(83.3333% - 1.2rem);
  }
  .flex-item.col-11 {
    flex: 0 0 calc(91.6667% - 1.2rem);
  }
  .flex-item.col-12 {
    flex: 0 0 calc(100% - 1.2rem);
  }
}
@media (min-width: 768px) {
  .flex-item.col-1, .flex-item.col-2, .flex-item.col-3, .flex-item.col-4, .flex-item.col-5, .flex-item.col-6, .flex-item.col-7, .flex-item.col-8, .flex-item.col-9, .flex-item.col-10, .flex-item.col-11, .flex-item.col-12 {
    flex: 0 0 calc(50% - 1.2rem);
  }
}
@media (min-width: 992px) {
  .flex-item.col-1 {
    flex: 0 0 calc(8.3333% - 1.2rem);
  }
  .flex-item.col-2 {
    flex: 0 0 calc(16.6667% - 1.2rem);
  }
  .flex-item.col-3 {
    flex: 0 0 calc(25% - 1.2rem);
  }
  .flex-item.col-4 {
    flex: 0 0 calc(33.3333% - 1.2rem);
  }
  .flex-item.col-5 {
    flex: 0 0 calc(41.6667% - 1.2rem);
  }
  .flex-item.col-6 {
    flex: 0 0 calc(50% - 1.2rem);
  }
  .flex-item.col-7 {
    flex: 0 0 calc(58.3333% - 1.2rem);
  }
  .flex-item.col-8 {
    flex: 0 0 calc(66.6667% - 1.2rem);
  }
  .flex-item.col-9 {
    flex: 0 0 calc(75% - 1.2rem);
  }
  .flex-item.col-10 {
    flex: 0 0 calc(83.3333% - 1.2rem);
  }
  .flex-item.col-11 {
    flex: 0 0 calc(91.6667% - 1.2rem);
  }
  .flex-item.col-12 {
    flex: 0 0 calc(100% - 1.2rem);
  }
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-space-between {
  justify-content: space-between;
}
.flex-space-around {
  justify-content: space-around;
}
.flex-start {
  justify-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
}
.flex-center {
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}
.flex-a-center {
  align-items: center;
}
.flex-a-start {
  align-items: flex-start;
}

.header {
  position: relative;
}
.header__item i {
  font-size: 16px;
}
.header__item:not(:last-child) {
  padding-right: 2.4rem;
}
.header__info {
  padding: 1.2rem 4.8rem;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 1.2rem;
}
@media only screen and (max-width: 56.25em) {
  .header__info {
    display: none;
  }
}
.header__info--icon {
  padding-right: 1rem;
  color: var(--color-white);
  font-size: 16px;
}
.header__info--icon .icon {
  color: var(--color-white);
  stroke: var(--color-white);
}
.header__dark-mode {
  padding-right: 2.4rem;
}
.header__main {
  padding: 0 4.8rem;
  background-color: var(--color-background);
  position: sticky;
  top: 3.2rem;
  width: 100%;
  z-index: 99999;
  transition: all 0.3s ease;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  height: auto;
}
@media only screen and (max-width: 56.25em) {
  .header__main {
    padding: 2.4rem;
  }
}
@media only screen and (max-width: 23.125em) {
  .header__main {
    justify-content: center;
  }
}
.header--fixed {
  position: fixed;
  top: 3.2rem;
  left: 0;
  width: 100%;
  z-index: 99999;
}
@media only screen and (max-width: 37.5em) {
  .header--fixed {
    top: 0rem;
  }
}
.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 1.2rem 0;
}

.logo-mobile {
  transform: scale(0.9);
}

.navigation {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .navigation {
    width: 100%;
  }
}
@media only screen and (max-width: 56.25em) {
  .navigation ul {
    width: 100%;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 56.25em) {
  .navigation__container {
    width: 100%;
  }
}
.navigation__tab {
  display: flex;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 56.25em) {
  .navigation__tab {
    display: none;
  }
}
.navigation__box {
  height: 100%;
}
.navigation__link {
  margin: 0;
  margin-right: 4.8rem;
  padding: 4.8rem 0;
  font-weight: 600;
  position: relative;
  list-style: none;
  height: 100%;
}
.navigation__link a {
  display: flex;
  align-items: center;
}
.navigation__link a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 2.5rem;
  left: 0;
  background-color: var(--color-primary);
  transform-origin: bottom left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  backface-visibility: hidden;
  will-change: transform;
  box-sizing: border-box;
}
.navigation__link a:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.navigation__icon {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.navigation__icon:not(:last-child) {
  padding-right: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .navigation__icon:not(:last-child) {
    padding-right: 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .navigation__icon:not(:last-child) {
    padding-right: 2.4rem;
  }
}
@media only screen and (min-width: 56.25em) {
  .navigation__icon:nth-child(4) {
    padding-right: 0;
  }
}
.navigation__icon a {
  display: flex;
}
.navigation__icon .icon {
  color: var(--color-tertiary);
}
.navigation__icon .icon:hover {
  color: var(--color-icon-hover);
}
.navigation__bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  background-color: var(--color-background);
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.2);
}

.mobile-menu {
  position: fixed;
  top: 16.1rem;
  right: -100%;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  background-color: var(--color-white);
  color: var(--color-tertiary);
  background: var(--color-background);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 56.25em) {
  .mobile-menu {
    top: 6.5rem;
  }
}
.mobile-menu.open {
  right: 0;
  width: 65%;
}
@media only screen and (max-width: 37.5em) {
  .mobile-menu.open {
    width: 100%;
  }
}
.mobile-menu__links {
  padding-bottom: 1.5rem;
}
.mobile-menu__container {
  padding: 2.4rem;
}
.mobile-menu__header {
  padding-bottom: 1.5rem;
  font-weight: 600;
}
.mobile-menu__item {
  padding: 0.5rem 0;
}
.mobile-menu__logout {
  padding-top: 3rem;
}

.dark-mode__fixed {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .dark-mode__fixed {
    display: block;
    position: fixed;
    bottom: 0.4rem;
    left: 0.4rem;
    z-index: 1000;
  }
}

.settings {
  position: relative;
  z-index: 99999;
}
.settings-container {
  position: absolute;
  bottom: -10rem;
  height: 0;
  width: 100vw;
  background-color: var(--color-white);
  color: var(--color-tertiary);
  background: var(--color-background);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  transition-delay: 1s;
  padding: 2.4rem;
  background-color: var(--color-background);
}
.settings-container--visible {
  height: 50vh;
}

.has-submenu {
  position: relative;
}
.has-submenu a::after {
  display: none;
}

.submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 12rem;
  left: -6.5rem;
  background-color: var(--color-white);
  list-style: none;
  padding: 4.8rem;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 100vw;
  transform: translateY(-20px);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  /* Strzałka z cieniem */
}
@media only screen and (min-width: 112.5em) {
  .submenu {
    height: 50vh;
  }
}
.submenu::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 9.6rem;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--color-white);
  z-index: 1;
}

.submenu-sublist {
  font-weight: 400;
}
.submenu-sublist li {
  padding: 0.5rem 0;
}
.submenu-sublist li a:hover {
  color: var(--color-primary);
}

.submenu-header {
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.submenu-categories {
  padding: 2.4rem 0;
  margin-right: 4.8rem;
  position: relative;
}
.submenu-categories-title {
  position: relative;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}
.submenu-categories-icon {
  position: absolute;
  top: 10rem;
  right: 3rem;
  height: 25rem !important;
  opacity: 0.1;
}
@media only screen and (min-width: 112.5em) {
  .submenu-categories-icon {
    top: 25rem;
    right: 15rem;
  }
}

.submenu-list {
  text-align: center;
  background-color: var(--color-background-gray);
  padding: 2.4rem;
  border-radius: 2.5rem;
}
.submenu-list-header {
  padding-bottom: 1.5rem;
}

.submenu-header--images {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.submenu:hover .submenu-header--img1 {
  transform: rotate(15deg);
}
.submenu:hover .submenu-header--img2 {
  transform: rotate(-15deg);
}

.submenu-header--images:hover .submenu-header--img1 {
  transform: rotate(0deg);
  transform: translateX(3rem);
}
.submenu-header--images:hover .submenu-header--img2 {
  transform: rotate(0deg);
  transform: translateX(-3rem);
}

.submenu-header--img1 {
  max-height: 12rem;
  width: auto;
  position: absolute;
  transform: translateX(1rem);
  transition: all 0.5s ease-in-out 0.2s;
}

.submenu-header--img2 {
  max-height: 12rem;
  width: auto;
  left: 5rem;
  position: absolute;
  transform: translateX(-1rem);
  transition: all 0.5s ease-in-out 0.2s;
}

/* Pokaż podmenu na hover */
.navigation__link:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.has-submenu:hover > a,
.has-submenu:focus-within > a {
  color: var(--color-primary);
}

/* Stylizacja dla mobilnego menu */
.mobile-menu__item {
  padding: 1rem 0;
}

.mobile-menu__link {
  text-decoration: none;
  color: var(--color-tertiary);
  display: block;
}

.mobile-menu__links li {
  padding: 1rem 0;
}

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding-left: 4.8rem;
  display: none; /* Domyślnie ukryte */
}

.mobile-menu__item--expanded .mobile-submenu {
  display: block; /* Rozwinięcie głównego sklepu i kategorii */
}

.mobile-submenu__link {
  text-decoration: none;
}

.mobile-submenu__category {
  padding: 1rem 0;
}

/* Stylizacja dla aktywnych/rozwiniętych linków */
.mobile-menu__item--expanded > .mobile-menu__link {
  color: var(--color-primary);
  font-weight: bold;
}

/* Po kliknięciu w główne kategorie (toggling podmenu) */
.mobile-submenu--subcategories {
  padding-left: 2.4rem;
  display: none; /* Ukryte domyślnie, do rozwinięcia */
}

.mobile-submenu__subcategory {
  display: block;
}

.mobile-submenu__item--expanded > .mobile-submenu--subcategories {
  display: block; /* Rozwinięcie podkategorii */
}

.header {
  /* Przyciski dla wersji mobilnej */
  /* Mobilne menu */
  /* Mobilna nawigacja - linki w kolumnie */
  /* Overlay dla mobilnego menu */
}
.header__menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-tertiary);
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background: var(--color-white);
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Ustawienie pozycji linków */
  gap: 20px;
}
.header__mobile-menu.active {
  right: 0;
}
.header__menu-close {
  align-self: flex-end;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-tertiary);
}
.header__menu-close:hover {
  color: var(--color-secondary);
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header__mobile-nav a {
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--color-tertiary);
  transition: color 0.3s ease;
}
.header__mobile-nav a:hover {
  color: var(--color-secondary);
}
.header__mobile-dash {
  margin-top: 4rem;
}
.header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 15;
}
.header__overlay.active {
  display: block;
}

.footer {
  background-color: var(--color-background);
  padding: 6rem 0;
  text-align: center;
  clear: both;
  max-width: 1240px;
  margin: 0 auto;
}
.footer__logo {
  display: flex;
  justify-content: center;
  padding: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__logo {
    padding: 4rem;
    padding-bottom: 0;
  }
}
.footer__social-media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer .icon__social-media {
  height: 3rem;
  width: 3rem;
  margin-right: 1.2rem;
}
.footer__navigation {
  padding: 6rem 4.8rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__navigation {
    flex-direction: column;
    align-items: center;
    padding: 4rem 2.4rem;
  }
}
.footer__navigation--header {
  padding-bottom: 2rem;
  font-weight: 600;
}
.footer__navigation--item {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 56.25em) {
  .footer__navigation--item {
    padding: 1rem 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer__navigation--item {
    align-items: center;
  }
}
.footer__navigation--link, .footer__navigation li {
  padding-bottom: 1rem;
  justify-content: center;
}
.footer__navigation--link a:hover, .footer__navigation li a:hover {
  color: var(--color-primary);
}
.footer__info {
  padding: 0 4.8rem;
  padding-top: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__info {
    padding: 0 2.4rem;
    padding-top: 4rem;
  }
}
.footer__info--header {
  padding-bottom: 4rem;
  font-weight: 600;
}
@media only screen and (max-width: 56.25em) {
  .footer__info--header {
    padding-bottom: 2rem;
  }
}
.footer__info--container {
  padding-bottom: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__info--container {
    padding-bottom: 4rem;
  }
}
.footer__info--options {
  align-items: flex-start;
}
@media only screen and (max-width: 37.5em) {
  .footer__info--options {
    align-items: center;
  }
}
.footer__info--item:not(:last-child) {
  padding-right: 4.8rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__info--item:not(:last-child) {
    padding-right: 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer__info--item {
    padding: 1rem 0;
  }
}
.footer__info--item img {
  height: 40px;
  width: 100%;
}
.footer__copyright {
  display: flex;
  padding: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__copyright {
    padding: 4rem 0;
    justify-content: center;
  }
}

.container {
  padding: 4.8rem;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}
@media only screen and (max-width: 56.25em) {
  .container {
    padding: 2.4rem;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1800px;
  }
}
.section {
  background-color: var(--color-background);
  padding: 6rem 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .section {
    padding: 5rem 2.4rem;
  }
}
.section__border {
  position: relative;
  padding-left: 20px;
}
.section__border::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  border-radius: 0 0.5rem 0.5rem 0;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-quaternary));
}
.section__header--main {
  color: var(--color-tertiary);
  font-weight: 500;
  padding-bottom: 1.5rem;
}
.section__header--sub {
  color: var(--color-tertiary);
  font-weight: 500;
  padding-bottom: 2rem;
}
.section__header--title {
  color: var(--color-tertiary);
  padding-bottom: 1.5rem;
}
.section__header--desc {
  max-width: 600px;
  margin: 0 auto;
}
.section-main {
  position: relative;
  width: 100%;
  min-height: 65vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4.8rem;
  color: var(--color-white);
  /*
  &__background {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    @include respond(phone) {
      order:1;
    }
  }
  */
}
@media only screen and (max-width: 75em) {
  .section-main {
    height: 45vh;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-main {
    height: 65vh;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-main {
    height: 70vh;
  }
}
@media only screen and (max-width: 23.125em) {
  .section-main {
    height: 80vh;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-main {
    margin-bottom: 5rem;
  }
}
.section-main-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-main-overlay::before, .section-main-overlay::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.section-main-overlay::after {
  background: linear-gradient(120deg, rgba(2, 55, 94, 0.8), rgba(197, 27, 42, 0.1));
  mix-blend-mode: overlay;
}
.section-main__main-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .section-main__main-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
.section-main__buttons :first-child {
  margin-right: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .section-main__buttons :first-child {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.section-main__buttons {
  margin-top: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .section-main__buttons {
    margin-top: 4rem;
    width: 100%;
  }
}
.section-main__header {
  color: var(--color-white);
  padding-bottom: 2rem;
}
.section-main__container {
  position: absolute;
  padding: 6rem 0;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.2s;
  max-width: 50rem;
}
@media only screen and (max-width: 56.25em) {
  .section-main__container {
    position: relative;
    padding: 6rem 2.4rem;
    align-items: center;
    text-align: center;
    top: 20%;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-main__container {
    padding: 0;
    order: 2;
    top: 0;
  }
}
.section-main__boxs {
  position: absolute;
  bottom: -6rem;
  right: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
@media only screen and (max-width: 56.25em) {
  .section-main__boxs {
    right: 50%;
    transform: translateX(50%);
  }
}
@media only screen and (max-width: 75em) {
  .section-main__boxs {
    display: none;
  }
}
.section-main__box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20rem;
  width: 40rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.section-main__box:not(:last-child) {
  margin-right: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .section-main__box {
    height: 20rem;
    width: 15rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .section-main__box {
    height: 30rem;
    width: 50rem;
  }
}
.section-main__box a {
  height: 100%;
  width: 100%;
}
.section-main__box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  filter: brightness(0.8);
}
@media only screen and (min-width: 75em) {
  .section-main__box:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
  }
}
.section-main__box--title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 1.2rem;
}
@media only screen and (max-width: 75em) {
  .section-adv {
    padding: 0 4.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-adv {
    padding: 0 2.4rem;
  }
}
.section-adv__container {
  text-align: center;
}
.section-adv__box {
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 85%;
  margin: 0 auto;
}
@media only screen and (min-width: 112.5em) {
  .section-adv__box {
    width: 50%;
  }
}
@media only screen and (max-width: 75em) {
  .section-adv__box {
    width: 100%;
  }
}
.section-adv__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--color-background-gray);
  color: var(--color-tertiary);
  border-radius: 0.5rem;
  padding: 2.4rem;
  width: 20rem;
  height: 20rem;
}
@media only screen and (max-width: 56.25em) {
  .section-adv__item {
    width: 25rem;
    height: 25rem;
  }
}
@media only screen and (min-width: 75em) {
  .section-adv__item {
    width: 25rem;
    height: 25rem;
  }
}
.section-adv__item--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(2);
}
.section-adv__item--header {
  padding-top: 4rem;
  font-size: 1.8rem;
}
.section-adv__item--header-bold {
  font-size: 2.6rem;
  font-weight: 600;
}
.section-about {
  background: var(--color-background);
  padding: 6rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-about {
    padding: 5rem 0;
  }
}
.section-about__background {
  background-color: var(--color-secondary-light);
  clip-path: polygon(0% 0%, 36.75% 16%, 76.75% 0%, 100% 23%, 100% 100%, 0% 100%);
  height: 15rem;
  width: 100%;
  margin: -2px 0;
}
@media only screen and (max-width: 37.5em) {
  .section-about__background {
    height: 10rem;
  }
}
.section-about__container {
  background-color: var(--color-secondary-light);
  padding: 0 4.8rem;
  color: var(--color-white);
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .section-about__container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-about__container {
    padding: 0 2.4rem;
  }
}
@media only screen and (max-width: 75em) {
  .section-about__item {
    justify-content: center;
  }
}
@media only screen and (max-width: 75em) {
  .section-about__item {
    padding: 1.5rem 0;
  }
}
.section-about__item img {
  border-radius: 0.5rem;
  max-width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .section-about__item img {
    display: none;
  }
}
@media only screen and (max-width: 75em) {
  .section-about__title {
    justify-content: center;
  }
}
.section-about__title--header {
  padding-bottom: 1.5rem;
}
.section-about__title--desc {
  padding-bottom: 1.5rem;
  text-align: center;
}
.section-about__button {
  padding-top: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .section-about-product {
    text-align: center;
  }
}
.section-about-product__container {
  background-color: var(--color-background-gray);
  border-radius: 0.5rem;
  padding: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .section-about-product__image {
    padding-bottom: 2rem;
    margin-top: 4rem;
  }
}
.section-about-product__image img {
  border-radius: 0.5rem;
  max-width: 100%;
  max-height: 50rem;
  object-fit: contain;
}
.section-about-product__image-huge {
  position: relative;
  overflow: hidden;
}
.section-about-product__image-huge img {
  max-height: 70rem;
}
.section-about-product__header {
  padding-bottom: 1.5rem;
  font-weight: 600;
}
.section-blog-home {
  max-width: 1240px;
  margin: 0 auto;
}
.section-blog-home__title {
  text-align: center;
}
.section-blog-home-posts {
  padding-top: 4rem;
}
.section-blog-home__post {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .section-news__container {
    flex-direction: column;
  }
}
.section-news__products {
  max-width: 900px;
}
@media only screen and (max-width: 75em) {
  .section-news__products {
    max-width: 500px;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-news__products {
    max-width: 100%;
    margin-top: 3rem;
  }
}
.section-news__product {
  transition: all 1s ease;
  max-width: 35rem;
}
.section-news__product:not(:last-child) {
  padding-right: 4.8rem;
}
.section-news__product--price {
  display: block;
  transition: transform 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 30px;
}
.section-news__product--price-wrapper {
  position: relative;
  overflow: hidden;
  height: 30px;
}
.section-news__product--button {
  display: flex;
  align-items: center;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  text-align: left;
  transition: transform 0.3s ease-in-out;
}
.section-news__product--button a {
  display: flex;
}
@media only screen and (min-width: 75em) {
  .section-news__product:hover .section-news__product--price {
    transform: translateY(-30px);
  }
  .section-news__product:hover .section-news__product--button {
    transform: translateY(-30px);
  }
}
.section-news__product--image {
  display: flex;
  justify-content: center;
  height: 25rem;
  transition: all 0.5s ease;
}
.section-news__product--image img {
  height: 100%;
  width: 25rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media only screen and (min-width: 75em) {
  .section-news__product:hover .section-news__product--image {
    filter: brightness(0.8);
  }
}
.section-news__product--title {
  padding: 1rem 0;
}
.section-news__product--price {
  font-size: 1.8rem;
  color: var(--color-primary);
  display: flex;
}
.section-categories {
  background-color: var(--color-background-gray);
  margin: 6rem 0;
  padding: 6rem 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .section-categories {
    padding: 5rem 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-categories {
    margin: 5rem 0;
  }
}
.section-categories__container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 6rem auto 0;
}
@media only screen and (max-width: 37.5em) {
  .section-categories__container {
    flex-direction: column;
  }
}
.section-categories__box {
  justify-content: center;
  position: absolute;
  bottom: 0;
  padding-bottom: 2.4rem;
  width: 100%;
}
.section-categories__item {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.section-categories__item:not(:last-child) {
  margin-right: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .section-categories__item:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-categories__item {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }
}
.section-categories__link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 2.5rem;
  text-align: center;
  max-width: 40rem;
  height: 100%;
}
@media only screen and (min-width: 75em) {
  .section-categories__link:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
  }
}
.section-categories__link--image {
  position: relative;
  display: flex;
  height: 30rem;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .section-categories__link--image {
    height: 20rem;
  }
}
.section-categories__link img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform 1s ease, filter 1s ease;
  transform: scale(1);
  border-radius: 0.5rem;
}
.section-categories__header {
  color: var(--color-white);
  padding: 2rem 0;
  font-weight: 600;
}
.section-contact {
  overflow: hidden;
  margin: 0 auto;
  max-width: 1240px;
}
@media only screen and (max-width: 37.5em) {
  .section-contact {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 112.5em) {
  .section-contact {
    max-width: 1800px;
  }
}
.section-contact__container {
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .section-contact__container {
    margin: 0 auto;
  }
}
.section-contact__box {
  padding: 4.8rem;
}
@media only screen and (max-width: 75em) {
  .section-contact__box {
    text-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-contact__box {
    padding: 2.4rem;
    align-items: center;
  }
}
.section-contact__box-image {
  height: 100vh;
}
@media only screen and (max-width: 75em) {
  .section-contact__box-image {
    height: 70vh;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-contact__box-image {
    height: 50vh;
  }
}
@media only screen and (min-width: 112.5em) {
  .section-contact__box-image {
    height: 70vh;
  }
}
.section-contact__icon {
  position: absolute;
  top: -10rem;
  right: 0;
  height: 25rem;
  opacity: 0.1;
}
@media only screen and (max-width: 75em) {
  .section-contact__icon {
    display: none;
  }
}
.section-contact__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.section-contact__item {
  width: 50%;
}
@media only screen and (max-width: 75em) {
  .section-contact__item {
    width: 100%;
  }
}
.section-create-account {
  margin: 6rem 0;
  background-color: var(--color-background-gray);
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .section-create-account {
    margin: 5rem 0;
  }
}
.section-create-account__container {
  padding: 0 4.8rem;
  min-height: 60rem;
  color: var(--color-tertiary);
}
@media only screen and (max-width: 75em) {
  .section-create-account__container {
    padding: 6rem 2.4rem;
    text-align: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-create-account__container {
    min-height: 25rem;
  }
}
.section-create-account__header {
  padding-bottom: 2rem;
}
.section-create-account__image {
  height: 50rem;
}
@media only screen and (max-width: 37.5em) {
  .section-create-account__image {
    height: 30rem;
  }
}

/* Styl ogólny dla sekcji aktualności */
.news-section {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 8px;
  max-width: 1240px;
  margin: 0 auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
  padding: 0 4.8rem;
}
@media only screen and (max-width: 37.5em) {
  .news-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding: 0 2.4rem;
  }
}

.news-section__container {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}

.news-section__title {
  flex: 0 0 30%;
}
@media only screen and (max-width: 75em) {
  .news-section__title {
    flex: 0 0 100%;
    text-align: center;
  }
}

.news-section__post-wrapper {
  flex: 1;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .news-section__post-wrapper {
    max-width: 100%;
  }
}
@media only screen and (max-width: 75em) {
  .news-section__post-wrapper {
    margin-top: 4rem;
  }
}

.news-carousel {
  position: relative;
  overflow: hidden; /* Ukrywa zawartość wychodzącą poza kontener */
}

.news-carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  padding: 2rem;
  width: calc(100% + 40px);
}
@media only screen and (max-width: 37.5em) {
  .news-carousel-wrapper {
    padding: 2rem 0;
  }
}

.news-carousel-item {
  flex: 0 0 40%;
  box-sizing: border-box;
  background-color: #fff;
  border: none;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}
@media only screen and (max-width: 37.5em) {
  .news-carousel-item {
    flex: 0 0 80%;
  }
}
@media only screen and (min-width: 112.5em) {
  .news-carousel-item {
    height: 60rem;
  }
}

@media only screen and (min-width: 75em) {
  .news-carousel-item:hover {
    box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
  }
}
.entry-thumbnail {
  width: 100%;
  height: 20rem;
  overflow: hidden;
  position: relative;
}

.entry-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

@media only screen and (min-width: 75em) {
  .news-carousel-item:hover .entry-thumbnail img {
    transform: scale(1.1);
  }
}
.news-section__post-content {
  padding: 20px;
}

.news-section__post-categories .category-name {
  font-size: 12px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-transform: uppercase;
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
}

.news-section__post-categories {
  padding-bottom: 1.5rem;
}

.news-section__post h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.entry-excerpt {
  color: var(--color-tertiary-light);
}

/* Styl dla przycisków nawigacji */
.news-carousel-prev, .news-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 2.5rem;
  font-size: 3rem;
  line-height: 2.4;
  padding: 0 2.4rem;
  cursor: pointer;
  z-index: 10;
}

.news-carousel-prev {
  left: 10px;
}

.news-carousel-next {
  right: 10px;
}

.news-carousel-prev:hover, .news-carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dot,
.news-carousel-prev,
.news-carousel-next {
  touch-action: manipulation;
}

.section-title {
  margin-bottom: 2rem;
  font-weight: 500;
}

.shop-advantages {
  background: #f9f9f9;
  padding: 80px 20px;
}

.shop-advantages .container {
  max-width: 1240px;
  margin: auto;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.advantage-item {
  background: #fff;
  padding: 40px 25px;
  border-radius: 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.advantage-item i {
  font-size: 4.8rem;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
}

.advantage-item h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #111;
  font-weight: 600;
}

.advantage-item p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
}

.latest-products-section {
  padding: 6rem 4.8rem;
  max-width: 1240px;
  margin: auto;
}
@media only screen and (max-width: 37.5em) {
  .latest-products-section {
    padding: 5rem 2.4rem;
  }
}
.latest-products-section__title {
  text-align: center;
  margin-bottom: 4rem;
}

.latest-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
@media only screen and (max-width: 37.5em) {
  .latest-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
}

.product-card {
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  padding: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.add-to-cart-hover {
  position: absolute;
  top: 10px;
  right: -100px;
  transition: right 0.3s ease;
  padding: 12px;
  border-radius: 50%;
  z-index: 10;
}
@media only screen and (max-width: 75em) {
  .add-to-cart-hover {
    right: 0px;
    top: 0px;
  }
}

.new_add_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background-color: var(--color-white);
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}

.product-card:hover .add-to-cart-hover {
  right: 10px;
}

.product-title {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}

.product-price {
  font-size: 1.4rem;
  margin-top: 5px;
}

.shop-categories-modern {
  padding: 6rem 4.8rem;
}
@media only screen and (max-width: 37.5em) {
  .shop-categories-modern {
    padding: 5rem 2.4rem;
  }
}

.shop-categories-modern-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 4rem;
}

.shop-categories-modern .container {
  max-width: 1240px;
  margin: auto;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #222;
}

.modern-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  place-items: center;
  gap: 40px;
}

.modern-category-card-overlayed {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  height: 300px;
  width: 100%;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-category-card-overlayed:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.modern-category-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.modern-category-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

.overlay-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.overlay-content h3 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}

.overlay-content .modern-arrow i {
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.modern-category-card-overlayed:hover .modern-arrow i {
  transform: translateX(5px);
}

.contact-cta-section {
  padding: 6rem 4.8rem;
  margin: 12rem 0;
}
@media only screen and (max-width: 37.5em) {
  .contact-cta-section {
    padding: 5rem 2.4rem;
    margin: 8rem 0;
  }
}

.contact-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}
@media only screen and (max-width: 37.5em) {
  .contact-cta-wrapper {
    text-align: center;
  }
}

.contact-person {
  flex: 1 1 300px;
  text-align: center;
}

.contact-person img {
  height: 250px;
  width: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}

.contact-content {
  flex: 2 1 400px;
}

.contact-content h2 {
  font-size: 2.6rem;
  color: #222;
  margin-bottom: 16px;
}

.contact-content p {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 30px;
}

.section-blog {
  padding: 4.8rem;
  background-color: var(--color-background);
}
.section-blog a, .section-blog a:link, .section-blog a:visited {
  text-decoration: none;
  color: var(--color-tertiary);
}
@media only screen and (max-width: 56.25em) {
  .section-blog {
    padding: 2.4rem;
  }
}
.section-blog__container {
  margin: 0 auto;
  padding-top: 6rem;
}
@media only screen and (max-width: 75em) {
  .section-blog__container {
    width: 100%;
    padding-top: 1.5rem;
  }
}
.section-blog__main--header {
  text-align: center;
  padding-bottom: 6rem;
}
.section-blog__header {
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__header {
    padding-bottom: 1rem;
  }
}
.section-blog__subheader {
  padding-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__subheader {
    padding-bottom: 2rem;
  }
}
.section-blog__posts {
  padding-top: 1.5rem;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__posts {
    padding-top: 1rem;
  }
}
.section-blog__latest {
  max-width: 1440px;
  margin: 0 auto;
}
.section-blog__latestpost {
  width: 24%;
  margin-bottom: 4rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}
.section-blog__latestpost:hover {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
}
@media only screen and (max-width: 56.25em) {
  .section-blog__latestpost {
    width: 49%;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-blog__latestpost {
    width: 100%;
  }
}
@media only screen and (min-width: 112.5em) {
  .section-blog__latestpost {
    height: 60rem;
  }
}
.section-blog__latestpost:hover .section-blog__post--image {
  transform: scale(1.1);
}
.section-blog__post {
  margin-bottom: 4rem;
}
.section-blog__post--header {
  padding-bottom: 2rem;
}
.section-blog__post--categories {
  margin: 2rem 0;
}
.section-blog__post--category {
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  margin-right: 1.2rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 1.5rem;
}
.section-blog__post--avatar {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.section-blog__post--avatar img {
  margin-right: 1.2rem;
  border-radius: 50%;
}
.section-blog__post--image {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease-in-out;
}
.section-blog__post--data {
  position: relative;
}
.section-blog__post--content {
  padding: 2rem;
}
.section-blog__pagination {
  font-size: 1.8rem;
}
.section-blog__pagination .page-numbers {
  padding: 1rem;
}
.section-blog__pagination .current {
  color: var(--color-primary);
}

.section-blog__hero-post {
  padding-bottom: 6rem;
}
.section-blog__hero-post a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.section-blog__hero-post--image img {
  border-radius: 2.5rem;
  height: 48rem;
  width: 100%;
  object-fit: cover;
}
.section-blog__hero-post--excerpt {
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
}
.section-blog__hero-post--author {
  padding-top: 2rem;
}
.section-blog__hero-post--avatar img {
  border-radius: 50%;
  margin-right: 1rem;
}

.section-blog__author-info {
  padding: 1.5rem 0;
}
.section-blog__author-avatar {
  margin-right: 1.2rem;
  border-radius: 50%;
}
.section-blog__author-image img {
  border-radius: 2.5rem;
  height: 50rem;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 37.5em) {
  .section-blog__author-image img {
    height: 20rem;
  }
}
.section-blog__post-excerpt {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.section-blog__content {
  padding: 6rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__content {
    width: 100%;
    padding: 1.5rem;
  }
}
.section-blog__content--latest {
  width: 35%;
}
.section-blog__content--box {
  width: 65%;
  padding-right: 4.8rem;
  border-right: 1px solid var(--color-light-gray);
}
@media only screen and (max-width: 56.25em) {
  .section-blog__content--box {
    padding-right: 0;
    width: 100%;
    border-right: none;
  }
}
.section-blog__product {
  width: 48%;
  padding: 4rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__product {
    width: 23%;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-blog__product {
    width: 48%;
  }
}
.section-blog__product img {
  height: 25rem;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__product img {
    height: 15rem;
  }
}
.section-blog__product .product-price {
  font-size: 1.8rem;
  padding: 1.5rem 0;
}
.section-blog__related-products {
  width: 35%;
  padding-left: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__related-products {
    padding-top: 6rem;
    width: 100%;
    padding-left: 0;
  }
}
.section-blog__related-products h3 {
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__related-products h3 {
    text-align: left;
    font-size: 2.4rem;
  }
}

.wp-block-image {
  padding: 4.8rem 0;
}
@media only screen and (max-width: 56.25em) {
  .wp-block-image {
    padding: 2.4rem 0;
  }
}

.section-blog__recent--image {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 56.25em) {
  .section-blog__recent--image {
    height: 20rem;
  }
}

.blog-add-to-cart-button .add_to_cart_button {
  background-color: var(--color-very-light-gray) !important;
  color: var(--color-tertiary) !important;
  font-weight: 600;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}
.blog-add-to-cart-button .add_to_cart_button:hover {
  background-color: var(--color-light-gray) !important;
  color: var(--color-tertiary) !important;
}
.blog-add-to-cart-button .add_to_cart_button:active {
  background-color: var(--color-light-gray) !important;
  color: var(--color-tertiary) !important;
}

.page-main {
  padding: 4.8rem;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .page-main {
    padding: 4.8rem 2.4rem;
  }
}
.page-main-occlusense__container {
  padding: 6rem 0;
}
@media only screen and (max-width: 37.5em) {
  .page-main-occlusense__container {
    padding: 4rem 0;
  }
}
.page-main-occlusense__images-box {
  padding: 6rem 0;
}
@media only screen and (max-width: 37.5em) {
  .page-main-occlusense__item {
    padding-bottom: 4rem;
  }
}
.page-main-occlusense__image {
  height: 20rem;
  max-width: 100%;
}
.page-main-occlusense__image img {
  height: 100%;
}
.page-main-occlusense__adv {
  padding: 4rem 0;
}
.page-main-occlusense__adv--image {
  height: 100%;
  max-height: 50rem;
  width: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 37.5em) {
  .page-main-occlusense__adv--image {
    padding-bottom: 4rem;
  }
}
.page-main-occlusense__adv--image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.page-main-contact {
  margin-top: -4.8rem;
  overflow: hidden;
  /*
          &__box {
              padding-bottom: $section-top-bottom-padding;

              @include respond(phone) {
                  padding-bottom: $section-top-bottom-padding-mobile;
              }

          }
  */
}
@media only screen and (max-width: 37.5em) {
  .page-main-contact {
    text-align: center;
    margin-top: 0;
  }
}
@media only screen and (max-width: 75em) {
  .page-main-contact__container {
    padding-bottom: 6rem;
    flex-direction: column;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-main-contact__container {
    margin: 0 auto;
  }
}
.page-main-contact__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 80vh;
}
@media only screen and (max-width: 75em) {
  .page-main-contact__image {
    height: 70vh;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-main-contact__image {
    height: 50vh;
  }
}
@media only screen and (min-width: 112.5em) {
  .page-main-contact__image {
    height: 70vh;
  }
}
.page-main-contact__form {
  margin-top: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .page-main-contact__form {
    margin-top: 5rem;
  }
}
.page-main-contact__form--container {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  border-radius: 2.5rem;
  padding: 4.8rem;
}
@media only screen and (max-width: 37.5em) {
  .page-main-contact__form--container {
    padding: 2.4rem;
    margin-bottom: 6rem;
  }
}
.page-main-course__container {
  width: 30%;
  max-width: 35rem;
}
@media only screen and (max-width: 75em) {
  .page-main-course__container {
    width: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-main-course__container {
    width: 100%;
  }
}
.page-main-course__container--image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 25rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
.page-main-course__container--title {
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-main-course__container--box {
  margin-top: -3px;
  padding: 2.4rem;
  border: 1px solid var(--color-light-gray);
  border-top: none;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.section-entry {
  margin: 6rem auto;
}
@media only screen and (max-width: 56.25em) {
  .section-entry {
    margin: 5rem auto;
  }
}
.section-entry__border {
  border-top: 2px solid var(--color-secondary);
  width: 100%;
}
.section-entry-about__container {
  padding-bottom: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .section-entry-about__container {
    padding-bottom: 6rem;
  }
}
.section-entry-about__header {
  max-width: 43rem;
}
@media only screen and (max-width: 37.5em) {
  .section-entry-about__header {
    padding-bottom: 4rem;
    text-align: center;
  }
}
.section-entry-about__paragraph {
  padding-bottom: 1.5rem;
}
.section-entry-about__image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-entry-about__image img {
  position: absolute;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-entry-about__image-left {
  height: 45rem;
  flex: 0 0 calc(42% - 1.2rem);
}
@media only screen and (max-width: 37.5em) {
  .section-entry-about__image-left {
    flex: 0 0 100%;
    height: 43rem;
    margin-bottom: 1rem;
  }
}
.section-entry-about__image-center {
  height: 36rem;
  flex: 0 0 calc(33% - 1.2rem);
}
@media only screen and (max-width: 37.5em) {
  .section-entry-about__image-center {
    flex: 0 0 calc(60% - 0.6rem);
    height: 16rem;
  }
}
.section-entry-about__image-right {
  height: 36rem;
  flex: 0 0 calc(25% - 1.2rem);
}
@media only screen and (max-width: 37.5em) {
  .section-entry-about__image-right {
    flex: 0 0 calc(40% - 0.6rem);
    height: 16rem;
  }
}

.page-paragraph {
  padding: 2.4rem 4.8rem;
}
@media only screen and (max-width: 37.5em) {
  .page-paragraph {
    padding: 2.4rem;
  }
}

.content-area {
  padding: 4.8rem;
  max-width: 1260px;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .content-area {
    padding: 2.4rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .content-area {
    max-width: 1440px;
  }
}

.page-title {
  letter-spacing: 0.3rem;
}
@media only screen and (max-width: 56.25em) {
  .page-title {
    padding-bottom: 2rem;
  }
}

.term-description {
  display: none;
}

.woocommerce #review_form #respond textarea {
  font-family: "Poppins", sans-serif;
  padding: 1rem;
}

.wc-block-components-totals-item__value {
  color: var(--color-primary);
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__wrap > *, .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__wrap > *, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector {
  margin-bottom: 1rem !important;
}

.related {
  padding-top: 6rem;
  clear: both;
}
@media only screen and (max-width: 56.25em) {
  .related {
    padding-top: 2rem;
  }
}
.related h2 {
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 75em) {
  .related h2 {
    font-size: 3.4rem;
    line-height: 4.94rem;
  }
}

.woocommerce-message {
  border-color: var(--color-success);
}
.woocommerce-message::before {
  color: var(--color-success);
}

.wc-block-components-validation-error {
  color: var(--color-error) !important;
}

.onsale {
  border-radius: 5.5rem !important;
  background-color: var(--color-secondary-light) !important;
  padding: 0.5rem 1rem !important;
  top: 1.5rem !important;
  left: auto !important;
  right: 1.5rem !important;
}

.woocommerce table.shop_table {
  border: none;
}

.woocommerce table.shop_table td {
  border: none;
}

table.wishlist_table thead th {
  border: none;
}

.woocommerce table.shop_attributes {
  border: none;
}

.woocommerce table.shop_attributes td {
  border: none;
}

.woocommerce table.shop_attributes th {
  border: none;
}

.star-rating {
  color: var(--color-tertiary);
}

.stars a {
  color: var(--color-tertiary);
}

.comment_container img {
  border-radius: 50%;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1.5rem;
}

.woocommerce-Reviews-title {
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

.wcapf-chosen-container.chosen-container {
  color: var(--color-tertiary--btn);
}

.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
  float: none;
}

.woo-variation-gallery-thumbnail-slider {
  padding-top: 4rem;
}

@media only screen and (max-width: 37.5em) {
  .woo-variation-product-gallery {
    width: 100% !important;
  }
}

.woocommerce-shop-loop-container {
  width: 100%;
}

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
  display: none;
}

.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woocommerce ul.products li.product {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (max-width: 37.5em) {
  .woocommerce ul.products li.product {
    flex: 0 1 48%;
  }
}

.woocommerce ul.products li.product img {
  object-fit: contain;
  width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
  flex-grow: 1;
  text-align: left;
}

.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
  margin-bottom: 6rem;
  margin-top: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.shop-categories__item {
  flex: 1 1 30%;
  box-sizing: border-box;
}
.shop-categories__item:not(:last-child) {
  margin-right: 2.4rem;
}
.shop-categories__link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 0.5rem;
  text-align: center;
  max-width: 40rem;
  height: 100%;
  height: 15rem;
  width: 30rem;
}
@media only screen and (min-width: 75em) {
  .shop-categories__link:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
  }
}
.shop-categories__link--image {
  position: relative;
  display: flex;
  max-height: 40rem;
  overflow: hidden;
  object-fit: cover;
  border-radius: 0.5rem;
}
.shop-categories__link img {
  height: 100%;
  width: 100%;
  filter: brightness(0.8);
  transition: transform 1s ease, filter 1s ease;
  transform: scale(1);
}
.shop-categories__header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  padding: 2rem 0;
  font-weight: 600;
  z-index: 1000;
}

.woocommerce-ordering {
  display: flex;
  justify-content: flex-end;
  height: 5.6rem;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .woocommerce-ordering .orderby {
    width: 100%;
  }
}

.woocommerce-shop-loop-container ul {
  list-style-type: none;
  padding: 0;
}
.woocommerce-shop-loop-container ul li a {
  position: relative;
  height: 100%;
  text-decoration: none;
  color: var(--color-tertiary);
}

.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  padding: 1.5rem !important;
}

.wp-block-heading {
  padding-bottom: 2rem;
}

.wc-block-components-drawer__screen-overlay {
  z-index: 99999 !important;
}

.wc-block-mini-cart {
  display: flex !important;
}

.wc-block-mini-cart__button {
  cursor: pointer;
  padding: 0 !important;
}

.wc-block-mini-cart__footer-actions {
  flex-direction: column;
}

.wc-block-mini-cart__drawer {
  font-size: 1.6rem !important;
  background: var(--color-background) !important;
}

:where(.wp-block-woocommerce-mini-cart-contents) {
  background: var(--color-background) !important;
}

.wc-block-components-product-name {
  color: var(--color-tertiary);
}

.wc-block-components-button {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
  border-radius: 5.5rem;
}
.wc-block-components-button:hover {
  background-color: var(--color-secondary-light) !important;
}
.wc-block-components-button:active {
  background-color: var(--color-secondary-lighter) !important;
}

.wp-block-woocommerce-empty-mini-cart-contents-block .wc-block-mini-cart__empty-cart-wrapper p {
  padding-bottom: 1.5rem;
}

.wc-block-components-quantity-selector:after {
  border: 1px solid var(--color-light-gray) !important;
}

.wc-block-components-product-badge {
  border: none !important;
  background-color: var(--color-secondary-light) !important;
  color: var(--color-white) !important;
  padding: 0.5rem 1rem !important;
}

.wc-block-mini-cart__badge {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 1rem;
}

.wc-block-mini-cart__title {
  font-size: 2.6rem !important;
  font-weight: 600;
}
@media only screen and (max-width: 56.25em) {
  .wc-block-mini-cart__title {
    font-size: 1.8rem !important;
  }
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  border-radius: 2.5rem;
  padding: 4.8rem;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
  color: var(--color-tertiary) !important;
}

.woocommerce-breadcrumb {
  margin-top: 2.4rem !important;
  margin-bottom: 1.5rem !important;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-breadcrumb {
    margin-bottom: 1rem !important;
  }
}

.dgwt-wcas-ico-magnifier-handler {
  fill: var(--color-tertiary);
  height: 2rem;
}

.dgwt-wcas-search-icon path {
  fill: var(--color-tertiary) !important;
}
.dgwt-wcas-search-icon path:hover {
  fill: var(--color-icon-hover) !important;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
  border-radius: 5.5rem;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input, .dgwt-wcas-open .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  border-radius: 5.5rem;
}

.dgwt-wcas-pd-addtc-form {
  flex-direction: column;
}
.dgwt-wcas-pd-addtc-form .quantity {
  padding-bottom: 1.5rem;
}

.dgwt-wcas-pd-price {
  color: var(--color-primary);
}

.dgwt-wcas-details-product-title, .dgwt-wcas-details-desc {
  color: #343434 !important;
}

.add_to_cart_button, .single_add_to_cart_button, .wc-forward, .button, .submit, .wc-block-components-checkout-place-order-button, .wc-block-cart__submit-button {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
  padding: 1rem 4rem !important;
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  max-height: 4.6rem;
  border-radius: 5.5rem !important;
}
@media only screen and (max-width: 37.5em) {
  .add_to_cart_button, .single_add_to_cart_button, .wc-forward, .button, .submit, .wc-block-components-checkout-place-order-button, .wc-block-cart__submit-button {
    width: 100%;
    padding: 1rem 1.4rem !important;
    min-height: 4.12rem;
  }
}
.add_to_cart_button:hover, .single_add_to_cart_button:hover, .wc-forward:hover, .button:hover, .submit:hover, .wc-block-components-checkout-place-order-button:hover, .wc-block-cart__submit-button:hover {
  background-color: var(--color-secondary-light) !important;
}
.add_to_cart_button:active, .single_add_to_cart_button:active, .wc-forward:active, .button:active, .submit:active, .wc-block-components-checkout-place-order-button:active, .wc-block-cart__submit-button:active {
  background-color: var(--color-secondary-lighter) !important;
}

.add_to_cart_button {
  max-height: 4.8rem;
}
.add_to_cart_button:hover {
  background-color: var(--color-background) !important;
  color: var(--color-secondary-light) !important;
}
.add_to_cart_button:active {
  background-color: var(--color-background) !important;
}

.wc-block-components-checkout-place-order-button {
  max-width: 25rem;
}
@media only screen and (max-width: 37.5em) {
  .wc-block-components-checkout-place-order-button {
    max-width: 100%;
  }
}

.add_to_cart_inline {
  width: 100%;
}

.added_to_cart {
  display: none !important;
}

.wc-block-components-button {
  border: none;
}

.filter-button {
  padding: 1.6rem 1rem !important;
  justify-content: space-between;
  display: inline-flex;
}

.latest-products-section .add_to_cart_button {
  border-radius: 50% !important;
  height: 50px !important;
  width: 50px !important;
  background-color: var(--color-white) !important;
  color: var(--color-tertiary) !important;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
  padding: 0 !important;
}
.latest-products-section .add_to_cart_button:hover {
  background-color: var(--color-light-gray) !important;
}

.section-news__product--button .add_to_cart_button {
  background-color: var(--color-background) !important;
  color: var(--color-tertiary) !important;
  padding: 0 !important;
  text-align: left;
  display: inline-block !important;
  position: relative;
  overflow: hidden; /* Ukryj nadmiarowe elementy */
  border: none; /* Usuń obramowanie, jeśli nie jest potrzebne */
  transition: color 0.2s ease; /* Dodaj przejście koloru na hoverze */
  width: auto;
  margin-top: 0 !important;
}
.section-news__product--button .add_to_cart_button:hover {
  background-color: var(--color-background) !important;
  font-weight: 600;
}
.section-news__product--button .add_to_cart_button:active {
  background-color: var(--color-background) !important;
  font-weight: 500;
}
.section-news__product--button .add_to_cart_button:hover:before {
  width: 100%; /* Pełna szerokość po najechaniu */
}

.wc-block-mini-cart__footer-actions {
  flex-direction: row;
}
.wc-block-mini-cart__footer-actions .wp-element-button {
  width: 49%;
}
@media only screen and (max-width: 37.5em) {
  .wc-block-mini-cart__footer-actions .wp-element-button {
    width: 100%;
  }
}

.woocommerce ul.products[class*=columns-] li.product .add_to_cart_button {
  background-color: var(--color-very-light-gray) !important;
  padding: 1rem 4rem !important;
  color: var(--color-tertiary) !important;
  font-weight: 600;
  height: 4.8rem;
}
.woocommerce ul.products[class*=columns-] li.product .add_to_cart_button:hover {
  background-color: var(--color-light-gray) !important;
}
.woocommerce ul.products[class*=columns-] li.product .add_to_cart_button:active {
  background-color: var(--color-light-gray) !important;
}

.wp-block-button__link {
  border-radius: 0;
}

.single_add_to_wishlist {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.wc-block-components-button__text {
  font-size: 1.6rem;
}

#yith-wcwl-form {
  padding: 4.8rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  #yith-wcwl-form {
    padding: 2.4rem;
    margin-bottom: 5rem;
  }
}

.wishlist_table .product-stock-status span.wishlist-in-stock {
  color: var(--color-success-dark);
}

.wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist, .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart {
  float: left;
  margin-right: 10px;
}

.remove_from_wishlist {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  height: 56px;
  background-color: var(--color-background-gray);
}

.yith-wcwl-add-to-wishlist {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  padding: 20px;
}
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.yith-wcwl-add-button .add_to_wishlist svg.yith-wcwl-icon-svg, .yith-wcwl-add-button .add_to_wishlist img {
  margin-right: 0;
}

.wc-block-components-form .wc-block-components-text-input.has-error label, .wc-block-components-text-input.has-error label {
  color: var(--color-error) !important;
}

.wc-block-components-form .wc-block-components-text-input.has-error input, .wc-block-components-form .wc-block-components-text-input.has-error input:active, .wc-block-components-form .wc-block-components-text-input.has-error input:focus, .wc-block-components-form .wc-block-components-text-input.has-error input:hover, .wc-block-components-text-input.has-error input, .wc-block-components-text-input.has-error input:active, .wc-block-components-text-input.has-error input:focus, .wc-block-components-text-input.has-error input:hover {
  border-color: var(--color-error) !important;
}

.woocommerce form .form-row .required {
  color: var(--color-primary) !important;
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
  top: 1.1em;
}

.woocommerce-Address-title::before, .woocommerce-Address-title::after {
  display: none !important;
}
.woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
  margin: 1.5rem 0;
}
@media only screen and (max-width: 75em) {
  .woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
    margin: 2.4rem 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
    margin: 0;
    float: none !important;
    width: 100% !important;
  }
}
.woocommerce-MyAccount-navigation {
  border-right: 2px solid var(--color-secondary-light);
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-navigation {
    border-right: none;
    border-bottom: 2px solid var(--color-secondary-light);
    margin: 2.4rem 0 0 0;
  }
}
.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
}
.woocommerce-MyAccount-navigation-link {
  margin: 0 !important;
  padding: 1rem 1.5rem;
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-navigation-link {
    justify-content: center;
  }
}
.woocommerce-MyAccount-navigation-link--customer-logout {
  padding-top: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-navigation-link--customer-logout {
    padding: 1rem 1.5rem;
  }
}
.woocommerce-MyAccount-navigation-link.is-active {
  background-color: var(--color-secondary);
}
.woocommerce-MyAccount-navigation-link.is-active a {
  color: var(--color-white);
}
.woocommerce-MyAccount-navigation__dropdown {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 1rem 1.5rem;
}
.woocommerce-MyAccount-navigation__desktop {
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-navigation__desktop {
    display: none !important;
  }
}
.woocommerce-MyAccount-navigation__mobile {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-navigation__mobile {
    display: block !important;
  }
}
.woocommerce-MyAccount-navigation {
  flex: 1;
  padding-right: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-navigation {
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
}
.woocommerce-MyAccount-navigation__header {
  padding-bottom: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .woocommerce-MyAccount-navigation__header {
    padding-bottom: 4rem;
  }
}
.woocommerce-MyAccount-content {
  flex: 1;
  padding-left: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-content {
    padding-left: 0;
    padding: 1.5rem 0;
    margin: 0;
  }
}
.woocommerce-MyAccount-content fieldset {
  border: none;
}
.woocommerce-MyAccount-content h3 {
  padding-bottom: 2rem;
}
.woocommerce-MyAccount-content p {
  padding-bottom: 6rem;
}
.woocommerce-MyAccount-content .woocommerce-info {
  background: none;
  color: var(--color-tertiary);
  border: none;
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-MyAccount-content .woocommerce-info::before, .woocommerce-MyAccount-content .woocommerce-info::after {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-MyAccount-content .woocommerce-info {
    flex-direction: column;
  }
}
.woocommerce-Addresses {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 75em) {
  .woocommerce-Addresses {
    flex-direction: row;
  }
}
.woocommerce-Address {
  padding: 6rem;
  border: 1px solid var(--color-secondary-light);
}
@media only screen and (max-width: 75em) {
  .woocommerce-Address {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 2.4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-Address {
    padding: 6rem;
  }
}
@media only screen and (min-width: 75em) {
  .woocommerce-Address:not(:last-child) {
    margin-right: 2.4rem;
  }
}
.woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.woocommerce-Address-title a, .woocommerce-Address-title a:link, .woocommerce-Address-title a:visited {
  text-decoration: underline;
}
.woocommerce-Address-title h3 {
  padding-bottom: 0;
}

.woocommerce ul.products li.product a img {
  border-radius: 0.5rem;
}

.product div.summary .product_meta {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
}
.product div.summary .price {
  color: var(--color-primary);
  display: flex;
  font-size: 2.4rem !important;
  padding-bottom: 1.5rem;
}
.product div.summary .product_title {
  font-weight: 500;
  padding-bottom: 1.5rem;
  font-size: 3.4rem;
  line-height: 4.94rem;
}
@media only screen and (max-width: 37.5em) {
  .product div.summary .product_title {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}
.product div.summary .quantity {
  padding: 0;
}
.product div.summary .cart {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
  display: flex;
  align-items: center;
}
.product div.summary .posted_in {
  padding-top: 1.5rem;
}
.product div.summary .posted_in a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-tertiary);
  text-transform: uppercase;
  margin-right: 0.6rem;
}

.woocommerce-Price-amount {
  color: var(--color-tertiary);
  font-weight: 400;
}

.woocommerce div.product p.stock {
  color: var(--color-primary);
  font-weight: 500;
  margin-top: 1rem;
}

.woo-variation-gallery-thumbnail-position-bottom-bottom .woo-variation-gallery-container .woo-variation-gallery-thumbnail-slider:not(.slick-initialized) > div:not(:last-child) {
  margin-right: 15px !important;
}
.woo-variation-gallery-thumbnail-position-bottom-bottom .woo-variation-gallery-container .woo-variation-gallery-thumbnail-slider:not(.slick-initialized) > div img {
  border-radius: 0.5rem !important;
}

.slick-initialized .slick-slide {
  border-radius: 2.5rem;
}

del {
  order: 2;
  color: var(--color-tertiary);
}
del .woocommerce-Price-amount {
  color: var(--color-tertiary);
}

ins {
  color: var(--color-primary);
  padding-right: 2.4rem;
  text-decoration: none;
}

.woocommerce-LoopProduct-link img {
  margin: 0 !important;
  padding-bottom: 1.5rem;
}
.woocommerce-LoopProduct-link .price {
  color: var(--color-primary);
  display: flex !important;
  font-size: 1.8rem !important;
  margin-bottom: 0 !important;
}
.woocommerce-LoopProduct-link .price del {
  order: 2;
  color: var(--color-tertiary) !important;
}

.woocommerce-loop-product__title {
  font-size: 1.8rem !important;
  line-height: 2.4rem !important;
  padding: 1.5rem 0 !important;
  letter-spacing: 1px !important;
  font-weight: 600;
}

.oocommerce-products-header__title {
  font-weight: 500;
}

.product {
  /*
      .wc-tabs {
          display: flex;
          justify-content: center;

          &::before {
              border-bottom: none !important;
          }

          li {
              border: none !important;
              background-color: var(--color-background) !important;
              border-right: 1px solid var(--color-light-gray) !important;
              border-left: 1px solid var(--color-light-gray) !important;
              border-radius: 0 !important;

              &:hover {
                  background-color: var(--color-white-dark) !important;
              }

              &::before, &::after {
                  display: none;
              }

              &.active {
                  background: var(--color-primary) !important;
                  color: var(--color-white) !important;
              }
          }
      }
      */
}
.product img {
  transition: all 0.5s ease;
}
@media only screen and (min-width: 75em) {
  .product:hover img {
    filter: brightness(0.8);
  }
}
.product__dropdown {
  color: var(--color-tertiary);
  border-bottom: 1px solid var(--color-light-gray);
}
.product__dropdown--header {
  padding: 1.5rem 0;
}
.product .entry-summary {
  display: flex;
  flex-direction: column;
}
.product .entry-summary .variations {
  margin-bottom: 0 !important;
  padding-top: 1.5rem;
}
.product .entry-summary .custom-product-info-wrapper {
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
}
@media only screen and (max-width: 37.5em) {
  .product .entry-summary .custom-product-info-wrapper .custom-product-info {
    flex-direction: column;
  }
}
.product .entry-summary .custom-product-info-wrapper .custom-product-info__item:last-child {
  padding-right: 0;
}
@media only screen and (max-width: 37.5em) {
  .product .entry-summary .custom-product-info-wrapper .custom-product-info__item:not(:last-child) {
    padding-bottom: 1rem;
  }
}

/*
.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {

    @include respond(phone) {
        width: 100%;
    }

}
*/
.wcapf-before-products {
  display: flex;
}
@media only screen and (max-width: 37.5em) {
  .wcapf-before-products {
    flex-direction: column;
  }
}

.wcapf-form {
  padding: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .wcapf-form {
    padding: 2.4rem;
  }
}

.wcapf-active-filter-item {
  background-color: var(--color-light-gray) !important;
  border-radius: 1.5rem !important;
}

.full-screen-filter {
  border-radius: 0.5rem;
  background-color: var(--color-very-light-gray);
  margin-right: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .full-screen-filter {
    margin-right: 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .full-screen-filter {
    margin-right: 0;
    border-right: none;
    margin-bottom: 4rem;
  }
}

/*
// for mobile 
@include respond(phone) {
    .full-screen-filter {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-background);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: $z-first;
        overflow-y: auto;
        box-sizing: border-box;

        .close-button {
            position: absolute;
            top: 0;
            background: var(--color-background);
            border: none;
            padding: $button-padding;
            cursor: pointer;
            z-index: $z-first;
          }

          .filter-content {
            background: var(--color-background);
            width: 100%;
            max-width: 600px;
            box-sizing: border-box;
          }

        #filter-form {
            position: absolute;
            top: 4rem;
            padding: $padding-side-small;
        }

        .wcapf-form {
            padding-right: 0;
        }

    }    
}
*/
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  padding: 0 !important;
  border-radius: 50% !important;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
  border: none !important;
}

.wc-block-components-checkout-step--with-step-number .wc-block-components-checkout-step__container:after {
  border-left: none !important;
}

.wc-block-components-form .wc-block-components-checkout-step {
  padding: 0 !important;
}
.wc-block-components-form .wc-block-components-checkout-step:not(:last-child) {
  border-bottom: 1px solid var(--color-light-gray);
}

.wc-block-components-checkout-step__heading {
  margin: 2rem 0 0 0 !important;
}
.wc-block-components-checkout-step__heading .wc-block-components-checkout-step__title {
  line-height: 2.4rem !important;
  padding-bottom: 1.5rem !important;
}

.wc-block-components-checkout-step__content > * {
  margin-bottom: 2rem !important;
}

.wc-block-components-totals-coupon__form {
  align-items: center;
}

.wc-block-components-totals-coupon, .wc-block-components-totals-item, .wc-block-components-order-summary {
  padding: 0 !important;
}

.woocommerce-order {
  float: left;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-order {
    padding: 2.4rem 0;
  }
}
.woocommerce-order p {
  padding-bottom: 1.5rem;
}

.woocommerce table.shop_table th, .woocommerce table.shop_table td {
  padding: 1rem 0;
}

.woocommerce-column--billing-address, .woocommerce-column--shipping-address {
  padding: 2.4rem;
  border: 1px solid var(--color-light-gray);
}
.woocommerce-column--billing-address address, .woocommerce-column--shipping-address address {
  padding: 0 !important;
  border: none !important;
}
@media only screen and (max-width: 56.25em) {
  .woocommerce-column--billing-address, .woocommerce-column--shipping-address {
    margin-bottom: 1.5rem;
  }
}

.woocommerce ul.order_details {
  margin-bottom: 1.5rem;
}

.is-large .wp-block-woocommerce-checkout-order-summary-block {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 2.4rem;
  border: none !important;
  border-radius: 2.5rem !important;
}

.wc-block-components-sidebar {
  margin-top: 0 !important;
}

form.checkout_coupon,
form.login,
form.register {
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

form .form-row label {
  line-height: 2.4rem;
}

form .form-row {
  padding: 0;
  margin-bottom: 1rem;
}
form .form-row::before, form .form-row::after {
  content: none;
  display: flex;
}

#customer_login {
  display: flex;
  justify-content: center;
  padding-top: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  #customer_login {
    padding-top: 2.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  #customer_login {
    flex-direction: column;
  }
}

#customer_login > div {
  flex: 1;
  padding: 0 6rem;
}
@media only screen and (max-width: 37.5em) {
  #customer_login > div {
    padding: 0;
  }
  #customer_login > div:not(:first-child) {
    padding-top: 1.5rem;
  }
  #customer_login > div:last-child {
    padding-bottom: 0;
  }
}

#customer_login > div:not(:last-child) {
  border-right: 2px solid var(--color-light-gray);
}
@media only screen and (max-width: 37.5em) {
  #customer_login > div:not(:last-child) {
    border-right: 0;
    border-bottom: 2px solid var(--color-light-gray);
  }
}

.woocommerce-form-login__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.woocommerce-form-login__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.woocommerce-form-login__buttons::before {
  display: none !important;
}
.woocommerce-button {
  margin: 0 !important;
  width: 100%;
}
.woocommerce-LostPassword {
  text-decoration: underline;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: none;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  padding: 0;
}

.woocommerce-ResetPassword {
  padding-top: 4.8rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .woocommerce-ResetPassword {
    padding-top: 2.4rem;
  }
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  padding-bottom: 0 !important;
}

.woocommerce-ResetPassword > p.woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first {
  width: 100%;
}

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