@font-face {
    font-family: 'Great Vibes';
    src: url('../fonts/GreatVibes-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Philosopher';
    src: url('../fonts/Philosopher-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Philosopher';
    src: url('../fonts/Philosopher-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* Нативний плавний скрол до якорів, замість плагіна page-scroll-to-id */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

:root {
  --color-primary: #276980; /* Основний колір */
  --color-secondary: #1e1a17; /* Додатковий колір */
  --color-bg: #fde0d2; /* Фон */
  --color-text: var(--color-secondary); /* Основний текст */
  --color-text-light: #666; /* Світлий текст */
  --color-border: var(--color-secondary); /* Колір рамок */
  --color-button: #fefefe; /* Колір рамок */
}
a{
	color: var(--color-secondary);
}
header {
  position: relative;
}

.social-icons {
  position: fixed;
  bottom: 5rem;
  right: 16px;
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  z-index: 10;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
@media (min-width: 900px) {
  .social-icons {
    top: 50%;
    transform: translateY(-50%);
  }
}
.social-icons .social-item {
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  transition: filter 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}

@media (max-width: 900px) {
	.social-icons .social-item {
	  height: 3rem;
	  width: 3rem;
      filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
	}
}
.social-icons .social-item:hover {
  filter: drop-shadow(0px 0px 5px #fde0d2);
}
.social-icons .social-item > svg > path {
  transition: 0.4s ease;
  fill: #ffffff;
}
.social-icons .social-item:hover > svg > path {
  fill: #276980;
}
@media (max-width: 900px) {
	.social-icons{
	  pointer-events: none;
	}
}
.social-icons.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
  pointer-events: auto;
}
@media (max-width: 900px) {
  .social-icons .social-item {
    opacity: 0;
  }
}
.toggle-social {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 11;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #276980;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 900px) {
  .toggle-social {
    display: none;
  }
}
.toggle-social .icon {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  fill: white;
  stroke: white;
  transition: opacity 0.3s ease;
}
  .toggle-social .icon-close {
    opacity: 0;
  }
  .toggle-social.open .icon-open {
    opacity: 0;
  }
  .toggle-social.open .icon-close {
    opacity: 1;
  }

.social-item {
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.social-icons.active .social-item {
  opacity: 1;
  transform: translateY(0);
}

/*  */
body {
  color: #000;
  background: var(--color-bg);
  font-family: "Philosopher";
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0;
}

.wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 76px;
}
@media (max-width: 900px) {
  .wrapper {
    padding: 0 1rem;
  }
}

@media (max-width: 1440px) {
  .wrapper {
    max-width: 1140px;
  }
}
@media (max-width: 1200px) {
  .wrapper {
    max-width: 960px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}
.hero_title{
	& h2{
  color: #fefefe;
  filter: drop-shadow(3px 4px 6px rgb(0, 0, 0));
  text-align: center;
  font-size: 2rem;
	}
}
h1 {
  font-family: "Philosopher";
  font-weight: 700;
  font-size: 3rem;
  line-height: 58px;
  background: linear-gradient(264.97deg, #fefefe 63.25%, #cbcbcb 93.82%);
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  filter: drop-shadow(3px 4px 6px rgb(0, 0, 0));
  text-align: center;
}
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-family: "Philosopher";
  font-weight: 700;
  font-size: 3rem;
  background: linear-gradient(264.97deg, #3a3a3a 12.47%, #000000 64.53%);
  -webkit-background-clip: text;
  color: transparent;
  color: var(--color-secondary);
}

h3 {
  font-family: "Great Vibes";
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 24px;
  color: var(--color-primary);
  margin-left: 80px;
}

p {
  font-family: "Philosopher";
  font-size: 1.4rem;
  color: var(--color-secondary);
  line-height: 1.5rem;
}

.decorate {
  position: absolute;
  max-width: 578px;
  max-height: 578px;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(171, 110, 84, 0.774) 0%,
    rgba(171, 110, 84, 0) 50%
  );
  z-index: -1;
  border-radius: 50%;
}

@media (max-width: 620px) {
  .decorate {
    max-width: 378px;
    max-height: 378px;
  }
}
.hero {
  background: url("../img/Hero_bg.webp") center/cover no-repeat;
  height: 100vh;
  max-height: 2160px;
  display: flex;
  flex-direction: column;
  padding: 48px 16px;
}

.hero-wrapper {
  position: relative;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 900px) {
  .hero-wrapper {
    padding-top: 60px;
  }
}

.hero_logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.5));
}

.header__logo > img {
  height: 140px;
  width: auto;
  transition: 0.4s ease;
}
.header__logo > img:hover {
  transform: scale(1.03);
}

.hero_title {
  display: flex;
  flex-direction: column;
  max-width: 570px;
  gap: 16px;
  align-items: center;
}

.button-gradient {
  display: flex;
  will-change: transform;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 3rem;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--color-primary);
  overflow: hidden;
  cursor: pointer;
  transition: background-color 400ms ease;
  position: relative;
  padding: 12px 0;
  color: var(--color-button);
/*   filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.5)); */
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.5);
	&:active{
		box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	}
}

.button-gradient > p {
  margin: 0 auto;
  color: var(--color-button);
  z-index: 2;
  font-weight: 600;
}

.button-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    25deg,
    transparent 20%,
    #65b4cc 40%,
    transparent 60%
  );
  transform: translateX(0);
  transition: transform 400ms ease;
}
.button-gradient:hover:before {
  transform: translateX(-100%);
}

.hero_social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.social-arrow {
  display: flex;
  flex-direction: column;
}
#about-us{
	overflow: hidden;
}
.social-arrow img {
  height: 20px;
}

.AboutUs {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  gap: 32px 60px;
  position: relative;
}

@media (max-width: 800px) {
  .AboutUs {
    flex-wrap: wrap;
  	padding: 30px 0;
	gap: 15px;
  }
}
.AboutUs_decorate {
  top: -40px;
  left: -80px;
}
.AboutUs_imgBox{
	display:flex;
	justify-content: center;
	align-self: center;
}
.AboutUs_img {
  padding: 16px;
  border: #393939 solid 1px;
  border-radius: 6px;
  perspective: 1000px;
  display: inline-block;
}

.AboutUs_img > img {
  max-height: 428px;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(3px 4px 6px rgb(0, 0, 0));
  border-radius: 6px;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;

}
@media (max-width: 800px) {
	.AboutUs_img > img{
	  max-width: 100%;
	}
}

.AboutUs_Box {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  justify-content: center;
}

.AboutUs_Text {
  margin-top: 16px;
}

.AboutUs_button {
  margin-top: 16px;
}

.ornament_bg {
  height: 50px;
  background-image: url("../img/svg/cut.svg");
  background-repeat: repeat;
  background-size: 50px 50px;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.5));
}

.benefits {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
  gap: 30px;
}
@media (max-width: 900px) {
  .benefits {
    flex-wrap: wrap;
	gap: 15px;
	padding: 0;
  }
}

.benefits_box {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 10px);
}
@media (max-width: 900px) {
  .benefits_box {
    width: calc(50% - 30px);
  }
}
@media (max-width: 500px) {
  .benefits_box {
    width: 100%;
  }
}

.benefits_img {
  max-height: 200px;
  height: 100%;
  width: 100%;
}

.benefit_title {
  margin: 0;
}

.benefits_text {
  text-align: center;
}

.gallery {
  display: flex;
  padding: 60px 0;
  gap: 30px 16px;
  flex-wrap: wrap;
  min-width: 0;
  position: relative;
}
@media (max-width: 900px) {
  .gallery {
	gap: 15px;
	padding: 0;
  }
}
.gallery__title {
  width: 100%;
  text-align: center;
}

.mySwiper {
  flex-direction: column;
  display: flex;
  width: calc(25% - 8px);
  height: 480px;
  margin: 0 auto;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.7));
}
@media (max-width: 900px) {
  .mySwiper {
    display: none !important;
  }
}

.mySwiper2 {
  position: relative;
  width: calc(75% - 8px);
  border-radius: 6px;
  padding: 16px !important;
  border: 1px solid black;
  height: 480px;
  margin: 0 auto;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.7));
}
@media (max-width: 900px) {
  .mySwiper2 {
    width: 100%;
    padding: 0 !important;
    border: none;
  }
}

@media (max-width: 900px) {
  .mySwiper2::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid black;
    border-radius: 6px;
    pointer-events: none;
    z-index: 2;
  }
}
.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper2_swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

.mySwiper .swiper-slide {
  position: relative;
}

.mySwiper > div > div::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--color-bg);
  opacity: 0.5;
  top: 0px;
  left: 0px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.mySwiper .swiper-slide-thumb-active::after {
  display: none;
}

.swiper-pagination-horizontal {
  bottom: 1.5rem !important;
}

.swiper-pagination-bullet {
  height: 1rem !important;
  width: 1rem !important;
  opacity: 1 !important;
  background: var(--color-bg) !important;
  filter: drop-shadow(2px 2px 2px rgb(0, 0, 0));
  transition: 300ms ease;
}
.swiper-pagination-bullet:hover {
  transform: scale(1.3);
  filter: brightness(0.9) drop-shadow(2px 2px 2px rgb(0, 0, 0));
}

.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
}

.comments-bg {
  background-image: url("../img/svg/cut.svg");
  background-repeat: repeat;
  background-size: 150px 150px;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.5));
  border-top: #a59a98 3px solid;
  border-bottom: #a59a98 3px solid;
  background-attachment: fixed;
}

.comments {
  padding: 30px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.5));
}

.comments__container {
  color: #110c0d;
  font-weight: 400;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
}

.comments_columns {
  display: flex;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
}
@media (max-width: 680px) {
  .comments_columns {
    flex-direction: column;
	gap: 0;
  }
}

.column {
  width: 33%;
  z-index: 9;
  flex-direction: column;
}
@media (max-width: 900px) {
  .column {
    width: 100%;
  }
}

.column_left,
.column_right {
  position: relative;
  height: 100%;
  display: flex;
}

.column_center {
  position: relative;
  overflow-y: hidden;
  height: 100%;
  display: flex;
  margin-top: -5900px;
  transition: transform ease;
}
@media (max-width: 900px) {
  .column_center {
    display: none;
  }
}

.goodComment {
  background: #fcfcfc;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 31px;
  position: relative;
  transition: transform 0.3s ease-out;
}

.goodComment_item {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
}

.goodComment_title {
  font-weight: bold;
  align-self: flex-start;
}

.goodComment_stars {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}
.stars {
   --star-size: 2.5rem;
   --rating: 5;
   font-size: var(--star-size);
   line-height: 1;
   position: relative;
   display: inline-block;
}
.stars::before {
   content: "★★★★★";
   letter-spacing: 3px;
   background: linear-gradient(90deg, gold calc(var(--rating) * 20%), #ddd calc(var(--rating) * 20%));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}
.goodComment_data {
  align-self: flex-end;
}

.goodComment_text {
  line-height: 2rem;
}

.main-title {
  text-align: center;
  padding: 60px 0 30px 0;
  flex-direction: column;
}
@media (max-width: 900px) {
  .main-title {
	padding: 30px 0;
  }
}

.infinite-slider {
  display: flex;
  gap: 1rem;
  padding: 90px 0 30px 0 !important;
  width: auto;
  align-items: center;
  justify-content: center;
}

.infinite-slider__wrapper {
  transition-timing-function: linear !important;
}

.infinite-slider__wrapper_item {
  display: flex !important;
  white-space: nowrap;
  min-width: 100px;
  max-width: 300px;
  width: 100%;
  font-size: 3rem;
}

.infinite-slider__wrapper_item > img {
  height: 2rem;
  width: 2rem;
  object-fit: cover;
}

.food_box {
  display: flex;
  height: 60vh;
  min-height: 500px;
  transition: 1.2s ease-out;
  width: 100%;
}

.food_item {
  overflow: hidden;
  width: 25%;
  transition: 1.2s ease-out;
  position: relative;
}

.food_item > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.food_item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--color-bg);
  opacity: 0;
  top: 0;
  left: 0;
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.6s ease-out; 
}

.food_item::after {
  content: "";
  position: absolute;
  inset: 10px; 
  border: var(--color-secondary) 1px solid;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.6s ease-out;
}

.food_box:hover .food_item:not(:hover)::before {
  opacity: 0.5;
}

.wrapper-contacts {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 60px;
}

.contacts__form {
  width: calc(50% - 0.5rem);
}
@media (max-width: 680px) {
  .contacts__form {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: var(--color-secondary) 1px solid;
  }
}

.contacts__map {
  width: calc(50% - 0.5rem);
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 680px) {
  .contacts__map {
    width: 100%;
	gap: 30px;

  }
}

.contacts__item {
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: end;
}

.contacts__item p {
  text-align: end;
}

@media (max-width: 680px) {
	.contacts__item p {
	  text-align: center;
	}
	.contacts__item {
	  justify-content: center;
	}
}

.map {
  width: 100%;
  min-height: 24rem;
  border-radius: 6px;
  height: 100%;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-size: 1.4rem;
}

.form__input {
  height: 4rem;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  width: 100%;
}

.form__input:focus{
  border-color: #4CAF50; 
  border: var(--color-secondary) 1px solid;
  outline: none;
}
.form__row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.form__row > p{
  display: flex;
  flex-direction:row;
  width: 100%;
  gap: 1rem;
	& br{
		display: none;
	}
	& span {
		width: 50%;
	}
}

.form__textarea {
  min-height: 4rem;
  max-height: 12rem;
  height: 4rem;
  box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 6px;
  font-size: 1.4rem;
  width: 100%;
  resize: vertical; 
}



.form__group--checkbox {
  flex-direction: row;
  gap: 1rem;
}

.form__submit {
  color: #fefefe;
}

footer {
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-wrapper p,
.footer-wrapper a {
  color: #fff !important;
}
.footer-wrapper a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-wrapper {
    align-items: center;
    flex-direction: column;
  }
}
.footer__contacts{
 text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.footer__contacts_title {
  text-align: end;
  line-height: 1.8rem;
}

@media (max-width: 900px) {
  .footer__contacts_title {
    text-align: center;
  }
}


@keyframes socialArrowAnim {
    0% { transform: translateY(0); }
    15% { transform: translateY(-40px); }
    30% { transform: translateY(0); }
    45% { transform: translateY(-20px); }
    60% { transform: translateY(0); }
    75% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.social-arrow {
    animation: socialArrowAnim 3.5s ease-in-out infinite;
}
#privacy {
	border-radius: 6px;
	width: 1.5rem;
	height: 1.5rem;
	box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.form__submit > p{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 3rem;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--color-primary);
  overflow: hidden;
  cursor: pointer !important;
  transition: background-color 400ms ease;
  position: relative;
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.5);
	&:active{
		box-shadow: none;
	}
}
.form__submit > p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    25deg,
    transparent 20%,
    #65b4cc 40%,
    transparent 60%
  );
  transition: left 400ms ease;
	padding: 12px 0;
}

.form__submit > p:hover:before {
  left: -100%;
}
.gradient_submit{
	background: none !important;
	text-align: center;
	color: var(--color-button);
	z-index: 2;
	width: 100%;
	padding: 12px 0;
	font-size: 1.4rem;
}
/* Раніше кожне поле CF7 загортав у span, який і ділив рядок навпіл */
.form__row > p > .form__input,
.form__row > p > .field-picker {
	flex: 1 1 0;
	min-width: 0;
}
.field-picker {
	position: relative;
	display: block;
}
.field-picker .form__input {
	cursor: pointer;
}

/* Вибір дати й часу: свій, замість flatpickr */
.picker {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	z-index: 20;
	min-width: 100%;
	padding: 1rem;
	border-radius: 6px;
	background: var(--color-bg);
	box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.5);
	font-family: "Philosopher";
	color: var(--color-secondary);
}
.picker[hidden] {
	display: none;
}
.picker__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}
.picker__title {
	font-size: 1.3rem;
	font-weight: 700;
}
.picker__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2.4rem;
	height: 2.4rem;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: var(--color-primary);
	color: var(--color-button);
	cursor: pointer;
	transition: opacity 300ms ease;
}
.picker__chevron {
	display: block;
	width: 1.1rem;
	height: 1.1rem;
}
.picker__nav:disabled {
	opacity: 0.35;
	cursor: default;
}
.picker__weekdays,
.picker__grid {
	display: grid;
	grid-template-columns: repeat(7, 2.4rem);
	gap: 0.25rem;
}
.picker__weekdays {
	margin-bottom: 0.25rem;
	font-size: 1rem;
	text-align: center;
	opacity: 0.7;
}
.picker__cell {
	height: 2.4rem;
	border: 0;
	border-radius: 6px;
	background: none;
	color: var(--color-secondary);
	font-family: inherit;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background-color 200ms ease, color 200ms ease;
}
.picker__cell--empty {
	cursor: default;
}
.picker__cell:not(:disabled):hover {
	background: rgba(39, 105, 128, 0.15);
}
.picker__cell:disabled {
	opacity: 0.3;
	cursor: default;
}
.picker__cell--today:not(.picker__cell--selected) {
	box-shadow: inset 0 0 0 1px var(--color-primary);
}
.picker__cell--selected {
	background: var(--color-primary);
	color: var(--color-button);
}
.picker--time {
	/* Вміст крутилки набагато вужчий за поле вводу: не розтягуємо панель на всю
	   його ширину, інакше кнопки губляться у порожньому полі навколо */
	min-width: 0;
	width: max-content;
}
.picker__time {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.15rem;
}
.picker__time-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
}
.picker__time-value {
	min-width: 2.2rem;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}
.picker__time-sep {
	align-self: center;
	font-size: 1.4rem;
	font-weight: 700;
}
.picker__time-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.9rem;
	height: 1.6rem;
	padding: 0;
	border: 0;
	border-radius: 5px;
	background: var(--color-primary);
	color: var(--color-button);
	cursor: pointer;
	transition: opacity 300ms ease;
}
.picker__time-btn svg {
	display: block;
	width: 0.95rem;
	height: 0.95rem;
}
.picker__time-btn:disabled {
	opacity: 0.35;
	cursor: default;
}
.picker__empty {
	margin: 0;
	max-width: 18rem;
	font-size: 1.2rem;
	line-height: 1.4;
}
.picker__nav:focus-visible,
.picker__cell:focus-visible,
.picker__time-btn:focus-visible {
	outline: 2px solid var(--color-secondary);
	outline-offset: 1px;
}
.form__group.is-invalid .form__input {
	border: 1px solid #b3261e;
	box-shadow: inset 1px 1px 4px rgba(179, 38, 30, 0.5);
}
/* Пастка для ботів: прибрана з потоку, але не display:none — так її заповнюють охочіше */
.booking-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.form-status {
	font-size: 1.3rem;
	line-height: 1.4;
	min-height: 1.4em;
	opacity: 0;
	transition: opacity 300ms ease;
}
.form-status.show {
	opacity: 1;
}
.form-status.fade-out {
	opacity: 0;
}
.form-status.ok {
	color: #1b5e20;
}
.form-status.error {
	color: #b3261e;
}
.form-status.pending {
	color: var(--color-secondary);
}
.booking-form[aria-busy="true"] .gradient_submit {
	opacity: 0.6;
	cursor: progress;
}
@keyframes scaleUpAnimation {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.scale-up {
    opacity: 0;
    transform: scale(0.8);
}
.scale-up.active {
    animation: scaleUpAnimation 0.8s ease-out forwards;
}

::-webkit-scrollbar {
	width: 1rem;
}
::-webkit-scrollbar-track {
	background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
	background: var(--color-primary); 
	border:1px solid var(--color-bg);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--color-secondary);
}



/* __________________________________________________________________Price-menu___________________________________ */
:root {
  --color-primary: #276980;
  --color-secondary: #1e1a17;
  --color-bg: #fde0d2;
  --color-text: var(--color-secondary);
  --color-text-light: #666;
  --color-border: var(--color-secondary);
  --color-button: #fefefe;
  --color-menu: #f7f8f7;
}
.price-header{
	padding-top: 80px;
}
.price-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.price-header__decorate {
  width: 50%;
  padding-top: 30px;
}

.price-header__decorate-img,
.price-header__logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.price-title {
  font-family: "Philosopher", serif;
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: none;
  -webkit-background-clip: initial;
  filter: none;
  position: static;
  margin: 24px 0 40px;
}

@media (max-width: 900px) {
  .price-title {
    font-size: 2.2rem;
    margin: 16px 0 24px;
  }
}

.price-faq {
  margin-top: 40px;
  padding-bottom: 50px;
}

.price-faq h2 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 3.5rem;
}

.price-faq h2::after {
  content: "";
  position: absolute;
  background-image: url(../img/price/line.svg);
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 2.5rem;
  width: 100%;
  height: 100%;
  display: block;
  max-width: 400px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.accordion__card {
  overflow: hidden;
  cursor: pointer;
  padding: 24px 0;
}

.accordion__card:not(:last-child) {
  border-bottom: 1px dotted var(--color-secondary);
}

.accordion__card__topbox {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.accordion__card__topbox-title {
  font-family: "Philosopher";
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-secondary);
  transition: color 300ms ease;
}

.accordion__card:hover .accordion__card__topbox-title {
  color: var(--color-primary);
}

.accordion__card__topbox-icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 350ms ease;
}

.accordion__card__topbox-icon::before,
.accordion__card__topbox-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-primary);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.accordion__card__topbox-icon::before {
  width: 100%;
  height: 2px;
}

.accordion__card__topbox-icon::after {
  width: 2px;
  height: 100%;
}

.accordion__card--open .accordion__card__topbox-icon {
  transform: rotate(135deg);
}

.accordion__card__bottombox {
  overflow: hidden;
  transition: height 350ms ease;
}

.accordion__card__bottombox-text {
  padding-top: 16px;
  opacity: 1;
  transition: opacity 350ms ease;
}

.accordion--ready .accordion__card__bottombox-text {
  opacity: 0;
}

.accordion--ready .accordion__card--open .accordion__card__bottombox-text {
  opacity: 1;
}

.price-faq p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.price-faq p:last-child {
  margin-bottom: 0;
}

.price-faq a {
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .price-faq h2 {
    font-size: 1.6rem;
  }

  .accordion__card__topbox-title {
    font-size: 1.2rem;
  }

  .accordion__card {
    padding: 18px 0;
  }
}

/* Заголовки колонок для скрінрідерів: у дизайні вони не потрібні */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-table {
  width: 100%;
  border-spacing: 0 2rem;
}

caption {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  margin: 1rem 0;
  text-transform: uppercase;
}
caption::after {
  content: "";
  position: absolute;
  background-image: url(../img/price/line.svg);
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 2.5rem;
  width: 100%;
  height: 100%;
  display: block;
  max-width: 400px;
}

tbody tr:not(:last-child) {
  padding-bottom: 2rem;
}

th{
	font-size: 1.4rem;
	font-style: italic;
	text-align: right;
	color: var(--color-primary);
    font-weight: normal;
}

td{
  vertical-align: top;
}
@media (min-width: 900px) {
	.menu-item{
    	font-size: 1.4rem;
	}
}
.menu-item__name {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
  font-weight: bold;
	& span{
		border-bottom: 1px dotted #000;
	}
}

.menu-item__name small {
  display: block;
  color: #585858;
  font-size: 0.9rem;
  margin-top: 0.2rem;
  font-style: italic;
}

.menu-item__size,
.menu-item__price {
  text-align: right;
  padding-left: 0.5rem;
  font-weight: bold;
}

.price-body {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
.price-body__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.price-body__links_item {
  font-size: 1.2rem;
  color: var(--color-secondary);
  transition: 300ms;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
text-transform: capitalize;
}
.price-body__links_item:hover {
  filter: drop-shadow(0px 0px 5px #fde0d2);
}
/* Відступ, щоб липка навігація не перекривала заголовок розділу при переході за якорем */
.price-body__container_box {
  scroll-margin-top: 180px;
}
@media (min-width: 900px) {
  .price-body__container_box {
    scroll-margin-top: 20px;
  }
}

@media (min-width: 900px) {
  .price-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
  .price-body__links-wrapper {
    position: sticky;
    top: 32px;
    align-self: flex-start;
    width: 100%;
    max-width: 200px;
    max-height: 100vh;
    overflow-y: auto;
    padding: 1rem;
  }
  .price-body__container {
    flex: 1;
    padding-right: 0;
    min-width: 0;
  }
  .price-body__links a {
    padding: 8px 16px;
    background-color: var(--color-primary);
    color: var(--color-button);
    border-radius: 6px;
    text-decoration: none;
  }

}
@media (max-width: 900px) {
.price-body__links-wrapper {
  position: sticky;
  top: 80px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: 1.5rem 1rem;
  background-color: var(--color-bg);
  z-index: 8;
  transform: translateX(-1.5rem);
  width: calc(100% + 2.5rem);
  max-width: calc(100% + 3rem);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  transition: 0.3s linear;
}
  .price-body__links {
    display: inline-flex;
    flex-direction: row;
    gap: 1rem;
  }
  .price-body__links a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 16px;
    background-color: var(--color-primary);
    color: var(--color-button);
    border-radius: 6px;
    text-decoration: none;
  }
}

.menu-item__name {
  width: auto;

}

.menu-item__size,
.menu-item__price {
  width: 80px;
  max-width: 80px;
}
.menu-table__thead{}
.menu-table__thead-left{
text-align: center;
}
.menu-table {
  border-collapse: separate;
  border-spacing: 0 2vw; /*вертикальний відступ між рядками */
}
.footer-wrapper{
    background-color: var(--color-primary);
}
.footer-pad{
	padding: 60px 0;
}

.numInput{
	font-size: 2rem !important;
}