/* ================================================================
   pricing.css — Page-specific styles for /pricing
   Pricing dashboard, rental catalog
   ================================================================ */

/* ---- Pricing Dashboard ---- */
.pricing-dashboard {
  padding: 3rem;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: fit-content;
}

.dash-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dash-block.border-top {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 2.5rem;
}

.dash-heading {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dash-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-text-body);
}

.dash-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-bullet.cyan {
  background-color: var(--color-cyan);
  box-shadow: var(--shadow-cyan-glow);
}

.dash-bullet.coral {
  background-color: var(--color-coral);
  box-shadow: var(--shadow-coral-glow);
}

/* ---- Boutique ---- */
.boutique-image-showcase {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.boutique-frame {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.boutique-frame img {
  width: 100%;
}

.gear-showcase-note {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 3rem;
}

.boutique-items-deck {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.boutique-item-strip {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 1.5rem;
}

.boutique-item-strip:last-child {
  border-bottom: none;
}

.boutique-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.boutique-header h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-title);
}

.boutique-status-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border: 1px dashed var(--color-coral);
  color: var(--color-coral);
}

.boutique-meta {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.boutique-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
