/* Basic Status Styles */
.spp-status.connected {
  padding: 10px;
  background: #e6ffed;
  border-left: 4px solid #2ecc71;
  color: #155724;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 600;
}
.spp-status.not-connected {
  padding: 10px;
  background: #fff0f0;
  border-left: 4px solid #e74c3c;
  color: #721c24;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Tiers Grid Layout */
.spp-tiers-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 20px 0;
}

/* Tier Card Styles */
.spp-tier-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.spp-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Tier Image */
.spp-tier-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: block;
}

/* Card Content */
.spp-tier-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title & Description */
.spp-tier-body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
}
.spp-tier-desc {
  margin: 0 0 12px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Price */
.spp-tier-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

/* Join Button */
.spp-join-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: #ff7b3a;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}
.spp-join-btn:hover {
  background-color: #e66e33;
  transform: scale(1.02);
}

/* Join Box - Campaign & Button */
.spp-join-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}
.spp-campaign-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.spp-join-main {
  padding: 10px 14px;
  background-color: #ff7b3a;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}
.spp-join-main:hover {
  background-color: #e66e33;
  transform: scale(1.02);
}

/* Members List */
.spp-members-list {
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-top: 20px;
}
.spp-member-row {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.spp-member-row:last
p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 16px;
}