/* Promotion detail page */
.promo-detail {
  padding: 50px 0 70px;
  background: #f7f9fb;
  font-family: 'Poppins', system-ui, sans-serif;
}
.promo-detail .container { max-width: 1500px; margin: 0 auto; padding: 0 20px; }

.promo-detail__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  margin-bottom: 40px;
}

.promo-detail__main {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  overflow: hidden;
}
.promo-detail__hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  background: #226468;
  color: #fff;
  position: relative;
  min-height: 180px;
}
.promo-detail__hero-content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-detail__hero-image {
  background: rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 48px;
  border-left: 1px dashed rgba(255,255,255,.18);
}
.promo-detail__hero-image-hint {
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
}
.promo-detail__hero[data-bg] { background-image: var(--bg); background-size: cover; background-position: center; }
.promo-detail__content { padding: 24px 32px 28px; }
.promo-detail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.promo-detail__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #163E40;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.promo-detail__badge--plain {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 8px 16px;
}
.promo-detail__tags {
  display: inline-flex;
  gap: 6px;
}
.promo-detail__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.promo-detail__tag i { font-size: 14px; }

.promo-detail__content {
  font-size: 15px;
  line-height: 1.7;
  color: #2e3a4e;
}
.promo-detail__content p { margin: 0 0 14px; }
.promo-detail__content p:last-child { margin-bottom: 0; }
.promo-detail__content h2,
.promo-detail__content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #163E40;
  margin: 22px 0 10px;
}
.promo-detail__content ul, .promo-detail__content ol { padding-left: 24px; margin: 10px 0 14px; }
.promo-detail__content li { margin-bottom: 6px; }
.promo-detail__content a { color: #226468; text-decoration: underline; }
.promo-detail__content a:hover { color: #6B237A; }
.promo-detail__content img { max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; }

.promo-detail__side {
  position: sticky;
  top: 100px;
  align-self: start;
}
.promo-detail__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1.5px solid #e8edf3;
  box-shadow: 0 4px 14px rgba(22,62,64,.05);
}

.pd-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.pd-price__new {
  font-size: 32px;
  font-weight: 800;
  color: #226468;
  letter-spacing: -.5px;
}
.pd-price__old {
  font-size: 15px;
  color: #9aa6b2;
  text-decoration: line-through;
  font-weight: 500;
}
.pd-price__save {
  display: inline-block;
  background: rgba(107,35,122,.1);
  color: #6B237A;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 4px;
  width: fit-content;
}
.pd-price__ask {
  font-size: 18px;
  color: #6b7a8c;
  font-style: italic;
}

.pd-expires {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4A6577;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 12px;
  background: #f3f6fa;
  border-radius: 8px;
  margin-bottom: 18px;
}
.pd-expires i { color: #6B237A; font-size: 16px; }

.pd-book {
  width: 100%;
  background: #226468;
  color: #fff;
  border: 0;
  padding: 14px 18px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .12s, box-shadow .2s;
  box-shadow: 0 6px 14px rgba(34,100,104,.3);
  margin-bottom: 16px;
}
.pd-book:hover {
  background: #6B237A;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(107,35,122,.3);
}
.pd-book i { font-size: 17px; }

.pd-phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #eef1f5;
  font-size: 13px;
}
.pd-phone span { color: #6b7a8c; }
.pd-phone a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #163E40;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.pd-phone a i { color: #226468; font-size: 17px; }
.pd-phone a:hover { color: #226468; }

.promo-detail__related {
  margin-top: 12px;
}
.promo-detail__related-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #163E40;
  margin: 0 0 18px;
}
.promo-detail__related-cta {
  margin-top: 18px;
  text-align: center;
}
.pd-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(34,100,104,.08);
  color: #226468;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.pd-link:hover { background: #226468; color: #fff; }

@media (max-width: 991px) {
  .promo-detail__grid { grid-template-columns: 1fr; gap: 18px; }
  .promo-detail__side { position: static; }
  .promo-detail__hero { grid-template-columns: 1fr; min-height: 0; }
  .promo-detail__hero-image { min-height: 120px; border-left: 0; border-top: 1px dashed rgba(255,255,255,.18); }
  .promo-detail__hero-content { padding: 22px 22px; }
  .promo-detail__content { padding: 20px 22px 24px; }
  .pd-price__new { font-size: 28px; }
}
@media (max-width: 575px) {
  .promo-detail { padding: 30px 0 50px; }
  .promo-detail__hero-content { padding: 18px 18px; }
  .promo-detail__content { padding: 16px 18px 20px; }
  .promo-detail__head { gap: 8px; }
  .promo-detail__badge { font-size: 22px; padding: 8px 14px; }
  .promo-detail__card { padding: 18px; }
  .pd-price__new { font-size: 24px; }
  .promo-detail__related-title { font-size: 18px; }
}

/* === legacy sales-page/sale-features/new-form (extracted from instinctsun.com/css/app.css, colors remapped) === */
.sales-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sales-page__content {
  width: 100%;
}

.sales-page__aside {
  width: 100%;
  max-width: 300px;
  margin-left: 30px;
}

.sales-page__poster {
  overflow: hidden;
  position: relative;
  height: 400px;
  margin-bottom: 40px;
  border-radius: 10px;
  background: no-repeat center / cover;
}

.sales-page__heading {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: 60px;
  padding: 25px 25px 45px 25px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(68, 135, 3, 0)), color-stop(1%, rgba(68, 135, 3, 0)), to(#226468));
  background: linear-gradient(to top, rgba(68, 135, 3, 0) 0%, rgba(68, 135, 3, 0) 1%, #226468 100%);
  font-size: 25px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.sale-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: 'Century Gothic', sans-serif;
}

.sale-features__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}

.sale-features__price--old {
  margin-bottom: 10px;
}

.sale-features__price__label {
  width: 100%;
  max-width: 70px;
  margin-right: 15px;
  padding-top: 8px;
  font-size: 12px;
  line-height: 12px;
  color: #b2b2b2;
  text-align: right;
}

.sale-features__price--old .sale-features__price__label {
  padding-top: 0;
  color: #b2b2b2;
}

.sale-features__price__value {
  width: 100%;
  font-size: 56px;
  font-weight: bold;
  line-height: 1;
  color: #6B237A;
}

.sale-features__price--old .sale-features__price__value {
  font-size: 28px;
  font-weight: normal;
  color: #b2b2b2;
  text-decoration: line-through;
}

.sale-features__price__value small {
  font-size: 14px;
  font-weight: normal;
}

.sale-features__params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.sale-features__params__param {
  width: 100%;
  padding: 15px 0;
  border-left: 1px solid #ebebeb;
  font-size: 20px;
  color: #4d4b4b;
  text-align: center;
}

.sale-features__params__param:first-child {
  border-left: none;
}

.sale-features__params__param[data-label]:before {
  content: attr(data-label);
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #b2b2b2;
  text-transform: lowercase;
}

.sale-features__timer {
  width: 100%;
  padding: 15px 0;
  text-align: center;
}

.sale-features__timer[data-label]:before {
  content: attr(data-label);
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #b2b2b2;
  text-transform: lowercase;
}

.sale-features__book {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 20px 40px;
  background-color: #226468;
  font-family: 'Century Gothic', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.sale-features__book:hover {
  opacity: .8;
}

.sale-features__callback {
  display: block;
  width: 100%;
  padding: 20px 40px;
  border-bottom: 1px solid #ebebeb;
  font-family: 'Century Gothic', sans-serif;
  font-size: 16px;
  color: #4d4b4b;
  text-decoration: underline;
  text-align: center;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.sale-features__callback:hover {
  opacity: .5;
}

.sale-features__phones {
  width: 100%;
  padding: 15px 0;
}

.sale-features__phones,
.sale-features__phones a {
  font-size: 20px;
  line-height: 1.5;
  color: #4d4b4b;
  text-align: center;
  text-decoration: none !important;
}

.sale-features__phones[data-label]:before {
  content: attr(data-label);
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #b2b2b2;
  text-transform: lowercase;
}

.hider-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

.hider-trigger a {
  display: block;
  padding: 15px 40px;
  background-color: #226468;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.service-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -7px;
}

.service-card-list--hideable {
  overflow: hidden;
  max-height: calc((450px + 60px) * 2);
}

@media only screen and (max-width: 719px) {
  .service-card-list {
    margin: 0;
  }
}

.service-card-list__item {
  width: 100%;
  max-width: calc(50% - 14px);
  min-height: 450px;
  margin: 7px 7px 60px 7px;
}

@media only screen and (max-width: 719px) {
  .service-card-list__item {
    max-width: calc(100% - 15px);
    margin: 15px;
  }
}

.service-card {
  font-family: 'Century Gothic', sans-serif;
}

.service-card,
.service-card * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.service-card__poster {
  overflow: hidden;
  position: relative;
  height: 290px;
  border-radius: 10px;
  background: #eeeae6 no-repeat center / cover;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.service-card:hover .service-card__poster {
  opacity: .9;
}

.service-card__heading {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 60px;
  padding: 45px 25px 25px 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 135, 3, 0)), color-stop(1%, rgba(68, 135, 3, 0)), to(#226468));
  background: linear-gradient(to bottom, rgba(68, 135, 3, 0) 0%, rgba(68, 135, 3, 0) 1%, #226468 100%);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.service-card:hover .service-card__heading {
  padding-bottom: 30px;
}

.service-card__heading,
.service-card__heading a {
  font-size: 25px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.service-card__price {
  margin-bottom: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
  font-size: 29px;
  font-weight: bold;
  color: #6B237A;
  text-align: center;
}

.service-card__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service-card__more a {
  display: block;
  padding: 15px 40px;
  background-color: #6B237A;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.service-card__more a:hover {
  opacity: .8;
}

.service-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service-page__content {
  width: calc(100% - 300px);
}

.service-page__content .card {
  width: 100%;
}

.service-page__aside {
  width: 100%;
  max-width: 300px;
  margin-left: 30px;
}

.service-page__poster {
  overflow: hidden;
  position: relative;
  height: 400px;
  margin-bottom: 40px;
  border-radius: 10px;
  background: no-repeat center / cover;
}

.service-page__heading {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: 60px;
  padding: 25px 25px 45px 25px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(68, 135, 3, 0)), color-stop(1%, rgba(68, 135, 3, 0)), to(#226468));
  background: linear-gradient(to top, rgba(68, 135, 3, 0) 0%, rgba(68, 135, 3, 0) 1%, #226468 100%);
  font-size: 25px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.service-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: 'Century Gothic', sans-serif;
}

.service-features__price {
  width: 100%;
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.5;
  font-weight: bold;
  color: #6B237A;
  text-align: center;
}

.service-features__book {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 20px 10px;
  background-color: #226468;
  font-family: 'Century Gothic', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.service-features__book:hover {
  opacity: .8;
}

.service-features__callback {
  display: block;
  width: 100%;
  padding: 20px 40px;
  border-bottom: 1px solid #ebebeb;
  font-family: 'Century Gothic', sans-serif;
  font-size: 16px;
  color: #4d4b4b;
  text-decoration: underline;
  text-align: center;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.service-features__callback:hover {
  opacity: .5;
}

.service-features__phones {
  width: 100%;
  padding: 15px 0;
}

.service-features__phones,
.service-features__phones a {
  font-size: 20px;
  line-height: 1.5;
  color: #4d4b4b;
  text-align: center;
  text-decoration: none !important;
}

.service-features__phones[data-label]:before {
  content: attr(data-label);
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #b2b2b2;
  text-transform: lowercase;
}

.new-pagination .paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.new-pagination .paging .rulea,
.new-pagination .paging .rule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  text-decoration: none;
  font-size: 16px;
  color: #4d4b4b;
}

.new-pagination .paging .rule {
  background-color: #226468;
  color: #fff;
}

.page-heading {
  position: relative;
  margin-bottom: 40px;
  padding: 30px 0;
  background-color: #6B237A;
}

.page-heading:before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% + 165px);
  left: 0;
  bottom: 0;
  background-color: #6B237A;
}

.page-heading__inner {
  position: relative;
  width: 1003px;
  margin: 0 auto;
  padding-left: 35px;
  font: 30px 'Century Gothic', sans-serif;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}

.timer__block {
  position: relative;
  width: 100%;
  max-width: 60px;
  font-size: 40px;
  line-height: 1;
  color: #4d4b4b;
}

.timer__block:before {
  content: ":";
  position: absolute;
  top: 0;
  right: -7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
}

.timer__block:last-child:before {
  display: none;
}

.timer__block[data-label]:after {
  content: attr(data-label);
  display: block;
  margin-top: 5px;
  font-size: 12px;
  text-transform: lowercase;
}

.new-form {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Century Gothic', sans-serif;
}

.new-form__heading {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #757575;
}

.new-form__field {
  width: 100%;
  height: 35px;
  margin-bottom: 20px;
  padding: 0 10px;
  border: 1px solid #9b9b9b;
  font-family: 'Century Gothic', sans-serif;
  font-size: 16px;
  color: #757575;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.new-form__success {
  display: none;
  margin-bottom: 20px;
  font-family: 'Century Gothic', sans-serif;
  font-size: 16px;
  color: green;
  text-align: center;
}

.new-form__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  white-space: nowrap;
}

.new-form__date[data-label]:before {
  content: attr(data-label);
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #757575;
}

.new-form__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 35px;
  border: 1px solid #9b9b9b;
}

.new-form__cont__date {
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: none;
  border-right: 1px solid #9b9b9b;
  font-family: 'Century Gothic', sans-serif;
  font-size: 16px;
  color: #757575;
}

.new-form__cont__time {
  max-width: 120px;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: none;
  font-family: 'Century Gothic', sans-serif;
  font-size: 16px;
  color: #757575;
}

.new-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.appointment__content .new-form__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.new-form__btn {
  display: block;
  padding: 10px 30px;
  border: none;
  background-color: #226468;
  font-family: 'Century Gothic', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.new-form__cancel {
  display: block;
  padding: 10px 40px;
  border: none;
  background-color: transparent;
  font-family: 'Century Gothic', sans-serif;
  font-size: 16px;
  color: #4d4b4b;
  text-decoration: underline;
  text-align: center;
  cursor: pointer;
}

.popup {
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup--visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup__content {
  overflow: hidden;
  width: 100%;

}

/* === Iter 2: pd-sale sidebar (sale-features in our brand) === */
.promo-detail__hero { background: linear-gradient(135deg, #226468 0%, #163E40 100%); color: #fff; }
.promo-detail__hero.has-image { background-size: cover; background-position: center; position: relative; }
.promo-detail__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(34,100,104,0.78) 0%, rgba(22,62,64,0.92) 100%);
}
.promo-detail__hero-content { position: relative; z-index: 1; padding: 36px 32px; }
.promo-detail__hero-title {
  color: #fff !important; font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 28px; line-height: 1.25; margin: 0;
}
.promo-detail__content {
  background: #fff; border-radius: 14px; padding: 28px 32px;
  border: 1px solid #E5E5E5; margin-top: 18px;
  font-family: 'Poppins', sans-serif; font-size: 15px; line-height: 1.7; color: #163E40;
}
.promo-detail__content p { margin: 0 0 12px; }
.promo-detail__content br + br { display: block; height: 6px; content: ""; }
.promo-detail__content a { color: #226468; text-decoration: underline; }

.pd-sale {
  background: #fff; border-radius: 14px; padding: 24px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 8px 30px -10px rgba(34,100,104,0.18);
  position: sticky; top: 100px;
  font-family: 'Poppins', sans-serif;
}
.pd-sale__prices { display: flex; gap: 16px; align-items: flex-end; margin-bottom: 16px; }
.pd-sale__price { flex: 1; }
.pd-sale__price-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #9CA3AF; margin-bottom: 6px; }
.pd-sale__price-value { font-size: 28px; font-weight: 700; color: #226468; line-height: 1; }
.pd-sale__price-value small { font-size: 13px; font-weight: 500; color: #6B7280; margin-left: 2px; }
.pd-sale__price--old .pd-sale__price-value {
  font-size: 18px; color: #9CA3AF; text-decoration: line-through; font-weight: 500;
}

.pd-sale__params {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 0 0 20px; padding: 16px 0;
  border-top: 1px dashed #E5E5E5; border-bottom: 1px dashed #E5E5E5;
}
.pd-sale__param-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #9CA3AF; margin-bottom: 4px; }
.pd-sale__param-value { font-size: 20px; font-weight: 700; color: #6B237A; }

.pd-sale__timer { margin-bottom: 20px; }
.pd-sale__timer-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: #9CA3AF; margin-bottom: 10px; text-align: center; }
.pd-sale__timer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pd-sale__timer-block {
  background: linear-gradient(135deg, #226468 0%, #163E40 100%);
  color: #fff; text-align: center; padding: 10px 4px; border-radius: 8px;
}
.pd-sale__timer-num { font-size: 22px; font-weight: 700; line-height: 1; display: block; font-variant-numeric: tabular-nums; }
.pd-sale__timer-name { font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; margin-top: 4px; display: block; }
.pd-sale__timer-until { margin-top: 10px; text-align: center; font-size: 12px; color: #6B7280; }

.pd-sale__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pd-sale__book {
  display: block; width: 100%; background: #226468; color: #fff; border: 0;
  padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600;
  cursor: pointer; text-align: center; text-decoration: none;
  font-family: 'Poppins', sans-serif; transition: background-color .15s;
}
.pd-sale__book:hover { background: #163E40; color: #fff; }
.pd-sale__callback {
  display: block; width: 100%; background: transparent; color: #226468;
  border: 1.5px solid #226468; padding: 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer; text-align: center;
  text-decoration: none; font-family: 'Poppins', sans-serif; transition: all .15s;
}
.pd-sale__callback:hover { background: #226468; color: #fff; }

.pd-sale__phones { border-top: 1px solid #E5E5E5; padding-top: 16px; }
.pd-sale__phones-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #9CA3AF; margin-bottom: 8px; }
.pd-sale__phones a {
  display: block; font-size: 17px; font-weight: 600; color: #163E40;
  text-decoration: none; padding: 4px 0;
}
.pd-sale__phones a:hover { color: #226468; }

.promo-detail__related { margin-top: 50px; }
.promo-detail__related-title {
  font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: #163E40;
  margin: 0 0 24px; text-align: center;
}
.promo-detail__related-cta { text-align: center; margin-top: 24px; }
.promo-detail__related-cta .pd-link {
  display: inline-block; padding: 12px 24px; background: #fff;
  border: 1px solid #226468; color: #226468; border-radius: 8px;
  text-decoration: none; font-weight: 600; transition: background-color .15s, color .15s;
}
.promo-detail__related-cta .pd-link:hover { background: #226468; color: #fff; }

@media (max-width: 991px) {
  .promo-detail__grid { grid-template-columns: 1fr; }
  .pd-sale { position: static; }
}

/* Related services block at the bottom of a service page */
.service-related {
  padding: 64px 0 90px;
  font-family: 'Poppins', system-ui, sans-serif;
}
.service-related__head { margin-bottom: 26px; }
.service-related__title {
  font-size: 26px;
  font-weight: 700;
  color: #163E40;
  margin: 0 0 6px;
}
.service-related__lead {
  font-size: 15px;
  color: #5a7173;
  margin: 0;
}
.service-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-related__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2eced;
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.service-related__card:hover {
  border-color: #226468;
  box-shadow: 0 10px 26px rgba(34,100,104,.12);
  transform: translateY(-2px);
}
.service-related__card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #163E40;
}
.service-related__card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.service-related__card-price {
  font-size: 15px;
  font-weight: 700;
  color: #226468;
}
.service-related__card-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #6b8385;
}
.service-related__card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #6B237A;
}
.service-related__card-more i { font-size: 17px; }

@media (max-width: 991px) {
  .service-related { padding: 44px 0 60px; }
  .service-related__grid { grid-template-columns: repeat(2, 1fr); }
  .service-related__title { font-size: 22px; }
}

@media (max-width: 575px) {
  .service-related__grid { grid-template-columns: 1fr; gap: 14px; }
  .service-related__card { padding: 16px; }
}
