/*  TO ADD TO SCSS */
.cookie-notice-container {
  position: fixed;
    background-color: rgba(20, 20, 25, 1);
    max-width: 500px;
    width: 100%;
    left: 20px;
    bottom: 20px;
    color: #fff;
    padding: 40px 20px 20px 20px;
    border-radius: 5px;
}
#cn-close-notice {
  top:22px !important
}
#cn-accept-cookie {
  font-weight: 700 !important;
    background-color: #fe8041 !important;
    margin-top: 15px !important;
    padding: 10px 30px 11px 30px !important;
}
@media only screen and (max-width: 767px) {
  .cookie-notice-container {
 left:0;
 bottom: 0;
 border-radius: 0;
  }
}

.cn-revoke-cookie {
	z-index: 99;
    display: block;
    position: fixed;
    background-color: #fe8041;
    color: white;
    left: 20px;
    bottom: 20px;
font-size:12px;
    padding: 5px 10px;
    border-radius: 15px;
}
.cn-revoke-cookie:hover {
	color:white !important;
	transform:scale(1.05);
}
#cn-refuse-cookie {
	background-color: transparent !important;
    border: 1px solid #fe8041;
    padding: 10px 20px;
}


/* Manrope Regular */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-v20-latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Manrope Bold */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-v20-latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Sora Regular */
@font-face {
  font-family: "Sora";
  src: url("../fonts/sora/sora-v17-latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Sora Bold */
@font-face {
  font-family: "Sora";
  src: url("../fonts/sora/sora-v17-latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #FFFFFF;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1436px) {
  .site-header__inner {
    padding-inline: 64px;
  }
}
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo img {
  display: block;
  height: 24px;
  width: auto;
}
.site-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    align-items: center;
    margin: 0 24px 0 auto;
  }
}
.site-header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu li a {
  font-family: "Manrope", sans-serif;
  line-height: 1.5em;
  text-transform: uppercase;
  letter-spacing: 0em;
  word-spacing: 0px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.75rem;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__menu li a:hover, .site-header__menu li a:focus-visible {
  color: #fe8041;
}
.site-header__menu li.current-menu-item > a {
  font-weight: 700;
}
.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .site-header__hamburger {
    display: none;
  }
}
.site-header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__cart-nudge {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__cart-nudge {
    display: block;
  }
}
.site-header__cart-nudge {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  white-space: nowrap;
  padding: 6px 16px;
  border-radius: 100px;
  background-color: #fe8041;
  color: #FFFFFF;
  font-family: "Sora", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}
.site-header__cart-nudge::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 14px;
  width: 10px;
  height: 10px;
  background-color: #fe8041;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.site-header__cart-nudge--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #333333;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.site-header__cart-btn:hover {
  color: #fe8041;
}
@media (min-width: 1024px) {
  .site-header__cart-btn {
    padding-top: 5px;
  }
}
.site-header__cart-icon {
  display: block;
  flex-shrink: 0;
}
.site-header__cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 100px;
  background-color: #fe8041;
  color: #FFFFFF;
  font-family: "Sora", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}
.site-header__cart-badge[data-count="0"] {
  transform: scale(0);
  opacity: 0;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: min(320px, 85vw);
  height: 100%;
  background-color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu--open {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(24, 30, 37, 0.1607843137);
  flex-shrink: 0;
}
.mobile-menu__logo {
  display: flex;
  align-items: center;
}
.mobile-menu__logo img {
  display: block;
  height: 36px;
  width: auto;
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  color: #333333;
  transition: color 0.2s ease;
}
.mobile-menu__close:hover, .mobile-menu__close:focus-visible {
  color: #868686;
}
.mobile-menu__nav {
  padding: 24px;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__list li a {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(24, 30, 37, 0.1607843137);
  transition: color 0.2s ease;
}
.mobile-menu__list li a:hover, .mobile-menu__list li a:focus-visible {
  color: #868686;
}
.mobile-menu__list li.current-menu-item > a {
  font-weight: 700;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background-color: rgba(51, 51, 51, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu__overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  height: 100%;
  background-color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 32px rgba(51, 51, 51, 0.12);
}
.cart-panel--open {
  transform: translateX(0);
}
.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(24, 30, 37, 0.1607843137);
  flex-shrink: 0;
}
.cart-panel__title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #333333;
}
.cart-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: 1px solid rgba(24, 30, 37, 0.1607843137);
  border-radius: 8px;
  cursor: pointer;
  color: #333333;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cart-panel__close:hover {
  border-color: #333333;
  color: #fe8041;
}
.cart-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}
.cart-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(24, 30, 37, 0.1607843137);
}
.cart-panel__item:last-child {
  border-bottom: none;
}
.cart-panel__item-name {
  flex: 1;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  min-width: 0;
}
.cart-panel__item-price {
  flex-shrink: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  white-space: nowrap;
}
.cart-panel__item-remove {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #868686;
  transition: color 0.2s ease;
  margin-top: 1px;
}
.cart-panel__item-remove:hover {
  color: #fe8041;
}
.cart-panel__empty {
  padding: 64px 24px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  color: rgba(24, 30, 37, 0.6392156863);
  display: none;
}
.cart-panel__empty--visible {
  display: block;
}
.cart-panel__footer {
  flex-shrink: 0;
  padding: 35.5px 24px;
  border-top: 1px solid rgba(24, 30, 37, 0.1607843137);
  background-color: #F8F7F5;
}
.cart-panel__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cart-panel__total-label {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(24, 30, 37, 0.6392156863);
}
.cart-panel__total-price {
  font-family: "Sora", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fe8041;
  white-space: nowrap;
}
.cart-panel__overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background-color: rgba(51, 51, 51, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-panel__overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  width: 100%;
  margin-inline: auto;
  margin-top: 32px;
  margin-bottom: 32px;
  overflow: hidden;
  padding-inline: 24px;
}
@media (min-width: 1436px) {
  .hero {
    padding-inline: 64px;
  }
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-top: 64px;
  padding-bottom: 64px;
  border-radius: 16px;
  padding-inline: 24px;
  background-color: #333333;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero__inner {
    align-items: flex-start;
    text-align: left;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.hero__title {
  color: #FFFFFF;
  max-width: 640px;
}
.hero__text {
  color: #FFFFFF;
  max-width: 560px;
}
.hero__text p {
  color: #FFFFFF;
  margin: 0;
}

.configurator {
  padding-inline: 24px;
  max-width: 1388px;
  margin-inline: auto;
  padding-bottom: 134px;
}
.configurator__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .configurator__layout {
    flex-direction: row;
    gap: 64px;
  }
}
.configurator__sidebar {
  width: 100%;
}
@media (min-width: 1024px) {
  .configurator__sidebar {
    width: 22%;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: flex-start;
  }
}
.configurator__sidebar-nav {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  .configurator__sidebar-nav {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
  }
}
.configurator__sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  border-radius: 12px;
  border: none;
  background: #F8F7F5;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 200px;
}
@media (min-width: 1024px) {
  .configurator__sidebar-item {
    min-width: 0;
  }
}
.configurator__sidebar-item:hover {
  background-color: rgb(241.7, 239.8, 236);
}
.configurator__sidebar-item--active {
  background-color: rgb(239.6, 237.4, 233);
  box-shadow: inset 0 0 0 2px #fe8041;
}
.configurator__sidebar-counter {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(24, 30, 37, 0.6392156863);
  line-height: 1.4;
}
.configurator__sidebar-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #333333;
  line-height: 1.4;
}
.configurator__sidebar-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}
.configurator__sidebar-desc {
  font-size: 0.8125rem;
  color: rgba(24, 30, 37, 0.6392156863);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.configurator__sidebar-desc p {
  margin: 0;
  font-size: 0.8125rem;
}
.configurator__content {
  width: 100%;
  min-width: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .configurator__content {
    width: 78%;
  }
}
.configurator__panel {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.configurator__panel--active {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
}
.configurator__panel--fading-out {
  opacity: 0;
  visibility: visible;
  height: auto;
  overflow: visible;
}
.configurator__panel-desc {
  margin-bottom: 32px;
  color: rgba(24, 30, 37, 0.6392156863);
}
.configurator__panel-desc p {
  margin: 0 0 16px;
  font-size: 1rem !important;
}
.configurator__panel-desc h1:first-of-type, .configurator__panel-desc h2:first-of-type, .configurator__panel-desc h3:first-of-type {
  margin-top: 0 !important;
}
.configurator__panel-desc h1 {
  font-size: 2.5rem;
  line-height: 52px !important;
  margin: 32px 0 16px;
}
.configurator__panel-desc h2 {
  font-size: 2rem;
  margin: 32px 0 16px;
}
.configurator__panel-desc h3 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}
.configurator__panel-desc h4 {
  font-size: 1.25rem;
  margin: 32px 0 16px;
}
.configurator__total {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 16px 24px;
  background-color: #515478;
  border-radius: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .configurator__total {
    align-items: center;
    padding: 16px 32px;
  }
}
.configurator__total-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.configurator__total-label {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .configurator__total-label {
    font-size: 1.125rem;
  }
}
.configurator__total-note {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 1.4;
  width: 125%;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
}
@media (min-width: 502px) {
  .configurator__total-note {
    font-size: 0.8rem;
    width: 100%;
  }
}
.configurator__total-price {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fe8041;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .configurator__total-price {
    font-size: 1.5rem;
  }
}
.configurator__form {
  margin-top: 64px;
  padding: 32px;
  border-radius: 12px;
  background-color: #F8F7F5;
}
@media (min-width: 768px) {
  .configurator__form {
    padding: 64px;
  }
}
.configurator__form-heading {
  margin-bottom: 32px;
}
.configurator__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .configurator__form .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.configurator__form .wpcf7-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .configurator__form .wpcf7-form .form-row--full {
    grid-column: 1/-1;
  }
}
.configurator__form .wpcf7-form .form-label {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #333333;
}
.configurator__form .wpcf7-form .wpcf7-submit {
  width: 100%;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .configurator__form .wpcf7-form .wpcf7-submit {
    grid-column: 1/-1;
    width: auto;
    justify-self: flex-start;
  }
}
@media (min-width: 768px) {
  .configurator__form .wpcf7-form .wpcf7-response-output {
    grid-column: 1/-1;
  }
}
.configurator__form-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.configurator__form-note p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(24, 30, 37, 0.6392156863);
  margin-top: 0 !important;
  line-height: 1.2 !important;
}
.configurator .czym-faq {
  margin-top: 64px;
  padding: 0;
  background: none;
}

.accordion {
  border: 1px solid rgba(24, 30, 37, 0.1607843137);
  border-radius: 12px;
  overflow: hidden;
}
.accordion + .accordion {
  margin-top: 16px;
}
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}
.accordion__header:hover {
  background-color: #F8F7F5;
}
.accordion__header[aria-expanded=true] {
  border-bottom: 1px solid rgba(24, 30, 37, 0.1607843137);
}
.accordion__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #333333;
}
.accordion__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.accordion__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #868686;
  transition: transform 0.3s ease;
}
.accordion__header[aria-expanded=true] .accordion__chevron {
  transform: rotate(180deg);
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__body--open {
  grid-template-rows: 1fr;
}
.accordion__body-inner {
  overflow: hidden;
}
.accordion__desc {
  padding: 16px 24px;
  color: rgba(24, 30, 37, 0.6392156863);
}
.accordion__desc p {
  margin: 0;
}

.fn-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fn-list__item {
  padding: 16px 24px;
  border-top: 1px solid rgba(24, 30, 37, 0.1607843137);
}
.fn-list__item:first-child {
  border-top: none;
}
.fn-list__label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.fn-list__check-wrap {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.fn-list__checkbox {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.fn-list__checkmark {
  display: block;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(24, 30, 37, 0.1607843137);
  border-radius: 6px;
  background: #FFFFFF;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.fn-list__checkbox:checked + .fn-list__checkmark {
  background-color: #fe8041;
  border-color: #fe8041;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.fn-list__checkbox:focus-visible + .fn-list__checkmark {
  outline: 2px solid #fe8041;
  outline-offset: 2px;
}
.fn-list__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  gap: 16px;
}
.fn-list__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
}
.fn-list__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.fn-list__price {
  flex-shrink: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #333333;
  white-space: nowrap;
}
.fn-list__desc {
  padding-left: 38px;
  padding-top: 8px;
  color: rgba(24, 30, 37, 0.6392156863);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.fn-list__desc p {
  margin: 0;
  font-size: 0.8125rem;
}
.fn-list__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  margin-left: 38px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fe8041;
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.fn-list__toggle:hover {
  color: rgb(253.7329842932, 94.0890052356, 14.2670157068);
}
.fn-list__toggle-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: currentColor;
}
.fn-list__toggle[aria-expanded=true] .fn-list__toggle-chevron {
  transform: rotate(180deg);
}
.fn-list__details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.fn-list__details--open {
  grid-template-rows: 1fr;
}
.fn-list__details-inner {
  overflow: hidden;
}
.fn-list__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 16px 0 16px 38px;
}
@media (min-width: 502px) {
  .fn-list__gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .fn-list__gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
.fn-list__gallery-item {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(24, 30, 37, 0.1607843137);
  transition: border-color 0.2s ease;
}
.fn-list__gallery-item:hover {
  border-color: #fe8041;
}
.fn-list__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wpcf7-submit {
  background-color: #fe8041;
  border: 0;
  padding: 16px 40px 16px 40px;
  font-weight: 700;
  border-radius: 32px;
  color: #FFFFFF;
  cursor: pointer;
  transition: 0.3s all;
}
.wpcf7-submit:hover {
  transform: scale(1.05);
}

.page-content {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1024px) {
  .page-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.page-content p {
  margin-bottom: 16px;
}
.page-content p:last-child {
  margin-bottom: 0;
}
.page-content ul,
.page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content ul li,
.page-content ol li {
  margin-bottom: 8px;
}
.page-content a {
  color: #fe8041;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a:hover {
  text-decoration: none;
}
.page-content img {
  border-radius: 12px;
  margin-block: 24px;
}

.czym-intro {
  padding-block: 64px;
}
@media (min-width: 1024px) {
  .czym-intro {
    padding-block: 80px;
  }
}
.czym-intro__inner {
  max-width: 860px;
}
.czym-intro__lead {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(24, 30, 37, 0.6392156863);
}
@media (min-width: 768px) {
  .czym-intro__lead {
    font-size: 1.25rem;
  }
}

.czym-section {
  padding-block: 64px;
}
@media (min-width: 1024px) {
  .czym-section {
    padding-block: 80px;
  }
}
.czym-section--alt {
  background-color: #F8F7F5;
}
.czym-section__row {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .czym-section__row {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}
@media (min-width: 1024px) {
  .czym-section__row--reversed {
    flex-direction: row-reverse;
  }
}
.czym-section__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.czym-section__label {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fe8041;
}
.czym-section__title {
  color: #333333;
  max-width: 480px;
}
@media (min-width: 768px) {
  .czym-section__title {
    font-size: 2rem;
    line-height: 40px;
  }
}
.czym-section p {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(24, 30, 37, 0.6392156863);
}
.czym-section__media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .czym-section__media {
    max-width: 50%;
  }
}
.czym-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
  border-radius: 24px;
  border: 1px solid #e8e8e8;
}

.czym-faq {
  padding-block: 64px;
}
@media (min-width: 1024px) {
  .czym-faq {
    padding-block: 80px;
  }
}
.czym-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .czym-faq__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
}
.czym-faq__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .czym-faq__header {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
  }
}
.czym-faq__title {
  color: #333333;
}
.czym-faq__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(24, 30, 37, 0.6392156863);
}
.czym-faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.czym-faq__item {
  border-bottom: 1px solid rgba(24, 30, 37, 0.1607843137);
}
.czym-faq__item:first-child {
  border-top: 1px solid rgba(24, 30, 37, 0.1607843137);
}
.czym-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #333333;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .czym-faq__question {
    font-size: 1.0625rem;
  }
}
.czym-faq__question:hover {
  color: #fe8041;
}
.czym-faq__question[aria-expanded=true] {
  color: #fe8041;
}
.czym-faq__question[aria-expanded=true] .czym-faq__chevron {
  transform: rotate(180deg);
}
.czym-faq__chevron {
  flex-shrink: 0;
  color: #868686;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.czym-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
}
.czym-faq__answer--open {
  grid-template-rows: 1fr;
}
.czym-faq__answer-inner {
  overflow: hidden;
}
.czym-faq__answer-inner p {
  padding-bottom: 24px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(24, 30, 37, 0.6392156863);
  margin: 0;
}

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

html {
  font-size: 16px;
}

body,
p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 28px;
  letter-spacing: -0.04px;
  color: rgba(24, 30, 37, 0.6392156863);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: 2rem;
  letter-spacing: -1px;
  line-height: 24px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
    line-height: 48px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 5.125rem;
    line-height: 62px;
  }
}

h2 {
  font-size: 1.75rem;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
    line-height: 48px;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  h5 {
    font-size: 1.5rem;
  }
}

h6 {
  font-size: 1.125rem;
  line-height: 24px;
  letter-spacing: -0.4px;
}
@media (min-width: 1024px) {
  h6 {
    font-size: 1.5rem;
    line-height: 28px;
    letter-spacing: -0.5px;
  }
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

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

a {
  text-decoration: none;
}

.btn {
  padding: 8px 16px;
  border-radius: 32px;
  letter-spacing: -0.25px;
  font-size: 0.875rem;
  line-height: 16px;
  text-align: center;
  justify-content: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn--primary {
  background: #fe8041;
  color: #333333;
}
.btn--primary:hover {
  transform: scale(1.03);
  background-color: #fe8041;
}
.btn--secondary {
  background: #fe8041;
  color: #333333;
  text-transform: uppercase;
}
.btn--secondary:hover {
  transform: scale(1.03);
  background-color: #fe8041;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
select,
textarea {
  font-family: "Sora", sans-serif;
  width: 100% !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 100px !important;
  padding: 12px 16px !important;
  font-size: 0.875rem !important;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #8e8e8e !important;
}
input[type=text]:focus, input[type=text]:focus-visible,
input[type=email]:focus,
input[type=email]:focus-visible,
input[type=password]:focus,
input[type=password]:focus-visible,
input[type=tel]:focus,
input[type=tel]:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: 1px solid #dadada !important;
}

textarea {
  border-radius: 8px !important;
  resize: none;
}

.container {
  max-width: 1388px;
  padding-inline: 24px;
  width: 100%;
  margin: 0 auto;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fe8041;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

