/* Phoera B2B storefront — getphoera.co.za inspired */
:root {
  --phoera-pink: #e91e8c;
  --phoera-dark: #1a1a2e;
  --phoera-gold: #d4af37;
}

.hero-section {
  background: linear-gradient(135deg, var(--phoera-dark) 0%, #2d2d44 100%);
  color: white;
  padding: 4rem 0;
}

.hero-section h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

.hero-section .lead {
  font-size: 1.2rem;
  opacity: 0.95;
}

.feature-cards .card {
  border: none;
  border-radius: 0.5rem;
  transition: transform 0.2s;
}

.feature-cards .card:hover {
  transform: translateY(-2px);
}

.feature-cards .card-body {
  padding: 1.25rem;
}

.tier-card {
  border: 2px solid #dee2e6;
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.tier-card:hover {
  border-color: var(--phoera-pink);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.15);
}

.tier-card .badge-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

.product-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-card .card-img-top {
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card .price {
  font-weight: 600;
  color: var(--phoera-pink);
}

.btn-phoera {
  background: var(--phoera-pink);
  border-color: var(--phoera-pink);
  color: white;
}

.btn-phoera:hover {
  background: #c41a78;
  border-color: #c41a78;
  color: white;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--phoera-pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
