@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(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;
}

.header-mob {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 100;
}
/* Один рядок: лого | телефони | кнопки */
.header-mob__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.header-mob__logo {
  flex-shrink: 0;
}
/* Телефони стовпчиком — по центру */
.header-mob__phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.header-mob__phones a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  color: #000000;
  font-size: 14px;
  white-space: nowrap;
}
.header-mob__phones .fa-phone {
  font-size: 12px;
  color: #000000;
}
/* Кнопки Меню та Instagram стовпчиком */
.header-mob__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.header-mob__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  letter-spacing: 0.3px;
}
.burger-btn {
  background: #EC94C6;
  color: #fff;
  box-shadow: 0 2px 6px rgba(236, 148, 198, 0.4);
}
.burger-btn:hover,
.burger-btn:active {
  background: #e07db5;
  box-shadow: 0 3px 8px rgba(236, 148, 198, 0.5);
}
.insta-btn {
  background: #EC94C6;
  color: #fff;
  box-shadow: 0 2px 6px rgba(236, 148, 198, 0.3);
}
.insta-btn:hover,
.insta-btn:active {
  background: #e07db5;
}
/* Квіточки-декорації в хедері */
.header-mob__flower {
  position: absolute;
  opacity: 0.4;
  pointer-events: none;
}
.header-mob__flower--left {
  left: 2px;
  bottom: -4px;
  width: 28px;
  height: 28px;
}
.header-mob__flower--right {
  right: 2px;
  top: 2px;
  width: 22px;
  height: 22px;
  transform: rotate(30deg);
}
@media (max-width: 768px) {
  
  /* Банери з фоновими зображеннями — БЕЗ відступу,
     вони мають іти під хедер (фон видно під хедером) */
  .hero,
  .birthday-hero,
  .weekend-banner,
  .individual-banner,
  .school-banner,
  .corporate-banner {
    padding-top: 0;
  }
  /* Сторінки без банера — потрібен відступ щоб контент не ховався */
  .thank-you,
  .contacts-section {
    padding-top: 95px;
  }
}
@media (max-width: 374px) {
  .header-mob__phones a {
    font-size: 10px;
  }
  .header-mob__action-btn {
    font-size: 10px;
    padding: 5px 10px;
  }
}
/* Старі стилі — очистка */
.header-mob__topbar { display: none; }
.header-mob__topbar-inner { display: none; }

.burger {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1200;
  padding: 0;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #5E3A2D;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger.active span {
  background-color: black !important;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFF8F2;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mob-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-close{
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  color: #5E3A2D;
}
.mob-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mob-menu ul li a {
  font-size: 18px;
  color: #5E3A2D;
  text-decoration: none;
  font-weight: 600;
}

.menu-logo {
  display: block;
  margin: 0 auto;
  height: 60px;
  margin-bottom: 20px;
}

.sab-toggle {
  position: relative;
}
.sab-toggle::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background-image: url("../icons/arrow2.svg");
}

.instagram {
  padding: 4px 5px;
  background: #f53d9f;
  border-radius: 10px;
}

.header {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    display: none;
  }
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-logo {
  height: 80px;
}
@media (max-width: 575px) {
  .header-logo {
    height: 70px;
  }
}

.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 18px;
  font-weight: 500;
  color: #040404;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #e66b9e;
}

.social {
  display: flex;
  gap: 15px;
}

.social img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.social a:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .nav ul {
    display: none;
  }
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li {
  position: relative;
}
.nav ul li a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}
.nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #EC94C6;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  z-index: 10;
  border-radius: 10px;
}
.nav ul li .dropdown-menu li {
  text-align: center;
}
.nav ul li .dropdown-menu li a {
  padding: 8px 15px;
  white-space: nowrap;
}
.nav ul li .dropdown-menu li a:hover {
  background: #f3e9dc;
}
.nav ul li:hover .dropdown-menu {
  display: block;
}

.header-contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header-contacts a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  transition: opacity 0.3s ease;
}
.header-contacts a:hover {
  opacity: 0.7;
}

/* Темний текст для мобільного хедера з рожевим фоном */
.header-mob .header-contacts a {
  color: #5E3A2D;
}


.btn-main {
  display: block;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FFC83D 0%, #FFB703 100%);
  color: #fff;
  border-radius: 40px;
  border: 4px solid white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
  margin: 0 auto;
}
.btn-birthday{
  display: block;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FFC83D 0%, #FFB703 100%);
  color: #fff;
  border-radius: 40px;
  border: 4px solid white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
  margin-top: 40px;
  margin: 0 auto;
}
.btn-main:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 995px) {
  .btn-main {
    font-size: 16px;
    padding: 10px 15px;
  }
}
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero-fallback,
.hero-fallback--mobile,
.hero-video-slot,
.hero-video-slot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-fallback,
.hero-fallback--mobile {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  z-index: 0;
}


.hero-video-slot {
  z-index: 1;
}

.hero-video-slot video {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-video-slot video.is-ready {
  opacity: 1;
}

.hero .btn-wrapper {
  position: relative;
  z-index: 2;
  top: 350px;
}

.hero-fallback--mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-fallback {
    display: none !important;
  }

  .hero-fallback--mobile {
    display: block;
  }


  .header-mob {
    display: block;
  }
  .hero .btn-wrapper {
    top: 300px;
  }
}
/* 
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
} */
/* .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
} */
/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
} */

/* .hero .btn-wrapper {
  position: relative;
  z-index: 2;
}

.hero-video--mobile {
  display: none;
} */


/* @media (max-width: 768px) {
  
  .hero-video {
    display: none !important;
  }
 
  .hero-video--mobile {
    display: block;
    position: absolute;
   
    
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:center;
    transform: none;
  }
  
} */
.about {
  background: url("../img/background-pink.png") no-repeat center/cover;
  margin-top: -1px;
}

.about-titel {
  font-size: clamp(22px, 4vw, 36px);
}

.about-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 995px) {
  .about-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .about-wrapper {
    gap: 40px;
  }
}

.about-text {
  max-width: 650px;
}
@media (max-width: 995px) {
  .about-text {
    max-width: none;
    width: 100%;
  }
}

.about-image {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  height: auto;
  transform: rotate(1.5deg);
  z-index: 1;
}
.about-image::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: #ef71b5;
  z-index: -1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 995px) {
  .about-image {
    transform: none;
    max-width: 450px;
  }
  .about-image::before {
    display: none;
  }
}

.about-foto {
  display: block;
  width: 100%;
  height: auto;
  border: 6px solid #fff;
  z-index: 2;
}
@media (max-width: 995px) {
  .about-foto {
    border: none;
  }
}

.about-image2 {
  max-width: 420px;
}

.about__text {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
}
.about__text strong {
  font-weight: 500;
  background: #f3b2cb;
  padding: 2px 6px;
}

.highlight-pink {
  background: #FBCDE2;
  color: #773455;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 500;
}

.highlight-yellow {
  background: #F4C542;
  color: #4c1835;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 600;
}

.about-video {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/4;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 16px 16px 0 #fa84b5;
  margin: 0 auto;
}
.about-video:hover {
  transform: rotate(0deg) scale(1.02);
}
.about-video:hover .video-btn {
  opacity: 1;
  pointer-events: auto;
}
.about-video__file {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .about-video {
    max-width: 96%;
    aspect-ratio: 1/1.5;
  }
}

.services {
  background: #FBCDE2;
}
@media (max-width: 575px) {
  .services {
    display: none;
  }
}

.services-title {
  margin-bottom: 10px;
}
 .card-icon-wrapper {
      display: flex;
      justify-content: center;
      margin: -40px 0 15px 0;
      position: relative;
      z-index: 10;
    }

    .card-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #F56AB9 0%, #E84EA0 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: white;
      box-shadow: 0 6px 20px rgba(245, 106, 185, 0.3);
      border: 4px solid #ffffff;
    }
.services__subtitle {
  font-size: clamp(15px, 2.5vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  color: #4c1835;
  max-width: 800px;
  margin: 0 auto 40px;
 
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1280px) {
  .services-cards {
    gap: 18px;
  }
}
@media (max-width: 995px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .services-cards {
    display: none;
  }
}

.card {
  background-color: #f6dde7;
  border: 1px solid #F56AB9;
  box-shadow: 0 8px 20px rgba(245, 106, 185, 0.2);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06), inset 0 0 0 6px rgba(255, 255, 255, 0.6);
  padding-bottom: 20px;
}
@media (max-width: 575px) {
  .card {
    width: 100%;
    height: auto;
  }
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.card h3 {
  text-align: center;
  font-weight: 600;
  color: #893461;
  font-size: 22px;
  margin-bottom: 10px;
}
.card p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px;
}
.card-photo img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .card-photo img {
    height: 200px;
  }
}
.card__btn {
  justify-self: center;
  padding-bottom: 20px;
}

.services-mob {
  display: none;
}
@media (max-width: 575px) {
  .services-mob {
    display: block;
    background-color: #FBCDE2;
  }
}

.card-mobile {
  max-width: 350px;
  width: 100%;
  text-align: center;
  background-color: #f6dde7;
  border: 1px solid #F56AB9;
  box-shadow: 0 8px 20px rgba(245, 106, 185, 0.2);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06), inset 0 0 0 6px rgba(255, 255, 255, 0.6);
}
.card-mobile p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.card-mobile h3 {
  font-size: 16px;
  color: #9c4272;
  margin-bottom: 8px;
}

.services-mobile {
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  padding: 0;
}

.card-mobile .swiper-slide {
  max-width: 320px;
  width: 100% !important;
  overflow-x: hidden;
  display: block;
  margin: 0 auto;
}

.services-mobile .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.shop-assortment {
  background: url("../img/background-pink.png") no-repeat center/cover;
}

.shop-assortment__title {
  margin-bottom: 10px;
}

.shop-assortment__subtitle {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.assortment-swiper .swiper-wrapper {
  display: flex;
}

.item h4 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 5px;
}

.item-photo img {
  width: 100%;
  height: 250px;
  border-radius: 2px;
}
@media (max-width: 400px) {
  .item-photo img {
    height: 200px;
  }
}
.item-photo img:hover {
  transform: scale(1.03);
}

.assortment-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #e66b9e;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.brand-sweets {
  background: #FBCDE2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.brand-sweets__titel {
  margin-bottom: 20px;
}
.brand-sweets__lead {
  display: block;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 995px) {
  .brand-sweets__lead {
    width: 100%;
    text-align: left;
  }
}
.brand-sweets__btn {
  padding-top: 20px;
}

.order-photo {
  height: 250px;
}

.order-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-sweets__slider .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.gallery {
  background: url("../img/background-pink.png") no-repeat center/cover;
}
.gallery__item {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  background: #fff;
  position: relative;
  transition: transform 0.3s ease;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.02);
}
.gallery__img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper {
  width: 100%;
}

.mfp-bg,
.mfp-wrap {
  z-index: 99999 !important;
}

.mfp-content img.mfp-img {
  max-width: 90vw;
  max-height: 80vh;
  height: auto;
  width: auto;
}

.mfp-container {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 480px) {
  .mfp-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.mfp-close {
  color: white;
  font-size: 32px;
  right: -10px;
  top: -10px;
}

.gallery-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

@media (max-width: 480px) {
  .mfp-figure {
    position: relative;
  }
  .mfp-arrow::before,
  .mfp-arrow::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    margin: 0 !important;
  }
  .mfp-arrow {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .mfp-arrow-left {
    left: 5px;
  }
  .mfp-arrow-right {
    right: 5px;
  }
  .mfp-arrow-right:after {
    margin-left: 10px;
  }
  .mfp-close {
    font-size: 26px;
    right: 5px;
    top: 5px;
  }
}
.reviews {
  padding: 80px 0;
  background: #fff8f2;
}
.reviews__title {
  text-align: center;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 30px;
  color: #EC94C6;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 200px;
  gap: 14px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #EC94C6, #FFB703);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.review-avatar-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #5E3A2D;
}

.review-stars {
  color: #FFB703;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #57463f;
}

.reviews-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}
.reviews-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #EC94C6;
  opacity: 0.4;
}
.reviews-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.booking {
  background: url("../img/background-pink.png") no-repeat center/cover;
  padding: 80px 0;
}

.booking-wrapper {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media (max-width: 768px) {
  .booking-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.booking__title {
  color: #E93D98;
  margin-bottom: 5px;
}

.booking__lead {
  display: block;
  width: 40%;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  color: #E93D98;
}
@media (max-width: 995px) {
  .booking__lead {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .booking__lead {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .booking__lead {
    width: 90%;
    font-size: 15px;
  }
}
@media (max-width: 365px) {
  .booking__lead {
    width: 100%;
  }
}

.booking__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  padding: 16px;
  width: 100%;
  background: #F284C3;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .booking__card {
    max-width: none;
  }
}
.booking__card a {
  color: #fff;
  text-decoration: none;
}
.booking__card i {
  margin-right: 5px;
}

.booking__city {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.booking__addr {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.booking__mail {
  font-size: 16px;
}

.label {
  margin: 0;
  padding: 0;
}

.booking__form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 100%;
}
@media (max-width: 768px) {
  .booking__form {
    max-width: none;
    order: 1;
  }
}

.field__label {
  display: none;
}

.field__input {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid #E93D98;
  border-radius: 20px;
  padding: 15px 20px;
  margin-bottom: 20px;
  color: #E93D98;
}
.field__input::placeholder {
  color: #E93D98;
  opacity: 1;
}
@media (max-width: 768px) {
  .field__input {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .field__input {
    font-size: 16px;
  }
}

.field__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 20px;
  color: #E93D98;
  padding-right: 20px;
  background-image: url("../icons/arrow.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.booking__btn {
  font-size: 22px;
  font-weight: 500;
  border: none;
  padding: 15px 20px;
  transition: 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #E93D98;
  color: white;
}
.booking__btn:hover {
  background-color: #c03b8c;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .booking__btn {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .booking__btn {
    font-size: 18px;
  }
}

.features {
  padding: 30px;
}
.features h2 {
  margin-bottom: 20px !important;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 768px) {
  .features-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features-cards {
  padding: 40px 0;
}

.features-card {
  background-color: white;
  border: 2px solid #F8A5D4;
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .features-card {
    width: 100%;
    height: auto;
  }
}
.features-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.features-card p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.zones {
  padding: 48px 0;
}

.zones__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 995px) {
  .zones__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .zones__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .zones__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.zone-card {
  background: #fff;
  border: 1px solid var(--pink);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  align-content: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.zone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.zone-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.zone-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.zone-card:hover .zone-card__photo img {
  transform: scale(1.06);
}
.zone-card__caption {
  padding: 14px 16px 16px;
}
.zone-card__caption h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.zone-card__caption p {
  font-size: 14px;
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  text-align: center;
}

.programs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .programs-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.card .desc {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6b5a4b;
  margin-bottom: 20px;
  line-height: 1.4;
}

.card .meta {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.note {
  display: block;
  width: 60%;
  text-align: center;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .note {
    width: 80%;
  }
}

.birthday-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  background: url("../img/banner-birthday.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (max-width: 568px) {
  .birthday-hero {
    background-image: url("../img/birthday-mob.jpg");
    background-repeat: no-repeat;
    object-fit: cover;
    background-position: top center;
  }
}
.birthday-hero p {
  width: 70%;
}
.birthday-hero__btn {
  display: block;
  padding-top: 220px;
  padding-left: 145px;
}
@media (max-width: 995px) {
  .birthday-hero__btn {
    padding-top: 80px;
  }
}

.birthday-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.birthday-hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .birthday-hero__inner {
    justify-content: center;
    text-align: center;
  }
  .birthday-hero__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.birthday-hero__circle img {
  width: 600px;
}

.birthday-titel {
  display: none;
  font-size: 60px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 40px;
}
@media (max-width: 995px) {
  .birthday-titel {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .birthday-titel {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.weekend-banner {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  background: url("../img/banner-mk.jpg") center/cover no-repeat;
}
@media (max-width: 768px) {
  .weekend-banner {
    background-image: url("../img/mk.jpg");
  }
}
.weekend-banner__title {
  display: none;
}

.subtitle {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
  color: black;
  margin-bottom: 40px;
}

.individual-banner {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("../img/banner-individual.jpg") center/cover no-repeat;
}
@media (max-width: 568px) {
  .individual-banner {
    background-image: url("../img/banner-individual-mob.jpg");
  }
}

.individual-banner__inner {
  padding: 20px;
  border-radius: 20px;
  max-width: 750px !important;
  width: 100%;
}

.info-box {
  padding-top: 20px;
}
.info-box p {
  font-size: clamp(14px, 2vw, 18px);
}

.shooll-banner {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("../img/banner-school.jpg") center/cover no-repeat;
}
@media (max-width: 768px) {
  .shooll-banner {
    background-image: url("../img/banner-school-mob.jpg");
  }
}
.shooll-banner h1 {
  display: none;
  font-size: 48px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .shooll-banner h1 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .shooll-banner h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.subtitle2 {
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .subtitle2 {
    font-size: 14px;
  }
}

.weekend-banner__title {
  font-size: 60px;
  font-weight: 800;
  color: #f53d9f;
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .weekend-banner__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.prices-title {
  margin-bottom: 10px;
}

.prices-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: #5E3A2D;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 995px) {
  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .prices-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.price-card {
  background-color: #f6dde7;
  border: 1px solid #F56AB9;
  box-shadow: 0 8px 20px rgba(245, 106, 185, 0.2);
  border-radius: 20px;
  padding: 22px 22px 10px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06), inset 0 0 0 6px rgba(255, 255, 255, 0.6);
  color: #3f352b;
  text-align: center;
}
.price-card__name {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #4c1835;
  margin-bottom: 10px;
}
.price-card__name:after {
  content: "❤";
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #E93D98;
}
.price-card__list li {
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}

.prices-info__box {
  display: flex;
}

.prices-info__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.prices-info__lead {
  font-size: clamp(15px, 2.2vw, 18px);
  margin: 0 0 10px;
}

.prices-info__rows {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.prices-info__row {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  color: #433;
}

.prices-info__label {
  font-weight: 700;
  color: #5E3A2D;
}

.prices-info a {
  color: #E93D98;
  text-decoration: none;
}

.prices-info a:hover {
  text-decoration: underline;
}

.prices-text {
  margin-bottom: 20px;
}
.prices-text p {
  font-size: clamp(14px, 2vw, 16px);
}

.corporate-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("../img/bg-7.jpg") no-repeat center/cover;
}
@media (max-width: 568px) {
  .corporate-banner {
    background-image: url("../img/corporate-banner-mob.jpg");
    background-repeat: no-repeat;
    object-fit: cover;
    background-position: top bottom;
  }
}
.corporate-banner__titel {
  display: none;
  color: #E93D98;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .corporate-banner__titel {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .corporate-banner__titel {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 5px;
}

.text-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 575px) {
  .packaging-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.packaging-card {
  color: #773455;
  text-align: center;
}
.packaging-card img {
  width: 90px;
  display: block;
  margin: 20px auto;
}
.packaging-card img h4 {
  margin-bottom: 10px;
}
.packaging-card img p {
  font-size: clamp(14px, 2vw, 22px);
}

.packaging-foto {
  height: 200px;
}

.packaging-option {
  color: #773455;
  text-align: center;
  overflow: hidden;
}
.packaging-option img {
  display: block;
  width: 132px;
  height: 125px;
  margin: 0 auto 20px;
  border-radius: 10px;
}
.packaging-option h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #6b1f42;
}

.packaging-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .packaging-option-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.partners {
  padding: 80px 0;
  text-align: center;
}
.partners h2 {
  margin-bottom: 60px;
}

.partners-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.partner img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.thank-you {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: url("../img/background-pink.png") no-repeat center/cover;
  height: 100vh;
}

.modal {
  max-width: 600px;
  display: block;
  margin: 0 auto;
  background: #E9D2D2;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
  .modal {
    max-width: none;
    width: 90%;
    padding: 20px;
  }
}

.modal-content p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.modal-follow {
  width: 80%;
  font-size: 16px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.modal-icon {
  width: 100%;
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.modal-btn__wrapper {
  display: inline-block;
  padding: 8px 16px;
  background-color: #52AD31;
  margin-bottom: 20px;
  border-radius: 5px;
}

.modal-btn {
  text-decoration: none;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.footer {
  background: url("../img/фон.png") no-repeat center/cover;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
  }
}
.footer-logo {
  width: 80px;
  height: auto;
}

.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-titel {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 14px;
  letter-spacing: 1.4;
  margin-bottom: 18px;
}

.footer__copy p {
  font-size: 14px;
}

.masterclass {
  background: #F172AC;
  padding: 60px 20px;
  font-family: "Cormorant Garamond", serif;
}
.masterclass h2 {
  text-align: center;
  color: white;
  font-size: 32px;
  margin-bottom: 40px;
}

.locations {
  background: url("../img/background-pink.png") no-repeat center/cover;
  text-align: center;
}

.locations__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.locations__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  text-transform: uppercase;
  color: #7B2B56;
  line-height: 1.2;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .locations__title {
    font-size: 24px;
  }
}

.locations__subtitle {
  display: block;
  width: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  color: #7B2B56;
  margin: 0 auto;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .locations__subtitle {
    width: 100%;
  }
}

.locations__grid {
  display: flex;
  gap: 40px;
  justify-items: center;
  margin-bottom: 60px;
}
.locations__grid:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .locations__grid {
    width: 80%;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .locations__grid {
    width: 100%;
  }
}

.location-card {
  text-align: center;
}

.location-card img {
  position: relative;
  width: 100%;
  max-width: 140px;
  height: 70px;
  margin: 0 auto;
  margin-bottom: 15px;
  z-index: 1;
}

.location-card p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #4c1835;
}
@media (max-width: 575px) {
  .location-card p {
    font-size: 15px;
  }
}

.benefits {
  background: #fff;
}

.benefits__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media (max-width: 995px) {
  .benefits__wrap {
    flex-direction: column;
    justify-content: center;
  }
}

.title-box {
  text-align: center;
}

.benefits__title {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  background: #FBCDE2;
  border-radius: 16px;
  padding: 10px 40px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  .benefits__title {
    padding: 8px 20px;
    margin-bottom: 40px;
  }
}

.benefits__photo {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 350px;
  height: 420px;
}
.benefits__photo::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 20px;
  width: 100%;
  max-width: 350px;
  height: 420px;
  background: #F4C542;
  z-index: 1;
}
@media (max-width: 575px) {
  .benefits__photo::after {
    max-width: 250px;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .benefits__photo {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .benefits__photo {
    max-width: 250px;
    height: 300px;
  }
}

.benefits__photo img {
  width: 100%;
  max-width: 350px;
  height: 420px;
  position: relative;
  z-index: 4;
}
@media (max-width: 575px) {
  .benefits__photo img {
    max-width: 250px;
    height: 300px;
  }
}

.decor {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.decor--top-left {
  width: 100px;
  height: 156px;
  background-image: url("../icons/spiral.svg");
  top: -40px;
  left: -60px;
  z-index: 6;
}
@media (max-width: 575px) {
  .decor--top-left {
    width: 60px;
    height: 94px;
    top: -20px;
    left: -20px;
  }
}

.decor--bottom-right {
  width: 140px;
  height: 120px;
  background-image: url("../icons/soft-pink.svg");
  bottom: -40px;
  right: -60px;
  z-index: 7;
}
@media (max-width: 575px) {
  .decor--bottom-right {
    width: 100px;
    height: 80px;
    right: -40px;
  }
}

.benefits__photo {
  position: relative;
  display: inline-block;
}

.benefits__content {
  width: 100%;
  max-width: 750px;
}
@media (max-width: 995px) {
  .benefits__content {
    max-width: none;
    width: 90%;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .benefits__content {
    width: 100%;
  }
}

.benefits__pill {
  display: inline-block;
  text-align: center;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: #F4AFC3;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(244, 175, 195, 0.35);
  margin-bottom: 20px;
}

.benefits__list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #4c1835;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 995px) {
  .benefits__list li {
    font-size: 14px;
  }
}

.benefits__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
}

.one::before {
  background: url("../icons/marker.svg") no-repeat center/contain;
}

.two::before {
  background: url("../icons/marker-yellow.svg") no-repeat center/contain;
}

.three::before {
  background: url("../icons/marker-green.svg") no-repeat center/contain;
}

.four::before {
  background: url("../icons/violet.svg") no-repeat center/contain;
}

.programs-pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.location-card {
  position: relative;
}

.location-card img {
  animation: float-breathe 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.location-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(238, 117, 190, 0.5), transparent 70%);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  animation: steam 5s ease-in-out infinite;
  filter: blur(12px);
  pointer-events: none;
}

@keyframes float-breathe {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.04);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes steam {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.5);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -60%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -90%) scale(1.3);
  }
}
@keyframes marker-breathe {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.benefits__list li::before {
  animation: marker-breathe 4s ease-in-out infinite;
  transform-origin: center;
}

.birthday-invite {
  background: url("../img/background-pink.png") no-repeat center/cover;
  padding: 100px 0;
}
@media (max-width: 575px) {
  .birthday-invite {
    padding: 40px 0;
  }
}
.birthday-invite__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.birthday-invite__text-block {
  max-width: 850px;
  margin-bottom: 50px;
}
.birthday-invite__top-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  color: #4c1835;
  text-transform: uppercase;
}
@media (max-width: 995px) {
  .birthday-invite__top-text {
    max-width: none;
    font-size: 28px;
    max-width: none;
  }
}
@media (max-width: 575px) {
  .birthday-invite__top-text {
    width: 100%;
    max-width: none;
    font-size: 22px;
    line-height: 1.4;
    text-transform: none;
  }
}

.birthday-invite__highlight {
  font-style: italic;
  font-weight: 600;
  background: #ffe98a;
  padding: 2px 5px;
}

.word-red {
  background: #fb8f8f;
  padding: 0 5px;
}

.birthday-invite__name {
  background: white;
  padding: 0 5px;
  font-weight: 600;
}

.birthday-invite__underline {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.birthday-invite__underline::after, .birthday-invite__underline::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffe98a;
}
.birthday-invite__underline::after {
  bottom: 0;
}
.birthday-invite__underline::before {
  bottom: 4px;
}

.birthday-invite__invite {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: #6b1f42;
}
@media (max-width: 575px) {
  .birthday-invite__invite {
    font-size: 14px;
  }
}
.birthday-invite__invite__name {
  font-weight: 600;
}

.birthday-invite__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
@media (max-width: 1280px) {
  .birthday-invite__gallery {
    gap: 40px;
  }
}
@media (max-width: 995px) {
  .birthday-invite__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
@media (max-width: 575px) {
  .birthday-invite__gallery {
    display: none;
  }
}

.birthday-img {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(0deg);
  z-index: 4;
}
@media (max-width: 1280px) {
  .birthday-img {
    width: 200px;
    height: 250px;
  }
}
@media (max-width: 995px) {
  .birthday-img {
    width: 300px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .birthday-img {
    width: 200px;
    height: 250px;
  }
}
.birthday-img::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 330px;
  z-index: 1;
}
@media (max-width: 1280px) {
  .birthday-img::after {
    width: 180px;
    height: 230px;
  }
}
@media (max-width: 995px) {
  .birthday-img::after {
    width: 285px;
    height: 305px;
  }
}
@media (max-width: 768px) {
  .birthday-img::after {
    width: 180px;
    height: 230px;
  }
}
.birthday-img__1 {
  transform: rotate(-2deg);
}
.birthday-img__1::after {
  left: 35px;
  top: 35px;
  background: #f3b2cb;
}
.birthday-img__2 {
  transform: rotate(2deg);
}
.birthday-img__2::after {
  left: 35px;
  top: 35px;
  background: #b7ebe0;
}
.birthday-img__3 {
  transform: rotate(-1.5deg);
}
.birthday-img__3::after {
  right: 35px;
  top: 35px;
  background: #fce69c;
}
.birthday-img__4 {
  transform: rotate(1.5deg);
}
.birthday-img__4::after {
  right: 35px;
  top: 35px;
  background: #bceae7;
}
.birthday-img img {
  width: 250px;
  height: 350px;
  position: relative;
  z-index: 2;
  border: 6px solid white;
}
@media (max-width: 1280px) {
  .birthday-img img {
    width: 200px;
    height: 250px;
  }
}
@media (max-width: 995px) {
  .birthday-img img {
    width: 300px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .birthday-img img {
    width: 200px;
    height: 250px;
  }
}
@media (max-width: 575px) {
  .birthday-img img {
    max-width: 250px;
    width: 100%;
  }
}

.gallery-mobile {
  display: none;
}
@media (max-width: 575px) {
  .gallery-mobile {
    width: 100%;
    display: block;
    max-width: 320px;
  }
}

.swiper-wrapper {
  display: flex;
}

.gallery-photo img {
  width: 320px;
  height: 360px;
  position: relative;
  z-index: 2;
  border: 6px solid white;
}

.swiper-slide .gallery-photo {
  max-width: 320px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.swiper-pagination-birthday {
  position: relative;
  margin-top: 40px;
}

.contacts-section {
  padding-top: 100px;
}

iframe {
  display: block;
  margin: 0;
  padding: 0;
  padding-top: 60px;
  width: 100%;
  height: 350px;
}

.margin-bottom-40px {
  margin-bottom: 60px;
}

.prices-card {
  padding: 40px 0;
  background: #E679AF;
}

.prices-poster {
  background: #E76BA3;
  padding: 40px 16px;
}
.prices-poster__paper {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  padding: 18px;
}
.prices-poster__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: white;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(36px, 4vw, 48px);
}
@media (max-width: 768px) {
  .prices-poster__title {
    font-size: clamp(20px, 5vw, 28px);
    margin-bottom: 28px;
  }
}
@media (max-width: 480px) {
  .prices-poster__title {
    font-size: clamp(18px, 6vw, 26px);
    margin-bottom: 20px;
  }
}

.table-wrap {
  overflow-x: auto;
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
}

.tbl {
  width: 100%;
  min-width: 720px;
  color: #251F0A;
  font-size: 15px;
  font-weight: 500px;
  line-height: 1.35;
}
.tbl .col-name {
  width: 60%;
}
.tbl .col-dur {
  width: 16%;
}
.tbl .col-min {
  width: 12%;
}
.tbl .col-price {
  width: 12%;
}
.tbl th, .tbl td {
  padding: 12px 14px;
  background: #fff;
  border-right: 1px solid #D0C2C8;
}
.tbl tr > :first-child {
  border-left: 1px solid #D0C2C8;
}
.tbl thead th {
  background: #FBCDE2;
  color: #4c1835;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  border-bottom: 1px solid #D0C2C8;
  text-align: center;
}
.tbl tbody td {
  border-top: 1px solid rgb(225.7555555556, 217.0444444444, 220.7777777778);
}
.tbl tbody tr:nth-child(even) td {
  background: #FFFAF5;
}
.tbl .tbl-banner td {
  background: #F4C542;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
  padding: 16px 18px;
}
.tbl .tbl-section td {
  color: #995C8E;
  font-weight: 600;
  text-align: center;
}
.tbl .tbl-section--extras td {
  background: #FBCDE2;
}

.poster-note {
  margin-top: 12px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 768px) {
  .poster-note {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .poster-note {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .tbl {
    font-size: 14px;
    min-width: 660px;
  }
  .tbl th, .tbl td {
    padding: 10px 12px;
  }
  table {
    width: 100%;
    border-collapse: collapse;
  }
  thead {
    background-color: #f3e9dc;
  }
  thead th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #f0b6d0;
    font-size: 18px;
  }
  thead td {
    font-weight: 600;
    border-bottom: 1px solid #ead9bc;
    vertical-align: top;
    color: #251F0A;
    font-size: 14px;
    line-height: 1.5;
  }
  tbody tr:last-child td {
    border-bottom: none;
  }
  tbody tr:nth-child(even) {
    background-color: #eae0e0;
  }
}
@media (max-width: 768px) {
  .prices-card {
    display: none;
  }
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

body {
  background: #FBCDE2;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}


.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 575px) {
  .container {
    padding: 0 10px;
  }
}

.container3 {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.container2 {
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.btn {
  margin-top: 160px;
  padding: 10px 30px;
  background: linear-gradient(135deg, #ff4fb3, #ff2f92);
  color: #fff;
  border: 2px solid white;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 6px 14px rgba(255, 77, 166, 0.22);
}
.main-btn {
  padding: 12px 40px;
  background: linear-gradient(135deg, #ff4fb3, #ff2f92);
  color: #fff;
  border: 2px solid white;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 6px 14px rgba(255, 77, 166, 0.22);
}
.btn:hover {
  background-color: #c03b8c;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .btn {
    font-size: 13px;
    margin-top: 160px;
    padding: 8px 25px;
  }
}

.btn-wrapper {
  padding-top: 100px;
}
@media (max-width: 995px) {
  .btn-wrapper {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .btn-wrapper {
    padding-top: 30px;
  }
  .btn-main{font-size: 12px; border: 2px solid #ffff;}
}
.btn-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn-instagram {
  display: inline-block;
  background-color: #f732bf;
  color: #fff !important;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px !important;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}
.btn-instagram:hover {
  background-color: #FFB703;
}

.py-80px {
  padding: 80px 0;
}
@media (max-width: 995px) {
  .py-80px {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .py-80px {
    padding: 40px 0;
  }
  .btn-birthday{ font-size: 12px; margin-top: 0;}
}

.yellow {
  background: #eae554;
}

.highlight-yellow {
  font-style: italic;
  background: #fff176;
  font-weight: 700;
  padding: 0 4px;
  border-radius: 4px;
}

.highlight-pink {
  background: #f8bbd0;
  font-weight: 700;
  padding: 0 4px;
  border-radius: 4px;
}

.highlight {
  background: #fff;
  font-weight: 700;
  padding: 0 6px;
  border-radius: 4px;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: #6b1f42;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}

.title-pink {
  color: #E93D98;
}

h1 {
  font-size: 80px;
  color: white;
}
@media (max-width: 575px) {
  h1 {
    font-size: 24px;
  }
}

.mfp-title {
  max-width: 400px;
  margin: 10px auto;
  line-height: 1.4;
  font-size: 16px;
  text-align: center;
  color: #ebe6e4;
}

/* ============ STATS SECTION ============ */
.stats-section {
  background: #f6bdd8;
  padding: 20px 0;
}
.stats-grid {

  padding-top: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 250px;
}
.stat-number {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(36px, 5vw, 56px);
  color: #E93D98;
  line-height: 1.1;
}
.stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  color: #5E3A2D;
  margin-top: 8px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .stats-grid {
    gap: 20px;
  }
  .stat-item {
    min-width: 120px;
    flex: 0 0 40%;
  }
}

/* ============ FAQ SECTION ============ */
.faq-section {
  background: #fce4ec;
  padding: 80px 0;
}
.faq-section h2 {
  color: #E93D98;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #fff5f8;
}
.faq-question .faq-icon {
  font-size: 22px;
  color: #E93D98;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

/* ============ CELEBRATION STEPS ============ */
.celebration-steps {
  background: #fce4ec;
  padding: 80px 0;
}
.celebration-steps h2 {
  color: #E93D98;
}
.celebration-steps .steps-subtitle {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 50px;
}
.celebration-steps .steps-subtitle strong {
  background: #ffe082;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.steps-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.step-card {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFC83D 0%, #FFB703 100%);
  color: #fff;
  font-family: "Luckiest Guy", cursive;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(255,183,3,0.3);
}
.step-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #5E3A2D;
  margin-bottom: 8px;
}
.step-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .steps-grid {
    gap: 24px;
  }
  .step-card {
    flex: 0 0 42%;
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  .step-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Footer legal links */
.footer__legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 8px;
}
.footer__legal a {
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
  color: #000000 !important;
}


/* Made by KH badge */
.footer__badge {
  display: inline-flex;
 
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(236, 148, 198, 0.15);
  border: 1px solid rgba(236, 148, 198, 0.3);
  width: fit-content;
  
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
.footer__badge:hover {
  background: rgba(236, 148, 198, 0.25);
  border-color: rgba(236, 148, 198, 0.5);
}
.footer__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #EC94C6;
  font-size: 11px;
  font-weight: 700;
  color: #EC94C6;
  letter-spacing: 0.5px;
}
.footer__badge-text  {
  margin-top: 10px;
  font-size: 13px !important;
  color: #000000 !important;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  margin-bottom: 20px;
}


/* Phone field validation */
.field__input.phone-error {
  border-color: #e74c3c !important;
}
.field__input.phone-valid {
  border-color: #27ae60 !important;
}
.phone-hint {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* Legal pages (Privacy Policy, Terms) */
.legal-page {
  padding: 120px 0 60px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 768px) {
  .legal-page {
    padding: 80px 0 40px;
  }
}
.legal-page h1 {
  font-size: 32px;
  font-weight: 700;
  color: #EC94C6;
  margin-bottom: 8px;
}
.legal-page .legal-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}
.legal-page ul {
  margin: 8px 0 16px 20px;
  list-style: disc;
}
.legal-page ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 4px;
}
.legal-page a {
  color: #EC94C6;
  text-decoration: underline;
}
.legal-page a:hover {
  color: #F4C542;
}

.new-img{
  width:100%;
  display:block;
}

.mobile-img{
  display:none;
}

@media (max-width:768px){

.desktop-img{
  display:none;
}

.mobile-img{
  display:block;
}

}

