/* ═══════════════════════════════════════════════
   TX5 – Piercing Page Styles
   ═══════════════════════════════════════════════ */

.piercing-pricelist-section {
  background: var(--dark-2);
  padding: 100px 0;
}

.piercing-price-note {
  font-size: 0.85rem;
  color: var(--light-gray);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 48px;
}

.piercing-price-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.piercing-price-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.piercing-price-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.piercing-price-item:hover {
  background: var(--dark-3);
}

.piercing-price-name {
  font-family: var(--ff-nav);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.piercing-price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.15);
  margin-bottom: 3px;
}

.piercing-price-value {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
