/* ============================================================
   Price List — scoped under pl- prefix
   Inherits sp- design tokens from sp-style.css
   ============================================================ */

/* --- Header */

.pl-section {
  background: var(--sp-warm-white);
  min-height: 60vh;
}

.pl-header {
  text-align: center;
  margin-bottom: 56px;
}

.pl-title {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 0;
}

/* --- Category group */

.pl-group {
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pl-group__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pl-group__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sp-rose);
  white-space: nowrap;
}

.pl-group__line {
  flex: 1;
  height: 1px;
  background: var(--sp-sand);
}

/* --- Item list */

.pl-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pl-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sp-sand);
  transition: background 0.2s;
}

.pl-item:first-child {
  border-top: 1px solid var(--sp-sand);
}

.pl-item__left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pl-item__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--sp-charcoal);
  line-height: 1.2;
}

.pl-item__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--sp-text-light);
  line-height: 1.5;
}

.pl-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.pl-item__unit {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--sp-text-light);
  text-transform: uppercase;
}

.pl-item__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--sp-charcoal);
  white-space: nowrap;
}

/* --- Bottom note / CTA */

.pl-note {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px 28px;
  background: var(--sp-cream);
  border: 1px solid var(--sp-sand);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pl-note p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--sp-text-light);
  line-height: 1.65;
  margin: 0;
}

/* --- Responsive */

@media (max-width: 600px) {
  .pl-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
  }

  .pl-item__right {
    align-items: flex-start;
    flex-direction: row;
    gap: 8px;
  }

  .pl-note {
    flex-direction: column;
    text-align: center;
  }
}
