

.neumorph-text {
  color: var(--foreground);
  text-shadow: 1px 1px 1px var(--shadow-light), -1px -1px 1px var(--shadow-dark);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.section-title {
  padding-top: 12px;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

/* Pricing Carousel */
.pricing-carousel {
  position: relative;
  overflow: hidden; /* Скрываем переполнение */
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 10px 0;
  width: 100%;
}

.pricing-slide {
  flex: 0 0 100%; /* Каждый слайд занимает всю ширину */
  padding: 15px;
  box-sizing: border-box; /* Учитываем padding в общей ширине */
}

.pricing-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%; /* Устанавливаем явную ширину */
  max-width: 100%; /* Ограничиваем максимальную ширину */
  box-sizing: border-box; /* Учитываем padding и border */
}

.pricing-card:hover {
  transform: scale(1.05); /* Сохраняем масштабирование */
  box-shadow: 2px 2px 6px var(--shadow-dark), -2px -2px 6px var(--shadow-light); /* Уменьшаем тень */
}

.pricing-image-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--foreground);
}

.pricing-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.pricing-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.pricing-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  color: var(--primary);
  box-shadow: 2px 2px 4px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
}

/* Секция точек под слайдами */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot {
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #EB911C!important;
    transition: all 0.3s ease;
}
.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover {
    background: #EB911C!important;
}