\`\`\`javascript // WIX Customer Intelligence Agent (CIA) Tracking Script // CIA Base URL: https://cjscottiii.pythonanywhere.com const CIA_BASE_URL = "https://cjscottiii.pythonanywhere.com"; /** * Generates a simple unique ID (UUID v4-like) * @returns {string} A unique ID string */ function generateUUID() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8); return v.toString(16); }); } /** * Retrieves the customer ID from localStorage or creates a new one. * @returns {string} The unique customer ID. */ function getOrCreateCustomerId() { let customerId = localStorage.getItem('cia_customer_id'); if (!customerId) { customerId = generateUUID(); localStorage.setItem('cia_customer_id', customerId); console.log("CIA: New customer ID created:", customerId); } else { console.log("CIA: Existing customer ID retrieved:", customerId); } return customerId; } /** * Sends a page view tracking event to the CIA backend. * @param {string} customerId - The unique ID of the customer. */ function trackPageView(customerId) { const trackUrl = \`\${CIA_BASE_URL}/api/v1/track\`; const data = { customer_id: customerId, page_url: window.location.href, event_type: 'page_view' }; fetch(trackUrl, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(data), }) .then(response => response.json()) .then(data => { console.log('CIA Tracking Success:', data); }) .catch((error) => { console.error('CIA Tracking Error:', error); }); } /** * Fetches a personalized recommendation from the CIA backend. * @param {string} customerId - The unique ID of the customer. */ function fetchRecommendation(customerId) { const recommendationUrl = \`\${CIA_BASE_URL}/api/v1/recommendation/\${customerId}\`; fetch(recommendationUrl) .then(response => response.json()) .then(data => { console.log('CIA Recommendation:', data.recommendation); // This is the key output. In a future step, you will use Wix Velo/Corvid // to capture this recommendation and display it to the user on the page. // For now, check your browser's console (F12) to confirm it is working. }) .catch((error) => { console.error('CIA Recommendation Error:', error); }); } // Main execution block (function() { const customerId = getOrCreateCustomerId(); trackPageView(customerId); fetchRecommendation(customerId); })(); \`\`\`
top of page
GOLD+

Special Edition Herbal Infusion

 

GOLD+™ is a warming, functional herbal blend crafted to support immune strength, digestion, and overall balance. This special-edition infusion brings together organic ginger, turmeric, lemongrass, and dried hibiscus leaves, a powerful yet gentle combination designed for daily wellness rituals.

Ginger takes the lead in this blend, known for its ability to stimulate metabolism, support healthy digestion, and provide warming comfort to the body. Turmeric complements with its well-recognized anti-inflammatory properties, while lemongrass adds a refreshing, cleansing note that supports digestive ease. Hibiscus rounds out the blend with antioxidant support and a naturally vibrant flavor profile.

 

This tea is ideal during seasonal changes, periods of stress, travel, or anytime your body needs extra support to stay steady and resilient.

 

Benefits

  • Supports immune system function
  • Promotes healthy digestion and metabolism
  • Helps reduce inflammation and bodily stress
  • Rich in natural antioxidants
  • Warming, grounding, and refreshing—hot or cold

 

Directions for Use

  1. Pour 1 cup of freshly boiled spring water over ½ teaspoon of the herbal blend.
  2. Cover and steep for 4 minutes.
  3. Strain and enjoy hot or chilled.

Can be enjoyed daily or as needed as part of a balanced wellness routine.

 

Storage Instructions

Once opened, store in a cool, dry place, away from moisture and direct sunlight.

Best used within 6 months of opening for optimal freshness and potency.

 

Special Edition Notice

GOLD+ is produced in extremely limited quantities.
Once sold out, this blend will not be restocked in this edition.

GOLD+

$6.99Price
Quantity
  • If you are pregnant, nursing, or taking any medications, consult a healthcare professional before use.

Follow us on Instagram

STAY CONNECTED:

  • Facebook Link
  • Instagram Link

These statements have not been evaluated by the Food and Drug Administration. These products are not intended to diagnose, treat, cure or prevent any disease.

*Our AI tool is designed to be privacy-focused. The information you enter during your search with RAPHA© is not stored or logged in any way. It is used solely to process your search query and provide relevant product suggestions or health tips. Once the search is complete, the information is immediately erased from the AI system.
 

Subscribe for Updates

Copyright© 2019-2026 by ATHLETIC SPA NUTRTITION 

ALL RIGHTS RESERVED UCC 1-308.

Site Proudly Designed by MINDYOURBIZ.COM

bottom of page