/* Стилі для слайдера кола на планшетах (991px та менше) */
.circle-slider__container {
  position: relative;
  width: 100%;
  max-width: 44rem;
  margin: 3rem auto;
}

@media (max-width: 991px) {
  .circle-slider__container {
    display: block;
  }
}

@media (min-width: 992px) {
  .circle-slider__container {
    display: none;
  }
}

.circle-slider__main-image {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}

.circle-slider__main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.circle-slider__center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 280px;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.circle-slider__center-text-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  color: #2c5530;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.circle-slider__center-text-el.active {
  opacity: 1;
  visibility: visible;
}

/* Адаптивні стилі для тексту */
@media (max-width: 768px) {
  .circle-slider__center-text {
    width: 85%;
    max-width: 250px;
  }

  .circle-slider__center-text-el {
    font-size: 1.4rem;
    padding: 1.2rem;
  }
}

@media (max-width: 576px) {
  .circle-slider__center-text {
    width: 80%;
    max-width: 240px;
  }

  .circle-slider__center-text-el {
    font-size: 1.3rem;
    padding: 1rem;
    line-height: 1.4;
  }
}

.circle-slider__features {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}


.circle-slider__feature {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.circle-slider__feature.swiper-slide-active {
  opacity: 1;
}

.circle-slider__feature img {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
}

.circle-slider__feature span {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.circle-slider__feature span br {
  display: none;
}

.circle-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.circle-slider__nav:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.circle-slider__nav--prev {
  left: 0;
}

.circle-slider__nav--next {
  right: 0;
}

.circle-slider__nav svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #333;
}

.circle-slider__pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.circle-slider__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.circle-slider__pagination .swiper-pagination-bullet-active {
  background: #333;
  transform: scale(1.2);
}

/* Приховуємо пагінацію на мобільних */
@media (max-width: 768px) {
  .circle-slider__pagination {
    display: none;
  }
}

/* Приховуємо оригінальний блок на планшетах */
@media (max-width: 991px) {
  .circle__body-js .circle__body {
    display: none;
  }
}

/* Стилі для заголовка послуг */
.services-title {
  font-family: "Avenir Next Cyr", sans-serif !important;
  letter-spacing: 0.02em;

  @media (max-width: 991px) {
    text-align: center;
  }
}

/* Стилі для заголовка блогу */
.blog__title a {
  color: #434834;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog__title a:hover {
  color: #767a61;
}

.doctor-card__img img {
  object-position: top;
}

.doctor__img img {
  object-position: center;
}

/* Приховуємо повідомлення про вартість тільки для wellness-detoks */
body.services-wellness-detoks .callback-form__info,
body.services-wellness-detoks .callback-form__info-text {
  display: none !important;
}