/* Premium Pricing Table Styles */
.price-list-container {
  background: #ffffff;
  border: 1px solid rgba(11, 74, 65, 0.1);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(11, 74, 65, 0.06);
  overflow: hidden;
  transition: all 0.4s ease;
}

.price-list-container:hover {
  box-shadow: 0 20px 60px rgba(11, 74, 65, 0.1);
}

.price-list-table {
  width: 100%;
  margin-bottom: 0;
  background: transparent;
  border-collapse: collapse;
}

.price-list-table th,
.price-list-table td {
  padding: 22px 28px;
  vertical-align: middle;
  border-bottom: 1px dashed rgba(11, 74, 65, 0.15);
  color: #333;
  font-size: 1.05rem;
  transition: background 0.3s ease;
}

/* Hover effect on regular rows (excluding headers) */
.price-list-table tr:not(.section-header) {
  transition: all 0.3s ease;
}

.price-list-table tr:not(.section-header):hover {
  background: linear-gradient(90deg, rgba(200, 169, 106, 0.03) 0%, rgba(200, 169, 106, 0.0) 100%);
}

.price-list-table tr:not(.section-header):hover td {
  color: var(--nd-green-dark);
}

.price-list-table tr:last-child td {
  border-bottom: none;
}

.price-list-table .num-col {
  width: 80px;
  color: rgba(11, 74, 65, 0.4);
  font-weight: 700;
  font-family: var(--nd-font-head), sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.price-list-table .treatment-col {
  font-weight: 500;
  color: #2c3e50;
  font-family: var(--nd-font-nav), sans-serif;
}

.price-list-table .price-col {
  text-align: right;
  color: var(--nd-green-dark, #0b4a41);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

/* Premium Section Header Rows */
.price-list-table .section-header td {
  background: linear-gradient(135deg, rgba(14, 90, 79, 0.08) 0%, rgba(14, 90, 79, 0.02) 100%);
  font-weight: 800;
  color: var(--nd-green-dark, #0b4a41);
  font-size: 1.25rem;
  padding: 28px;
  border-bottom: 1px solid rgba(14, 90, 79, 0.1);
  border-top: none;
  font-family: var(--nd-font-head), sans-serif;
  position: relative;
}

/* Accent bar on the left of section header */
.price-list-table .section-header td::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--nd-gold, #c8a34d);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .price-list-table th, .price-list-table td {
    padding: 16px 15px;
    font-size: 0.95rem;
  }
  .price-list-table .num-col {
    width: 40px;
  }
  .price-list-table .section-header td {
    padding: 20px 15px;
    font-size: 1.1rem;
  }
}
