/* Health Pricing Carousel Styles */
.pricing-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

.pricing-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  gap: 30px;
  scrollbar-width: none; /* Firefox */
}

.pricing-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.pricing-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  transition: transform 0.3s;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card--highlight {
  border: 2px solid #ff0000;
  position: relative;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card__header h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: bold;
  color: #ff0000;
}

.pricing-card__price span {
  font-size: 1rem;
  color: #777;
}

.pricing-card__badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ff0000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: center;
}

.pricing-card__features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__button {
  display: inline-block;
  text-align: center;
  background: #ff0000;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 20px;
}

.pricing-card__button:hover {
  background: #cc0000;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: #ff0000;
}

/* Responsive styles */
@media (max-width: 768px) {
  .pricing-card {
    flex: 0 0 85%;
  }
}