/* Billing container */
.billing-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 32px;
    background: var(--background-color);
    max-width: 1200px;
    margin: 0 auto;
}
  
/* Each billing card */
.billing-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    width: 300px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.billing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

/* Card Header */
.billing-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Description & Price */
.billing-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

.billing-card h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    margin: 20px 0 4px;
    color: #111827;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Feature List */
.billing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
}

.billing-card ul li {
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #374151;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
}

.billing-card ul li i {
    color: #10B981;
    margin-right: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

.billing-card ul li.not-included {
    color: #9CA3AF;
}

.billing-card ul li.not-included i {
    color: #EF4444;
}

/* Action buttons */
.billing-card button {
    background-color: #4f46e5;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
    transition: background-color 0.15s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: auto;
}

.billing-card button:hover {
    background-color: #4338ca;
}

/* Popular tag */
.billing-card[data-tag="Popular"]:before {
    content: "Popular";
    position: absolute;
    top: 16px;
    right: -24px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: white;
    padding: 4px 28px;
    font-size: 11px;
    font-weight: 600;
    transform: rotate(45deg);
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.billing-card[data-tag="Popular"] {
    border-color: #4f46e5;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.1), 0 2px 4px rgba(79, 70, 229, 0.06);
}

/* Feature selection cards */
.feature-selection-cards {
  display: flex !important;
  justify-content: center !important;
  gap: 30px !important;
  margin: 30px 0 !important;
  flex-wrap: wrap !important;
}

.feature-card {
  background: white !important;
  border-radius: 12px !important;
  padding: 20px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-align: center !important;
  min-width: 180px !important;
  max-width: 200px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid transparent !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  height: 50px !important; /* Fixed height instead of too tall */
}

.feature-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15) !important;
}

.feature-card.active {
  border-color: var(--primary-color) !important;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2) !important;
}

.feature-card img {
  width: 100px !important; /* Consistent image size with padding */
  height: 100px !important;
  object-fit: contain !important;
  /* margin-bottom: 12px !important; */
}

.feature-card .label-free {
  position: absolute !important;
  top: 5px !important;
  right: 3px !important;
  background: linear-gradient(45deg, #10b981, #059669) !important;
  color: white !important;
  padding: 2px 7px !important;
  border-radius: 12px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Feature subheadline */
.feature-subheadline {
    font-size: 16px;
    color: #6B7280;
    text-align: center;
    margin: 16px auto;
    max-width: 600px;
    line-height: 1.5;
    font-family: 'Inter Variable', sans-serif;
}

/* Owned features container */
#ownedFeaturesContainer {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    max-width: 400px;
    padding: 24px;
    margin: 48px auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

#ownedFeaturesContainer h4 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

.owned-feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin: 8px 0;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.owned-feature-row span {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

.cancel-feature-button {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    background: #fff;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cancel-feature-button:hover {
    background: #F3F4F6;
    border-color: #D1D5DB;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .billing-content {
        padding: 16px;
        gap: 16px;
    }
    
    .billing-card {
        width: 100%;
        max-width: 400px;
        padding: 24px;
    }
    
    .feature-selection-cards {
        gap: 12px;
    }
    
    .feature-card {
        width: 140px;
        height: 140px;
    }
} 