/* Minimal Membership Styles */

.membership-status-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.membership-status-card h2 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.membership-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat-box {
  background: var(--beige-light);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.stat-box h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0;
}

.stat-box p {
  color: var(--text-secondary);
  margin: 0.5rem 0 0 0;
  font-size: 0.875rem;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.alert-warning {
  background: #fef3c7;
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

.membership-plans h2 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.plan-card.current {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fff 0%, var(--beige-light) 100%);
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.plan-price {
  margin: 1.5rem 0;
}

.plan-price .currency {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.plan-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.plan-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.plan-card button {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .membership-stats {
    grid-template-columns: 1fr;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
}
