250-496-5215
Orders over $200, pay with eTransfer to receive 2% off. All orders over $500 to receive 5%!

Just organic is not enough

Our purpose is to provide unheated, non GMO, organically grown food to anyone at a fair price.

We believe real food means unprocessed, nutrient-rich, and ethically sourced ingredients.

About Real Raw food

We are a family business located in a small village called Naramata near the south end of the Beautiful Okanagan Valley in the heart of British Columbia, Canada. We are working together with others to provide the same foods that we enjoy, whole foods that have been grown organically, sustainability and prepared without hurting their viability.

Our purpose is to provide unheated, non GMO, pure organically grown foods at a fair price. That means paying more to the grower in some cases and selling lower to the consumer in most cases.

Shop Raw Foods

Top Rated Products

  • Dates - Barhi

    Dates – Barhi

    From California

    Read More

    Read More
    Select options This product has multiple variants. The options may be chosen on the product page
  • Trail Mix

    Trail Mix

    Organic, Raw and Sprouted Trail Mix made In-house.

    Ingredients: Sprouted…

    Read More

    Read More
    Select options This product has multiple variants. The options may be chosen on the product page
  • Buckwheat

    Buckwheat

    From Canada

    Read More

    Read More
    Select options This product has multiple variants. The options may be chosen on the product page
  • Almonds - Butte/Padre

    Almonds – Butte/Padre

    From California, Steam Treated, Select Sheller Run

    Read More

    Read More
    Select options This product has multiple variants. The options may be chosen on the product page
  • Almond Butter - Sprouted

    Almond Butter – Sprouted

    Organic, Raw and Sprouted Almond Butter, made In-house.

    Read More

    Read More
    Select options This product has multiple variants. The options may be chosen on the product page
  • Brazil Nuts

    Brazil Nuts

    Wild Brazil Nuts from Bolivia

    Brazil nuts grow on one of…

    Read More

    Read More
    Select options This product has multiple variants. The options may be chosen on the product page
VIEW All PRODUCTS

Shop Products

Dates - Barhi

Dates – Barhi

From California

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Trail Mix

Trail Mix

Organic, Raw and Sprouted Trail Mix made In-house. Ingredients: Sprouted walnuts, sprouted almonds,…

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Buckwheat

Buckwheat

From Canada

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Almonds - Butte/Padre

Almonds – Butte/Padre

From California, Steam Treated, Select Sheller Run

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Almond Butter - Sprouted

Almond Butter – Sprouted

Organic, Raw and Sprouted Almond Butter, made In-house.

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Brazil Nuts

Brazil Nuts

Wild Brazil Nuts from Bolivia Brazil nuts grow on one of the largest…

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Cashews - Truly Raw

Cashews – Truly Raw

Certified Organic Whole Cashews from Bali, Indonesia Experience the pure, natural taste…

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Cashews - Pieces

Out Of Stock

Cashews – Pieces

25% OFF Certified Organic Cashew Pieces from Vietnam Experience the rich, natural…

Read More

Notify Me

Get notified when back in stock

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Walnuts

Walnuts

Certified Organic Walnuts from California Experience the exceptional quality of our Certified…

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page
Pecans

Pecans

Harvested from wild, very old trees in Missouri.

Read More

Read More
<?php
global $product;

if ( $product ) {
    // 1. PRODUCT ACTIONS (Pricing + Buttons)
    if ( $product->is_type( 'variable' ) ) {
        // Variable products handle their own price display
        woocommerce_variable_add_to_cart();
    } else {
        // Simple Products: Only show price if it's NOT already being injected
        echo '<div class="product-card-price">' . $product->get_price_html() . '</div>';
        
        if ( ! $product->is_in_stock() ) {
            // Show notifier for out of stock
            do_action( 'woocommerce_before_add_to_cart_form' );
        } else {
            // Standard Add to cart for simple products
            woocommerce_simple_add_to_cart();
        }
    }

    // 2. THE WISHLIST ICON (The isolated way)
    if ( class_exists( 'TInvWL_Public_AddToWishlist' ) ) {
        $wishlist_instance = TInvWL_Public_AddToWishlist::instance();
        // This specific call usually avoids re-triggering hooks
        echo '<div class="custom-wishlist-area">';
        echo $wishlist_instance->htmloutput(); 
        echo '</div>';
    }
}
?>
/* Hide the text labels inside the wishlist area */
.product-card--light__btn-wrap .custom-wishlist-area span {
    display: none !important;
}

/* If the price is still doubling, hide our manual one or the plugin's */
.custom-wishlist-area .price, 
.custom-wishlist-area .amount {
    display: none !important;
}

/* Style the heart icon so it's visible */
.tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: #4a6741 !important;
}

/* 1. Hide the "Add to Wishlist" text label */
.product-card--light__btn-wrap .custom-wishlist-area .tinvwl_add_to_wishlist_text {
    display: none !important;
}

.product-card--light__btn-wrap .tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text  {
  display: none !important;
}

/* 2. Reset the button to a simple icon */
.custom-wishlist-area a.tinvwl_add_to_wishlist_button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* 3. Style the heart icon */
.custom-wishlist-area .tinvwl_add_to_wishlist_button::before {
    font-size: 22px !important;
    color: var(--primary) !important; /* Your brand green */
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.custom-wishlist-area .tinvwl_add_to_wishlist_button:hover::before {
    transform: scale(1.4);
    color: var(--secondary) !important; /* Darker green on hover */
}

/* 4. Position it next to the Read More button */
.custom-wishlist-area {
    display: inline-block;
    vertical-align: middle;
     /* Space between Read More and Heart */
}
Select options This product has multiple variants. The options may be chosen on the product page

Our customer Reviews

Fast & Reliable
I have been buying from this company for years, and their goods have always been of excellent quality, their service is smooth and fast, and it feels good to support a Canadian family business. They offer many high-quality items that are almost impossible to get anywhere else.

— H H

Trusted Nutrition
I have been shopping with Real Raw Foods for close to 10yrs. I am grateful for their dedication to providing the best quality and ethically sourced foods. I especially love the sprouted walnuts, sunflowers seeds and almonds. But all of their products seem to be superior to any other organic retailer. The customer service is…

— C P

Sprouted Goodness
I've ordered many items from this company, and I'm never disappointed. They make a great sprouted almond butter, soooo much healthier than any other almond butter on the market. Highly recommend to try out their products and support a Canadian company! Hugs from Ontario! 🙂

— B

Organic Excellence
I love their organic products and supplements. I have always received their package promptly and everything in good condition. I recommend them highly, great family business too!

— C L

Trusted for Years
I've been ordering from Real Raw Foods for years and they have the highest quality organic/raw foods with excellent prices. I love being able to order from a local, family-owned business within BC. ❤️

— H G

Top Quality
We live in NW BC and receive our TOP QUALITY nuts and dried fruits from them in just a few days. This is a miracle given the postal situation in Canada. Reel Raw Foods is the BEST!

— I S

Frequently Asked Questions

VIEW ALL FAQ’s

We will be closed for the holidays from December 18th until January 5th. We will still check the emails periodically so please email us if you have any questions or concerns.

We are open from 8:00 a.m. to 3:00 p.m. – Monday to Friday, and closed on Saturdays, Sundays and Holidays.

Wholesale prices are available to everyone, on our website. You will notice price breaks with larger quantities. Case prices are wholesale.

No, Unfortunately we do not have a storefront. Please place your order online and if you are hoping to pick up your order right away just give us a call and we will get it ready. Please note you will need to enter a local postal code in the address for the Pickup option to show up.

Yes, you are welcome to pick up your order at our warehouse in Naramata, B.C. Your order should be made prior to pick up, as we don’t have a retail store with employees to cater to walk-ins. Using the shopping cart method on our website you will be given the option for “pick-up” at the checkout page. Once your order has been placed we will notify when it is ready.

Naramata, BC, Canada, which is in the Southern Interior of our Province, about an hour drive from Kelowna, and 20 minutes from Penticton.

Yes, you can. However the fees on Credit Card transactions are non refundable once the order is placed.

VIEW ALL FAQ’s

Recommended Articles

5 Monkeys

Article Summary In 1945, Dr. Weston Price described “a new vitamin-like activator” that played an…

Read more

Nut Milk

Soak nuts the day before or use almond butter. Put a litre of water in…

Read more