.salon-pricing {
  margin: 0 auto 3rem;
  max-width: 1100px;
}

.salon-pricing .price-table-wrap {
  overflow-x: visible;
}

.salon-pricing table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  letter-spacing: 0.03em;
  table-layout: fixed;
}

.salon-pricing th,
.salon-pricing td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  vertical-align: middle;
}

.salon-pricing thead th {
  text-align: center;
  font-weight: 500;
}

.salon-pricing tbody td {
  text-align: center;
  white-space: nowrap; /* keep most prices on one line on desktop */
}

.salon-pricing tbody th[scope="row"] {
  text-align: left;
  font-weight: 400;
}

.salon-pricing .section-heading th {
  padding-top: 1.8rem;
  padding-bottom: 0.6rem;
  border-bottom: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.salon-pricing .section-note td {
  font-size: 11px;
  text-transform: uppercase;
  padding-top: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: none;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .salon-pricing table.price-table {
    font-size: 11px;
    letter-spacing: 0;
  }

  .salon-pricing th,
  .salon-pricing td {
    padding: 0.3rem 0.2rem;
  }

  .salon-pricing .section-heading th {
    font-size: 11px;
  }

  /* Give the service-name column a bit more room */
  .salon-pricing table.price-table th:first-child {
    width: 28%;
  }

  /* Prevent overlap: allow long prices to wrap in tight columns */
  .salon-pricing tbody td {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }
}