@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/static/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
  box-sizing: border-box;
}

:root {
  --gb: rgba(27, 34, 34, 1);
  --blck: rgba(39, 23, 17, 1);
  --gr: rgba(127, 125, 137, 1);
  --green: rgba(203, 216, 50, 1);
  --yellow: rgba(255, 206, 27, 1);
  --blue: rgba(77, 139, 243, 1);
}

a {
  text-decoration: none;
  color: var(--blck);
  line-height: 24px;
  letter-spacing: 5%;
  font-size: 18px;
}

p {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 5%;
}

h1 {
  font-family: "Roboto";
  font-weight: 700;
  line-height: 159px;
  font-size: 180px;
  background: linear-gradient(210.08deg, #fde7bb 9.32%, #9e6d38 26.23%, #e9b86e 51.87%, #9d6933 65.14%, #fee9bf 79.51%, #683e23 93.89%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 90px;
  line-height: 78px;
  background: linear-gradient(210.08deg, #fde7bb 9.32%, #9e6d38 26.23%, #e9b86e 51.87%, #9d6933 65.14%, #fee9bf 79.51%, #683e23 93.89%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
}

h4 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}

.main_btn {
  width: 100%;
  max-width: 288px;
  background: linear-gradient(270deg, #cf9f66, #ffdc9c, #946331, #946331, #ffdc9c, #cf9f66);
  background-size: 300% 100%;
  background-position: 0% 0%;
  box-shadow: 0px 0px 4px 0px rgba(148, 99, 49, 0.25);
  padding: 12px 0;
  border-radius: 20px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-position 0.3s ease, box-shadow 0.3s ease;
  color: var(--blck);
  text-align: center;
  height: 48px;
  z-index: 8;
}

.main_btn:hover {
  background-position: 100% 0%;
  box-shadow: 0px 4px 15px rgba(148, 99, 49, 0.4);
}

.pos_btn {
  width: 100%;
  max-width: 255px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  height: 48px;
}

body {
  position: relative;
}

.container {
  max-width: 1224px;
  width: 100%;
  display: flex;
}

header {
  position: sticky;
  top: 0;
  z-index: 666;
  display: flex;
  justify-content: center;
  background: rgba(235, 216, 208, 0.5);
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
}

.header-desk {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 24px 0;
  align-items: center;
}

/* Стилі для хедера */
.header-desk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}

.logo {
  z-index: 30;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--blck);
  font-size: 18px;
  line-height: 24px;
  transition: background-color 0.3s;
  text-align: center;
  font-weight: 500;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  min-width: 220px;
  text-align: center;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(15px);
  backdrop-filter: blur(5px);
  background: rgba(235, 216, 208, 0.5);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-link {
  color: var(--blck);
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: block;
  transition: background-color 0.3s;
  white-space: nowrap;
}

/* ===== МОДНА АНІМАЦІЯ ДЛЯ ІКОНКИ МЕНЮ ===== */
.menu-icon {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s, transform 0.3s;
}

.menu-icon:hover {
  transform: scale(1.05);
}

.menu-icon:active {
  transform: scale(0.95);
}

.menu-icon svg {
  width: 40px;
  height: 40px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Пружна анімація */
}

.menu-icon.active svg {
  transform: rotate(180deg) scale(0.9);
}

.menu-lines,
.close-lines {
  transition: opacity 0.4s ease-in-out;
}

.menu-lines path,
.close-lines path {
  transition: stroke-dashoffset 0.5s ease, d 0.5s ease;
}

/* Додаткова анімація для ліній при ховері */
.menu-icon:hover .menu-lines path:first-child {
  d: path("M4 8H28");
  animation: hamburgerLine1 0.5s ease;
}

.menu-icon:hover .menu-lines path:last-child {
  d: path("M4 24H28");
  animation: hamburgerLine3 0.5s ease;
}

@keyframes hamburgerLine1 {
  0% {
    d: path("M4 8H28");
  }
  50% {
    d: path("M4 6H28");
  }
  100% {
    d: path("M4 8H28");
  }
}
@keyframes hamburgerLine3 {
  0% {
    d: path("M4 24H28");
  }
  50% {
    d: path("M4 26H28");
  }
  100% {
    d: path("M4 24H28");
  }
}
.logo {
  width: 173px;
  height: 48px;
}

.hero {
  display: flex;
  width: 100%;
  background-image: url(assets/img/bg.png);
  justify-content: center;
  height: 919px;
  max-height: 1080px;
  margin-top: -97px;
  background-repeat: no-repeat;
  background-position: center top;
}

.hero_wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 151px;
  margin-left: 100px;
  gap: 24px;
}
.hero_wrapper .hero_img {
  position: absolute;
  right: 90px;
  bottom: 0;
}
.hero_wrapper h4 {
  color: white;
  max-width: 600px;
}
.hero_wrapper .main_btn {
  max-width: 288px;
  width: 100%;
  text-align: center;
}

.poslugy {
  display: flex;
  width: 100%;
  padding: 124px 0;
  justify-content: center;
}
.poslugy .poslugy_wrapper {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}
.poslugy .poslugy_wrapper .poslugy_item {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: rgb(244, 235, 232);
  box-shadow: 0px 0px 4px 0px rgba(148, 99, 49, 0.25);
  padding: 24px;
  border-radius: 20px;
}
.poslugy .poslugy_wrapper .poslugy_item img {
  width: 100%;
}
.poslugy .poslugy_wrapper .poslugy_item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.poslugy .poslugy_wrapper .poslugy_item ul li {
  list-style: none;
}
.poslugy .poslugy_wrapper .poslugy_item .poslugy_btns_wrapper {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.category {
  display: flex;
  justify-content: center;
  padding: 104px 0;
}

.cat_wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}

.cat_btn {
  background: white;
  display: flex;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  padding: 5px 16px;
}

.price {
  display: flex;
  justify-content: center;
  padding: 104px 0;
  width: 100%;
  background: rgb(251, 247, 246);
}
.price .container {
  flex-direction: column;
  gap: 48px;
}
.price .price_container {
  display: flex;
  flex-direction: column;
}
.price .price_container h4 {
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

.service_price {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: rgb(251, 247, 246);
  padding: 104px 0;
}
.service_price .container {
  flex-direction: column;
  gap: 48px;
}
.service_price .container a {
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}

.price_wrapper {
  display: flex;
  gap: 24px;
  width: 100%;
}
.price_wrapper .price_col {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.price_wrapper .price_col .price_item {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.price_wrapper .price_col .price_item p {
  font-weight: 300;
  max-width: 500px;
  width: 100%;
}
.price_wrapper .price_col .price_item span {
  font-weight: 400;
  max-width: 121px;
  width: 100%;
  text-align: end;
}
.price_wrapper .price_col .price_item:not(:last-child) {
  position: relative;
  margin-bottom: 20px;
}
.price_wrapper .price_col .price_item:not(:last-child)::after {
  content: "";
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, #cf9f66 -2.32%, #ffdc9c 43.99%, #946331 103.14%);
}

.swiper {
  max-width: 470px;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
}

.products {
  display: flex;
  width: 100%;
  padding: 124px 0;
  justify-content: center;
  background: rgb(251, 247, 246);
}
.products .products_wrapper {
  display: flex;
  width: 100%;
}
.products .products_info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 601px;
}
.products .products_info .prod_info_block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.products .products_info .prod_info_block .prod_img {
  display: flex;
  gap: 60px;
}
.products .products_info span {
  font-weight: 300;
  line-height: 27px;
  font-size: 18px;
  color: rgb(39, 23, 17);
}
.products .products_slider {
  display: flex;
  max-width: 520px;
  height: 470px;
}
.products .swiper-button-next,
.products .swiper-button-prev {
  color: white;
}

.testimonials {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 80px 0;
}
.testimonials .testi_wrapper {
  display: flex;
  position: relative;
}
.testimonials .container {
  flex-direction: column;
  gap: 48px;
}
.testimonials .swiper2 {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.testimonials .swiper2 .swiper-button-prev,
.testimonials .swiper2 .swiper-button-next {
  box-shadow: none;
  background: none;
}
.testimonials .swiper-slide {
  height: auto;
  max-width: 387px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: rgba(148, 99, 49, 0.25);
  border-radius: 20px;
  box-shadow: 0px 0px 4px 0px rgba(148, 99, 49, 0.25);
}
.testimonials .swiper-slide p {
  font-weight: 300;
  font-size: 14px;
  color: rgb(39, 23, 17);
}
.testimonials .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.testimonials {
  /* Стили для навигации */
}
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.testimonials .swiper-button-prev:after,
.testimonials .swiper-button-next:after {
  font-size: 18px;
}
.testimonials {
  /* Стили для пагинации (если используете) */
}
.testimonials .swiper-pagination-bullet {
  background: #999;
}
.testimonials .swiper-pagination-bullet-active {
  background: #333;
}

.deco_block {
  margin: 124px 0;
  display: flex;
  width: 100%;
  background: url(assets/deco/dec_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
}
.deco_block .container {
  flex-direction: column;
  padding: 95px;
  gap: 60px;
  align-items: center;
}
.deco_block .container h3 {
  max-width: 832px;
  font-size: 40px;
  color: rgb(251, 247, 246);
  text-align: center;
}

.our_space {
  display: flex;
  justify-content: center;
}
.our_space .container {
  flex-direction: column;
  gap: 60px;
}

.contacts {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 104px 0;
}
.contacts .container {
  gap: 24px;
}

.map_wrapper {
  display: flex;
  width: 100%;
  padding: 24px 0;
}
.map_wrapper iframe {
  width: 100%;
  height: 100%;
}

.contacts_wrapper {
  padding: 24px;
  width: 100%;
  max-width: 522px;
}
.contacts_wrapper h3 {
  padding-bottom: 48px;
}
.contacts_wrapper .golden {
  margin-top: 74px;
  margin-bottom: 17px;
}

.cont_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.cont_wrapper p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cont_bottom_wrapper {
  max-width: 350px;
  width: 100%;
}

footer {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 64px 0;
  background-color: rgb(244, 235, 232);
}
footer .container {
  gap: 24px;
}

.f_logo,
.f_phone,
.f_online {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 37%;
}

.f_logo img {
  max-width: 288px;
}

.f_social > img {
  width: 8px;
}

.f_contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.f_contacts p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.f_phone {
  padding-right: 40px;
}

.bold {
  word-spacing: 5%;
  font-size: 18px;
}

.golden {
  background: linear-gradient(270deg, #cf9f66 -2.32%, #ffdc9c 43.99%, #946331 103.14%);
  height: 1px;
  width: 100%;
}

.f_social {
  display: flex;
  gap: 24px;
}
.f_social a {
  display: flex;
  gap: 8px;
  align-items: center;
}

.service_top {
  width: 100%;
  display: flex;
  justify-content: center;
  background: url(assets/service/perma.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -90px;
}
.service_top .container {
  justify-content: center;
  padding: 250px 0 162px 0;
}
.service_top h2 {
  color: rgb(251, 247, 246);
}

.vizaz {
  background: url(assets/vizaz/t.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.lamin {
  background: url(assets/lamin/t.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mani {
  background: url(assets/mani/t.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.price_top {
  background: url(assets/price_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.galerya {
  background: url(assets/img/galereya.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ak {
  background: url(assets/promo/akcii.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service_info {
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgb(251, 247, 246);
  padding: 127px 0;
}
.service_info .info_wrapper {
  display: flex;
  gap: 56px;
  width: 100%;
}
.service_info .info_wrapper .info_text {
  display: flex;
  flex-direction: column;
  max-width: 571px;
  width: 100%;
  gap: 64px;
}
.service_info .info_wrapper .info_text .about_m {
  display: flex;
  flex-direction: column;
  color: rgb(39, 23, 17);
  font-size: 18px;
  line-height: 27xp;
}
.service_info .info_wrapper .info_text .about_m br {
  height: 24px;
}
.service_info .info_wrapper .info_text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service_info .info_wrapper .info_text ul li {
  list-style: none;
}
.service_info .info_wrapper .info_img {
  max-width: 597px;
  width: 100%;
}
.service_info .info_wrapper .info_img img {
  width: 100%;
}

.price_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price_header p {
  color: rgb(147, 139, 136);
}

.price_brown .container .poslugy_btns_wrapper,
.price_white .container .poslugy_btns_wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.price_brown .container .poslugy_btns_wrapper a,
.price_white .container .poslugy_btns_wrapper a {
  margin: 0;
}

.price_white {
  background-color: white;
}

.portfolio {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 127px 0;
}
.portfolio .container {
  flex-direction: column;
  gap: 48px;
}
.portfolio .portfolio_wrapper {
  display: flex;
}
.portfolio .portfolio_wrapper #gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.portfolio .portfolio_wrapper #gallery a {
  width: 288px;
  height: 288px; /* фиксируем карточку */
  overflow: hidden;
  display: block;
}
.portfolio .portfolio_wrapper #gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 🔥 ключ */
}
.portfolio .portfolio_wrapper .pswp-gallery {
  display: flex;
  flex-wrap: wrap;
}
.portfolio .portfolio_wrapper .pswp-gallery a {
  max-width: 288px;
  width: 100%;
}
.portfolio .portfolio_wrapper .pswp-gallery a img {
  width: 100%;
}

.gal {
  padding: 94px 0;
}

.faq {
  display: flex;
  width: 100%;
  padding: 104px 0;
  background-color: rgb(251, 247, 246);
  justify-content: center;
}
.faq .container {
  flex-direction: column;
}
.faq .faqs_wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.faq-container {
  max-width: 600px; /* Limit the width for better readability */
  margin: 50px auto; /* Center the container and add vertical spacing */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-container h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}

.faq-question {
  background-color: white;
  width: 100%;
  padding: 24px;
  text-align: left;
  font-size: 18px;
  border-radius: 20px 20px 20px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.active {
  border-radius: 20px 20px 0 0;
}

.faq-question .arrow {
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}

.faq-answer p {
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

#about_us {
  display: flex;
  justify-content: center;
  padding: 104px 0 80px 0;
  background-image: url(assets/img/bg.png);
  background-repeat: no-repeat;
  background-position: center;
}
#about_us .container {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
#about_us .about_wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 571px;
  background: rgb(245, 235, 231);
  padding: 24px;
  border-radius: 20px;
}
#about_us .about_wrapper ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
#about_us .about_wrapper b {
  font-weight: 600;
  color: black;
}
#about_us .about_img {
  display: flex;
}
#about_us .about_img img {
  border-radius: 20px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.before_after {
  display: flex;
  justify-content: center;
  padding: 108px 0;
}
.before_after .comp_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
.before_after img-comparison-slider {
  display: flex;
  border-radius: 20px;
}

.promo_pop_up {
  display: flex;
  position: absolute;
  top: 995px;
  right: 250px;
  z-index: 2;
}
.promo_pop_up h4 {
  font-size: 22px;
  text-align: center;
}

.pop_up_wrapper p {
  text-align: center;
}
.pop_up_wrapper span {
  text-align: center;
}

.glass-card {
  width: 360px;
  background: rgba(235, 216, 208, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(235, 216, 208, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(235, 216, 208, 0.5), inset 0 -1px 0 rgba(235, 216, 208, 0.1), inset 0 0 20px 10px rgb(235, 216, 208);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
}

.promo_pop_up::after {
  content: url(assets/p2.png);
  display: block;
  height: 118px;
  width: 50px;
  position: absolute;
  top: -241px;
  right: 86px;
  z-index: -1;
  transform: rotate(23deg);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.akcii {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 104px 0;
}
.akcii .akcii_wrapper {
  display: flex;
  width: 100%;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.akcii .akcii_wrapper .akcii_item {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  border-radius: 20px;
  align-items: center;
  background-color: rgb(244, 235, 232);
  box-shadow: 0px 0px 4px 0px rgba(148, 99, 49, 0.25);
  color: rgb(39, 23, 17);
}
.akcii .akcii_wrapper .akcii_item img {
  width: 100%;
}
.akcii .akcii_wrapper .akcii_item h4 {
  color: rgb(39, 23, 17);
}
.akcii .akcii_wrapper .akcii_item p {
  color: rgb(39, 23, 17);
}
.akcii .akcii_wrapper .akcii_item span {
  align-self: start;
  color: rgb(39, 23, 17);
}

#cookie-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
#cookie-consent-overlay .consent-popup {
  background-color: #ffffff;
  max-width: 500px;
  width: 90%;
  margin: 20px;
  border-radius: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#cookie-consent-overlay {
  /* Внутрішні відступи */
}
#cookie-consent-overlay .consent-content {
  padding: 28px 24px 20px 24px;
}
#cookie-consent-overlay .consent-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e1e2f;
  letter-spacing: -0.3px;
}
#cookie-consent-overlay .consent-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a5568;
  margin-bottom: 24px;
}
#cookie-consent-overlay .consent-text a {
  color: #c59b6c;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f0e0d0;
}
#cookie-consent-overlay .consent-text a:hover {
  color: #a57c52;
}
#cookie-consent-overlay .consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
#cookie-consent-overlay .btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}
#cookie-consent-overlay .btn-primary {
  background-color: #c59b6c;
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
#cookie-consent-overlay .btn-primary:hover {
  background-color: #b28654;
  transform: translateY(-1px);
}
#cookie-consent-overlay .btn-secondary {
  background-color: #f1f5f9;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}
#cookie-consent-overlay .btn-secondary:hover {
  background-color: #e6edf5;
}
#cookie-consent-overlay .btn-link {
  background: transparent;
  color: #64748b;
  font-weight: 500;
  box-shadow: none;
  flex: 0.5;
}
#cookie-consent-overlay .btn-link:hover {
  color: #c59b6c;
  background-color: #faf7f2;
}
#cookie-consent-overlay .consent-footer {
  background-color: #faf9fc;
  padding: 14px 24px;
  border-top: 1px solid #edeef2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
}
#cookie-consent-overlay .consent-footer a {
  color: #7e8b9c;
  text-decoration: none;
  transition: color 0.2s;
}
#cookie-consent-overlay .consent-footer a:hover {
  color: #c59b6c;
}
#cookie-consent-overlay .hidden-overlay {
  display: none !important;
}

.hidden-overlay {
  display: none !important;
}

.privacy {
  display: flex;
  justify-content: center;
  padding: 84px 0;
}
.privacy .container {
  gap: 20px;
}
.privacy h1 {
  font-size: 30px;
  color: black;
}
.privacy h2 {
  font-size: 22px;
  color: black;
}
.privacy .section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy .section ul {
  list-style: none;
}

@media (max-width: 1099px) {
  h1 {
    line-height: 109px;
    font-size: 124px;
  }
  h2 {
    font-size: 62px;
    line-height: 78px;
  }
  h3 {
    font-size: 40px;
    line-height: 50px;
  }
  h4 {
    font-size: 24px;
    line-height: 36px;
  }
  .container {
    max-width: 964px;
  }
  .hero_wrapper {
    margin-left: 20px;
  }
  .hero_wrapper h4 {
    max-width: 576px;
  }
  .hero {
    background-size: cover;
    background-position-x: right 24%;
  }
  .contacts .container {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 850px) {
  h1 {
    line-height: 79px;
    font-size: 104px;
  }
  h2 {
    font-size: 52px;
    line-height: 78px;
  }
  h3 {
    font-size: 30px;
    line-height: 50px;
  }
  h4 {
    font-size: 24px;
    line-height: 36px;
  }
  .container {
    max-width: 710px;
  }
  .hero_wrapper .hero_img {
    position: absolute;
    right: 0px;
    bottom: 0;
  }
  .hero_wrapper h4 {
    max-width: 346px;
  }
  .f_phone {
    padding-right: 0px;
  }
  .space_wrapper {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  .space_wrapper img {
    width: 100%;
  }
  .service_info {
    padding: 48px 0;
  }
  .akcii, .galerya {
    padding: 48px 0;
  }
  .service_price {
    padding: 48px 0;
  }
  .service_info .info_wrapper .info_text {
    gap: 24px;
  }
  .service_top .container {
    justify-content: center;
    padding: 111px 0 63px 0;
  }
  .service_top {
    background-position-x: center;
  }
  .service_info .info_wrapper .info_text ul {
    justify-content: center;
  }
  .service_info .info_wrapper .info_text {
    align-items: center;
  }
  .price_wrapper .price_col:first-child .price_item:last-child {
    position: relative;
  }
  .price_wrapper .price_col:first-child .price_item:last-child::after {
    content: "";
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, #cf9f66 -2.32%, #ffdc9c 43.99%, #946331 103.14%);
  }
  .faq {
    padding: 48px 0;
  }
  .faq .container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .faq-container {
    flex-direction: column;
    align-items: center;
    margin: 4px auto;
    gap: 8px;
  }
  .nav-list .dropdown-menu {
    backdrop-filter: none !important;
    background: transparent !important;
  }
  .before_after {
    padding: 48px 0;
  }
}
@media (max-width: 650px) {
  h1 {
    line-height: 48px;
    font-size: 54px;
  }
  h2 {
    font-size: 27px;
    line-height: 39px;
  }
  .hero_wrapper h4 {
    max-width: 184px;
    font-size: 16px;
    line-height: 24px;
  }
  p {
    font-size: 15px;
  }
  .container {
    max-width: 100%;
    margin: 0 12px;
  }
  .hamburger {
    display: flex;
  }
  header .container {
    margin: 0;
  }
  .header-desk {
    position: relative;
    overflow: visible;
    padding: 8px;
  }
  .menu-icon {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(235, 216, 208, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-radius: 0;
  }
  .nav.active {
    max-height: 500px;
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin: 0;
    width: 100%;
    align-items: stretch;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  }
  .nav.active .nav-list {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  /* Послідовна анімація появи пунктів меню */
  .nav.active .nav-item:nth-child(1) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
  }
  .nav.active .nav-item:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
  }
  .nav.active .nav-item:nth-child(3) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.3s;
  }
  .nav.active .nav-item:nth-child(4) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.4s;
  }
  .nav.active .nav-item:nth-child(5) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.5s;
  }
  .nav-link {
    color: rgb(39, 23, 17);
    padding: 15px 0;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    margin: 0;
  }
  .dropdown.active .dropdown-menu {
    max-height: 300px;
  }
  .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .dropdown.active .dropdown-menu li:nth-child(1) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.05s;
  }
  .dropdown.active .dropdown-menu li:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
  }
  .dropdown.active .dropdown-menu li:nth-child(3) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.15s;
  }
  .dropdown.active .dropdown-menu li:nth-child(4) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
  }
  .dropdown-menu li:last-child {
    border-bottom: none;
  }
  .dropdown-link {
    color: rgb(39, 23, 17);
    padding: 12px 20px;
    white-space: normal;
    transition: padding-left 0.3s ease;
  }
  .dropdown-link:hover {
    padding-left: 30px;
    background: rgba(255, 255, 255, 0.1);
  }
  .dropdown > .nav-link {
    position: relative;
  }
  .hero {
    height: 610px;
    overflow: hidden;
    background-position-x: right 38%;
  }
  .hero_wrapper {
    margin-left: 0px;
    margin-top: 195px;
  }
  .hero_wrapper .hero_img {
    position: absolute;
    right: -75px;
    bottom: 0;
    width: 75%;
  }
  .hero_wrapper .main_btn {
    max-width: 185px;
  }
  .cat_wrapper {
    gap: 4px;
  }
  .cat_btn {
    font-size: 13px;
    padding: 6px 16px;
  }
  .poslugy {
    padding: 48px 0;
  }
  .poslugy .poslugy_wrapper .poslugy_item ul {
    justify-content: center;
  }
  .poslugy .poslugy_wrapper .poslugy_item {
    gap: 24px;
  }
  .price .price_container .price_wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .price .container {
    flex-direction: column;
    gap: 24px;
  }
  .price .price_container h4 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 27px;
  }
  .poslugy .poslugy_wrapper .poslugy_item .poslugy_btns_wrapper {
    flex-direction: column;
    align-items: center;
  }
  .products .products_info {
    gap: 24px;
  }
  .products {
    padding: 48px 0;
  }
  .products .products_slider {
    height: 100%;
  }
  .products .products_wrapper {
    flex-direction: column;
    padding: 0 12px;
    text-align: center;
    gap: 16px;
  }
  .products .products_info .prod_info_block .prod_img {
    justify-content: center;
  }
  .f_contacts {
    align-items: center;
  }
  .deco_block {
    background: url(assets/deco/deco-mob.png);
    background-size: cover;
    margin: 48px 0;
  }
  .deco_block .container {
    padding: 48px 0;
    gap: 24px;
  }
  .deco_block .container h3 {
    font-size: 32px;
  }
  .our_space .container {
    gap: 24px;
  }
  .contacts .container {
    text-align: center;
  }
  .cont_wrapper {
    align-items: center;
  }
  .contacts,
  .price,
  .category {
    padding: 48px 0;
  }
  .contacts_wrapper {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .map_wrapper {
    height: 350px;
    padding: 0;
    justify-content: center;
  }
  .contacts_wrapper h3 {
    padding-bottom: 24px;
  }
  footer .container {
    flex-direction: column;
  }
  .f_logo,
  .f_phone,
  .f_online {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .f_social {
    justify-content: center;
  }
  .map_wrapper iframe {
    max-width: 380px;
  }
  .contacts_wrapper .golden {
    margin-top: 48px;
    margin-bottom: 17px;
  }
  .service_info .info_wrapper {
    display: flex;
    gap: 24px;
    width: 100%;
    flex-direction: column;
  }
  .price_wrapper {
    flex-wrap: wrap;
  }
  .faq .faqs_wrapper {
    flex-wrap: wrap;
  }
  .mani {
    background: url(assets/mani/mani_top_m.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .lamin {
    background: url(assets/lamin/lamin_t_m.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .vizaz {
    background: url(assets/vizaz/viz_m.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .testimonials {
    margin: 48px 0;
  }
  .testimonials .container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .testimonials .testi_wrapper {
    margin: 0 12px;
  }
  .testimonials .swiper-slide {
    max-width: 100%;
  }
  .portfolio {
    padding: 48px 0;
  }
  .portfolio .portfolio_wrapper #gallery {
    gap: 8px;
    justify-content: center;
  }
  .portfolio .portfolio_wrapper #gallery a {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .portfolio .portfolio_wrapper #gallery a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .faq-question {
    color: rgb(39, 23, 17);
  }
  .faq-question .arrow {
    top: 22px;
  }
  #about_us {
    background-repeat: repeat;
    padding: 44px 0 44px 0;
  }
  #cookie-consent-overlay .consent-content {
    padding: 22px 18px 16px;
  }
  #cookie-consent-overlay .consent-title {
    font-size: 1.3rem;
  }
  #cookie-consent-overlay .btn {
    padding: 10px 12px;
  }
}
@media (max-width: 425px) {
  .hero_wrapper .main_btn {
    z-index: 69;
  }
}
@media (max-width: 375px) {
  .hero_wrapper .hero_img {
    width: 95%;
  }
}/*# sourceMappingURL=style.css.map */