www.oziva.in Open in urlscan Pro
23.227.38.74  Public Scan

Submitted URL: http://oziva.in/
Effective URL: https://www.oziva.in/
Submission: On November 03 via manual from IN — Scanned from CA

Form analysis 1 forms found in the DOM

GET javascript:validate()

<form class="search-form" action="javascript:validate()" method="get" role="search">
  <span class="icon__fallback-text">Search</span>
  <img src="//www.oziva.in/cdn/shop/t/10/assets/oz-search-icon.svg?v=129237872824969753481660742013" alt="Search for products" class="oz-search-icon-head">
  <label for="predictive">
    <input type="text" placeholder="Search for Products, Concern or Category" name="q" class="search-form__input search-bar__input" id="predictive" autocomplete="off" onclick="callTrackingEvent()">
    <button type="button" class="clear-input" value="Clear Search">
      <span style="font-size: 0; display: none;">Clear Search</span>
      <svg xmlns="http://www.w3.org/2000/svg" width="16" display="none" height="24" viewBox="0 0 24 24">
        <g id="cancel" transform="translate(-332 -123)">
          <rect id="Rectangle_2398" data-name="Rectangle 2398" width="24" height="24" transform="translate(332 123)" fill="none"></rect>
          <path id="Path_205" data-name="Path 205" d="M9.674,6.537h6.637V9.228H9.674V16.3H6.637V9.228H0V6.537H6.637V0H9.674Z" transform="translate(343.529 123) rotate(45)"></path>
        </g>
      </svg>
    </button>
  </label>
  <a class="search-close-btn">
            <svg xmlns="http://www.w3.org/2000/svg" width="18.416" height="18.416" viewBox="0 0 18.416 18.416"><path id="Path_205" data-name="Path 205" d="M7.725,5.22h5.3V7.369h-5.3V13.02H5.3V7.369H0V5.22H5.3V0H7.725Z" transform="translate(9.207) rotate(45)"></path></svg>
        </a>
  <style>
    .limit-char {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  </style>
  <script>
    $('#header').click(function(event) {
      event.stopPropagation();
    });
    $('#close_search_bar').click(function() {
      //       $(".desktop-subnavbtn").show();
      //       $("#qab_container").removeClass("hide_header_announcement");
      $(".myDropdown_container").css("display", "none");
      //        $(".custom-search-bar").css("display", "none");
      //        $(".drawer-page-content::after").css("visibility","hidden");
      $(".search-bar__see_more").css("display", "none");
      //       $( "#close_search_bar" ).trigger( "click" );      
    });
    $('.myDropdown_container').click(function(event) {
      event.stopPropagation();
    });
    $('.search-form__input-wrapper').click(function(event) {
      event.stopPropagation();
    });
    $(".search-form__input").focusout(function() {
      $(".desktop-subnavbtn").show();
    });
    $(document).ready(function() {
      $('html body').on('click', '.callTrackToggle', function() {
        let clickedSearch = "protien";
        var text = $(this).text();
        let writetext = document.getElementById("predictive").value?.trim();
        let attributes = {};
        const authorizationToken = getAccessToken();
        if (authorizationToken && authorizationToken.accessToken) {
          attributes.phone = authorizationToken?.phone;
        }
        attributes.search_term = text;
        attributes.search_date = Date.now();
        attributes.clicked_search_suggestion = text;
        Moengage.track_event("search_bar_suggestion_click", attributes);
      });
      var last_search = '';
      $("#predictive").keyup(debounce(async function() {
        const urlAPI = ENVIRONMENT == 'prod' ? 'https://search.zevi.in/autocomplete/?store=oziva' : 'https://staging.search.zevi.in/autocomplete/?store=oziva-staging';
        const xToken = 'okjhffdgshghfsdffgsdfeca'
        let text = document.getElementById("predictive").value?.trim();
        let result
        var liList = await document.getElementById("predictive-dropdown-menu")?.querySelectorAll("li");
        if (text?.length > 3 || (text == '' && liList?.length)) {
          result = await fetch(urlAPI + '&q=' + text, {
            method: 'GET',
            headers: {
              'x-token': xToken,
            }
          }).then((response) => {
            if (text) {
              let attributes = {};
              const authorizationToken = getAccessToken();
              if (authorizationToken && authorizationToken.accessToken) {
                attributes.phone = authorizationToken.phone
              }
              attributes.search_term = text;
              attributes.search_date = Date.now();
              Moengage.track_event("search_bar_search_term", attributes);
            }
            return response.json();
          }).catch((e) => {
            console.log("error", e);
          })
        } else {
          return
        }
        var listItem
        if (result?.autocomplete_list?.length) {
          result?.autocomplete_list.forEach(element => {
            let query = encodeURIComponent(element)
            let searchResult = element.replace(new RegExp(text + '(?!([^<]+)?<)', 'gi'), '<b style="background-color:#F0FAF0;font-size:100%">$&</b>');
            listItem ? (listItem += `<li><a class="callTrackToggle" onclick="callTrackingEvent("")" href="/pages/search?q=${query}">${searchResult}</a></li>`) : (listItem =
              `<li><a class="callTrackToggle" onclick="callTrackingEvent()" href="/pages/search?q=${query}">${searchResult}</a></li>`)
          });
        } else {
          listItem = ''
          liList?.classList?.remove("active")
        }
        $(".search-results").addClass('active').html(listItem).css({
          maxHeight: '400px'
        }).slideDown(400);
        //  Moengage
        let attributes = {};
        const authorizationToken = getAccessToken();
        if (authorizationToken && authorizationToken.accessToken) {
          attributes.phone = authorizationToken.phone
        }
        attributes.search_term = text;
        attributes.search_date = Date.now();
        Moengage.track_event('search_bar_clear_search', attributes);
        if (result?.autocomplete_list?.length) {
          attributes.search_suggestions = result?.autocomplete_list;
          Moengage.track_event('search_bar_all_suggestions', attributes);
        }
        //  Moengage
      }, 300));
    });

    function debounce(func, wait, immediate) {
      var timeout;
      return function() {
        var context = this,
          args = arguments;
        var later = function() {
          timeout = null;
          if (!immediate) func.apply(context, args);
        };
        var callNow = immediate && !timeout;
        clearTimeout(timeout);
        timeout = setTimeout(later, wait);
        if (callNow) func.apply(context, args);
      };
    };
  </script>
  <ul id="predictive-dropdown-menu" class="oz-dropdown-menu search-results oz-dropdown-v2-menu ">
  </ul>
</form>

Text Content

Skip to content


✨Diwali Sale : Get ₹400 OFF. Use Code: DIWALI ✨

Search Clear Search
 * Track Orders
 * Help Desk
 * Store Locator
 * Login
 * Logout

OZiva Kisaan Vikaas Program
Empowering farmers & their kids
Build Your Box
 * Track Orders
   Shop Clean Nutrition
   * Protein
     * Beginner's protein
     * Protein for women
     * Protein for lean muscles
     * Protein for weight loss
     * Protein for energy & stamina
     * All
   * Vitamin & Minerals
     * Multivitamins
     * Biotin
     * Omega
     * Calcium
     * Vitamin C
     * Vitamin D & K
     * Iron
     * Zinc
     * All
   * PCOS Collagen Biotin Gummies Fizzies All
   Clean Beauty
   * Face Serums Face Washes Moisturizing Cream Hair Oils + Shampoo Hair Masks +
     Conditioners Face Masks All
   Goal
   * Weight
     * Weight Loss
     * Weight Gain
     * Lean Muscles & Toning
   * Skin
     * Aging
     * Glow
     * Acne
     * Dryness
     * Pigmentation
     * All
   * Hair
     * Hair Fall
     * Scalp Health
     * All
   * General Wellness
     * Immunity
     * Vitamin Deficiency
     * Energy & Stamina
     * Stress & Anxiety
   Gender/Age
   * Women Men Adults (45+)
   New Launches
   * Nutrition Beauty All
   Bestsellers
   * Nutrition Beauty All
   Chat With Expert
   Explore OZiva Cash and Offers OZiva Prime Be Bettr Blog Product Advice
 * Explore
   * Product Advice OZiva Cash & Offers OZiva Prime Be Bettr Blog Kisaan Vikas
     Program
   Chat With Expert
 * Build Your Box
   Helpdesk Store Locator Login Logout


 1.  
 2.  
 3.  
 4.  
 5.  
 6.  
 7.  
 8.  
 9.  
 10. 




INDIA'S LEADING CLEAN, PLANT BASED WELLNESS BRAND

Clean and Plant Based

Backed By Science


BEST IN FITNESS

View All
Weight Management
Lean Muscles
Energy & Stamina

OZiva Protein & Herbs for Men, 23g Whey Protein

 * Muscle Building
 * Stamina Boost

(702)
MRP: ₹1,699₹1,599₹100 off
ADD TO CART


OZiva Protein & Herbs for Women, 23g Whey Protein

 * Weight Control
 * Increased Metabolism
 * Higher Energy Levels

(2411)
MRP: ₹1,699₹1,599₹100 off
ADD TO CART


OZiva Nutritional Meal for Men, 18g Protein, 6.4g Fiber

 * Calorie Control
 * Weight Management

(84)
MRP: ₹2,799₹2,463₹336 off
ADD TO CART


OZiva Plant Based ACV Matcha

 * Weight Control
 * Digestion

(103)
MRP: ₹499
ADD TO CART


OZiva ZERO SUGAR Apple Cider Vinegar, Fizzy Drink Mix for Weight Control

 * Weight Control
 * Gut Health

(19)
MRP: ₹990
ADD TO CART


Nutritional Meal for Women, Meal Replacement Shake for Weight Management

 * Calorie Control
 * Weight Management

(194)
MRP: ₹8,397₹6,969₹1,428 off
ADD TO CART



HAIR & SKIN

View All
Hairfall
Glow
Acne
Aging
Dandruff
Pigmentation

Hair Vitamins for Hair Re-Growth

 * Hair Regrowth
 * Hairfall Control

(1172)
MRP: ₹2,697₹2,199₹498 off
ADD TO CART


Biotin 10,000+ mcg for Improved Hair Density

 * Hairfall Control
 * Shinier Hair

(1183)
MRP: ₹2,097₹1,795₹302 off
ADD TO CART


Plant Based DHT Blocker

 * Hair Fall Control
 * Hair Hydration

(355)
MRP: ₹599₹581₹18 off
ADD TO CART


OZiva Biotin Hair Multivitamins Gummies

 * Hair Growth
 * Hair Fall Control
 * Hair Quality

(23)
MRP: ₹1,198₹999₹199 off
ADD TO CART


OZiva Naturelle Infusion Nourish & Growth Hair Mask

 * Hair Nourishment
 * Hair Hydration

(40)
MRP: ₹499
ADD TO CART


OZiva Biotin Xtra with Keratin Builder, 7000 mcg

 * Hair Renewal
 * Hair Repair

(57)
MRP: ₹749₹674₹75 off
ADD TO CART



VITAMINS & MINERALS

View All
Multivitamins
Omega
Calcium
Vitamin C
Vitamin D & K
Iron

Daily Men’s Multivitamin Tablets for Stamina, 31 Natural Ingredients, 60 Tablets

 * Increased Stamina
 * Better Endurance
 * Improved Immunity

(45)
MRP: ₹499
ADD TO CART


Daily Women’s Multivitamin Tablets for Energy & Immunity, 31 Vitamins, Minerals
& Herbs, 60 Tablets

 * Daily Energy
 * Hormonal Balance
 * Improved Immunity

(45)
MRP: ₹499
ADD TO CART


OZiva Greens & Herbs for Acne & Gut Health

 * Gut Health
 * Acne Control

(605)
MRP: ₹1,349
ADD TO CART



CLEAN PROTEIN, FOR EVERYONE

Live #HarTarahSeBetter with clean protein for all your needs! Manage weight,
tone up, build lean muscle & improve stamina.




#HARTARAHSEBETTER

India's #1 Clean, Plant-Based Nutrition brand with Scientifically &
Clinically-backed health solutions. Certified Clean & Vegan.

Clean, Plant-Based
Vegan Certificate
Pesticide Free



IN THE NEWS

OZiva, a Mumbai-based startup, launches a clean protein blend, OZiva Kids
Superfood Growth Protein Drink, strengthened with six Ayurvedic herbs and 27
essential vitamins and minerals serving to daily protein needs of kids of age 5
and above.

2nd March 2022 - Nuffoods spectrum

Aarti Gill, Co-Founder of OZiva, describes the journey of their recent campaign
succeeded by their expansion, costing system, and the targets they are trying to
pursue.

30th March 2022 - Impact Magazine

Aarti Gill talks about providing holistic wellness solutions with the help of
clean nutrition, and clean beauty products that are backed by botanical science
& clinical testing to their customers so that they are able to adopt a clean &
healthier lifestyle.

8th April 2022 - The Daily Guardian

The Co-Founder of OZiva, Aarti Gill, speaks on establishing OZiva as a 180 Cr
wellness brand OZiva, growing 5 times in a year and onboarding Deepika Padukone
as their Brand Ambassador.

17th April 2022 - 100X Entrepreneur

The Head HR of OZiva, Nirav Shah expresses the need of changing the scenario of
many talented women quitting their jobs after becoming mothers as the firm
declares permanent WFH option.

6th May 2022 - Read full article

OZiva launches ‘Daily Anti-Ageing Routine’ under its #BeautyAndarBahar campaign
which is based on scientifically studied and clinically proven ingredients in
products that provide complete collagen boost, from the inside and out.

20th May 2022 - BW Wellbeing

OZiva Daily Anti-Ageing Routine, consisting of Plant Based Collagen Builder and
Youth Elixir Face Serum together improve the skin’s radiance and firmness while
making it healthier.

23rd May 2022 - Stylecraze

Achieve naturally healthy and glowing skin in 2 simple steps as OZiva introduces
its 'Daily Anti-Ageing Routine' to enhance your beauty inside out.

27th May 2022 - Times Now

OZiva, a plant-based brand, that has already been offering a range of products
for overall health & fitness in hair & skincare categories, now brings its
'Clean & Plant Based Beauty Range'. These cuties benefit your skin by boosting
its hydration & nourishment.

31st May 2022 - Whats Hot

OZiva brings in its all-new 'Daily Anti-Ageing Routine', which is a combo of
Youth Elixir Face Serum and a plant-based Collagen Builder to take care of your
#BeautyAndarBahar by providing holistic wellness to the skin both from inside
and outside.

31st May 2022 - Her Zindagi


Follow us on
Facebook
Instagram
Twitter
Youtube




DOWNLOAD OZIVA APP NOW

15% OFF + 15% Cashback use code: APP30
(Opens in a new window)

Build Your Box Shop by Concern Acne Pigmentation Hairfall Dandruff Aging Glow
Shop by Category Men Women Hair Skin
Quick Links About us Contact us Track Order Shipping & Delivery Cancellations &
refunds Disclaimers Terms Privacy Store Locator Blog (Opens in a new window)
Sitemap
Show us some love on
(Opens in a new window) (Opens in a new window) (Opens in a new window) (Opens
in a new window)
Pay securely using




SUBSCRIBE TO OUR MAILING LIST

SUBSCRIBE

AFFILIATED CERTIFICATES


Copyright © 2023, OZiva. All rights reserved.

Use left/right arrows to navigate the slideshow or swipe left/right if using a
mobile device

 * Choosing a selection results in a full page refresh.
 * Press the space key then arrow keys to make a selection.

Get real time updates

We promise to only send you notifications on your orders & relevant content

Don't Allow Enable Alerts

We use cookies to enhance site navigation, content personalization, analyze site
usage, and assist us in our marketing efforts.
OKAY
 * Opens in a new window.
 * Opens external website.
 * Opens external website in a new window.


Judge.me