/* Scoped styles for prices page to avoid conflicts */
.prices-page {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  color: #111827;
  background: #fff;
}

.prices-page main {
  padding: 40px 0;
}

.prices-title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

.prices-sub {
  color: #6B7280;
  margin: 0 0 32px;
  font-size: 18px;
}

.price-section {
  margin-bottom: 40px;
  padding: 0;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--txt);
  margin: 0 0 12px;
  padding: 8px 12px;
  background: rgba(254, 249, 195, 0.75);
  border-radius: 8px;
}

.price-table {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.price-table.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid #E5E7EB;
  transition: background 0.2s ease;
}

.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(254, 249, 195, 0.25); }
.price-row.highlight { background: #FEF9C3; }
.price-row.highlight:hover { background: #FEF3C7; }

.price-row span {
  flex: 1;
  color: #111827;
  font-size: 15px;
}

.price-row strong {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.prices-cta {
  background: #FEF9C3;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-top: 40px;
}

.prices-cta__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.prices-cta__chips {
  margin-top: 12px;
  justify-content: center;
}

@media (max-width: 768px) {
  .price-table.two-column { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* .section-title { font-size: 18px; } */
  /* .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
  } */
  .price-row span { font-size: 14px; }
  /* .price-row strong { 
    font-size: 18px; 
    display: inline-block;
    margin-top: 4px;
  } */
}


