BLUE BALM 100ML

USD 12.00

0 Customer Review

Blue Balm is a soothing topical balm designed to relieve muscle aches, joint pain, and minor skin irritations. Provides a cooling sensation for fast comfort.

Delivery By 30-Jun-2025

Share Via

Customer reviews


Related Products

$(document).ready(function () { // Initialize country search $('.search_gcc_country').select2({ placeholder: 'Select Country', minimumInputLength: 3, ajax: { url: 'https://queen-house.com/api/search_gcc_countries', // Adjust route dataType: 'json', delay: 250, data: function (params) { return { q: params.term // search keyword }; }, processResults: function (data) { return { results: $.map(data, function (item) { return { id: item.id, text: item.name }; }) }; } } }); // Initialize city search based on selected country $('.search_gcc_city').select2({ placeholder: 'Select City', minimumInputLength: 3, ajax: { url: 'https://queen-house.com/api/search_gcc_cities', // Adjust route dataType: 'json', delay: 250, data: function (params) { return { q: params.term, country_id: $('.search_gcc_country').val() }; }, processResults: function (data) { return { results: $.map(data, function (item) { return { id: item.id, text: item.name }; }) }; } } }); // Clear city dropdown when country changes $('.search_gcc_country').on('change', function () { $('.search_gcc_city').val(null).trigger('change'); }); });