/* ============================================
   PRICING HEADER BADGES - MATCH IMAGE DESIGN
   Blue badge for "MOST POPULAR", Purple for "ENTERPRISE"
   ============================================ */

/* ============================================
   1. BADGE POSITIONING IN HEADER
   ============================================ */

.pricing-recommended-badge {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  z-index: 10 !important;
}

/* ============================================
   2. BADGE STYLING
   ============================================ */

.pricing-plan-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: white !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Blue badge for "MOST POPULAR" */
.pricing-badge-blue {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%) !important;
  color: white !important;
}

/* Purple badge for "ENTERPRISE" */
.pricing-badge-purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%) !important;
  color: white !important;
}

/* ============================================
   3. BADGE IN HEADER WITH IMAGE
   ============================================ */

.pricing-card-header-with-image .pricing-recommended-badge {
  top: 1rem !important;
  right: 1rem !important;
}

/* ============================================
   4. BADGE IN HEADER WITHOUT IMAGE
   ============================================ */

.pricing-card-header-no-image .pricing-recommended-badge {
  top: 1rem !important;
  right: 1rem !important;
}

/* ============================================
   5. RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .pricing-plan-badge {
    font-size: 0.6875rem !important;
    padding: 0.375rem 0.75rem !important;
  }
  
  .pricing-recommended-badge {
    top: 0.75rem !important;
    right: 0.75rem !important;
  }
}

