/* ============================================================
   FRESH AIR PILATES — Pricing Page (pricing.css)
   ============================================================ */

/* Tabs bar */
.pricing-tabs-bar {
  background: var(--sage-pale);
  border-bottom: 1px solid var(--sage-light);
  display: flex;
  justify-content: center;
}

.pricing-tabs {
  display: flex;
}

.ptab {
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 1.2rem 2.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--text-light);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  transition: all var(--trans);
}

.ptab.active { color: var(--sage); border-bottom-color: var(--sage); }
.ptab:hover:not(.active) { color: var(--text-dark); }

/* Panels */
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; } }

/* Plans grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone);
  margin-bottom: 1.5rem;
}

.plan-card {
  background: var(--cream);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--trans);
}

.plan-card:hover { background: var(--warm-white); }

.plan-featured {
  background: var(--text-dark) !important;
}

.plan-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--text-dark);
  padding: 0.3rem 0.8rem; border-radius: 100px;
  margin-bottom: 1.5rem; font-weight: 600;
  width: fit-content;
}

.plan-type {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 0.4rem; font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.plan-featured .plan-type { color: var(--sage-light); }

.plan-card h3 {
  font-size: 1.6rem; margin-bottom: 0.75rem;
}

.plan-featured h3 { color: var(--cream); }

.plan-card > p {
  font-size: 0.88rem; margin-bottom: 0;
  color: var(--text-mid);
}
.plan-featured > p { color: rgba(255,255,255,0.55); }

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  line-height: 1; color: var(--text-dark);
  margin: 1.75rem 0 0.25rem;
}

.plan-featured .plan-price { color: var(--gold); }

.plan-period {
  font-size: 0.78rem; color: var(--text-light);
  margin-bottom: 2rem;
  font-family: 'Jost', sans-serif;
}

.plan-featured .plan-period { color: rgba(255,255,255,0.4); }

.plan-features {
  flex: 1;
  border-top: 1px solid rgba(196,185,176,0.3);
  padding-top: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
}

.plan-featured .plan-features { border-top-color: rgba(255,255,255,0.12); }

.plan-features li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 0.87rem; color: var(--text-mid);
  border-bottom: 1px solid rgba(196,185,176,0.15);
}

.plan-features li:last-child { border-bottom: none; }
.plan-featured .plan-features li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.07); }

.pf-check { color: var(--sage); font-weight: 600; flex-shrink: 0; }
.plan-featured .pf-check { color: var(--gold); }

/* Class passes */
.passes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--stone);
  margin-bottom: 1.5rem;
}

.passes-col {
  background: var(--cream);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.passes-header { margin-bottom: 1rem; }
.passes-header h3 { margin-top: 0.25rem; }

.pass-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(196,185,176,0.3);
  margin-bottom: 0.25rem;
}

.pass-item:last-of-type { border-bottom: none; margin-bottom: 2rem; }

.pass-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  color: var(--text-dark); line-height: 1;
  margin-bottom: 0.3rem;
}

.pass-label {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 0.5rem;
}

.pass-label span { font-weight: 300; color: var(--text-light); }
.pass-item p { font-size: 0.87rem; }

/* Fine print */
.fine-print {
  background: var(--sage-pale);
  padding: 2.5rem 3rem;
  border-radius: 6px;
  border-left: 3px solid var(--sage);
}

.fine-print h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.25rem; font-weight: 500;
}

.fine-print ul li {
  font-size: 0.84rem; color: var(--text-mid); padding: 0.3rem 0;
  padding-left: 1.5rem; position: relative; line-height: 1.65;
}

.fine-print ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--sage);
}

.fine-print a { color: var(--sage); text-decoration: underline; }

@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr; }
  .passes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .plan-card { padding: 2rem 1.5rem; }
  .plan-price { font-size: 2.8rem; }
  .pricing-tabs-bar { flex-wrap: wrap; }
  .pricing-tab { padding: 0.8rem 1rem; font-size: 0.72rem; }
  .purchase-step { padding: 20px !important; }
}
