@charset "UTF-8";
.spa-page {
  padding-top: 100px;
  background: #FDF9F5;
  min-height: 100vh;
}

.spa-header {
  padding: 4rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  margin-bottom: 4rem;
}

.spa-page__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.spa-page__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.programs-list {
  padding-bottom: 4rem;
}

/*.program-item {
  background: $color-white;
  border-radius: 16px;
  padding: $spacing-md;
  margin-bottom: $spacing-md;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  transition: $transition;

  &:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
  }

  &--featured {
    border: 2px solid $color-gold;
  }

  &--premium {
    border: 2px solid $color-emerald;
  }

  &--special {
    background: linear-gradient(135deg, $color-white 0%, $color-light-bg 100%);
  }

  &__badge {
    position: absolute;
    top: $spacing-sm;
    right: $spacing-sm;
    background: $color-gold;
    color: $color-white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  &__header {
    margin-bottom: $spacing-md;
    padding-bottom: $spacing-sm;
    border-bottom: 2px solid rgba($color-accent, 0.1);
  }

  &__title {
    font-family: $font-heading;
    font-size: 1.75rem;
    font-weight: 600;
    color: $color-text;
    margin: 0 0 $spacing-sm;
  }

  &__category {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: $color-accent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: $spacing-sm;
  }

  &__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: $spacing-sm;
  }

  &__duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: $color-text-muted;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  &__price {
    font-family: $font-heading;
    font-size: 1.75rem;
    font-weight: 700;
    color: $color-emerald;

    small {
      font-size: 0.85rem;
      font-weight: 400;
      color: $color-text-muted;
      display: block;
    }

    &--dual {
      margin-top: 0.5rem;
      padding-top: 0.5rem;
      border-top: 1px dashed rgba($color-accent, 0.2);
    }
  }

  &__services {
    margin-bottom: $spacing-md;

    &--dual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: $spacing-md;

      @media (max-width: 640px) {
        grid-template-columns: 1fr;
      }
    }
  }

  &__footer {
    text-align: center;
  }
}*/
.program-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}
.program-item--horizontal {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  padding: 1rem;
}
@media (max-width: 768px) {
  .program-item--horizontal {
    flex-direction: column;
  }
}
.program-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.program-item:hover .program-item__img {
  transform: scale(1.03);
}
.program-item__image {
  flex: 0 0 180px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .program-item__image {
    width: 100%;
    height: 160px;
  }
}
.program-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.program-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.program-item__header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(139, 115, 85, 0.1);
}
@media (max-width: 768px) {
  .program-item__header {
    margin-bottom: 1rem;
  }
}
.program-item__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.program-item__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.program-item__duration {
  font-size: 0.8rem;
  font-weight: 600;
  color: #5A5A5A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.program-item__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3E3A;
}
.program-item__price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #5A5A5A;
  display: block;
  text-align: right;
}
.program-item__price--dual {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px dashed rgba(139, 115, 85, 0.2);
}
.program-item__services {
  margin-bottom: 2rem;
  flex: 1;
}
.program-item__services--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .program-item__services--dual {
    grid-template-columns: 1fr;
  }
}
.program-item__footer {
  margin-top: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .program-item__footer {
    margin-top: 1rem;
  }
}
.program-item--featured {
  border: 2px solid #C9A96E;
}
.program-item--premium {
  border: 2px solid #2C3E3A;
}
.program-item--special {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E9 100%);
}
.program-item__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #C9A96E;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.program-item__category {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.mt-20 {
  margin-top: 20px;
}

.program-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
}
.program-card--horizontal {
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 768px) {
  .program-card--horizontal {
    flex-direction: column;
  }
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.program-card:hover .program-card__img {
  transform: scale(1.04);
}
.program-card__image {
  flex: 0 0 400px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .program-card__image {
    width: 100%;
    height: 180px;
  }
}
.program-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.program-card__content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 768px) {
  .program-card__content {
    padding: 2rem;
  }
}
.program-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}
@media (max-width: 768px) {
  .program-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.program-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}
.program-card__subtitle {
  font-size: 0.9rem;
  color: #5A5A5A;
  margin: 0;
  font-style: italic;
}
.program-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
}
@media (max-width: 768px) {
  .program-card__meta {
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(139, 115, 85, 0.12);
  }
}
.program-card .meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
}
.program-card .meta-item--time {
  color: #5A5A5A;
}
.program-card .meta-item--time svg {
  width: 18px;
  height: 18px;
  color: #8B7355;
}
.program-card .meta-item--price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3E3A;
}
.program-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.program-card .list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
  font-size: 0.95rem;
}
.program-card .list-item:last-child {
  border-bottom: none;
}
.program-card .list-item--full .list-item__time {
  display: none;
}
.program-card .list-item__text {
  color: #1A1A1A;
  line-height: 1.4;
  padding-right: 1rem;
}
.program-card .list-item__time {
  font-size: 0.85rem;
  font-weight: 500;
  color: #8B7355;
  white-space: nowrap;
  flex-shrink: 0;
}
.program-card__footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 115, 85, 0.12);
  flex-wrap: wrap;
}
.program-card__footer button{
  width: 100%;
}
@media (max-width: 480px) {
  .program-card__footer {
    flex-direction: column;
  }
}
.program-card--featured {
  border: 2px solid #C9A96E;
  position: relative;
}
.program-card--featured::before {
  content: "Хит";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #C9A96E;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.program-card--premium {
  border: 2px solid #2C3E3A;
}
.program-card--special {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E9 100%);
}
.program-card--special .program-card__subtitle {
  color: #8B7355;
  font-weight: 500;
  font-style: normal;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: #2C3E3A;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
}
.btn--outline {
  border: 2px solid #8B7355;
  color: #8B7355;
  background: transparent;
}
.btn--outline:hover {
  background: #8B7355;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn--book {
  flex: 1;
  min-width: 0;
  border: 2px solid transparent;
}

@media (max-width: 480px) {
  .btn--certificate {
    order: -1;
  }
}

.program-card__price-dual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.125rem;
}
.program-card__price-dual .price-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3E3A;
}
.program-card__price-dual .price-secondary {
  font-size: 0.85rem;
  color: #5A5A5A;
}

.program-card__services-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .program-card__services-dual {
    grid-template-columns: 1fr;
  }
}
.program-card__services-dual .dual-col__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2C3E3A;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.program-card__services-dual .dual-col .list-item {
  padding: 0.375rem 0;
  font-size: 0.9rem;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
  font-size: 0.9rem;
}
.service-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.service-name {
  color: #1A1A1A;
  line-height: 1.4;
  padding-right: 1rem;
}

.service-time {
  font-size: 0.8rem;
  font-weight: 500;
  color: #8B7355;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-book {
  background: #2C3E3A;
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}
.btn-book:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
}

.dual-services__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2C3E3A;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
}
.service-row:last-child {
  border-bottom: none;
}

.service-name {
  font-size: 0.95rem;
  color: #1A1A1A;
  line-height: 1.5;
  padding-right: 1rem;
}

.service-time {
  font-size: 0.85rem;
  font-weight: 500;
  color: #8B7355;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-book {
  background: #2C3E3A;
  color: #FFFFFF;
  border: none;
  padding: 1rem 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-book:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 62, 58, 0.3);
}
.btn-book:active {
  transform: translateY(0);
}

.spa-cta-simple {
  background: #F5F0E9;
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
}
.spa-cta-simple__text {
  font-size: 1.1rem;
  color: #5A5A5A;
  margin: 0;
}
.spa-cta-simple__text strong {
  color: #1A1A1A;
}
.spa-cta-simple__text a {
  color: #2C3E3A;
  text-decoration: none;
  font-weight: 600;
}
.spa-cta-simple__text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .spa-page {
    padding-top: 80px;
  }
  .program-item {
    padding: 1rem;
  }
  .program-item__title {
    font-size: 1.4rem;
  }
  .program-item__price {
    font-size: 1.4rem;
  }
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .service-time {
    margin-top: 0.25rem;
  }
  .program-item__services--dual {
    grid-template-columns: 1fr;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(253, 249, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}
.header__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo__image {
  height: 45px;
  width: auto;
}

@media (max-width: 1024px) {
  .nav--desktop {
    display: none;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav__link:hover, .nav__link.active {
  background: rgba(139, 115, 85, 0.1);
  color: #8B7355;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }
}
.burger span {
  width: 24px;
  height: 2.5px;
  background: #1A1A1A;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #2C3E3A;
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .btn--primary.header__btn--desktop {
    display: none;
  }
}

.footer {
  background: #2C3E3A;
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__slogan {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 1rem;
}
.footer__address {
  font-style: normal;
  line-height: 2;
}
.footer__address a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer__address a:hover {
  color: #C9A96E;
}
.footer__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-right: 0.5rem;
}
.footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__bottom .privacy-link {
  color: inherit;
  text-decoration: none;
}
.footer__bottom .privacy-link:hover {
  color: #FFFFFF;
}

.mobile-menu {
  display: none;
}

/*# sourceMappingURL=spa.css.map */
