About

juiceito’s story

Since 1980, Juiceito has been pioneering the organic juice space in San Diego. From the start, we have been committed to offering the most delicious fruit & vegetable drinks, made from fresh, locally grown ingredients. Come on down and give your day a boost with one of our smoothies, pressed juices, and wellness shots!

always green & local

Malesuada fames ac turpis egestas integer eget aliquet nibh. Egestas maecenas pharetra convallis posuere morbi leo urna molestie at. Tellus rutrum tellus pellentesque eu tincidunt tortor aliquam nulla facilisi. Phasellus egestas tellus rutrum tellus pellentesque eu. Ipsum dolor sit amet consectetur adipiscing elit duis. A arcu cursus vitae congue mauris rhoncus aenean vel elit. Morbi tristique senectus et netus et


  • Malesuada fames ac turpis egestas integer

  • Posuere morbi leo urna molestie

  • Tellus pellentesque eu. Ipsum dolor sit

We are a unique mix of people who love juice

Tiana Shelton

Founding Partner

Eryk Buallock

Founder and Manager

Caloe Austin

Juice Expert

Ayden Neale

Juice Expert

“if you’re in the area, you must visit juiceito and try their juice!”

– Liana Rooney, food journalist –

Need a fresh surprise for your next event?


Contact Us

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;
}