@import url("https://fonts.googleapis.com/css2?family=Gothic+A1:wght@800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:wght@400;500;700&display=swap");
.carousel {
  position: relative;
  box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

.premium-link {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.premium-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* подстрой под шрифт */
  width: 100%;
  height: 1px;
  background: #c9a14a; /* золотой */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.premium-link:hover::after,
.premium-link:focus-visible::after {
  transform: scaleX(1);
}

#booking-step-1, 
#booking-step-2 {
  scroll-margin-top: 22px; /* отступ сверху при scrollIntoView */
}

#booking-step-1 h2, #booking-step-2  h2 {font-family: "Playfair Display", serif;}
#booking-step-1 h2 span, #booking-step-2  h2 span {
  font-size: 32px;
  font-weight: 500;
}

/* Step title row: centered + divider */
#booking-step-1 .row:has(h2),
#booking-step-2 .row:has(h2){
  justify-content: center;                
  margin-bottom: 18px;                      
  border-bottom: 1px solid rgba(114, 128, 157, 0.25);
}

/* сам заголовок без лишних отступов */
#booking-step-1 .row:has(h2) h2,
#booking-step-2 .row:has(h2) h2{
  margin: 0;
  text-align: center;
  width: 100%;
}

#booking-step-1 .row, #booking-step-2 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom:10px;
  min-height: 50px;
}

#booking-step-1 .row input, #booking-step-2 .row input {
  padding:0;
}

#booking-step-1 .row label{
  color:#72809d;
}

#booking-step-2 .row label {
	display:none;
}

/* Лейбл слева */
#booking-step-1 .row > label, #booking-step-2 .row > label {
  margin: 0;
  min-width: 75px;
}

/* Сам счетчик справа */
#booking-step-1 .number-field-book {
  margin: 0;
}

/* ===== FIX: Group Options row отдельно от остальных flex-row ===== */
#booking-step-1 .row:has(#groupOptionsOutput){
  display: block;            /* убираем flex только у этой строки */
}

#booking-step-1 .row:has(#groupOptionsOutput) > label{
  display: block;
  margin: 0 0 8px 0;         /* тайтл над опциями */
}

#booking-step-1 #groupOptionsOutput{
  width: 100%;
}

/* Опции: bullet слева, текст справа, перенос под текстом */
#booking-step-1 #groupOptionsOutput .group-option{
  margin: 8px 0;
}

#booking-step-1 #groupOptionsOutput .group-option > label{
  display: flex;
  align-items: flex-start;
  gap: 10px;                 /* зазор между bullet и текстом */
  margin: 0;
  color:#2d4059;
}

#booking-step-1 #groupOptionsOutput input[type="radio"]{
  flex: 0 0 auto;
  margin: 4px 0 0 0;         /* выравнивание по первой строке */
}

#booking-step-1 #groupOptionsOutput input[type="radio"]{
  accent-color: #bca164;
}

/* STEP 2: Back button like "Cancel" (outlined pill) */
#booking-step-2 #bookingBackToStep1{
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.05em;

  padding: 11px 10px;     
  border-radius: 24px;    
  min-width: 80px;       
  width: auto;            
  height: auto;           

  background: #fff;
  border: 1px solid rgba(114, 128, 157, 0.25);
  color: #72809d;

  box-shadow: none;
  transition: border-color .2s ease, color .2s ease;
}


/* hover: accent only border */
#booking-step-2 #bookingBackToStep1:hover{
  border-color: rgba(114, 128, 157, 0.85);
}

/* nice focus for keyboard */
#booking-step-2 #bookingBackToStep1:focus-visible{
  outline: none;
  border-color: rgba(114, 128, 157, 0.85);
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

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

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

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

html, body {
  color: #3d3d3d;
  -webkit-font-smoothing: antialiased;
}

@keyframes slideDown {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 10px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes slideLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 10px;
  }
  100% {
    margin-left: 0;
  }
}
img {
  max-width: 100%;
}

blockquote::before {
  background-color: #c9a96a;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
}

blockquote {
  font-weight: 400;
  margin: 2.5rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.75;
}
blockquote p {
  font-family: "Playfair Display", serif !important;
  font-size: 24px !important;
}
blockquote cite {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: #54647b;
  display: block;
  margin-top: 1.5rem;
  padding-left: 2.5rem;
  position: relative;
}
blockquote cite:before {
  content: "";
  background-color: #54647b;
  height: 1px;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
}

.taxonomy-not-found {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.wpcf7-response-output {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0.5em 1em;
  border-radius: 7px;
}

.form-bottom-grey {
  border-bottom: 1px solid rgba(114, 128, 157, 0.3);
}

.wpcf7-not-valid-tip {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 400;
  margin-top: 5px;
  margin-left: 5px;
}

.container {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
}

.language-chooser a, .hover-line {
  position: relative;
  display: inline-block;
}
.language-chooser a:before, .hover-line:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #BCA164;
  transition: 0.5s all;
}
.language-chooser a.big:before, .hover-line.big:before {
  height: 2px;
}
.language-chooser a:hover:before, .language-chooser a.always:before, .hover-line:hover:before, .hover-line.always:before {
  width: 100%;
}

.language-chooser a:before {
  width: 100%;
}
.language-chooser .active a:before {
  width: 0;
}

.home-page-reviews-bg {
  transition: 1s all;
}
.home-page-reviews-bg.active {
  background: #F8F8F8;
}
.home-page-reviews-bg .tns-slider {
  display: flex;
}
.home-page-reviews-bg .tns-slider .tns-item {
  display: flex !important;
}
.home-page-reviews-bg .content {
  padding-top: 108px;
  padding-bottom: 170px;
}

.bottom-line {
  position: relative;
}
.bottom-line:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 350px;
  width: 100%;
  height: 1px;
  background: #BCA164;
  transform: translateX(-50%);
}

.section-scroll {
  position: absolute;
  z-index: 2;
  right: 40px;
  top: 50%;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  text-transform: none;
  text-align: center;
}
.section-scroll span {
  display: block;
  transform: rotate(90deg);
  margin-bottom: 15px;
}
.section-scroll .scroll-line {
  border-left: 1px solid #BCA164;
  display: inline-block;
  height: 65px;
  margin-bottom: 2px;
  margin-right: -5px;
  animation: slideDown 1.5s infinite;
}
.section-scroll svg {
  margin-top: 20px;
  transition-property: clip;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn {
  cursor: pointer;
  border: 3px solid transparent;
  transition: 1s;
}
.btn.square {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 64px;
  text-align: center;
}
.btn.square svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn.brown {
  background: #BCA164;
}
.btn.brown:hover {
  border: 3px solid #BCA164;
  background: #D4B367;
}
.btn.white {
  background: #ffffff;
}
.btn.white svg path {
  stroke: #3d3d3d;
}
.btn.white:hover {
  border: 3px solid #BCA164;
}

input[type=text], input[type=number], input[type=email], textarea, select {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #2d4059;
  padding: 0 0 10px 0;
  border: 0;
  outline: none;
  border-bottom: 1px solid rgba(114, 128, 157, 0.35);
}

select {
  position: relative;
  width: 100%;
  padding: 5px 0;
  font-size: 14px;
  border: 0;
  border-bottom: 1px solid rgba(114, 128, 157, 0.35);
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  background: url("../img/select-bg.svg") right 10px center no-repeat;
}

input[type=submit], button.submit, a.button.submit {
  width: 100%;
  min-width: 180px;
  border-radius: 24px;
  padding: 11px 10px;
  border: 1px solid #BCA164;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.05em;
  color: #000000;
  background: none;
  cursor: pointer;
  transition: 1s;
}
input[type=submit]:hover, button.submit:hover, a.button.submit:hover {
  background: #BCA164;
  color: #ffffff;
}
input[type=submit].inversed, button.submit.inversed, a.button.submit.inversed {
  background: #BCA164;
  color: #ffffff;
}
input[type=submit].inversed:hover, button.submit.inversed:hover, a.button.submit.inversed:hover {
  color: #000000;
  background: none;
}

a.button.submit.inversed, a.button.submit {
  text-align:center;
  text-decoration:none;
}

.characteristics {
  display: flex;
  margin: 20px;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
}
.characteristics p {
  display: flex;
  align-items: center;
  color: #000000;
}
.characteristics p svg, .characteristics p i {
  width: 20px;
  height: auto;
  fill: #72809d;
  margin: 0 10px 0 0;
}

.wysiwyg h1 {
  font-size: 32px;
}
.wysiwyg h2 {
  font-size: 28px;
}
.wysiwyg h3 {
  font-size: 26px;
}
.wysiwyg h4 {
  font-size: 24px;
}
.wysiwyg h5 {
  font-size: 22px;
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg p {
  margin: 16px 0;
}
.wysiwyg p, .wysiwyg li {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
.wysiwyg table {
  text-align: left;
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  color: #3d3d3d;
  border-right: 1px solid rgba(114, 128, 157, 0.3);
  border-bottom: 1px solid rgba(114, 128, 157, 0.3);
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
.wysiwyg table tr th, .wysiwyg table tr td {
  border-top: 1px solid rgba(114, 128, 157, 0.3);
  border-left: 1px solid rgba(114, 128, 157, 0.3);
  padding: 10px;
  color: #2a2a2a;
  text-align: center;
}
.wysiwyg table tr th {
  font-weight: 700;
}
.wysiwyg .align-center {
  text-align: center;
}
.wysiwyg a {
  color: #BCA164;
}
.wysiwyg ul, .wysiwyg ol {
  margin-left: 18px;
}

.info-message {
  margin: 10px 0 30px;
  padding: 10px;
  border: 1px solid #cecece;
  font-size: 15px;
  color: #ffffff;
}
.info-message.successful {
  background: #00825a;
}
.info-message.error {
  background: #a60000;
  border: 1px solid #810000;
}

.heading-title {
  display: block;
  margin: 50px 0 30px 0;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: #000000;
}

.toggle-content {
  display: none;
  overflow-x: auto;
  padding: 0 0 0 52px;
  transition: height 0.2s ease-in-out;
}
.toggle-content.active {
  display: block;
}

.toggle {
  position: relative;
  padding: 0 0 0 50px;
  cursor: pointer;
}
.toggle .button {
  position: absolute;
  display: block;
  left: 15px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -7px;
  background: #BCA164;
  transition: 1s;
}
.toggle .button:hover {
  opacity: 0.8;
}
.toggle .button span {
  position: absolute;
  top: 9px;
  width: 10px;
  left: 5px;
  height: 1px;
  background: #ffffff;
  transition: 0.4s;
}
.toggle .button span:nth-child(2) {
  transform: rotate(90deg);
  top: 45%;
}
.toggle.active .button span:nth-child(2) {
  transform: rotate(180deg);
  top: 9px;
}

#reserveForm .contact-form {
  margin-top: 0;
}

#reserveForm .title {
  display: block;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-weight: 700;
  line-height: 1.15;
  font-size: 48px;
  text-align: center;
  color: #000;
}
#reserveForm .form .row {
  /*display: flex;*/
  margin-bottom: 20px;
}
#reserveForm .form .row span > input, #reserveForm .form .row span > textarea, #reserveForm .form .row span > select {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(114, 128, 157, 0.3);
  border-radius: 6px;
  box-shadow: none;
  color: #3d3d3d;
  line-height: 1;
  height: 48px;
  padding: 18px;
  position: relative;
  font-family: "Roboto", sans-serif;
}
#reserveForm .form .row span > select {
  padding: 10px 10px 10px 18px;
}
#reserveForm .form .row span > textarea {
  height: 120px;
}
#reserveForm .form .row input:focus, #reserveForm .form .row textarea:focus {
  border: 1px solid #c9a96a;
  box-shadow: 0 4px 10px rgba(201, 169, 106, 0.12);
}
#reserveForm .form .row .button {
  display: block;
  margin: 0 auto;
  max-width: 170px;
  font-size: 16px;
  font-weight: 600;
}
#reserveForm .form .row .wpcf7-form-control-wrap {
  width: 100%;
}
#reserveForm .form .row.two-fields {
  justify-content: space-between;
}
#reserveForm .form .row.two-fields > input:first-of-type, #reserveForm .form .row.two-fields .wpcf7-form-control-wrap:first-of-type {
  margin-right: 20px;
}
#reserveForm .wpcf7-response-output {
  margin: 5px;
  padding: 5px;
}

header {
  position: relative;
  padding: 35px 0 0 0;
}
header .logo {
  position: absolute;
  z-index: 2;
  left: 44px;
  top: 9px;
  max-width: 200px;
}
header .logo img {
  width: 100%;
  height: 60px;
}
header .get-in-touch {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 20px;
  width: 200px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
}
header a {
  color: #ffffff;
  text-decoration: none;
}
header .burger-menu {
  position: absolute;
  width: 42px;
  height: 26px;
  z-index: 3;
  right: 48px;
  top: 24px;
  cursor: pointer;
}
header .burger-menu .bar {
  transition: all 450ms cubic-bezier(0.63, 0.64, 0.3, 1) 0ms;
  display: block;
  position: absolute;
  width: 42px;
  height: 2px;
  background-color: #BCA164;
}
header .burger-menu .bar:first-child {
  margin-top: 0;
}
header .burger-menu .bar:first-child + .bar {
  margin-top: 12px;
}
header .burger-menu .bar:first-child + .bar + .bar {
  margin-top: 24px;
}
header .burger-menu.active .bar:first-child {
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  margin-top: 12px;
}
header .burger-menu.active .bar:first-child + .bar {
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  margin-top: 12px;
}
header .burger-menu.active .bar:first-child + .bar + .bar {
  filter: alpha(opacity=0);
  opacity: 0;
}
header.home-page {
  background: url("../img/main-page-header.jpeg") center center no-repeat;
  background-size: cover;
  height: 700px;
  color: #ffffff;
  transition: background 2s;
}
header.home-page .container {
  height: 100%;
  max-width: inherit;
}
header.home-page .header-menu {
  position: relative;
  z-index: 2;
  margin-top: 130px;
  margin-left: -35px;
}
header.home-page .header-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.home-page .header-menu ul li {
  margin-bottom: 5px;
}
header.home-page .header-menu ul li a {
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 38px;
  font-weight: 500;
  line-height: 73px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
header.home-page .background {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 36.7%;
  min-height: 720px;
  min-width: 470px;
  background: #0491B0;
  transition: 0.5s;
}
header.home-page .backgroundSlide {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: 1s;
}
header.home-page .backgroundSlide.active {
  opacity: 1;
}
header.home-page .backgroundBlack {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-color: black;
  opacity: 0.25;
}
header.category, header.product, header.page, header.services {
  position: relative;
  background: url("../img/main-page-header.jpeg") center center no-repeat;
  background-size: cover;
  height: 440px;
  color: #ffffff;
  transition: background 2s;
}
header.category:before, header.product:before, header.page:before, header.services:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
header.category .container, header.product .container, header.page .container, header.services .container {
  height: 100%;
}
header.category .content, header.product .content, header.page .content, header.services .content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 0 0 0 100px;
}
header.category .content h1, header.product .content h1, header.page .content h1, header.services .content h1 {
  font-size: 80px;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-weight: normal;
}
header.product, header.services {
  height: 640px;
}
header.product .content, header.services .content {
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  padding: 0 140px 150px 0;
  text-align: center;
}
header.product .content span, header.services .content span {
  text-transform: uppercase;
}
header.product .content h1, header.services .content h1 {
  font-size: 60px;
}
header.page {
  height: 150px;
}
header.services {
  height: auto;
}
header.services .content {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-scroll {
    display: none;
  }
  header .logo {
    max-width: 150px;
  }
  header.home-page .header-menu {
    margin-left: -20px;
  }
  header.home-page .header-menu ul li {
    width: 80%;
    margin-bottom: 50px;
  }
  header.home-page .header-menu ul li a {
    font-size: 28px;
    line-height: 36px;
  }
  header.home-page .background {
    min-width: inherit;
  }
  header.product {
    height: 400px;
  }
  header.product .content {
    padding: 0;
  }
  header.product .content h1 {
    font-size: 50px;
  }
  header.services .content h1 {
    font-size: 60px;
  }
}
@media (max-width: 500px) {
  header {
    padding: 12px 0 0 0;
  }
  header .logo {
    left: 11px;
  }
  header .burger-menu {
    right: 32px;
    top: 17px;
  }
  header .get-in-touch {
    position: absolute;
    bottom: 27px;
    left: 0;
    width: 100%;
  }
  header .get-in-touch .hover-line {
    background: #BCA164;
    color: #ffffff;
    border-radius: 17px;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.05em;
  }
  header .get-in-touch .hover-line::before {
    display: none;
  }
  header.home-page {
    height: 505px;
  }
  header.home-page .background {
    background: none !important;
    width: 100%;
    left: 0;
    min-height: inherit;
  }
  header.home-page .header-menu {
    margin-left: 0;
    text-align: center;
    margin-top: 95px;
  }
  header.home-page .header-menu ul li {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 17px;
  }
  header.category .content {
    justify-content: center;
    padding: 0;
  }
  header.services .content h1 {
    font-size: 40px;
  }
  header.product .content h1 {
    font-size: 40px;
  }
}
footer {
  margin-top: 170px;
  padding: 70px 120px;
  background: #0491B0;
  color: #ffffff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
footer a {
  color: #ffffff;
  text-decoration: none;
}
footer .payment-methods {
  display: flex;
  align-items: center;
}
footer .payment-methods img {
  margin-left: 20px;
}
footer .columns {
  display: flex;
  justify-content: space-between;
}
footer .columns .socials {
  display: flex;
  align-items: center;
}
footer .columns .socials a {
  margin: 0 30px 0 0;
}
footer .columns .left-column {
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  width: 48%;
}
footer .columns .left-column .socials {
  display: none;
}
footer .columns .left-column .title {
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  line-height: 74px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
footer .columns .left-column ul {
  margin: 24px 0 0 0;
  padding: 0;
  list-style: none;
}
footer .columns .left-column ul li {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 73px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
footer .columns .right-column {
  width: 45%;
}
footer .columns .right-column .top-line {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 100px;
}
footer .columns .right-column .title {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
footer .columns .right-column .contact-info {
  margin-top: 37px;
  margin-bottom: 45px;
  display: flex;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
}
footer .columns .right-column .contact-info .address {
  width: 64%;
}
footer .columns .right-column .contact-info .contacts {
  width: 50%;
}
footer .info-pages ul {
  display: flex;
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}
footer .info-pages ul li {
  margin-right: 30px;
}
footer .info-pages ul li a {
  text-decoration: none;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
}
footer .info-pages ul li:last-of-type {
  margin-right: 0;
}
footer .legal-info {
  display: flex;
  position: relative;
  padding-right: 50px;
}
footer .legal-info p {
  margin-right: 30px;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
}
footer .legal-info p:last-of-type {
  margin-right: 0;
}
footer .mobile-info {
  display: none;
}
footer .toTop {
  cursor: pointer;
  position: absolute;
  width: 64px;
  height: 64px;
  transition: 1s;
  right: 0;
  bottom: 0;
}
footer .toTop svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .toTop:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1000px) {
  footer {
    padding: 60px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 40px;
  }
  footer .columns .socials {
    display: block;
    text-align: center;
  }
  footer .columns .socials a {
    display: inline-block;
    vertical-align: top;
    margin: 0 25px 0 0;
  }
  footer .columns .left-column .title {
    font-size: 40px;
    line-height: 74px;
    letter-spacing: 0.03em;
  }
  footer .columns .left-column ul {
    margin-top: 10px;
  }
  footer .columns .left-column ul li {
    font-size: 26px;
    line-height: 54px;
  }
  footer .columns .right-column {
    width: 38%;
  }
  footer .columns .right-column .top-line {
    margin-top: 25px;
    margin-bottom: 40px;
  }
  footer .columns .right-column .payment-methods {
    display: none;
  }
  footer .columns .right-column .title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.05em;
  }
  footer .columns .right-column .contact-info {
    flex-direction: column;
    margin-top: 35px;
    margin-bottom: 0;
  }
  footer .columns .right-column .contact-info .address, footer .columns .right-column .contact-info .contacts {
    width: 100%;
    margin-bottom: 24px;
  }
  footer .columns .right-column .info-pages, footer .columns .right-column .legal-info {
    display: none;
  }
  footer .mobile-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 18px;
  }
  footer .mobile-info .info-pages {
    width: 100%;
  }
  footer .mobile-info .legal-info {
    width: 60%;
  }
  footer .mobile-info .payment-methods {
    width: 38%;
  }
}
@media (max-width: 500px) {
  footer {
    margin-top: 70px;
    padding: 62px 34px;
  }
  footer .columns {
    flex-direction: column;
  }
  footer .columns .socials {
    text-align: left;
    margin-bottom: 10px;
  }
  footer .columns .socials a {
    margin: 0 36px 0 0;
  }
  footer .columns .left-column, footer .columns .right-column {
    width: 100%;
  }
  footer .columns .left-column .socials {
    display: block;
  }
  footer .columns .left-column .title {
    font-size: 28px;
    line-height: 74px;
  }
  footer .columns .left-column ul {
    margin-top: 0;
  }
  footer .columns .left-column ul li {
    font-size: 20px;
    line-height: 43px;
  }
  footer .columns .right-column {
    margin-top: 48px;
  }
  footer .columns .right-column .top-line {
    display: none;
  }
  footer .columns .right-column .contact-info {
    font-size: 14px;
    line-height: 26px;
    margin-top: 27px;
  }
  footer .mobile-info {
    font-size: 14px;
    margin-top: 5px;
  }
  footer .mobile-info .legal-info {
    width: 100%;
    margin-top: 13px;
  }
  footer .mobile-info .payment-methods {
    width: 100%;
    margin-top: 40px;
  }
  footer .mobile-info .payment-methods img {
    margin-left: 0;
    margin-right: 20px;
  }
  footer .toTop {
    margin-left: auto;
    margin-top: -50px;
  }
}
section.with-titles {
  padding: 166px 72px 0 110px;
}
section.with-titles .title {
  display: block;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 80px;
  color: #000000;
  text-transform: uppercase;
  line-height: 82px;
  letter-spacing: 0.03em;
}
section.with-titles .subtitle {
  display: block;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 64px;
  line-height: 95px;
  letter-spacing: 0.03em;
  color: #BCA164;
  text-transform: uppercase;
}
section.with-titles .home-reviews-titles {
  position: relative;
}
section.with-titles .home-reviews-titles a {
  position: absolute;
  right: 50px;
  bottom: 10px;
  width: 220px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-size: 18px;
  color: #BCA164;
}
section.with-titles .home-reviews-titles a svg {
  margin-left: 20px;
  animation: slideLeft 1.5s infinite;
}
section.home-confident {
  height: 700px;
  padding: 254px 0 285px 0;
  background: url("../img/main-page-confident.jpg") center center no-repeat;
  background-size: cover;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}
section.home-confident .background {
  opacity: 1;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/main-page-confident-overlay.jpg") center center no-repeat;
  background-size: cover;
}
section.home-confident .container {
  position: relative;
  z-index: 2;
  max-width: inherit;
}
section.home-confident .title {
  display: block;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 74px;
  letter-spacing: 0.25em;
  text-shadow: rgba(0, 0, 0, 0.9) 0 0 1px, rgba(0, 0, 0, 0.7) 0 0 11px;
}
section.home-confident .subtitle {
  display: block;
  padding-bottom: 30px;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-style: normal;
  font-weight: 600;
  font-size: 72px;
  line-height: 74px;
  letter-spacing: 0.05em;
  padding-top: 12px;
  text-shadow: rgba(0, 0, 0, 0.9) 0 0 1px, rgba(0, 0, 0, 0.7) 0 0 11px;
}
section.home-why .columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 115px;
  margin-bottom: 170px;
}
section.home-why .columns .column {
  position: relative;
  padding: 34px;
  border-bottom: 1px solid #BCA164;
  font-family: "Playfair Display", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 25px;
}
section.home-why .columns .column:first-of-type {
  padding-top: 19px;
  border: 1px solid #BCA164;
  font-size: 48px;
  line-height: 64px;
  letter-spacing: 0.03em;
  width: 65%;
  margin-right: 5%;
  border-right: 1px solid transparent;
}
section.home-why .columns .column:nth-of-type(2) {
  width: 30%;
}
section.home-why .columns .column:first-of-type, section.home-why .columns .column:nth-of-type(2) {
  height: 333px;
  border: 1px solid #bca164;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}
section.home-why .columns .column:nth-of-type(3), section.home-why .columns .column:nth-of-type(4), section.home-why .columns .column:nth-of-type(5) {
  width: 30%;
  height: 300px;
}
section.home-why .columns .column:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #BCA164;
  transition: 1s;
}
section.home-why .columns .column:hover {
  color: #ffffff;
}
section.home-why .columns .column:hover:before {
  width: 100%;
}
section.home-why .columns .column span {
  position: relative;
  z-index: 2;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}
section.home-gallery .gallery-items > div {
  height: 600px;
}
section.home-gallery .gallery-items > div > div {
  background-size: cover;
  background-position: center center;
  position: relative;
  width: calc(100% - 20px);
  height: 100%;
}
section.home-gallery .gallery-items .text {
  opacity: 0;
}
section.home-gallery .gallery-items .tns-slide-active .text {
  position: absolute;
  transition: opacity 1s;
  opacity: 1;
  width: 380px;
  padding: 32px 37px;
  font-size: 18px;
  background: #ffffff;
  bottom: 65px;
  left: 120px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #3D3D3D;
}
section.home-gallery .gallery-items .tns-slide-active .text:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 2px;
  margin-right: 25px;
  margin-left: 2px;
  background: #BCA164;
  vertical-align: middle;
}
section.home-gallery .gallery-items .controls {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0;
}

.home-page-reviews .item {
  position: relative;
  width: 100%;
  padding: 82px 102px;
  background: #ffffff;
}
.home-page-reviews .item .title {
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 51px;
  color: #000000;
}
.home-page-reviews .item .review {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #3D3D3D;
}
.home-page-reviews .item .review:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 2px;
  background: #BCA164;
  margin-right: 15px;
}
.home-page-reviews .item .author {
  width: 200px;
  padding-left: 60px;
  position: relative;
  margin-left: auto;
  margin-top: 30px;
}
.home-page-reviews .item .author svg {
  position: absolute;
  left: 0;
  top: 0;
}
.home-page-reviews .item .author .name {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.home-page-reviews .item .author .location {
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #B3B3B3;
}
.home-page-reviews .item .review-left, .home-page-reviews .item .review-right {
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: 0;
  background: #BCA164;
  border: 3px solid transparent;
  transition: background 1s;
  cursor: pointer;
}
.home-page-reviews .item .review-left svg, .home-page-reviews .item .review-right svg {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -9px;
  margin-top: -8px;
}
.home-page-reviews .item .review-left:hover, .home-page-reviews .item .review-right:hover {
  border: 3px solid #BCA164;
  background: #D4B367;
}
.home-page-reviews .item .review-left {
  left: 0;
}
.home-page-reviews .item .review-right {
  right: 0;
}
.home-page-reviews .tns-slide-active + .tns-slide-active .item .review-left, .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-right {
  display: none;
}
.home-page-reviews .tns-slide-active + .tns-slide-active + .tns-slide-active .item {
  background: #ffffff;
}
.home-page-reviews .tns-slide-active + .tns-slide-active + .tns-slide-active .item .review-left, .home-page-reviews .tns-slide-active + .tns-slide-active + .tns-slide-active .item .review-right {
  display: block;
}

.home-form form {
  margin: 92px 0 0 0;
}
.home-form form .line-1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 94px;
}
.home-form form .line-1 .column-left {
  width: 40%;
}
.home-form form .line-1 .column-middle {
  width: 25%;
}
.home-form form .line-1 .column-right {
  width: 25%;
}
.home-form form .line-2 {
  display: flex;
  justify-content: space-between;
}
.home-form form .line-2 .column-left {
  width: 100%;
  margin-right: 5%;
}
.home-form form .line-2 .column-right {
  width: 180px;
}

section.prepayment {
  padding: 100px 72px 0;
}
section.prepayment .title {
  display: block;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 80px;
  color: #000;
  text-transform: uppercase;
  line-height: 82px;
  letter-spacing: 0.03em;
}
section.prepayment .subtitle {
  display: block;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #bca164;
  text-transform: uppercase;
}
section.prepayment form {
  margin: 100px 0 0 0;
  font-family: Roboto, sans-serif;
}
section.prepayment form a {
  color: #BCA164;
}
section.prepayment form .line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
}
section.prepayment form .column {
  width: 48%;
}
section.prepayment.with-titles .wysiwyg p.subtitle {
  font-size: 64px;
}

.default-page {
  padding: 110px 72px 0 110px;
}
.default-page .wysiwyg h1, .default-page .wysiwyg h2, .default-page .wysiwyg h3, .default-page .wysiwyg h4, .default-page .wysiwyg h5, .default-page .wysiwyg h6 {
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  margin-bottom: 1.8rem;
  margin-top: 3rem;
  color: #000000;
}
.default-page .wysiwyg h1 {
  margin-bottom: 2.2rem;
  display: block;
  font-size: 80px;
  text-transform: uppercase;
  line-height: 82px;
  letter-spacing: 0.03em;
  font-weight: normal;
}
.default-page .wysiwyg h2 {
  font-size: 3rem;
  margin-bottom: 1.8rem;
}
.default-page .wysiwyg h3 {
  font-size: 2rem;
  margin-bottom: 1.8rem;
}
.default-page .wysiwyg h4 {
  font-size: 1.5rem;
  line-height: 1.25;
}
.default-page .wysiwyg h5 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.default-page .wysiwyg h6 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.default-page .wysiwyg p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 16.5px;
  color: #000000;
}

@media (max-width: 1000px) {
  .home-page-reviews .item .review-left, .home-page-reviews .item .review-right, .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-left, .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-right {
    display: block;
    bottom: 50%;
    transform: translateY(50%);
    background: none;
    width: 30px;
    transition: none;
  }
  .home-page-reviews .item .review-left:hover, .home-page-reviews .item .review-right:hover, .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-left:hover, .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-right:hover {
    background: none;
    border: 3px solid transparent;
  }
  .home-page-reviews .item .review-left svg path, .home-page-reviews .item .review-right svg path, .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-left svg path, .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-right svg path {
    fill: #BCA164;
    stroke: #BCA164;
  }
  .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-left {
    left: auto;
    right: -15px;
  }
  .home-page-reviews .tns-slide-active + .tns-slide-active .item .review-right {
    right: auto;
    left: -15px;
  }
  section.with-titles {
    padding-left: 40px;
    padding-right: 40px;
  }
  section.with-titles .title {
    font-size: 60px;
    line-height: 82px;
  }
  section.with-titles .subtitle {
    font-size: 52px;
    line-height: 82px;
  }
  section.default-page {
    padding-left: 40px;
    padding-right: 40px;
  }
  section.with-titles .home-reviews-titles a {
    right: 0;
    bottom: -40px;
  }
  section.home-gallery .gallery-items > div > div {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .home-page-reviews .item {
    padding: 50px 70px 25px;
  }
  .home-page-reviews .item .title {
    font-size: 20px;
    line-height: 42px;
    letter-spacing: 0.05em;
  }
  .home-page-reviews .item .review {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.1em;
  }
  section.home-confident {
    height: 520px;
    padding: 170px 0;
  }
  section.home-confident .title {
    font-size: 36px;
    line-height: 74px;
    letter-spacing: 0.25em;
  }
  section.home-confident .subtitle {
    font-size: 60px;
    line-height: 74px;
    letter-spacing: 0.05em;
  }
  section.home-why .columns .column {
    padding: 10px 0 0 15px;
  }
  section.home-why .columns .column span {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0.02em;
  }
  section.home-why .columns .column:first-of-type {
    padding: 0 15px 0;
  }
  section.home-why .columns .column:first-of-type span {
    font-size: 40px;
    line-height: 53px;
    letter-spacing: 0.03em;
  }
  section.home-why .columns .column:first-of-type, section.home-why .columns .column:nth-of-type(2) {
    min-height: 210px;
    height: auto;
  }
  section.home-why .columns .column:nth-of-type(3), section.home-why .columns .column:nth-of-type(4), section.home-why .columns .column:nth-of-type(5) {
    min-height: 210px;
    height: auto;
    margin-bottom: 0;
  }
  section.home-gallery .gallery-items > div {
    height: 400px;
  }
  section.home-gallery .gallery-items .tns-slide-active .text {
    padding: 25px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.1em;
  }
  section.prepayment .title {
    font-size: 50px;
    line-height: 1.2;
    margin: 0 0 20px 0;
  }
  section.prepayment form {
    margin: 50px 0 0;
  }
  section.prepayment form .line {
    margin: 0;
  }
  section.prepayment form .column {
    width: 100%;
    margin: 20px 0;
  }
}
@media (max-width: 500px) {
  section.with-titles {
    padding: 50px 30px 0;
  }
  section.with-titles .title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.03em;
  }
  section.with-titles .subtitle {
    font-size: 28px;
    line-height: 45px;
    letter-spacing: 0.03em;
  }
  section.with-titles .home-reviews-titles a {
    width: 200px;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.05em;
    bottom: -46px;
  }
  .home-page-reviews-bg .content {
    padding-top: 70px;
    padding-bottom: 55px;
  }
  .home-page-reviews .item {
    padding: 18px 46px;
  }
  .home-page-reviews .item .review {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.1em;
    margin-top: 10px;
  }
  .home-page-reviews .item .author {
    width: inherit;
  }
  section.home-confident {
    height: 400px;
    padding: 140px 0;
  }
  section.home-confident .title {
    font-size: 26px;
    line-height: 32px;
    padding: 0 50px;
  }
  section.home-confident .subtitle {
    font-size: 28px;
    line-height: 54px;
    padding-bottom: 10px;
  }
  section.home-confident .bottom-line:before {
    width: 200px;
  }
  section.home-why .columns {
    margin-top: 55px;
    margin-bottom: 60px;
  }
  section.home-why .columns .column {
    padding: 8px 0 0 5px;
    line-height: 1px;
    margin-bottom: 40px;
  }
  section.home-why .columns .column span {
    font-size: 14px;
    line-height: 22px;
  }
  section.home-why .columns .column:first-of-type {
    padding: 0 0 0 5px;
    line-height: 7px;
  }
  section.home-why .columns .column:first-of-type span {
    font-size: 20px;
    line-height: 27px;
  }
  section.home-why .columns .column:first-of-type, section.home-why .columns .column:nth-of-type(2) {
    min-height: 100px;
  }
  section.home-why .columns .column:nth-of-type(3), section.home-why .columns .column:nth-of-type(4), section.home-why .columns .column:nth-of-type(5) {
    min-height: 100px;
    width: 31%;
  }
  section.home-gallery .gallery-items .tns-slide-active .text {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.1em;
    bottom: 113px;
    width: 260px;
    left: 35px;
  }
  section.home-gallery .gallery-items .controls {
    bottom: 49px;
    right: auto;
    left: 231px;
  }
  .home-form form {
    margin-top: 58px;
  }
  .home-form form .line-1, .home-form form .line-2 {
    flex-wrap: wrap;
    margin: 0;
  }
  .home-form form .line-1 .column-left, .home-form form .line-1 .column-middle, .home-form form .line-1 .column-right, .home-form form .line-2 .column-left, .home-form form .line-2 .column-middle, .home-form form .line-2 .column-right {
    width: 100%;
    margin-bottom: 65px;
    margin-right: 0;
  }
  .home-form form .line-2 .column-right {
    margin-bottom: 0;
  }
  section.default-page {
    padding: 10px 30px 0;
  }
  section.default-page .wysiwyg h1 {
    font-size: 32px;
  }
  section.default-page .wysiwyg h2 {
    font-size: 28px;
  }
  section.default-page .wysiwyg h3 {
    font-size: 26px;
  }
  section.default-page .wysiwyg h4 {
    font-size: 24px;
  }
  section.default-page .wysiwyg h5 {
    font-size: 22px;
  }
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.mobile-menu {
  visibility: hidden;
  position: fixed;
  z-index: 2;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0491B0;
  padding: 56px 120px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  transition: 0.3s all;
}
.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu .content {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mobile-menu .content a {
  color: #ffffff;
  text-decoration: none;
}
.mobile-menu .languages {
  width: 100%;
}
.mobile-menu .languages ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .languages ul li {
  display: inline-block;
  margin: 0 20px 0 0;
}
.mobile-menu .socials {
  display: none;
  margin-right: 100px;
}
.mobile-menu .socials a {
  display: inline-block;
  vertical-align: top;
  margin-right: 35px;
}
.mobile-menu .services {
  width: 100%;
}
.mobile-menu .services ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .services ul li {
  display: inline-block;
  margin: 0 40px 30px 0;
}
.mobile-menu .services ul li a {
  font-size: 38px;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-style: normal;
  font-weight: 500;
  line-height: 74px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.mobile-menu .bottom-info {
  display: flex;
}
.mobile-menu .bottom-info .address {
  margin-right: 50px;
}
.mobile-menu .bottom-info .socials {
  display: block;
}

@media (max-width: 1000px) {
  .mobile-menu {
    padding: 40px;
  }
  .mobile-menu .content {
    padding: 0;
  }
  .mobile-menu .services ul li {
    margin: 0 35px 20px 0;
  }
  .mobile-menu .services ul li a {
    font-size: 28px;
    line-height: 74px;
    letter-spacing: 0.03em;
  }
  .mobile-menu .bottom-info {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.05em;
  }
  .mobile-menu .bottom-info .socials {
    margin-right: 50px;
  }
  .mobile-menu .bottom-info .socials a:last-of-type {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding: 32px 56px;
  }
  .mobile-menu .socials {
    display: block;
  }
  .mobile-menu .content {
    flex-flow: column;
  }
  .mobile-menu .languages ul li {
    display: block;
    margin-bottom: 17px;
  }
  .mobile-menu .socials {
    margin-right: 0;
  }
  .mobile-menu .services ul li {
    display: block;
    margin: 0;
  }
  .mobile-menu .services ul li a {
    font-size: 20px;
    line-height: 54px;
    letter-spacing: 0.03em;
  }
  .mobile-menu .bottom-info {
    flex-flow: column;
  }
  .mobile-menu .bottom-info .socials {
    display: none;
  }
  .mobile-menu .bottom-info .address {
    margin-bottom: 20px;
  }
}

.number-field-book {
  position: relative;
  height: 40px;
  width: 120px;
  margin: 0 auto;
}
.number-field-book .pluss,
.number-field-book .minuss {
  position: absolute;
  z-index: 2;
  top: 8px;
  width: 24px;
  height: 24px;
  background-color: rgba(114, 128, 157, 0.1);
  border-radius: 4px;
  color: #72809d;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5rem;
  text-align: center;
}
.number-field-book .pluss:hover,
.number-field-book .minuss:hover {
  background-color: rgba(114, 128, 157, 0.6);
  color: #fff;
}
.number-field-book .pluss {
  right: 0;
}
.number-field-book .minuss {
  left: 0;
}
.number-field-book input {
  border: none;
  text-align: center;
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #2d4059;
  -moz-appearance: textfield;
}
.number-field-book input::-webkit-outer-spin-button,
.number-field-book input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.filter {
  padding: 16px 40px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid rgba(169, 172, 181, 0.2);
}
.filter .columns {
  display: flex;
  justify-content: space-between;
}
.filter .column.general {
  width: 50%;
}
.filter .column.general .rounded .field:first-of-type {
  border-right: 1px solid rgba(114, 128, 157, 0.3);
}
.filter .column.person {
  width: 310px;
  color: #72809d;
}
.filter .column.person .field {
  width: 100%;
}
.filter .column.button {
  width: 25%;
}
.filter .rounded {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid rgba(114, 128, 157, 0.3);
  align-items: center;
  height: 48px;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  padding: 0 20px;
}
.filter .rounded .field:first-of-type {
  padding-right: 10px;
}
.filter .rounded .field:last-of-type {
  padding-left: 10px;
}
.filter .field {
  display: flex;
  position: relative;
  width: 50%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.filter .field svg {
  fill: #aab3c4;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.filter .field .number-field {
  position: relative;
  height: 100%;
  margin: 0 0 0 15px;
}
.filter .field .plus, .filter .field .minus {
  position: absolute;
  z-index: 2;
  top: 12px;
  width: 24px;
  height: 24px;
  background-color: rgba(114, 128, 157, 0.1);
  border-radius: 4px;
  color: #72809d;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5rem;
  text-align: center;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.filter .field .plus:hover, .filter .field .minus:hover {
  background-color: rgba(114, 128, 157, 0.6);
  color: #fff;
}
.filter .field .plus {
  right: 0;
}
.filter .field .minus {
  left: 0;
}
.filter .field input {
  border: none;
  text-align: left;
  outline: none;
  width: 100%;
  padding: 0;
  font-size: 16px;
  color: #3d3d3d;
}
.filter .field input::-moz-placeholder {
  color: #aab3c4;
}
.filter .field input::placeholder {
  color: #aab3c4;
}
.filter .field input[type=number] {
  width: 100%;
  height: 100%;
  color: #2d4059;
  text-align: center;
  -moz-appearance: textfield;
}
.filter .field input[type=number]::-webkit-outer-spin-button, .filter .field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filter .field select {
  border-bottom: 0;
  font-family: "Roboto", sans-serif;
}
.filter .submit {
  width: 100%;
  padding: 9px 10px;
  font-size: 14px;
  color: #BCA164;
}

/* ===== Premium tours filters UX ===== */
.filter__hint{
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #72809d;
  font-family: "Roboto", sans-serif;
}

.filter__buttons{
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter__buttons .submit,
.filter__buttons .filter__reset{
  width: 100%;
}

.filter__reset{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
}

.filter__error{
  display: none;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #a60000;
  font-family: "Roboto", sans-serif;
}

.filter__error.is-visible{
  display: block;
}

.filter select.is-invalid{
  border-bottom: 1px solid rgba(166, 0, 0, 0.45);
  color: #2d4059;
}

.filter__buttons button.submit.inversed:hover {
  color:#bca164 !important;
}

.filter__buttons a.button.submit:hover {
  color:#fff !important;
}

.filter__buttons a.button.submit {
  color:#bca164;
  padding:9px 10px;
  font-size:14px;
}

@media (max-width: 1200px) {
  .filter .column.general {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .filter .columns {
    flex-wrap: wrap;
  }
  .filter .columns .column {
    margin-bottom: 10px;
  }
  .filter .columns .column.general {
    width: 64%;
  }
  .filter .columns .column.person {
    width: 33%;
  }
  .filter .columns .column.button {
    width: 100%;
  }
  .filter__buttons{
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .filter .columns .column.general {
    width: 100%;
  }
  .filter .columns .column.person {
    width: 49%;
  }
  .filter .columns .column.button {
    width: 49%;
  }
  .filter__hint{
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }
}
@media (max-width: 400px) {
  .filter .columns .column.general, .filter .columns .column.person, .filter .columns .column.button {
    width: 100%;
  }
}

.products {
  padding-left: 40px;
  padding-right: 40px;
}
.products .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0 0 0;
}
.products .list:after {
  content: "";
  flex: 1 1 100%;
  max-width: 30%;
}
.products .list .item {
  width: 30%;
  margin-bottom: 30px;
  border: 1px solid rgba(114, 128, 157, 0.1);
  border-radius: 10px 10px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  transition: 0.5s all;
}
.products .list .item:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.products .list .item .image {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.products .list .item .image .image-wrap {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: 0.4s all;
}
.products .list .item .image .image-wrap:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}
.products .list .item .image .short-details {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #ffffff;
}
.products .list .item .image .short-details .name {
  margin: 0 0 10px 0;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 24px;
}
.products .list .item .image .short-details .name a {
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
}
.products .list .item .image .short-details .price {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
.products .list .item .image .short-details .price .from {
  display: block;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 400;
  margin-right: 10px;
}
.products .list .item .image .short-details .price span {
  font-size: 24px;
  font-weight: bold;
}
.products .list .item .image .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  padding: 8px 19px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
}
.products .list .item .image:hover .image-wrap {
  transform: scale(1.05);
}
.products.related {
  margin: 20px 0 0 0;
}

@media (max-width: 1200px) {
  .products .list .item .image {
    height: 200px;
  }
}
@media (max-width: 992px) {
  .products .list .item {
    width: 48%;
  }
  .products .list .item .image .short-details .name {
	font-size: 20px;
  }
  .products .list .item .image .short-details .price span {
	font-size: 22px;
  }
}
@media (max-width: 576px) {
  .products .list {
    justify-content: center;
  }
  .products .list .item {
    width: 100%;
  }
}
.product-detailed .top-info {
  position: relative;
  margin-top: -125px;
}
.product-detailed .top-info:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  margin-left: -50%;
  background: #ffffff;
}
.product-detailed .top-info .columns {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
}
.product-detailed .top-info .columns .characteristics {
  width: 100%;
}
.product-detailed .top-info .columns .characteristics p {
  width: 33%;
  color: #3d3d3d;
  justify-content: center;
}
.product-detailed .top-info .columns .characteristics p svg {
  fill: #3d3d3d;
  width: 25px;
}
.product-detailed .top-info .columns .characteristics p:nth-of-type(1), .product-detailed .top-info .columns .characteristics p:nth-of-type(2) {
  position: relative;
}
.product-detailed .top-info .columns .characteristics p:nth-of-type(1)::before, .product-detailed .top-info .columns .characteristics p:nth-of-type(2)::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(169, 172, 181, 0.3);
  transform: rotate(30deg);
}
.product-detailed .top-info .columns .price {
  min-width: 380px;
  background: #3d3d3d;
  padding: 24px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.75;
}
.product-detailed .top-info .columns .price span {
  display: block;
}
.product-detailed .top-info .columns .price .amount {
  font-size: 32px;
  font-weight: 600;
}
.product-detailed .product-detailed-description .heading-title {
  color: #000000;
  font-family: "Playfair Display", serif;
}
.product-detailed .product-detailed-description .columns {
  display: flex;
  justify-content: space-between;
}
.product-detailed .product-detailed-description .columns .description {
  width: 90%;
  padding: 0 20px 0 0;
}
.product-detailed .product-detailed-description .columns .description .product-gallery .slider {
  position: relative;
  font-size: 0;
}
.product-detailed .product-detailed-description .columns .description .product-gallery .slider .controls {
  position: absolute;
  bottom: 0;
  width: 64px;
  font-size: 0;
}
.product-detailed .product-detailed-description .columns .description .product-gallery .thumbnails {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  width: 100%;
}
.product-detailed .product-detailed-description .columns .description .product-gallery .thumbnails li {
  width: 32%;
  align-items: center;
}
.product-detailed .product-detailed-description .columns .description .product-gallery .thumbnails li.tns-nav-active {
  opacity: 0.5;
}
.product-detailed .product-detailed-description .columns .description .product-gallery .thumbnails li img {
  height: 50px;
}
.product-detailed .product-detailed-description .columns .description .services .characteristics {
  margin: 0;
  flex-wrap: wrap;
}
.product-detailed .product-detailed-description .columns .description .services .characteristics p {
  width: 33.3%;
  margin: 5px 0 20px 0;
}
.product-detailed .product-detailed-description .columns .description .services .characteristics p svg {
  fill: #000000;
}
.product-detailed .product-detailed-description .columns .sidebar {
  min-width: 380px;
}
.product-detailed .product-detailed-description .columns .sidebar .reservation {
  font-family: "Roboto", sans-serif;
  border: 1px solid rgba(169, 172, 181, 0.2);
  border-top: 0;
  padding: 24px;
  border-radius: 0 0 6px 6px;
}
.product-detailed .product-detailed-description .columns .sidebar .reservation button {
  font-weight: 700;
  font-size: 16px;
}
.product-detailed .pricing-plans-wrapper {
  margin: 50px 0 30px 0;
}
.product-detailed .pricing-plans-wrapper .pricing-plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 950px;
  margin: auto;
}
.product-detailed .pricing-plans-wrapper .pricing-plan {
  width: calc(50% - 20px);
  margin: 10px; /* Adjust based on your preference */
  border-radius: 6px;
  overflow: hidden;
}
.product-detailed .pricing-plans-wrapper .top-block {
  background-color: #bca164;
  color: white;
  padding: 20px;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  text-align: center;
}
.product-detailed .pricing-plans-wrapper .middle-block {
  background-color: #3d3d3d;
  padding: 20px;
  text-align: center;
}
.product-detailed .pricing-plans-wrapper .middle-block p {
  color: white !important;
  font-size: 2em;
  font-weight: 800;
  line-height: 0;
}
.product-detailed .pricing-plans-wrapper .bottom-block {
  background-color: white;
  color: black;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  border: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #3d3d3d;
}
.product-detailed .pricing-plans-wrapper .bottom-block ul {
  padding: 0;
}
.product-detailed .pricing-plans-wrapper .bottom-block ul li {
  padding: 5px 0;
}

@media (max-width: 768px) {
  .product-detailed .top-info {
    margin: 0;
    padding: 0;
  }
  .product-detailed .top-info .columns {
    flex-wrap: wrap;
  }
  .product-detailed .top-info .columns .price {
    min-width: inherit;
    width: 100%;
    text-align: center;
  }
  .product-detailed .product-detailed-description .columns {
    flex-direction: column-reverse;
  }
  .product-detailed .product-detailed-description .columns .description {
    width: 100%;
    padding: 0 20px;
  }
  .product-detailed .product-detailed-description .columns .sidebar {
    min-width: inherit;
  }
}
@media (max-width: 1050px) {
  .product-detailed .pricing-plans-wrapper .pricing-plan {
    width: 100%;
  }
}
.contact-contacts .columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 54px;
}
.contact-contacts .columns .column {
  width: 30%;
  margin-bottom: 20px;
  min-width: 200px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 1.75;
  color: #000000;
}
.contact-contacts .columns .column span {
  display: block;
  margin: 0 0 16px 0;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-size: 24px;
  font-weight: bold;
}
.contact-contacts .columns .column p {
  color: #000000;
}
.contact-contacts .columns .column a {
  color: #54647b;
}

.contact-map {
  margin-top: 44px;
}

.contact-form {
  margin-top: 140px;
}
.contact-form .title {
  display: block;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  font-weight: 700;
  line-height: 1.15;
  font-size: 48px;
  text-align: center;
  color: #000;
}
.contact-form .form input, .contact-form .form textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(114, 128, 157, 0.3);
  border-radius: 6px;
  box-shadow: none;
  color: #3d3d3d;
  line-height: 1;
  height: 48px;
  padding: 18px;
  position: relative;
  font-family: "Roboto", sans-serif;
}
.contact-form .form input:focus, .contact-form .form textarea:focus {
  border: 1px solid #c9a96a;
  box-shadow: 0 4px 10px rgba(201, 169, 106, 0.12);
}
.contact-form .form textarea {
  height: 120px;
}
.contact-form .form .button {
  display: block;
  margin: 0 auto;
  max-width: 170px;
  font-size: 16px;
  font-weight: 600;
}
.contact-form .form .row {
  /*display: flex;*/
  margin-bottom: 20px;
}
span.wpcf7-form-control-wrap input {
    margin-bottom: 20px; /* Adjust the value as needed */
}

/* Optional: To prevent the margin from affecting the last item */
span.wpcf7-form-control-wrap:last-child input {
    margin-bottom: 0;
}
.contact-form .form .row .wpcf7-form-control-wrap {
  width: 100%;
}
/*.contact-form .form .row.two-fields {
  justify-content: space-between;
}*/
.contact-form .form .row.two-fields input:first-of-type, .contact-form .form .row.two-fields .wpcf7-form-control-wrap:first-of-type {
  margin-right: 20px;
}

@media (max-width: 1000px) {
  .contact-form {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.services-page .title {
  margin-bottom: 40px;
}
.services-page .content > .wysiwyg {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  margin-top: -1px;
  padding: 48px 0;
}
.services-page .content > .wysiwyg:first-of-type {
  border-top: none;
}
.services-page .benefits {
  margin: 48px 0;
}
.services-page .benefits .row {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
  justify-content: space-between;
}
.services-page .benefits .row .column {
  width: 47%;
}
.services-page .benefits .row .column.full-width {
  width: 100%;
}
.services-page .benefits .row:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 1400px) {
  .services-page .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .services-page .benefits .row {
    flex-wrap: wrap;
  }
  .services-page .benefits .row .column {
    width: 100%;
  }
  .services-page .benefits .row:nth-of-type(2n) {
    flex-direction: inherit;
  }
}

.error-page {
  padding: 170px 0 0;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
.error-page .mask-object {
  display: block;
  margin: 0 auto 20px;
  width: 50vw;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.8, 1);
}
@media (max-width: 1400px) {
  .error-page .mask-object {
    width: 40vw;
  }
}
@media (max-width: 1000px) {
  .error-page .mask-object {
    width: 50vw;
  }
}
@media (max-width: 500px) {
  .error-page {
    padding-bottom: 100px;
  }
  .error-page .mask-object {
    width: 70vw;
  }
}

/* =========================================================
   404 PAGE — premium composition
   ========================================================= */

.error-page__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.error-page__eyebrow{
  margin: 0 0 18px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #72809d;
}

.error-page__title{
  max-width: 780px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #000000;
}

.error-page__lead{
  max-width: 720px;
  margin: 18px auto 0;
}

.error-page__lead p{
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #54647b;
}

.error-page__actions{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.error-page__actions .button.submit{
  width: auto;
  max-width: none;
  min-width: 220px;
  padding-left: 26px;
  padding-right: 26px;
}

.error-page__divider{
  position: relative;
  width: 110px;
  height: 1px;
  margin: 42px auto 28px;
  background: rgba(188, 161, 100, 0.45);
}

.error-page__divider::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BCA164;
  transform: translate(-50%, -50%);
}

.error-page__quick{
  max-width: 760px;
  margin: 0 auto;
}

.error-page__quick-title{
  margin: 0 0 14px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #72809d;
}

.error-page__quicklinks{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.error-page__quicklinks a{
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #000000;
}

.error-page__support{
  max-width: 720px;
  margin: 26px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(188, 161, 100, 0.24);
  border-radius: 14px;
  background: rgba(188, 161, 100, 0.05);
}

.error-page__support p{
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #2d4059;
}

.error-page__support .premium-link{
  color: #000000;
}

/* ---------- Tablet ---------- */
@media (max-width: 768px){
  .error-page__inner{
    padding: 0 20px 36px;
  }

  .error-page__lead p{
    font-size: 16px;
    line-height: 1.75;
  }

  .error-page__actions{
    flex-direction: column;
  }

  .error-page__actions .button.submit{
    width: min(100%, 320px);
  }

  .error-page__quicklinks{
    gap: 10px 18px;
  }

  .error-page__support{
    padding: 16px 18px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 500px){
  .error-page__eyebrow{
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .error-page__lead{
    margin-top: 14px;
  }

  .error-page__lead p{
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .error-page__divider{
    margin: 34px auto 22px;
  }

  .error-page__quick-title{
    font-size: 11px;
  }

  .error-page__quicklinks a{
    font-size: 14px;
  }

  .error-page__support{
    margin-top: 22px;
    padding: 16px;
  }

  .error-page__support p{
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================
   SINGLE ORDERS (single-orders.php)
   ========================= */

.single-orders{
  --order-gutter: clamp(24px, 5vw, 110px);
  --order-max: 1100px;
  --order-border: rgba(114, 128, 157, 0.25);
  --order-muted: #72809d;
}

/* consistent gutters + readable width */
.single-orders .order-headers,
.single-orders .order-manager-message,
.single-orders .order-summary,
.single-orders .order-form,
.single-orders .extra-contacts{
  padding-left: var(--order-gutter);
  padding-right: var(--order-gutter);
}

.single-orders .order-headers .container,
.single-orders .order-manager-message .container,
.single-orders .order-summary .container,
.single-orders .order-form .container,
.single-orders .extra-contacts .container{
  max-width: var(--order-max);
}

/* ===== Header ===== */
.single-orders .order-headers{
  padding-top: clamp(24px, 4vw, 48px);
  text-align: center;
  color: #000;
}

.single-orders .order-headers h1{
  margin: 0 0 clamp(18px, 2vw, 28px);
  padding: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* Header layout (class-based, no nth-child) */
.single-orders .order-headers .columns.order-header{
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr 1fr;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}

.single-orders .order-headers .columns.order-header .column{
  width: auto; /* overrides old 50% widths */
}

.single-orders .order-headers .order-qr{
  justify-self: center;
}

.single-orders .order-headers .order-meta{
  text-align: left;
  padding: 14px 18px;
  border: 1px solid var(--order-border);
  border-radius: 12px;
  font-family: "Roboto", sans-serif;
}

.single-orders .order-headers .order-meta .label{
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--order-muted);
  margin-bottom: 6px;
}

.single-orders .order-headers .order-meta .value{
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #000;
  font-variant-numeric: tabular-nums;
}

/* ===== Manager message / Summary message ===== */
.single-orders .order-manager-message{
  font-size: 16px;
}
.single-orders .order-manager-message p{
  padding: 18px 0 0;
  font-family: "Roboto", sans-serif;
  color: #000;
}

.single-orders .order-summary .order-summary-message{
  padding: 18px 0 0;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #000;
}

/* ===== Items list ===== */
.single-orders .order-summary .order-items .item{
  border-top: 1px solid var(--order-border);
  padding-top: 18px;
  margin-top: 18px;
}
.single-orders .order-summary .order-items .item:first-child{
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

/* heading row */
.single-orders .order-summary .item .heading-title{
  margin: 0;
  padding: 14px 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: clamp(12px, 2vw, 32px);
  align-items: center;
}

.single-orders .order-summary .item .heading-title.toggle{
  padding-left: 0;  /* kill global .toggle padding */
  cursor: pointer;
}

.single-orders .order-summary .item .item-name{
  width: auto;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  color: #000;
}

/* toggle icon becomes flow item (no absolute) */
.single-orders .order-summary .item .heading-title.toggle .button{
  position: relative;
  left: auto;
  top: auto;
  margin: 0;
  transform: none;
  flex: 0 0 auto;
}

.single-orders .order-summary .item .item-date{
  width: auto;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  gap: 18px;
}

.single-orders .order-summary .item .item-date span{
  margin-left: 0;
  color: var(--order-muted);
}

.single-orders .order-summary .item .item-price{
  width: auto;
  margin: 0;
  text-align: right;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #000;
}

/* content indentation + spacing */
.single-orders .order-items .toggle-content{
  padding: 0 0 22px calc(20px + 14px);
  margin: 10px 0 6px 0;
}

/* ===== Opened item content (thumb 1/3 + comment 2/3, text full width) ===== */
.single-orders .order-items .toggle-content .wysiwyg{
  display: grid;
  grid-template-columns: 1fr 2fr; /* 1/3 + 2/3 */
  gap: 18px 24px;
  align-items: stretch;
}

/* thumb */
.single-orders .order-items .toggle-content .wysiwyg > img{
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  border: 1px solid var(--order-border);
  justify-self: start;
  align-self: stretch;
  object-fit: cover;
  height: 100%;
  max-height: 140px;
}

/* comment */
.single-orders .order-items .toggle-content .wysiwyg > .custom-comment{
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(188,161,100,0.28);
  background: rgba(188,161,100,0.06);
  border-radius: 12px;
  margin: 0;
}

.single-orders .order-items .toggle-content .custom-comment .title{
  margin: 0 0 8px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--order-muted);
}

.single-orders .order-items .toggle-content .custom-comment p{
  margin: 0;
}

.single-orders .order-items .toggle-content .custom-comment p:not(.title){
  font-weight: 600;
  color: #000;
}

/* description becomes full width below */
.single-orders .order-items .toggle-content .wysiwyg > :not(img):not(.custom-comment){
  grid-column: 1 / -1;
}

/* text */
.single-orders .order-items .toggle-content .wysiwyg p,
.single-orders .order-items .toggle-content .wysiwyg li{
  color: #000;
  font-size: 16px;
  line-height: 1.75;
}

/* ===== Extra-info: adaptive cards (0/1/2/3 blocks) ===== */
.single-orders .order-items .toggle-content .extra-info{
  margin-top: 22px;
  display: grid;
  gap: 14px;
  align-items: stretch;
}

/* If nothing exists -> hide completely (no lines, no gaps) */
.single-orders .order-items .toggle-content .extra-info:not(:has(.column-item)):not(:has(.item-title)){
  display: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

/* Included + Not included live inside the first column -> flatten it into cards */
.single-orders .order-items .toggle-content .extra-info > .column:first-child{
  display: contents;
}

/* Base card styles:
   - .column-item = Included/Not included
   - .column:nth-child(2) = What to bring (only when it exists)
*/
.single-orders .order-items .toggle-content .extra-info .column-item,
.single-orders .order-items .toggle-content .extra-info > .column:nth-child(2){
  padding: 14px 16px;
  border: 1px solid var(--order-border);
  border-radius: 12px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.single-orders .order-items .toggle-content .extra-info .item-title{
  display: block;
  margin: 0 0 10px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--order-muted);
  font-weight: 700;
}

/* ---- Columns count (desktop) ---- */

/* 3 cards: Included + Not included + What to bring */
.single-orders .order-items .toggle-content .extra-info:has(> .column:nth-child(2)):has(.column-item + .column-item){
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 2 cards: (Included OR Not included) + What to bring */
.single-orders .order-items .toggle-content .extra-info:has(> .column:nth-child(2)):has(.column-item):not(:has(.column-item + .column-item)){
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 1 card: only What to bring */
.single-orders .order-items .toggle-content .extra-info:has(> .column:nth-child(2)):not(:has(.column-item)){
  grid-template-columns: 1fr;
}

/* No What to bring: only Included/Not included */
.single-orders .order-items .toggle-content .extra-info:not(:has(> .column:nth-child(2))):has(.column-item + .column-item){
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* No What to bring + only one of Included/Not included */
.single-orders .order-items .toggle-content .extra-info:not(:has(> .column:nth-child(2))):not(:has(.column-item + .column-item)){
  grid-template-columns: 1fr;
}

/* ===== Total ===== */
.single-orders .order-summary .order-summary{
  display: block;
  width: 100%;
  border-top: 1px solid var(--order-border);
  padding: 24px 0 10px;
  text-align: right;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

/* ===== Payment ===== */
.single-orders .order-form{
  margin: 28px 0 0;
}

.single-orders .order-form .columns{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: start;
}

.single-orders .order-form .columns .deposit,
.single-orders .order-form .columns .fullpay{
  width: auto;
}

.single-orders .order-form .columns .deposit .flex{
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.single-orders .order-form .columns .deposit input{
  margin-right: 0;
  height: 52px;
  padding: 0 18px;
  border-radius: 24px;
  border: 1px solid rgba(114, 128, 157, 0.3);
}

.single-orders .order-form .hint{
  margin: 20px 0 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
}
.single-orders .order-form .hint a{
  color: #BCA164;
}

/* ===== Extra actions ===== */
.single-orders .extra-contacts{
  margin: 60px 0 0;
}

.single-orders .extra-contacts .columns{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
}

.single-orders .extra-contacts .columns .column{
  width: auto;
}

.single-orders .extra-contacts .columns .column a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 24px;
  border: 1px solid rgba(188, 161, 100, 0.45);
  color: #BCA164;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease;
}

.single-orders .extra-contacts .columns .column a:hover{
  border-color: #BCA164;
  background-color: rgba(188, 161, 100, 0.08);
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .single-orders .order-headers .columns.order-header{
    grid-template-columns: 1fr;
  }

  .single-orders .order-form .columns{
    grid-template-columns: 1fr;
  }

  .single-orders .extra-contacts .columns{
    grid-template-columns: 1fr;
  }

  .single-orders .order-summary .item .heading-title{
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .single-orders .order-summary .item .item-price{
    text-align: left;
  }

  .single-orders .order-items .toggle-content .extra-info{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .single-orders .order-items .toggle-content{
    padding-left: 0; /* on mobile give full width */
  }

  .single-orders .order-items .toggle-content .wysiwyg{
    grid-template-columns: 1fr;
  }

  .single-orders .order-items .toggle-content .wysiwyg > .custom-comment{
    grid-column: 1;
    grid-row: auto;
  }

  .single-orders .order-items .toggle-content .wysiwyg > :not(img):not(.custom-comment){
    grid-column: 1;
  }

  .single-orders .order-items .toggle-content .wysiwyg > img{
    grid-column: 1;
    grid-row: auto;
    height: auto;
    max-height: none;
    align-self: start;
    max-width: 100%;
  }
}

@media (max-width: 576px){
  .single-orders .order-items .toggle-content{
    padding: 0;
  }

  .single-orders .order-summary .item .item-name{
    font-size: 22px;
  }
}

/* ===== Order notices (top) ===== */
.single-orders .order-notice{
  padding-left: var(--order-gutter);
  padding-right: var(--order-gutter);
  padding-top: 18px;
}
.single-orders .order-notice .container{
  max-width: var(--order-max);
}

.single-orders .order-alert{
  border-radius: 12px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.single-orders .order-alert--success{
  background: #00825a;
  color: #fff;
}

.single-orders .order-alert--cancel{
  background: rgba(166, 0, 0, 0.06);
  border: 1px solid rgba(166, 0, 0, 0.22);
  color: #000;
}

.single-orders .order-alert__link{
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.single-orders .order-alert__link:hover{ opacity: .85; }

/* ===== Paid-in-full card (bottom, premium) ===== */
.single-orders .order-paid-card{
  border: 1px solid rgba(188, 161, 100, 0.45);
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  margin:20px 0 10px;
}

.single-orders .order-paid-card__eyebrow{
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--order-muted);
  margin: 0 0 6px 0;
}

.single-orders .order-paid-card__title{
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  color: #000;
  margin: 0 0 8px 0;
}

.single-orders .order-paid-card__text{
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Deposit hint (premium, neutral) ===== */
.single-orders .order-form .order-payment-hint{
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(188, 161, 100, 0.35);
  background: rgba(188, 161, 100, 0.06);
}

.single-orders .order-form .order-payment-hint__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.single-orders .order-form .order-payment-hint__cell{
  background: #fff;
  border: 1px solid rgba(114, 128, 157, 0.20);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  min-height: 72px;
}

.single-orders .order-form .order-payment-hint__label{
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--order-muted);
}

.single-orders .order-form .order-payment-hint__value{
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  font-variant-numeric: tabular-nums;
}

.single-orders .order-form .order-payment-hint__note{
  margin: 12px 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #2d4059;
}

.single-orders .order-paid-card__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.single-orders .order-paid-card__tile{
  border: 1px solid rgba(114,128,157,.20);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.single-orders .order-paid-card__label{
  display:block;
  font-family:"Roboto",sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#72809d;
  margin-bottom:6px;
}

.single-orders .order-paid-card__value{
  display:block;
  font-family:"Roboto",sans-serif;
  font-size:18px;
  font-weight:700;
  color:#000;
  font-variant-numeric: tabular-nums;
}

.single-orders .order-form .order-amount-warning{
  display:none;
  margin-top:10px;
  font-family:"Roboto",sans-serif;
  font-size:13px;
  line-height:1.45;
  color:#2d4059;
  padding-left:4px;
}

@media (max-width: 768px){
  .single-orders .order-paid-card__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .single-orders .order-form .order-payment-hint__grid{
    grid-template-columns: 1fr;
  }
}

.flatpickr-calendar {
	font-family: "Roboto", sans-serif;	
}
.flatpickr-current-month input.cur-year {
	padding: 0 0 0 .8ch !important;
}
.numInputWrapper span {
	right: -13px !important;
}
.flatpickr-current-month .numInputWrapper span.arrowUp::after {
	border-bottom-color: #bca164 !important;
}
.flatpickr-current-month .numInputWrapper span.arrowDown::after {
	border-top-color: #bca164 !important;
}
.flatpickr-day.today {
  border-color: #bba063 !important;
  color: #bba063 !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay{
	background:#BCA164 !important;
	border-color:#BCA164 !important;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow:-10px 0 0 #BCA164 !important;
  box-shadow:-10px 0 0 #BCA164 !important;
}
.flatpickr-day.week.selected {
  border-radius:0;
  -webkit-box-shadow:-5px 0 0 #BCA164,5px 0 0 #BCA164  !important;
  box-shadow:-5px 0 0 #BCA164,5px 0 0 #BCA164  !important;
}

/* ===== Premium centered toast (replaces old ct-toast) ===== */
#ct-toast.ct-toast{
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;

  /* hidden state */
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.98);
  pointer-events: none;

  width: auto;
  min-width: 280px;
  max-width: min(560px, 92vw);

  padding: 18px 22px;
  border-radius: 16px;

  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(188,161,100,0.38);
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);

  text-align: center;
  color: #000;

  transition: opacity .22s ease, transform .22s ease;
  z-index: 999999;

  /* premium blur (optional, safe fallback if unsupported) */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#ct-toast.ct-toast--show{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#ct-toast .ct-toast__eyebrow{
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #72809d;
  margin: 0 0 8px 0;
}

#ct-toast .ct-toast__msg{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

#ct-toast.ct-toast--success{
  border-color: rgba(188,161,100,0.45);
}

#ct-toast.ct-toast--error{
  background: rgba(255,255,255,0.94);
  border-color: rgba(166,0,0,0.25);
}

#ct-toast.ct-toast--error .ct-toast__eyebrow{
  color: rgba(166,0,0,0.75);
}

#ct-toast .ct-toast__msg{
  white-space: pre-line;
}

/* ===== Prepayment result page (success / cancel) ===== */
.prepayment-result {
  padding: 70px 0 70px;
}

.prepayment-result-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 34px 36px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.prepayment-result-card__eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b8f98;
  margin-bottom: 10px;
}

.prepayment-result-card__title {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 500;
  color: #111;
}

.prepayment-result-card__text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1f2937;
  margin-bottom: 8px;
}

.prepayment-result-card__subtext {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 22px;
}

.prepayment-result-card__subtext a {
  text-decoration:none;
  color: #BCA164;
}

.prepayment-result-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.prepayment-result-card.is-success {
  border-top: 6px solid #0a8f62;
}

.prepayment-result-card.is-cancel {
  border-top: 6px solid #c27b35;
}

@media (max-width: 767px) {
  .prepayment-result {
    padding: 35px 0 50px;
  }

  .prepayment-result-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .prepayment-result-card__title {
    font-size: 30px;
  }

  .prepayment-result-card__text {
    font-size: 16px;
  }
}

/* =========================================================
   GLOBAL SELECT FIX
   ========================================================= */
select {
  padding: 5px 36px 5px 0;
  background-position: right 12px center;
  background-size: 10px auto;
}

/* селекты, у которых padding переопределён отдельно */
#reserveForm .form .row span > select {
  padding: 10px 38px 10px 18px;
  background-position: right 12px center;
}

/* =========================================================
   PREMIUM TOURS FILTERS — stable layout
   Предполагается, что у формы есть класс .js-premium-tour-filter
   ========================================================= */
.filter .js-premium-tour-filter .columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(360px, 380px);
  gap: 14px;
  align-items: start;
}

.filter .js-premium-tour-filter .column {
  width: auto;
  min-width: 0;
  margin-bottom: 0;
}

.filter .js-premium-tour-filter .column.person,
.filter .js-premium-tour-filter .column.button {
  width: auto;
}

.filter .js-premium-tour-filter .rounded {
  width: 100%;
}

.filter .js-premium-tour-filter .field {
  min-width: 0;
}

.filter .js-premium-tour-filter .field select {
  min-width: 0;
  padding-right: 36px;
}

/* кнопки */
.filter .js-premium-tour-filter .filter__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.filter .js-premium-tour-filter .filter__buttons .submit,
.filter .js-premium-tour-filter .filter__buttons .filter__reset {
  width: 100%;
  min-width: 0; /* КЛЮЧЕВОЕ: убираем глобальный 180px только тут */
  white-space: nowrap;
  padding-left: 12px;
  padding-right: 12px;
}

/* текст-подсказка и ошибка во всю ширину */
.filter .js-premium-tour-filter .filter__hint,
.filter .js-premium-tour-filter .filter__error {
  grid-column: 1 / -1;
}

/* =========================================================
   BREAKPOINTS
   ========================================================= */

/* раньше уводим в 2 ряда, потому что теснота начинается задолго до 992 */
@media (max-width: 1280px) {
  .filter .js-premium-tour-filter .columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter .js-premium-tour-filter .column.button {
    grid-column: 1 / -1;
  }

  .filter .js-premium-tour-filter .filter__buttons {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .filter .js-premium-tour-filter .columns {
    grid-template-columns: 1fr;
  }

  .filter .js-premium-tour-filter .filter__buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .filter .js-premium-tour-filter .field select,
  select {
    padding-right: 32px;
    background-position: right 10px center;
    background-size: 9px auto;
  }
}