/* Styles specific to the Pet Mat pricing page (pricing/mat-pricing.html) */

/* ── Page header ── */
.mat2-pricing-hero {
  background-color: var(--color-offwhite);
  padding: 5rem 2rem 4rem;
}

.mat2-pricing-header {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.mat2-pricing-sub {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Shared pricing card classes (.pricing-*) now live in style.css ── */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.toggle-pills {
  display: inline-flex;
  background: var(--color-offwhite);
  border-radius: 8px;
  padding: 4px;
}

.toggle-pill {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-pill.active {
  background: var(--color-white);
  color: var(--color-text-secondary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.save-badge {
  background: var(--color-light-pink-bg);
  color: var(--color-pink);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

.annual-note {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.hardware-note {
  background: var(--color-offwhite);
  border-radius: 8px;
  border-left: 3px solid var(--color-pink);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.hardware-note p {
  margin: 0;
  color: var(--color-text-muted);
}

.hardware-note a {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 600;
}

.hardware-note a:hover {
  text-decoration: underline;
}

.subscribe-error {
  display: none;
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  text-align: center;
}

