.pricing-card {
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(85, 45, 11, 0.08);
  transition: all 0.2s ease-in-out;
}

.pricing__heading {
  margin-bottom: 72px;
}

.pricing-card__prices {
  margin-top: 34px;
}

.pricing-card__treatments {
  margin-top: 12px;
  padding-top: 12px;
  gap: 4px;
}

@media (min-width: 1024px) {
  .pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(85, 45, 11, 0.15);
  }
}

.pricing-card__price-divider {
  border-bottom: 1px solid rgba(85, 45, 11, 0.1);
}

.pricing-card__cta {
  margin-top: auto;
  padding-top: 34px;
}

.pricing-card__cta a {
  display: block;
  border: 1px solid rgba(85, 45, 11, 0.9);
  border-radius: 6px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  color: #552d0b;
  transition: all 0.2s ease-in-out;
}

.pricing-card__cta a:hover {
  background-color: #552d0b;
  color: white;
}

.pricing-addon-item {
  border-bottom: 1px dashed rgba(85, 45, 11, 0.15);
}

.pricing-addon-item:last-child {
  border-bottom: none;
}

.pricing-addon-info-icon {
  border: 1px solid rgba(85, 45, 11, 0.3);
}

.pricing-addon-tooltip {
  box-shadow: 0 4px 16px rgba(85, 45, 11, 0.15);
}

