Sprinkle Chocolate Strawberries Delightful Gift
Sprinkle Chocolate Strawberries Delightful Gift
Sprinkle Chocolate Strawberries Delightful Gift
Sprinkle Chocolate Strawberries Delightful Gift
Sprinkle Chocolate Strawberries Delightful Gift
Sprinkle Chocolate Strawberries Delightful Gift

Sprinkle Chocolate Strawberries Delightful Gift - 6 Pieces

Sprinkle Chocolate Strawberries Delightful Gift - 6 Pieces

Brand : FNP

SKU:

SKU:CH.FP.AS.3P.RG.UX-AMB

Regular price 49.00 SAR
Sale price 49.00 SAR
Taxes included. Shipping calculated at checkout.
Pick an Upgrade

Ways to pay:

Payment Image Payment Image Payment Image Payment Image Payment Image Payment Image Payment Image Payment Image
View full details
No Address, No Worries

No Address, No Worries

8 Million Customers

8 Million Customers

3 Hour Delivery

3 Hour Delivery

Product Details

How to Care

Delivery Instructions

Celebrate happiness with a delicious assortment of rich dark and white chocolate strawberries finished with sugar sprinkles! A delightful arrangement combining white and dark chocolate decorated with cheerful, colorful stripes. Perfect as a children's Birthdaygift or a pleasant surprise. Carefully crafted and elegantly presented by FNP Saudi Arabia with immediate same-day delivery across the Kingdom.

  • Store your chocolates in the refrigerator.
  • If they are exposed to high temperatures, they may begin to soften, compromising their appearance and flavor.
  • Please refer to the expiration date on the package and consume your chocolates before that
  • All orders are delivered via Fnp temperature-controlled delivery vans.
  • Once the order is prepared for delivery, the delivery cannot be redirected to any other address.
  • Your chocolate will arrive beautifully fresh for your occasion.
  • We recommend you open the box upon handover and before leaving our delivery executive.
  • The actual product may differ slightly from the image you see on the website due to the effects of lighting and size differences.
  • Occasionally, substitution is necessary due to temporary and/ or regional unavailability issues.
  • Please note that we may have to do this without informing you because we give utmost importance to delivery on time since most of our orders are gifts for a certain occasion.
window.runOnSMLEvent = async (event, data) => { if (event == "LOGIN_SUCCESSFUL") { if(data.email){ trackLoginSignupEvent("login", "email password login", data.email, " ") }else if(data.phone){ trackLoginSignupEvent("login", "phone otp loginn", " ", data.phone) }else{} } if (event == "USER_REGISTERED_SUCCESSFULLY") { trackLoginSignupEvent("sign_up", "register", data.email, data.phone) } } // document.addEventListener('DOMContentLoaded', function(){ let loginState = false; let currency = "SAR"; window.trackLoginSignupEvent = (event, type, email, phone) =>{ try{ dataLayer.push({ event: `${event}`, login_type: `${type}`, first_name: "", last_name: "", email: `${email}`, phone_number: `${phone}`, customer_party_id: "" }) }catch(error){ console.error(error) } } (function() { try { if (!sessionStorage.getItem('login_event_triggered')) { } else { sessionStorage.removeItem('login_event_triggered'); } } catch (error) { console.error('Error setting login event:', error); } })(); // select_item window.selectedProductView = (event, index) => { try { let arrItem = []; let productData = JSON.parse(event.getAttribute("data-product")); let mainGrid = event.closest('#product-grid') || event.closest('ul.product-grid') || event.closest('.collection_swiper_conatiner'); let collectionId = mainGrid?.getAttribute('collection-id'); let collectionTitle = mainGrid?.getAttribute('collection-title'); arrItem.push({ "index": index ? index : 0, "item_brand": 'FNP', "item_category": productData.type, "item_category2": null, "item_category3": null, "item_category4": null, "item_id": productData.id, "item_list_id": collectionId ? parseInt(collectionId) : null, "item_list_name": collectionTitle, "item_name": productData.title, "item_variant": productData.variants[0]?.id, "price": productData.price / 100 }); window.dataLayer.push({ event: "select_item", login_state: loginState, selected_currency: currency, ecommerce: { item_list_id: collectionId ? parseInt(collectionId) : null, item_list_name: collectionTitle, items: arrItem } }); } catch (error) { console.error('Error in selectedProductView:', error); } }; // list of product viewed window.viewProductList = (targetContainer, title, collectionId) => { try { if (targetContainer && targetContainer.length > 0) { let arrItem = []; targetContainer.forEach((item, index) => { try { if (item.querySelector('.product-card-wrapper')) { let productData = JSON.parse(item.querySelector('.product-card-wrapper').getAttribute("data-product")); arrItem.push({ "index": index, "item_brand": 'FNP', "item_category": productData.type, "item_category2": null, "item_category3": null, "item_category4": null, "item_id": productData.id, "item_list_id": collectionId ? parseInt(collectionId) : null, "item_list_name": title ? title : null, "item_name": productData.title, "item_variant": productData.variants[0]?.id, "price": productData.price / 100 }); } } catch (error) { console.error('Error parsing product in viewProductList:', error); } }); window.dataLayer.push({ event: "view_item_list", login_state: loginState, selected_currency: currency, ecommerce: { item_list_id: collectionId ? parseInt(collectionId) : null, item_list_name: title, items: arrItem } }); } } catch (error) { console.error('Error in viewProductList:', error); } }; try { const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { try { if (entry.isIntersecting) { let collectionId = entry.target.getAttribute('collection-id'); let parentElement = entry.target.previousElementSibling; let sectionTitle = parentElement?.querySelector('.bestseller-main-heading h2')?.innerText; let targetContainer = entry.target.querySelectorAll('.collection_custom_swiper .swiper-wrapper .product-card-conatiner_logic'); viewProductList(targetContainer, sectionTitle, collectionId); } } catch (error) { console.error('Error inside observer 1 entry:', error); } }); }); const targets = document.querySelectorAll('.collection_swiper_conatiner'); if (targets) { targets.forEach(target => { observer.observe(target); }); } } catch (error) { console.error('Error initializing observer 1:', error); } // pdp product-recommendations observer try { const observer2 = new IntersectionObserver((entries) => { entries.forEach(entry => { try { if (entry.isIntersecting) { let productListData = entry.target.querySelector('ul'); if (productListData) { let recommendationsProductsId = entry.target.getAttribute('data-product-id'); viewProductList(productListData.querySelectorAll('li'), entry.target.querySelector('.related-products__heading')?.innerText, recommendationsProductsId); observer2.unobserve(entry.target); } } } catch (error) { console.error('Error inside observer 2 entry:', error); } }); }, { threshold: 0.1 }); const target2 = document.querySelector('product-recommendations'); if (target2) { observer2.observe(target2); } } catch (error) { console.error('Error initializing observer 2:', error); } // card click handler window.handleCardClicked = (event) => { try { selectedProductView(event); } catch (error) { console.error('Error in handleCardClicked:', error); } }; // collection page // product view window.newVariantSelected = (index)=>{ try { let productJson = {"id":14719446647147,"title":"Sprinkle Chocolate Strawberries Delightful Gift ","handle":"sweet-delight-chocolate-covered-strawberries","description":"\u003cul\u003e\n\u003cli data-end=\"922\" data-start=\"613\" style=\"direction: rtl; text-align: right;\"\u003eCelebrate happiness with a delicious assortment of strawberries drizzled with rich dark and white chocolate, finished with sugar sprinkles! A delightful arrangement combining white and dark chocolate, decorated with cheerful, colorful stripes. Perfect as a children's Birthdaygift or a pleasant surprise when visiting a patient. Carefully crafted and elegantly presented by FNB Saudi Arabia, with immediate same-day delivery across the Kingdom.\u003cbr\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e","published_at":"2025-06-12T19:47:23+03:00","created_at":"2025-06-11T17:50:29+03:00","vendor":"FNP","type":"Food Gifts","tags":["chocolates","city_jeddah","city_meccah","city_riyadh","combine_variants","fnp","new-arrival","non_seasonal","occasion_anniversary","occasion_back-to-school","occasion_birthday","occasion_congratulation","same-day-delivery-gifts"],"price":4900,"price_min":4900,"price_max":17900,"available":true,"price_varies":true,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":52115367985515,"title":"6 Pieces","option1":"6 Pieces","option2":null,"option3":null,"sku":"CH.FP.AS.3P.RG.UX-AMB","requires_shipping":true,"taxable":true,"featured_image":{"id":53890014970219,"product_id":14719446647147,"position":1,"created_at":"2025-06-11T17:50:31+03:00","updated_at":"2025-06-11T17:50:33+03:00","alt":null,"width":1500,"height":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMB.jpg?v=1749653433","variant_ids":[52115367985515]},"available":true,"name":"Sprinkle Chocolate Strawberries Delightful Gift - 6 Pieces","public_title":"6 Pieces","options":["6 Pieces"],"price":4900,"weight":0,"compare_at_price":null,"inventory_management":null,"barcode":"","featured_media":{"alt":null,"id":46087845052779,"position":1,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMB.jpg?v=1749653433"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52115368018283,"title":"12 Pieces ","option1":"12 Pieces ","option2":null,"option3":null,"sku":"CH.FP.AS.6P.RG.UX-AMB","requires_shipping":true,"taxable":true,"featured_image":{"id":53890030764395,"product_id":14719446647147,"position":2,"created_at":"2025-06-11T17:54:52+03:00","updated_at":"2025-06-11T17:54:54+03:00","alt":null,"width":1500,"height":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMC.jpg?v=1749653694","variant_ids":[52115368018283]},"available":true,"name":"Sprinkle Chocolate Strawberries Delightful Gift - 12 Pieces ","public_title":"12 Pieces ","options":["12 Pieces "],"price":9900,"weight":0,"compare_at_price":null,"inventory_management":null,"barcode":"","featured_media":{"alt":null,"id":46087855112555,"position":2,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMC.jpg?v=1749653694"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":52115368051051,"title":"24 Pieces","option1":"24 Pieces","option2":null,"option3":null,"sku":"CH.FP.AS.12P.RG.UX-AMB","requires_shipping":true,"taxable":true,"featured_image":{"id":53890030862699,"product_id":14719446647147,"position":3,"created_at":"2025-06-11T17:54:58+03:00","updated_at":"2025-06-11T17:55:00+03:00","alt":null,"width":1500,"height":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMD.jpg?v=1749653700","variant_ids":[52115368051051]},"available":true,"name":"Sprinkle Chocolate Strawberries Delightful Gift - 24 Pieces","public_title":"24 Pieces","options":["24 Pieces"],"price":17900,"weight":0,"compare_at_price":null,"inventory_management":null,"barcode":"","featured_media":{"alt":null,"id":46087855243627,"position":3,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMD.jpg?v=1749653700"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/www.fnp.sa\/cdn\/shop\/files\/AMB.jpg?v=1749653433","\/\/www.fnp.sa\/cdn\/shop\/files\/AMC.jpg?v=1749653694","\/\/www.fnp.sa\/cdn\/shop\/files\/AMD.jpg?v=1749653700"],"featured_image":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMB.jpg?v=1749653433","options":["Quantity"],"media":[{"alt":null,"id":46087845052779,"position":1,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMB.jpg?v=1749653433"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMB.jpg?v=1749653433","width":1500},{"alt":null,"id":46087855112555,"position":2,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMC.jpg?v=1749653694"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMC.jpg?v=1749653694","width":1500},{"alt":null,"id":46087855243627,"position":3,"preview_image":{"aspect_ratio":1.0,"height":1500,"width":1500,"src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMD.jpg?v=1749653700"},"aspect_ratio":1.0,"height":1500,"media_type":"image","src":"\/\/www.fnp.sa\/cdn\/shop\/files\/AMD.jpg?v=1749653700","width":1500}],"requires_selling_plan":false,"selling_plan_groups":[],"content":"\u003cul\u003e\n\u003cli data-end=\"922\" data-start=\"613\" style=\"direction: rtl; text-align: right;\"\u003eCelebrate happiness with a delicious assortment of strawberries drizzled with rich dark and white chocolate, finished with sugar sprinkles! A delightful arrangement combining white and dark chocolate, decorated with cheerful, colorful stripes. Perfect as a children's Birthdaygift or a pleasant surprise when visiting a patient. Carefully crafted and elegantly presented by FNB Saudi Arabia, with immediate same-day delivery across the Kingdom.\u003cbr\u003e\n\u003c\/li\u003e\n\u003c\/ul\u003e"}; dataLayer.push({ event: "view_item", login_state: loginState, pageType: "Product", selected_currency: currency, ecommerce: { items: { item_brand: "FNP", item_category: productJson.type, item_category2: null, item_category3: null, item_category4: null, item_id: 14719446647147, item_list_id: "" ? "" : null, item_list_name: productJson.type, item_name: productJson.variants[index]? productJson.variants[index].title: productJson.title, item_variant: productJson.variants[index] ? productJson.variants[index].id : productJson.variants[0].id } } }); } catch (error) { console.error('Error in product page tracking:', error); } } newVariantSelected() // removed product from cart drawer window.removedCartProduct = (event)=>{ try{ let productData = JSON.parse(event.getAttribute('data-product')); const payload = { items: { item_brand: 'FNP', item_category: productData.product_type, item_category2: null, item_category3: null, item_category4: null, item_id: productData.product_id, item_list_id: productData.product_id, item_list_name: productData.product_type, item_name: productData.product_title, item_variant: productData.id, price: productData.price / 100, quantity: productData.quantity } }; dataLayer.push({ event: "remove_from_cart", ecommerce: payload, login_state: loginState, pageType: "Product", selected_currency: currency }) }catch(error){ console.error('Error while removed item tracking:', error); } } //addons_added_to_cart window.addonsAddedToCart = (event) =>{ try{ let priceString = event.properties._price; let cleanedPrice = priceString.replace(',', ''); let priceInt = parseInt(cleanedPrice, 10); const payload = { items: { item_brand: 'FNP', item_category: event.properties._product_type, item_category2: null, item_category3: null, item_category4: null, item_id: event.properties._product_id, item_list_id: event.properties._product_id, item_list_name: event.properties._product_type, item_name: event.properties._product_title, item_variant: event.id, price: priceInt / 100, quantity: event.quantity } }; dataLayer.push({ event: "addons_added_to_cart", ecommerce: payload, login_state: loginState, selected_currency: currency }) }catch(error){ console.error('Error while removed item tracking:', error); } } //newsletter_subscribe document.getElementById('Subscribe').addEventListener('click', function(event){ try{ let subscribeEmail = event.currentTarget.previousElementSibling.value; if(subscribeEmail){ dataLayer.push({ event: "newsletter_subscribe", subscription_email: subscribeEmail }) } }catch(error){ console.error('Error while newsletter subscribe tracking:', error) } }) // search event window.searchDataEvent = (search) =>{ try{ dataLayer.push({ event: "search", keyword: search }) }catch(error){ console.error('Error while tracking search data:', error) } } //city selection window.citySelectionEvent = (city)=>{ try{ dataLayer.push({ event: "city_selection", selected_city: `${city}`, country: "Saudi", customer_party_id: "no", }) }catch(error){ console.error('Error while tracking city selection:', error) } } });