-
Availability:
in stock Many in stock Out of stock You can purchase this product but it's out of stock
Essence of Abeja Honeycomb Necklaces
$17.99
ADDITIONAL INFORMATION
Color: |
Blue, Purple, White |
Size: |
20, 24 |
Material: |
100% Polyester |
Essence of Abeja Honeycomb Necklaces
$278
$400
SHIPPING
- Complimentary ground shipping within 1 to 7 business days
- In-store collection available within 1 to 7 business days
- Next-day and Express delivery options also available
- Purchases are delivered in an orange box tied with a Bolduc ribbon, with the exception of certain items
- See the delivery FAQs for details on shipping methods, costs and delivery times
RETURNS AND EXCHANGES
- Easy and complimentary, within 14 days
- See conditions and procedure in our return FAQs
function initStickyAddToCart(){
$('.tt-back-to-top').length && $('.tt-back-to-top').remove();
var b = $('.btn-addtocart').first(),
p = $('.tt-fixed-product-wrapper'),
q = $('.tt-product-single-info'),
c = q.find('.tt-input-counter').first();
$(window).resize(isatcResize);
$(window).scroll(isatcScrollHandler);
isatcResize();
isatcScrollHandler();
$('body').on('click', '.tt-fixed-product-wrapper .plus-btn', function(e){
c.find('.plus-btn').trigger('click');
p.find('.tt-input-counter').replaceWith(c.clone());
})
$('body').on('click', '.tt-fixed-product-wrapper .minus-btn', function(e){
c.find('.minus-btn').trigger('click');
p.find('.tt-input-counter').replaceWith(c.clone());
})
$('body').on('click', '.tt-fixed-product-wrapper .btn', function(e){
e.preventDefault();
b.trigger('click');
})
$('body').on('change', '.tt-fixed-product-wrapper .tt-input-counter input', function(e){
c.find('input').val($(this).val()).trigger('change');
p.find('.tt-input-counter').replaceWith(c.clone());
})
$('body').on('click focusout', '.tt-fixed-product-wrapper select', function(e){
if(e.type == 'click' && !p.find('form').hasClass('formactive')){
p.find('form').addClass('formactive');
return false;
}
p.find('form').removeClass('formactive');
})
$('body').on('change', '.tt-fixed-product-wrapper select', function(e){
setTimeout(function(){
p.find('.btn').replaceWith($('.btn-addtocart').first().clone().removeClass('btn-lg btn-addtocart addtocart-js').addClass('stickyaddtocart'));
p.find('.tt-price').replaceWith(q.find('.tt-price').first().clone());
}, 200)
})
function isatcResize(){
if($('.select_options').length) return false;
var h = p.innerHeight() - 4;
$('footer').css('padding-bottom', h);
}
function isatcScrollHandler(){
if($(window).scrollTop() > b.offset().top){
if(p.hasClass('atdshowed') || $('.select_options').length) return false;
var c_ = c.clone();
p.addClass('atdshowed').find('.tt-input-counter').replaceWith(c_);
p.find('.tt-price').replaceWith(q.find('.tt-price').first().clone());
p.find('.btn').replaceWith($('.btn-addtocart').first().clone().removeClass('btn-lg btn-addtocart addtocart-js').addClass('stickyaddtocart'));
$('.tt-promo-fixed').length && $('.tt-promo-fixed').css('bottom', p.innerHeight()+20);
p.fadeIn(200);
}
else{
if(!p.hasClass('atdshowed') || $('.select_options').length) return false;
$('.tt-promo-fixed').length && $('.tt-promo-fixed').css('bottom', '');
p.removeClass('atdshowed').fadeOut(200);
}
}
}