.product-accordion { max-width: 800px; margin: 0 auto; font-family: inherit; color: inherit; } .accordion-header { display: flex; align-items: center; justify-content: space-between; width: 100%; background: transparent; border: none; padding: 0.75rem 0; margin: 0; font-size: 1rem; font-weight: 700; text-align: left; cursor: pointer; border-bottom: 1px solid rgba(0,0,0,0.08); } .accordion-header:focus { outline: 3px solid rgba(0,123,255,0.25); outline-offset: 2px; } .accordion-indicator { font-size: 1.25rem; line-height: 1; width: 1.5rem; text-align: center; transition: transform 0.25s ease-in-out; } .accordion-header[aria-expanded="true"] .accordion-indicator { transform: rotate(180deg); } .accordion-panel { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; padding-bottom: 0; } .accordion-panel-inner { padding: 0.75rem 0 1rem 0; } .accordion-panel p { margin: 0 0 0.75rem 0; } .accordion-panel a { color: inherit; text-decoration: underline; } Select your chosen metal, then Click 'ADD DIAMOND' or 'ADD GEMSTONE' to choose your favorite centre stone. We will create an updated CAD design for you to see your chosen stone before we start making the ring. Inspired by long walks through the forest, losing all sense of space and time. Being at peace in the tranquility of nature. This beautiful leaf scattered texture, is a subtle twist on the timeless classic engagement ring. The tiny leaf detail subtly catching the light as you wear it. "Werifesteria" (v). To wander longingly through the forest in search of mystery. Bespoke Experience + If you'd like to make more adjustments to this design please get in touch to discuss the possibilities. Specifications + Band width: 1.8mm The image is of a 6.5mm 1.4 ct emerald cut G VS lab grown diamond. Each ring comes presented in one of our beautiful hexagonal velvet ring boxes with our logo embossed in gold foil. Sizing + Just select the ring size from the drop down menu as you progress through the check out. Processing times & returns + Our processing times are approximately 8 to 12 weeks as each ring is made to order. Please see our returns and exchanges page for more details. document.addEventListener("DOMContentLoaded", function () { const headers = document.querySelectorAll(".accordion-header"); headers.forEach(header => { header.addEventListener("click", function () { const expanded = this.getAttribute("aria-expanded") === "true"; const panel = document.getElementById(this.getAttribute("aria-controls")); // Close all document.querySelectorAll(".accordion-header").forEach(h => h.setAttribute("aria-expanded", "false")); document.querySelectorAll(".accordion-panel").forEach(p => { p.style.maxHeight = null; p.setAttribute("aria-hidden", "true"); }); // Open clicked one if (!expanded) { this.setAttribute("aria-expanded", "true"); panel.setAttribute("aria-hidden", "false"); panel.style.maxHeight = panel.scrollHeight + "px"; } }); }); });