Contact

We’d love to hear from you

Our Address

252 Pike Street, San Diego, CA 92128

Opening Hours

Mon-Sat 8:00am – 6:00pm

Contact Info

Phone: 619-935-5910
Email: [email protected]


Facebook-f


Instagram


Twitter

“there’s nothing more refreshing than starting your day with a juiceito boost”

– ‘The Healthy People’ Magazine –

100% organic

locally grown

Nutrient Dense

pressed daily

Feel the juicy love

5/5
“I love this place!! Their smoothies are delicious, and the team is super friendly.”
Sianna O.
5/5
“There’s no other way to start your day. I stop at Juiceito every morning!”
Floyd B.
5/5
“I’m a health freak and I am obsessed with Juiceito’s fresh and organic juices!”
Kelsi S.

Diet Website

Welcome to Your Personalized Diet Plan

Find Your Ideal Diet Plan

Your Customized Diet Plan:

function generateDietPlan() {
    const goal = document.getElementById('goal').value;
    const dietType = document.getElementById('dietType').value;
    
    let planMessage = `For a ${goal} using a ${dietType} diet, consider the following plan:`;

    switch (goal) {
        case 'weight_loss':
            planMessage += "<br>- Caloric restriction with nutrient-dense foods.";
            break;
        case 'muscle_gain':
            planMessage += "<br>- High protein intake with strength training.";
            break;
        case 'maintenance':
            planMessage += "<br>- Balanced diet with controlled portions.";
            break;
    }

    switch (dietType) {
        case 'vegetarian':
            planMessage += "<br>- Include lots of legumes, nuts, and seeds.";
            break;
        case 'vegan':
            planMessage += "<br>- Ensure adequate vitamin B12 and iron intake.";
            break;
        case 'paleo':
            planMessage += "<br>- Focus on lean meats, nuts, and vegetables.";
            break;
        case 'keto':
            planMessage += "<br>- Minimize carbs and increase healthy fats.";
            break;
    }

    document.getElementById('dietPlan').innerHTML = planMessage;
}