top of page
rituals
spa and salon
Home
Services
Salon Services
Spa Services
Manicures and Pedicures
Spa Packages
Gift Cards
Appointments
Contact
Policies
Careers
More
Use tab to navigate through the menu items.
Home
All Products
All Products
12 products
Sort by:
Recommended
I'm a product
Price
$85.00
I'm a product
Price
$20.00
Best Seller
I'm a product
Price
$10.00
I'm a product
Price
$25.00
New
I'm a product
Price
$7.50
I'm a product
Price
$15.00
I'm a product
Price
$85.00
I'm a product
Price
$40.00
I'm a product
Price
$130.00
I'm a product
Price
$45.00
Sale
I'm a product
Regular Price
$100.00
Sale Price
$95.00
I'm a product
Price
$120.00
bottom of page
Buy a gift card
const createStyle = () => { const styleElement = document.createElement('style'); styleElement.innerHTML = ` sbiz-custom-olb-gift-card-button { border-radius: 12px; box-shadow: 0px 24px 48px rgb(2 51 40 / 20%); background: #083454; min-height: 52px !important; width: auto !important; } `; return styleElement; }; const createButton = () => { const buttonElement = document.createElement('button'); buttonElement.id = 'sbiz-olb-gift-card-button'; buttonElement.textContent = 'Buy a gift card'; buttonElement.classList.add('sbiz-olb-button', 'olb-bgcolor-primary'); buttonElement.style.cursor ='pointer'; buttonElement.onclick = function () { openContainer('widget/#/booking/purchase-gift-card?comToken=c1073t201312121248pp6a4C373VZy5N964Wt4P'); } return buttonElement; }; class SbizCustomOlbGiftCardButton extends HTMLElement { constructor() { super(); } connectedCallback() { this.appendChild(createStyle()); this.appendChild(createButton()); } } customElements.define('sbiz-custom-olb-gift-card-button', SbizCustomOlbGiftCardButton);