/* ============================================================
   Yoo Jean Korean Hair Salon — Price list
   Typography mirrors the VISIT US block: Oswald for headings,
   PT Serif for the rows, gold accent, same max-width column.
   ============================================================ */

.yj-price {
  --yj-pr-accent: #c9a227;
  --yj-pr-ink: #14110f;
  --yj-pr-muted: #8a8279;
  --yj-pr-line: #e8e2d8;

  max-width: 560px;
  margin: 0 auto;
  padding: 8px 24px 0;
  font-family: "PT Serif", Georgia, serif;
  color: var(--yj-pr-ink);
}

/* ---------- Group ---------- */

.yj-price__group {
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--yj-pr-line);
}

.yj-price__group:last-child { border-bottom: 0; }

.yj-price__title {
  margin: 0 0 6px;
  font-family: Oswald, sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yj-pr-ink);
}

.yj-price__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 10px;
  background: var(--yj-pr-accent);
}

.yj-price__note {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--yj-pr-muted);
}

/* ---------- Subgroups (Perm for Women, Package) ---------- */

.yj-price__subgroup {
  margin-top: 22px;
}

.yj-price__subgroup:first-of-type { margin-top: 18px; }

.yj-price__subtitle {
  margin: 0 0 2px;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yj-pr-accent);
}

/* ---------- Rows ---------- */

.yj-price__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.yj-price__subgroup .yj-price__list { margin-top: 8px; }

.yj-price__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  font-size: 15px;
  line-height: 1.5;
}

.yj-price__name {
  flex-shrink: 0;
  color: var(--yj-pr-ink);
}

/* Dotted leader between the name and the price */
.yj-price__dots {
  flex: 1;
  min-width: 18px;
  border-bottom: 1px dotted #cfc7b9;
  transform: translateY(-4px);
}

.yj-price__amount {
  flex-shrink: 0;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--yj-pr-ink);
  white-space: nowrap;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .yj-price { padding: 4px 16px 0; max-width: 100%; }
  .yj-price__group { padding: 28px 0 24px; }
  .yj-price__title { font-size: 21px; }
  .yj-price__row { font-size: 14.5px; padding: 6px 0; }
  .yj-price__amount { font-size: 14.5px; }
  .yj-price__subtitle { font-size: 14px; }
  .yj-price__subgroup { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .yj-price__row { transition: none; }
}
