:root {
  --fw-gold: #dfa61a;
  --fw-gold-dark: #bd8610;
  --fw-wine: #D00202;
  --fw-radius: 5px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.about-inner .about-inner_wrap {
  overflow: hidden;
}

body.fw-modal-open {
  overflow: hidden;
}

.fw-calc {
  width: min(100%, 860px);
  margin: 36px auto;
  color: #3f3f3f;
}

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

.fw-calc__card {
  padding: 28px;
  background: #fff;
  border: 1px solid #ddd6cb;
  border-radius: var(--fw-radius);
  box-shadow: 0 12px 35px rgba(52, 38, 18, .08);
}

.fw-calc__header {
  margin-bottom: 24px;
}

.fw-calc__header h2 {
  margin: 0 0 6px;
  color: #595959;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
}

.fw-calc__header p,
.fw-calc-modal__dialog > p {
  margin: 0;
  color: #79736b;
  line-height: 1.5;
}

.fw-calc__grid,
.fw-calc__dimensions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fw-calc__dimensions {
  grid-column: 1 / -1;
}

.fw-calc__dimensions[hidden] {
  display: none;
}

.fw-calc__control {
  display: block;
  margin: 0;
}

.fw-calc__control--wide {
  grid-column: 1 / -1;
}

.fw-calc__control > span {
  display: block;
  margin-bottom: 7px;
  color: #706a62;
  font-size: 13px;
  font-weight: 600;
}

.fw-calc__control select,
.fw-calc__control input,
.fw-calc-modal .wpcf7 input[type="text"],
.fw-calc-modal .wpcf7 input[type="tel"] {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: #2e2e2e;
  background: #fff;
  border: 1px solid #cfc8bd;
  border-radius: var(--fw-radius);
  font: inherit;
}

.fw-calc__control select:focus,
.fw-calc__control input:focus,
.fw-calc-modal .wpcf7 input:focus {
  outline: 0;
  border-color: var(--fw-gold);
  box-shadow: 0 0 0 3px rgba(223, 166, 26, .16);
}

.fw-calc__result {
  margin-top: 22px;
  padding: 20px;
  background: #e9e5df;
  border: 1px solid #d8d0c5;
  border-radius: var(--fw-radius);
}

.fw-calc__total {
  color: var(--fw-wine);
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 800;
  line-height: 1.2;
}

.fw-calc__total sup {
  margin-left: 2px;
  font-size: .55em;
}

.fw-calc__breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 12px;
  color: #5e5952;
  font-size: 14px;
}

.fw-calc__note {
  margin-top: 9px;
  color: var(--fw-wine);
  font-size: 13px;
  font-weight: 600;
}

.fw-calc__note:empty {
  display: none;
}

.fw-calc__disclaimer {
  margin: 16px 0 0;
  padding-top: 13px;
  color: #69635c;
  border-top: 1px solid #cec5b9;
  font-size: 13px;
  line-height: 1.45;
}

.fw-calc__submit {
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  color: #fff !important;
  background: var(--fw-gold) !important;
  border: 1px solid var(--fw-gold) !important;
  border-radius: var(--fw-radius) !important;
  font-weight: 700;
}

.fw-calc__submit:hover {
  background: var(--fw-gold-dark) !important;
  border-color: var(--fw-gold-dark) !important;
}

.fw-calc-modal[hidden] {
  display: none;
}

.fw-calc-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 20px;
}

.fw-calc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 19, 14, .72);
}

.fw-calc-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  background: #fff;
  border-radius: var(--fw-radius);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .35);
}

.fw-calc-modal__dialog h2 {
  margin: 0 44px 7px 0;
  color: #595959;
  font-size: 28px;
}

.fw-calc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: #f1ede7;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.fw-calc-modal__close::before,
.fw-calc-modal__close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 18px;
  height: 2px;
  background: #4a4640;
}

.fw-calc-modal__close::before { transform: rotate(45deg); }
.fw-calc-modal__close::after { transform: rotate(-45deg); }

.fw-calc-modal__form {
  margin-top: 22px;
}

.fw-calc-modal .fw-cf7-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fw-calc-modal .fw-cf7-field {
  display: block;
  margin-bottom: 15px;
  color: #69635c;
  font-size: 13px;
  font-weight: 600;
}

.fw-calc-modal .fw-cf7-field > span:first-child {
  display: block;
  margin-bottom: 7px;
}

.fw-calc-modal .fw-cf7-contact-methods .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
}

.fw-calc-modal .wpcf7-list-item {
  margin: 0;
}

.fw-calc-modal .wpcf7-submit {
  width: 100%;
  min-height: 52px;
  color: #fff;
  background: var(--fw-gold);
  border: 0;
  border-radius: var(--fw-radius);
  font-weight: 700;
  cursor: pointer;
}

.fw-calc-modal .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #b22323;
  font-size: 12px;
}

.fw-calc-modal .wpcf7-response-output {
  margin: 14px 0 0 !important;
  border-radius: var(--fw-radius);
}

.fw-product-options {
  margin: 36px 0;
}

.fw-product-options__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.fw-product-options__head h2 {
  margin: 0;
}

.fw-product-options__head a {
  color: var(--fw-wine);
  font-weight: 600;
  text-decoration: underline;
}

.fw-product-options__card {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: #3f3f3f;
}

.fw-product-options__image {
  display: block;
  margin-bottom: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--fw-radius);
}

.fw-product-options__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fw-wood-selector {
   margin: 80px 0;
  /* margin: 55px 0;
  color: #4e4e4e; */
}

.fw-wood-selector .container {
  /* padding: 34px;
  background: #f4efe7;
  border: 1px solid #e0d7c9;
  border-radius: 26px; */
}

.fw-wood-selector h2 {
  /* margin: 0 0 22px;
  color: #595959;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12; */
  line-height: 1.12;
}

.fw-wood-selector__tabs {
  display: flex;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0 0 8px;
  overflow-x: auto;
  list-style: none;
  justify-content: center;
}

.fw-wood-selector__tab {
  flex: 0 0 auto;
  padding: 11px 18px;
  /* color: #595959; */
  background: #fff;
  border: 1px solid #ded4c6;
  border-radius: 2px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.fw-wood-selector__tab[aria-selected="true"] {
  color: #fff;
  background: var(--fw-gold);
  border-color: var(--fw-gold);
}

.fw-wood-selector__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 52px;
  align-items: center;
  /* padding: 22px;
  background: #fff;
  border-radius: 22px; */
}

.fw-wood-selector__panel[hidden] { display: none; }

.fw-wood-selector__image {
  overflow: hidden;
  aspect-ratio: 16 / 8.2;
  /* border-radius: 18px; */
}

.fw-wood-selector__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fw-wood-selector__content h3 {
  margin: 0 0 12px;
  color: #595959;
  font-size: clamp(24px, 2.5vw, 34px);
  /* font-weight: 800; */
  line-height: 1.12;
}

.fw-wood-selector__content p {
  /* margin: 0 0 22px; */
  color: #706a62;
  /* font-size: 17px; */
  /* line-height: 1.58; */
}

.fw-wood-selector__content .btn {
  max-width: 100%;
  background: transparent;
  border-color: #DFA61A;
  color: #DFA61A;
  box-shadow: none;
}

.fw-product-sku {
  position: absolute;
  top: auto;
  left: auto;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #fff;
  background: rgba(36, 34, 33, .88);
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .16);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  pointer-events: none;
}

.catalog__pic,
.stock-inner .stock-inner_wrap ul li a .img,
.fw-product-options__image {
  position: relative;
}

.stock-inner .stock-inner_wrap ul li {
  display: flex;
  flex-direction: column;
}

.stock-inner .stock-inner_wrap ul li a .desc p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.stock-inner .stock-inner_wrap .swiper-wrapper .swiper-slide > a.catalog__btn {
  height: 55px;
  display: flex;
  flex-direction: row;
  margin-top: 12px;
}

/* Hero is one third shorter than the previous padding-based geometry. */
.front-slider { padding: 146px 0 30px; }

@media (max-width: 996px) {
  .front-slider { padding: 190px 0 67px; }
}

@media (max-width: 767px) {
  .front-slider { padding: 145px 0 107px; }

  .fw-calc__card,
  .fw-calc-modal__dialog {
    padding: 18px;
  }

  .fw-calc__grid,
  .fw-calc__dimensions,
  .fw-calc-modal .fw-cf7-row {
    grid-template-columns: 1fr;
  }

  .fw-calc__breakdown {
    display: grid;
  }

  .fw-product-options__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .fw-wood-selector__panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-inner_wrap ul,
  .catalog__flex {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .news__wrap {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .news__wrap .news__image {
    margin-bottom: 10px !important;
  }

  .news__wrap .news__box {
    margin-bottom: 6px !important;
  }

  .news__wrap .txtlikeol {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .news__wrap .news__box p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .news__wrap .news__box span {
    font-size: 12px !important;
    white-space: nowrap;
  }

  .news__wrap .news__arrow {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 auto;
  }

  .news__wrap .news__arrow img {
    width: 20px;
  }

  .category-inner_wrap ul li,
  .catalog__flex .catalog__item,
  .news__wrap .news__item {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 18px !important;
  }

  .category-inner_wrap ul li .img,
  .catalog__flex .catalog__pic,
  .news__wrap .news__image,
  .stock-inner .stock-inner_wrap ul li a .img {
    height: auto !important;
    aspect-ratio: 1 / 1;
  }

  .stock-inner .stock-inner_wrap ul li a .img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }

  .stock-inner .stock-inner_wrap ul li a .desc {
    align-items: flex-start !important;
    gap: 10px !important;
    padding-left: 0;
    padding-right: 0;
    text-align: left !important;
  }

  .stock-inner .stock-inner_wrap ul li a .desc p,
  .article__slider .article__item h3 {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  .category-inner_wrap ul li .desc p {
    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  .category-inner_wrap ul li .desc button {
    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 34px !important;
    padding: 0 !important;
    border-radius: 10px;
  }

  .category-inner_wrap ul li .desc button img,
  .category-inner_wrap ul li .desc button svg {
    width: 18px !important;
    max-width: 18px !important;
    height: auto !important;
  }

  .fw-product-sku {
    top: auto;
    left: auto;
    right: 8px;
    bottom: 8px;
    z-index: 1;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 12px;
  }

  .category-inner_wrap ul li .desc span,
  .catalog__flex .catalog__title,
  .news__wrap .txtlikeol {
    min-height: 0 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  .catalog__flex .catalog__btn {
    min-width: 0;
    padding: 0 6px;
    font-size: 12px;
  }

  .catalog__info .catalog__attr {
    padding-bottom: 0;
    font-size: 12px;
  }

  .catalog__sizes {
    display: none !important;
  }

  .slabs__list.newvidtop {
    display: flex !important;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 18px !important;
    padding-bottom: 18px !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--fw-gold) #eadfce;
    columns: auto !important;
  }

  .slabs__list.newvidtop::-webkit-scrollbar {
    display: block;
    height: 7px;
  }

  .slabs__list.newvidtop::-webkit-scrollbar-track {
    background: #eadfce;
    border-radius: 999px;
  }

  .slabs__list.newvidtop::-webkit-scrollbar-thumb {
    background: var(--fw-gold);
    border-radius: 999px;
  }

  .slabs__list.newvidtop li {
    display: flex;
    flex: 0 0 65%;
    max-width: 260px;
    padding: 0 !important;
    scroll-snap-align: start;
  }

  .slabs__list.newvidtop li a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #faf7f0;
    border: 1px solid #e5ddc9;
    border-radius: 0 !important;
    padding: 10px 14px !important;
    text-align: left;
  }

  .slabs__list.newvidtop li a span {
    display: block;
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #302c26;
    white-space: normal;
    text-align: left;
  }

  .slabs__list.newvidtop li a .slabs__count {
    display: none !important;
  }

  .news__offer {
    margin-bottom: 32px !important;
  }

  .news__flex {
    margin-bottom: 20px;
  }

  .news__flex a.news__link {
    min-height: 45px;
  }
}

@media (max-width: 360px) {
  .category-inner_wrap ul,
  .catalog__flex,
  .news__wrap {
    gap: 9px !important;
  }

  .category-inner_wrap ul li .desc,
  .catalog__flex .catalog__info {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .catalog__sizes {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .catalog__top.filter {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .filter__sum {
    flex-shrink: 0;
  }
}

@media (max-width: 400px) {
  .stock-inner .stock-inner_wrap ul li a .desc span,
  .stock-inner .stock-inner_wrap ul li a .desc span.old {
    font-size: 13px;
  }
}

/* Calculator lead modal polish */
body.fw-modal-open {
  overflow: hidden !important;
}

.fw-calc-modal {
  z-index: 100500;
  place-items: center;
  padding: 32px 20px;
}

.fw-calc-modal__backdrop {
  background: rgba(29, 25, 20, .74);
  backdrop-filter: blur(1px);
}

.fw-calc-modal__dialog {
  width: min(800px, calc(100vw - 40px)) !important;
  max-height: min(820px, calc(100vh - 64px));
  padding: 48px 60px 52px !important;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(221, 214, 203, .72);
  border-radius: var(--fw-radius) !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  -webkit-overflow-scrolling: touch;
}

.fw-calc-modal__dialog h2 {
  margin: 0 86px 16px 0 !important;
  color: #5b5b5b;
  font-size: clamp(32px, 4.1vw, 44px) !important;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.fw-calc-modal__dialog > p {
  max-width: 680px;
  margin: 0 !important;
  color: #766f67;
  font-size: 20px;
  line-height: 1.48;
}

.fw-calc-modal__close {
  top: 32px !important;
  right: 32px !important;
  width: 60px !important;
  height: 60px !important;
  background: #f3eee8 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  transition: background-color .2s ease, transform .2s ease;
}

.fw-calc-modal__close:hover,
.fw-calc-modal__close:focus-visible {
  background: #eadfd3 !important;
  transform: scale(1.04);
}

.fw-calc-modal__close::before,
.fw-calc-modal__close::after {
  top: 29px !important;
  left: 17px !important;
  width: 26px !important;
  height: 3px !important;
  background: #514c46 !important;
  border-radius: 2px;
}

.fw-calc-modal__form {
  margin-top: 34px !important;
}

.fw-calc-modal .wpcf7,
.fw-calc-modal .wpcf7 form,
.fw-calc-modal .calc-lead-form {
  width: 100%;
}

.fw-calc-modal .wpcf7 form > p,
.fw-calc-modal .calc-lead-form > p {
  margin: 0;
}

.fw-calc-modal .wpcf7 br {
  display: none;
}

.fw-calc-modal .fw-cf7-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}

.fw-calc-modal .fw-cf7-field {
  display: block;
  width: 100%;
  margin: 0 0 24px !important;
  color: #66615b;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.fw-calc-modal .fw-cf7-field > span:first-child {
  display: block;
  margin-bottom: 10px !important;
}

.fw-calc-modal .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.fw-calc-modal .wpcf7 input[type="text"],
.fw-calc-modal .wpcf7 input[type="tel"] {
  display: block;
  width: 100% !important;
  max-width: none !important;
  min-height: 60px !important;
  padding: 14px 18px !important;
  color: #302d29;
  background: #fff;
  border: 2px solid #d4cabf !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  font: 500 18px/1.2 Montserrat, Arial, sans-serif;
}

.fw-calc-modal .wpcf7 input[type="text"]:focus,
.fw-calc-modal .wpcf7 input[type="tel"]:focus {
  border-color: var(--fw-gold) !important;
  box-shadow: 0 0 0 4px rgba(223, 166, 26, .18) !important;
}

.fw-calc-modal .fw-cf7-contact-methods {
  margin-top: 4px !important;
}

.fw-calc-modal .fw-cf7-contact-methods > p > span:first-child {
  display: block;
  margin-bottom: 14px;
}

.fw-calc-modal .fw-cf7-contact-methods .wpcf7-form-control {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px !important;
}

.fw-calc-modal .wpcf7-form-control.wpcf7-radio {
  padding-left: 0 !important;
  padding-right: 0 !important;
  border: 0 !important;
}

.fw-calc-modal .wpcf7-form-control.wpcf7-acceptance {
  margin-top: 22px !important;
  padding: 0 !important;
  border: 0 !important;
}

.fw-calc-modal .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
}

.fw-calc-modal .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
}

.fw-calc-modal .wpcf7 input[type="radio"],
.fw-calc-modal .wpcf7 input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--fw-gold);
}

.fw-calc-modal .wpcf7-list-item-label {
  color: #66615b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.fw-calc-modal .wpcf7-acceptance .wpcf7-list-item label {
  align-items: flex-start;
}

.fw-calc-modal .wpcf7-submit {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 66px !important;
  margin-top: 18px !important;
  padding: 16px 24px !important;
  color: #fff !important;
  background: var(--fw-gold) !important;
  border: 0 !important;
  border-radius: var(--fw-radius) !important;
  box-shadow: none !important;
  font: 800 18px/1.2 Montserrat, Arial, sans-serif !important;
  text-align: center;
  transition: background-color .2s ease, transform .2s ease;
}

.fw-calc-modal .wpcf7-submit:hover,
.fw-calc-modal .wpcf7-submit:focus-visible {
  background: var(--fw-gold-dark) !important;
  transform: translateY(-1px);
}

.fw-calc-modal .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px !important;
  color: #c61d1d !important;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.35;
}

.fw-calc-modal .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 16px !important;
  font-size: 15px;
  line-height: 1.4;
}

.fw-calc-modal .wpcf7-spinner {
  margin: 14px auto 0;
}

@media (max-width: 767px) {
  .fw-calc-modal {
    align-items: center;
    padding: 14px 10px;
  }

  .fw-calc-modal__dialog {
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 28px);
    padding: 28px 18px 24px !important;
    border-radius: var(--fw-radius) !important;
  }

  .fw-calc-modal__dialog h2 {
    margin-right: 58px !important;
    margin-bottom: 10px !important;
    font-size: clamp(27px, 9vw, 34px) !important;
  }

  .fw-calc-modal__dialog > p {
    font-size: 16px;
    line-height: 1.45;
  }

  .fw-calc-modal__close {
    top: 18px !important;
    right: 18px !important;
    width: 46px !important;
    height: 46px !important;
  }

  .fw-calc-modal__close::before,
  .fw-calc-modal__close::after {
    top: 22px !important;
    left: 13px !important;
    width: 20px !important;
    height: 2px !important;
  }

  .fw-calc-modal__form {
    margin-top: 24px !important;
  }

  .fw-calc-modal .fw-cf7-row {
    gap: 18px !important;
  }

  .fw-calc-modal .fw-cf7-field {
    margin-bottom: 20px !important;
    font-size: 15px;
  }

  .fw-calc-modal .wpcf7 input[type="text"],
  .fw-calc-modal .wpcf7 input[type="tel"] {
    min-height: 54px !important;
    padding: 12px 15px !important;
    border-radius: 5px !important;
    font-size: 16px;
  }

  .fw-calc-modal .fw-cf7-contact-methods .wpcf7-form-control {
    gap: 8px 14px !important;
  }

  .fw-calc-modal .wpcf7 input[type="radio"],
  .fw-calc-modal .wpcf7 input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .fw-calc-modal .wpcf7-list-item-label {
    font-size: 13px;
  }

  .fw-calc-modal .wpcf7-form-control.wpcf7-acceptance {
    margin-top: 18px !important;
  }

  .fw-calc-modal .wpcf7-submit {
    min-height: 58px !important;
    border-radius: var(--fw-radius) !important;
    font-size: 16px !important;
  }

  .fw-calc-modal .wpcf7-not-valid-tip {
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  .fw-calc-modal__dialog {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .fw-calc-modal .fw-cf7-contact-methods .wpcf7-form-control {
    gap: 9px 14px !important;
  }
}

html.fw-product-zoom-open {
  overflow: hidden;
}

.fw-product-zoom {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background: rgba(23, 17, 15, .92);
  padding: 24px;
}

.fw-product-zoom.is-open {
  display: flex;
}

.fw-product-zoom__image {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--fw-radius);
}

.fw-product-zoom__close,
.fw-product-zoom__prev,
.fw-product-zoom__next {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease;
}

.fw-product-zoom__close:hover,
.fw-product-zoom__prev:hover,
.fw-product-zoom__next:hover {
  background: var(--fw-gold);
}

.fw-product-zoom__close {
  top: 20px;
  right: 20px;
}

.fw-product-zoom__prev,
.fw-product-zoom__next {
  top: 50%;
  transform: translateY(-50%);
}

.fw-product-zoom__prev {
  left: 20px;
}

.fw-product-zoom__next {
  right: 20px;
}

@media (max-width: 767px) {
  .fw-product-zoom {
    padding: 12px;
  }

  .fw-product-zoom__close,
  .fw-product-zoom__prev,
  .fw-product-zoom__next {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .fw-product-zoom__close {
    top: 12px;
    right: 12px;
  }

  .fw-product-zoom__prev {
    left: 8px;
  }

  .fw-product-zoom__next {
    right: 8px;
  }
}

@media (min-width: 1300px) {
  header .h_bottom .h_bottom_wrap .h_hamburger-open:not(.h-mob) {
    display: none;
  }
}
